6

另一个项目,Visual Studio 的代码分析有这个选项。但我找不到 StyleCop(AKA 源分析)。

我要忽略的文件是 dbml 的 .designer.cs 代码,其中包含// <autogenerated>标签。一篇博客文章告诉我这就足够了,但就我而言,它还不够。

4

1 回答 1

6

StyleCop:如何忽略生成的代码

编辑:这是我在生成的 ANTLR 语法中使用的标题。这实际上是 StringTemplate 模板的主体,因此这两个\>条目实际上只是转义>标记。除了<auto-generated>标签和[GeneratedCode]属性之外,我们还必须禁用在代码分析过程中出现的一些警告。

//------------------------------------------------------------------------------
// \<auto-generated>
//     This code was generated by a tool.
//     ANTLR Version: ANTLRVersion
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// \</auto-generated>
//------------------------------------------------------------------------------

// $ANTLR <ANTLRVersion> <fileName>

// The variable 'variable' is assigned but its value is never used.
#pragma warning disable 219
// Unreachable code detected.
#pragma warning disable 162
// Missing XML comment for publicly visible type or member 'Type_or_Member'
#pragma warning disable 1591
// CLS compliance checking will not be performed on 'type' because it is not visible from outside this assembly.
#pragma warning disable 3019
// 'type' does not need a CLSCompliant attribute because the assembly does not have a CLSCompliant attribute.
#pragma warning disable 3021

[System.CodeDom.Compiler.GeneratedCode("ANTLR", "<ANTLRVersion>")]
[System.CLSCompliant(false)]
public class ...
于 2009-10-19T18:21:03.140 回答