Tagged Questions
12
votes
4answers
3k views
Excluding FxCop rule in source
In a project I'm working on FxCop shows me lots of (and I mean more than 400) errors on the InitializeComponent() methods generated by the Windows Forms designer. Most of those errors are just the ...
3
votes
1answer
773 views
How can you get FxCop rule CA1726 to ignore a prefered term?
FxCop has a rule (CA1726) that checks for preferred terms. This looks for words like "Dont" and tells you to replace them with better words like "Do not". Generally this is fine, however one of the ...
3
votes
2answers
1k views
FxCop Suppression
I have a control on an Asp.Net page, on that page is a control with the name "PaReq" that violates the rule:
CA1704:IdentifiersShouldBeSpelledCorrectly
I've used suppression before I'm not sure ...
1
vote
2answers
583 views
FXCop Suppress Warning CA1800 (Unnecessary Casts)
I have the following code:
[SuppressMessage( "Microsoft.Performance", "CA1800:DoNotCastUnnecessarily" )]
private static void SetTestConnectionString( Component table )
{
if( table is Object1 )
...