Skip to content

Commit 64017b1

Browse files
authored
Upgrade to NUKE 9.0.4 (#5120)
1 parent 60f43c1 commit 64017b1

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

build/Build.Pack.cs

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ public partial class Build
6262
.SetOutputDirectory(ArtifactsDirectory)
6363
.SetDeterministic(IsServerBuild)
6464
.SetContinuousIntegrationBuild(IsServerBuild)
65+
.EnableNoRestore()
6566
);
6667
}
6768

build/Build.cs

+3
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ protected override void OnBuildInitialized()
213213
// 0 Turns off emission of all warning messages
214214
// 1 Displays severe warning messages
215215
.SetWarningLevel(IsServerBuild ? 0 : 1)
216+
.EnableNoRestore()
216217
);
217218
}
218219

@@ -261,6 +262,8 @@ void PublishConsoleProject(Project project, string[] targetFrameworks)
261262
// 0 Turns off emission of all warning messages
262263
// 1 Displays severe warning messages
263264
.SetWarningLevel(IsServerBuild ? 0 : 1)
265+
.EnableNoRestore()
266+
.EnableNoBuild()
264267
);
265268
}
266269
}

build/_build.csproj

+2-3
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Nuke.Common" Version="9.0.2" />
19+
<PackageReference Include="Nuke.Common" Version="9.0.4" />
2020
</ItemGroup>
2121

2222
<ItemGroup>
23-
<PackageDownload Include="Microsoft.TestPlatform" Version="[17.12.0]" />
24-
<PackageDownload Include="NuGet.CommandLine" Version="[6.12.1]" />
23+
<PackageDownload Include="NuGet.CommandLine" Version="[6.13.2]" />
2524
</ItemGroup>
2625

2726
</Project>

0 commit comments

Comments
 (0)