"StyleCop "SA1300 is not suppressing in GlobalSuppressions.cs class
07:20 19 Jan 2015

I am trying to suppress Style Cope warning for SA1300 by this line of code.

[SuppressMessage("StyleCop.CSharp.NamingRules","SA1300:ElementMustBeginWithUpperCaseLetter", Justification = "Reviewed.")] 

It is working at class level (i.e. if I put it in class which has warnings then its work) but not working if I put it in GlobalSuppressions.cs class. I want to suppress SA1300 warnings for whole assembly so I put this line in GlobalSuppressions.cs but it’s not working.

[assembly: SuppressMessage("StyleCop.CSharp.NamingRules","SA1300:ElementMustBeginWithUpperCaseLetter", MessageId = "Ctl", Scope = "namespace", Target = "Assembly name"))]

Is it possible to do it in "GlobalSuppressions.cs"? it is also not working for "SA1600"

c# .net stylecop