Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -210,11 +210,7 @@ class Build : NukeBuild

DotNetPack(_ => _
.SetProject(OctopusClientFolder)
.SetProcessArgumentConfigurator(args =>
{
args.Add($"/p:NuspecFile=Octopus.Client.nuspec");
return args;
})
.SetProcessAdditionalArguments("/p:NuspecFile=Octopus.Client.nuspec")
.SetVersion(FullSemVer)
.SetConfiguration(Configuration)
.SetOutputDirectory(ArtifactsDir)
Expand Down Expand Up @@ -365,9 +361,8 @@ void SignWithSignTool(AbsolutePath[] files, string url)
{
Log.Information("Signing files using signtool.");

SignToolLogger = LogStdErrAsWarning;

SignTool(_ => _
.SetProcessLogger(LogStdErrAsWarning)
.SetFile(SigningCertificatePath)
.SetPassword(SigningCertificatePassword)
.SetFiles(files.Select(x => x.ToString()).ToArray())
Expand Down
2 changes: 1 addition & 1 deletion build/_build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Nuke.Common" Version="8.1.4" />
<PackageReference Include="Nuke.Common" Version="9.0.4" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading