如何配置StyleCop以禁止生成代码的警告?

时间:2009-10-19 18:14:51

标签: .net visual-studio code-generation code-analysis stylecop

另一个项目,Visual Studio的Code Analysis有这个选项。但我找不到StyleCop(AKA Source Analysis)。

我想忽略的文件是dbml的.designer.cs代码,其中包含// <autogenerated>标记。 A blog post告诉我这已经足够了,但就我而言,它不是。

1 个答案:

答案 0 :(得分:6)

StyleCop: How To Ignore Generated Code

编辑:这是我在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 ...
相关问题