I ran FxCop on one of the projects that I am working on and I got a whole slew of warnings that look like the following:
CA1703 : Microsoft.Naming : In resource 'MyProject.Properties.Resources.resx', referenced by name 'MyString', correct the spelling of 'Myyyy' in string value 'Some format string: {0:dMMMyyyy}'
As Resources is a generated class, I can't simply suppress these messages using the normal mechanism. Does anyone have any bright ideas how I can get around this problem?
Edit: Just to make things clear (as I wasn't aware that this was any different with Team System), I am interested in non- Team System solutions - in particular for MS Visual Studio Pro 2008.