使用 FxCop 10 GUI 运行代码分析规则集

发布于 2024-11-18 13:38:17 字数 136 浏览 2 评论 0原文

我在 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

╭⌒浅淡时光〆 2024-11-25 13:38:17

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).

哎呦我呸! 2024-11-25 13:38:17

我遇到了同样的问题,尽管 FXCop 不支持规则集,但您可以使用 FXCopCmd.exe 中未记录的命令行开关。只需为要抑制的消息定义 /rid 开关即可。这种切换可以发生多次。例如:

"$(ProgramFiles)\Microsoft FxCop 10.0\FxCopCmd.exe" /console /file:"$(TargetPath)" /rid:-Microsoft.Design#CA1005 /rid:-Microsoft.Design#CA1020 

在 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:

"$(ProgramFiles)\Microsoft FxCop 10.0\FxCopCmd.exe" /console /file:"$(TargetPath)" /rid:-Microsoft.Design#CA1005 /rid:-Microsoft.Design#CA1020 

in the post build event of your VS 2008 project.

Hth
Uli

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文