Style cop will try to force you to take the underscore out of Application_Start in the Global.asax file in an mvc web application:
SP0100: Method (general) name Application_Start doesn't conform the specified style: SampleName.
But this name cannot be changed without breaking the web application (I think?).
I am having trouble writing the suppress message to bypass this rule, and also for some reason the analyzer in stylecop is not finding this error [Edit - the error is not being found because it is a StyleCop+ error] - so I am unable to auto-generate a module-level suppress message.
Can someone help with the right suppress message to use to get past this?
I have tried something along the lines of:
[module: SuppressMessage("StyleCopPlus.StyleCopPlusRules", "SP0100:AdvancedNamingRules", Scope="member", Target="Global.asax", Justification = "Some justification")]
But with no luck