StyleCop Analysisからのファイルを除外する: "自動生成された"タグは無視されます

StackOverflow https://stackoverflow.com/questions/5027889

  •  14-11-2019
  •  | 
  •  

質問

C#ファイルの先頭に、私は追加しました:

//-----------------------------------------------------------------------
// <copyright company="SomeCompany" file="MyFile.cs">
// Copyright © Some Company, 2011
// </copyright>
// <auto-generated />
//-----------------------------------------------------------------------
.

スタイルCOPがこのファイルのチェックをスキップするようにしたいので、その他の回答

しかし、私の解決策を掃除して再構築した後、Stylecopはこのファイルの警告を生成し続けます。なぜこれが起こるのですか?どのように固定できますか?

Microsoft Visual Studio 2008 Professional EditionとStyleCop v4.3を使用しています。

役に立ちましたか?

解決

@Frédéric - unfortunately, Analyze generated files option is not somehow connected with skipping files with <auto-generated /> tag.

Files containing <auto-generated /> text will always be skipped regardless the value of the setting.

@Daniel - I believe that you deal with a bug in version 4.3 which was released more than a year ago and is definitely obsolete now. The only reason to use 4.3 is only if you use Visual Studio 2005, which is not supported by StyleCop 4.4.

I strongly recommend you upgrading to 4.4 - I've just checked your example and it works fine.

他のヒント

You can set file exclusions within the Settings.StyleCop file. The file is located in to your solution / project or in your StyleCop install directory.

You can then use regex within the Parser settings to define files you want to ignore

<Parsers>
  <Parser ParserId="Microsoft.StyleCop.CSharp.CsParser">
    <ParserSettings>
      <BooleanProperty Name="AnalyzeDesignerFiles">False</BooleanProperty>
      <CollectionProperty Name="GeneratedFileFilters">
        <Value>\.g\.cs$</Value>
        <Value>\.generated\.cs$</Value>
        <Value>\.g\.i\.cs$</Value>
        <Value>codegen.*\.cs$</Value>
      </CollectionProperty>
    </ParserSettings>
  </Parser>
</Parsers>

In this case I want to ignore codegen.whatever.cs

Check StyleCop documentation. My favourite is <auto-generated /> tag on the top of the document or you can use #region directive or other options mentioned in the docs.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top