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
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 ( ) )
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments