使用 Visual Studio 2010 代码分析检查 XML 代码文档

发布于 2024-09-23 23:49:44 字数 279 浏览 2 评论 0原文

我使用 Visual Studio 2010 高级代码分析 (CA) 功能,并在每次编译我的项目时强制使用它们,同时还将警告显示为错误,因此我使我的代码保持良好、良好...更好。

但是。

因为这个 CA 非常好,所以我也不想使用 StyleCop。因为 StyleCop 为我提供了 CA 没有的代码风格规范。

问题

我想知道是否可以将规则从 StyleCop 合并到 CA?
那是最好的,所以在检查代码本身的同时也要强制代码风格。

I use Visual Studio 2010 Premium Code Analysis (CA) capabilities and force them at every compile with my projects while also showing warnings as errors, so I keep my code nice and well... better.

But.

Since this CA is very nice and all I wouldn't want to use StyleCop as well. Because StyleCop gives me code style specification that CA doesn't.

Question

I was wondering whether it's possible to merge rules from StyleCop to CA?
That would be best, so also enforce code style while also checking code itself.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

撩人痒 2024-09-30 23:49:44

不可能让 StyleCop 规则在代码分析下工作,因为前者在源代码上运行,而后者在编译的程序集级别上运行。

如果您想尝试 CodeIt.Right (声明:这是我们的产品)您会发现大量可配置的灵活的规则将指出代码风格违规行为并为您纠正它们。

因此,如果您只想检查缺少的 XML 代码文档,您可以使用 CodeIt.Right 做什么,您可以创建一个自定义配置文件,并且仅将 XML 文档规则包含到该配置文件中。然后,您可以在 VS IDE 内或作为 CI/自动构建过程的一部分根据该配置文件验证代码。

It wouldn't be possible to get StyleCop rules work under Code Analysis as the former operates on source code while the latter operates on compiled assemblies level.

If you want to try CodeIt.Right (disclosure: this is our product) you will find plenty of configurable and flexible rules that will point out code style violations and also correct them for you.

So, what you can do with CodeIt.Right, if you only want to check for missing XML code documentation, you create a custom profile and only include the XML doc rule(s) into the profile. You then validate code against that profile inside of the VS IDE or as part of the CI/Automated Build process.

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