vote up 5 vote down star
2

Is it possible to exclude a complete namespace from all FxCop analysis while still analyzing the rest of the assembly using the SuppressMessageAttribute?

In my current case, I have a bunch of classes generated by LINQ to SQL which cause a lot of FxCop issues, and obviously, I will not modify all of those to match FxCop standards, as a lot of those modifications would be gone if I re-generated the classes.

I know that FxCop has a project option to suppress analysis on generated code, but it does not seem to recognize the entity and context classes created by LINQ 2 SQL as generated code.

flag

2 Answers

vote up -1 vote down

The code generate with LINQ2SQL is already decorated with a GeneratedCodeAttribute. FXCop is meant to exclude such code from analysis.

link|flag
2  
There is no such attribute on my LINQ 2 SQL code. I just created it using the visual designer and that is it. Could it be that they changed it with VS2008 SP1? I am still on VS2008 here. – hangy Dec 9 '08 at 15:49
vote up -1 vote down

Use the Generated Code Attribute, heres the blog post from the Code Analysis team on the subject.

This at the top of the namespace should do the trick:

[GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "9.0.0.0")]
link|flag
Unfortunately, one cannot add those attributes to namespaces, as far as I know. That would mean I would have to add it to each generated class manually - that cannot be the ideal solution. :D – hangy Dec 9 '08 at 16:02
3  
pretty much. The real pain is if you have to regenerate the code for any reason you have to drop the attribute on again. If the classes Linq to Sql generates are partials, you can maintain the attributes away from the generated code. I have a similar issue with EF classse. – Chane Dec 9 '08 at 17:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.