如何通过组合现有规则来创建 FxCop(代码分析)自定义规则集

发布于 12-06 06:52 字数 158 浏览 1 评论 0原文

请让我知道,如何通过组合现有规则来开发 FxCop(代码分析)自定义规则程序集,例如自定义规则程序集将包含“Microsoft 基本正确性规则”和“Microsoft 安全规则”中的规则(

如果您可以提供参考链接)或代码示例,那就太好了。

谢谢拉桑莎

Please let me know , how can I develop a FxCop (Code Analysis) custom rules assembly by combining existing rules such as that custom rules assembly will include rules from "Microsoft Basic Correctness Rules" and "Microsoft Security Rules"

If you can provide reference link or code sample, that would be great.

Thanks

Lasantha

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

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

发布评论

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

评论(1

幸福不弃2024-12-13 06:52:24

“Microsoft 基本正确性规则”和“Microsoft 安全规则”是规则集,而不是规则集。这些规则集中的每一个实际上都包含来自多个程序集的规则。如果您的目的是创建一个结合两者的自定义规则集,则可以非常轻松地完成:

  1. 在 Visual Studio 中创建一个新的规则集文件。
  2. 在规则集编辑器中打开文件(假设尚未打开)。
  3. 单击规则集编辑器工具栏中的“添加或删除子规则集...”按钮(通常是倒数第二个按钮)。
  4. 检查要包含的规则集,然后单击“确定”关闭“添加或删除规则集”对话框。
  5. 保存您的新规则集。

"Microsoft Basic Correctness Rules" and "Microsoft Security Rules" are rule sets, not rule assemblies. Each of these rule sets actually includes rules from more than one assembly. If your intent is to create a custom rules set that combines the two, this can be done quite easily:

  1. Create a new rule set file in Visual Studio.
  2. Open the file in the rule set editor (assuming it's not already open).
  3. Click the "Add or remove child rule sets..." button in the rule set editor toolbar (it's usually the second to last button).
  4. Check the rule sets you want to include then click OK to close the "Add or Remove Rule Sets" dialog.
  5. Save your new rule set.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文