Skip to content

Commit f634f63

Browse files
committed
Test update to nuke 9.0.4
1 parent d7e8de7 commit f634f63

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

build/Build.cs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -210,11 +210,7 @@ class Build : NukeBuild
210210

211211
DotNetPack(_ => _
212212
.SetProject(OctopusClientFolder)
213-
.SetProcessArgumentConfigurator(args =>
214-
{
215-
args.Add($"/p:NuspecFile=Octopus.Client.nuspec");
216-
return args;
217-
})
213+
.SetProcessAdditionalArguments("/p:NuspecFile=Octopus.Client.nuspec")
218214
.SetVersion(FullSemVer)
219215
.SetConfiguration(Configuration)
220216
.SetOutputDirectory(ArtifactsDir)
@@ -365,9 +361,8 @@ void SignWithSignTool(AbsolutePath[] files, string url)
365361
{
366362
Log.Information("Signing files using signtool.");
367363

368-
SignToolLogger = LogStdErrAsWarning;
369-
370364
SignTool(_ => _
365+
.SetProcessLogger(LogStdErrAsWarning)
371366
.SetFile(SigningCertificatePath)
372367
.SetPassword(SigningCertificatePassword)
373368
.SetFiles(files.Select(x => x.ToString()).ToArray())

build/_build.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<PrivateAssets>all</PrivateAssets>
1818
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1919
</PackageReference>
20-
<PackageReference Include="Nuke.Common" Version="8.1.4" />
20+
<PackageReference Include="Nuke.Common" Version="9.0.4" />
2121
</ItemGroup>
2222

2323
<ItemGroup>

0 commit comments

Comments
 (0)