We have added #pragma warning disable
to the top of all our AssemblyInfo.cs
files. The built-in code analysis in Visual Studio 2015 professional, though, continues to analyze that file. What can we add to prevent this?
The #pragma
applies to compiler warnings, since Code analysis (binary) is applied to the produced assemblies, and the pragma information was lost during the compile stage, binary code analysis cannot be aware of this suppression.
The #pragma will work for the true Roslyn roles which act ont the sources instead of the binaries. If you do not enable "Binary Code Analysis" your warnings should be suppressed just fine. Do make sure you have an alternative enable for the rules you're disabling.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With