Skip to content

Commit

Permalink
fix(templates): suppress common build warnings (#1214)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisPulman committed Aug 14, 2023
1 parent 90f2138 commit 510ddc8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/Nuke.GlobalTool/templates/_build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
<OutputType>Exe</OutputType>
<TargetFramework>_TARGET_FRAMEWORK_</TargetFramework>
<RootNamespace></RootNamespace>
<NoWarn>CS0649;CS0169</NoWarn>
<NoWarn>CS0649;CS0169;CA1050;CA1822;CA2211;IDE1006</NoWarn>
<NukeRootDirectory>_ROOT_DIRECTORY_</NukeRootDirectory>
<NukeScriptDirectory>_SCRIPT_DIRECTORY_</NukeScriptDirectory>
<NukeTelemetryVersion>_TELEMETRY_VERSION_</NukeTelemetryVersion>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 510ddc8

Please sign in to comment.