次の方法で共有


ファイル ヘッダーを要求する (IDE0073)

プロパティ
ルール ID IDE0073
Title ファイル ヘッダーを要求する
カテゴリ スタイル
Subcategory 言語規則 (using ディレクティブの基本設定)
該当言語 C# および Visual Basic
[オプション] file_header_template

概要

このスタイル規則は、ソース コード ファイルの先頭にファイル ヘッダーを指定することに関するものです。

オプション

file_header_template オプションを設定して、必要なヘッダー テキストを指定します。

  • このオプション値が空でない文字列の場合は、指定されたファイル ヘッダーが必要です。
  • このオプションの値が unset または空の文字列の場合、ファイル ヘッダーは必要ありません。

オプションの構成の詳細については、「オプションの書式」を参照してください。

file_header_template

プロパティ 説明
オプション名 file_header_template
オプションの値 空でない文字列 (必要に応じて {fileName} プレースホルダーを含む) 必要なファイル ヘッダーとして文字列を使用します。
unset または空の文字列 ファイル ヘッダーは必要ありません。
既定のオプションの値 unset
// file_header_template = Copyright (c) SomeCorp. All rights reserved.\nLicensed under the xyz license.

// Copyright (c) SomeCorp. All rights reserved.
// Licensed under the xyz license.
namespace N1
{
    class C1 { }
}

// file_header_template = unset
//      OR
// file_header_template =
namespace N2
{
    class C2 { }
}
' file_header_template = Copyright (c) SomeCorp. All rights reserved.\nLicensed under the xyz license.

' Copyright (c) SomeCorp. All rights reserved.
' Licensed under the xyz license.
Namespace N1
    Class C1
    End Class
End Namespace

' file_header_template = unset
'      OR
' file_header_template =
Namespace N2
    Class C2
    End Class
End Namespace

警告を抑制する

単一の違反だけを抑制する場合は、ソース ファイルにプリプロセッサ ディレクティブを追加して無効にしてから、規則を再度有効にします。

#pragma warning disable IDE0073
// The code that's violating the rule is on this line.
#pragma warning restore IDE0073

ファイル、フォルダー、またはプロジェクトのルールを無効にするには、構成ファイルでその重要度を none に設定します。

[*.{cs,vb}]
dotnet_diagnostic.IDE0073.severity = none

すべてのコード スタイル規則を無効にするには、構成ファイルでカテゴリ Style の重要度を none に設定します。

[*.{cs,vb}]
dotnet_analyzer_diagnostic.category-Style.severity = none

詳細については、「コード分析の警告を抑制する方法」を参照してください。

関連項目