使用 FxCop 10 GUI 运行代码分析规则集
我在 .NET 4 中使用代码分析,其中我的项目的项目文件中包含自定义规则集。
我想在项目输出上运行 FxCop 10 GUI,使用与自定义规则集中相同的规则。
这可以通过 FxCop GUI (FxCop.exe) 实现吗?
I'm using code analysis in .NET 4, where I have a custom rule set included in the project file for my project.
I would like to run FxCop 10 GUI on the project output, using the same rules as in the custom rule set.
Is this possible with FxCop GUI (FxCop.exe)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
FxCop 10 GUI 应用程序不包含对规则集的任何支持。最接近的 GUI 应用程序可能是在 FxCop 中加载项目之前,从规则集自动生成 .fxcop 项目文件的规则节点的内容。如果您决定这样做,FxCop/代码分析程序集中的 API 可以提供一些帮助(例如:Microsoft.VisualStudio.CodeAnalysis.RuleSets.RuleSet.LoadFromFile)。
The FxCop 10 GUI application does not include any support for rulesets. The closest you could get with the GUI app would probably be to automate generating the contents of the Rules node of a .fxcop project file from a ruleset before loading the project in FxCop. If you decide to do this, there are APIs in the FxCop/Code Analysis assemblies that could help a bit (e.g.: Microsoft.VisualStudio.CodeAnalysis.RuleSets.RuleSet.LoadFromFile).
我遇到了同样的问题,尽管 FXCop 不支持规则集,但您可以使用 FXCopCmd.exe 中未记录的命令行开关。只需为要抑制的消息定义 /rid 开关即可。这种切换可以发生多次。例如:
在 VS 2008 项目的构建后事件中。
热值
乌里
I had the same problem and although FXCop does not support rulesets you can use an undocumented commandline switch from the FXCopCmd.exe. Simply define the /rid switch for the messages you want to suppress. This switch can occure multiple times. e.g:
in the post build event of your VS 2008 project.
Hth
Uli