How would I suppress all warnings (or at least as many as possible since those prefixed with MSB cannot be suppressed How to suppress specific MSBuild warning)?
+2
A:
The best way is to fix the issues that are causing the warnings.
If you must ignore the warnings (e.g. you have inherited a project with so many that you can't see the wood for the trees), you could try changing the WarningLevel property, http://msdn.microsoft.com/en-us/library/13b90fz7.aspx
Paul Butcher
2010-01-13 11:14:41
Thanks! That is exactly what happened! Also, the way software is released here requires that non-developers build from the software repositories and I want warnings to be suppressed for them.But yes, when the time presents itself the issues will be fixed.
Joseph Gordon
2010-01-13 17:54:31