File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -210,11 +210,7 @@ class Build : NukeBuild
210
210
211
211
DotNetPack ( _ => _
212
212
. 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" )
218
214
. SetVersion ( FullSemVer )
219
215
. SetConfiguration ( Configuration )
220
216
. SetOutputDirectory ( ArtifactsDir )
@@ -365,9 +361,8 @@ void SignWithSignTool(AbsolutePath[] files, string url)
365
361
{
366
362
Log . Information ( "Signing files using signtool." ) ;
367
363
368
- SignToolLogger = LogStdErrAsWarning ;
369
-
370
364
SignTool ( _ => _
365
+ . SetProcessLogger ( LogStdErrAsWarning )
371
366
. SetFile ( SigningCertificatePath )
372
367
. SetPassword ( SigningCertificatePassword )
373
368
. SetFiles ( files . Select ( x => x . ToString ( ) ) . ToArray ( ) )
Original file line number Diff line number Diff line change 17
17
<PrivateAssets >all</PrivateAssets >
18
18
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
19
19
</PackageReference >
20
- <PackageReference Include =" Nuke.Common" Version =" 8.1 .4" />
20
+ <PackageReference Include =" Nuke.Common" Version =" 9.0 .4" />
21
21
</ItemGroup >
22
22
23
23
<ItemGroup >
You can’t perform that action at this time.
0 commit comments