Skip to content

Commit

Permalink
CallerArgumentExpressionAttribute.cs is an exempt file for header-check
Browse files Browse the repository at this point in the history
Why are these specified twice?
  • Loading branch information
manfred-brands committed Dec 30, 2024
1 parent 7dd25b7 commit 7f9327a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ BuildSettings.Initialize(
githubRepository: "nunit-console",
solutionFile: "NUnitConsole.sln",
buildWithMSBuild: true,
exemptFiles: new[] { "Options.cs", "ProcessUtils.cs", "ProcessUtilsTests.cs" });
exemptFiles: new[] { "Options.cs", "ProcessUtils.cs", "ProcessUtilsTests.cs", "CallerArgumentExpressionAttribute.cs" });

//////////////////////////////////////////////////////////////////////
// INDIVIDUAL PACKAGE DEFINITIONS
Expand Down
3 changes: 2 additions & 1 deletion cake/header-check.cake
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ static readonly int CD_LENGTH = Environment.CurrentDirectory.Length + 1;
static readonly string[] EXEMPT_FILES = new [] {
"Options.cs",
"ProcessUtils.cs",
"ProcessUtilsTests.cs"
"ProcessUtilsTests.cs",
"CallerArgumentExpressionAttribute.cs",
};

// Standard Header. Change this for each project as needed.
Expand Down

0 comments on commit 7f9327a

Please sign in to comment.