We have added #pragma warning disableto the top of all our files AssemblyInfo.cs. However, the built-in code analysis in Visual Studio 2015 Professional continues to analyze this file. What can we add to prevent this?
#pragma warning disable
AssemblyInfo.cs
#pragma applies to compiler warnings, since code analysis (binary) is applied to produced assemblies, and pragma information was lost during the compilation stage, binary code analysis cannot know about this suppression.
#pragma
#pragma , . " ", . , , .
Source: https://habr.com/ru/post/1656154/More articles:How to implement Sequence (to enable Swift for-in syntax) from Objective-C? - objective-cHow to check if the Map is also a Structure? - elixirUsing python queries and beautiful soup to pull text - pythonНастройка веб-сервера apache на mac os Sierra (macbook pro 13 2014) - apacheRespond to initial Facebook API requests - react-nativeThe order of type arguments in indexed vectors - haskellError starting kafka broker - apache-zookeeperRow_Number () in MySql result value Double, but in IBM Data Studio result Int - javaList of fixed size and element restrictions - scalaCreating a list of fixed sizes Nat N - scalaAll Articles