Hi,
Placing this in our AssemblyInfo.cs:
[module: SuppressMessage("Microsoft.Performance",
"CA1822:MarkMembersAsStatic", Scope="member",
Target="Foo.CoreTest.StringUtilTest.CapitalizeNull():System.Void")]
Results in CA1822 being excluded for the method Foo.CoreTest.StringUtilTest.CapitalizeNull. However we would like CA1822 to be excluded from the assembly as a whole.
Is it possible from source? And if so, how should we change our suppression line above?