Skip to content

Commit c01f46a

Browse files
committed
build.ps1 - increase nuget verbosity
remove unused code block as well
1 parent ba45bae commit c01f46a

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

build.ps1

+2-9
Original file line numberDiff line numberDiff line change
@@ -270,15 +270,8 @@ function Nupkg
270270

271271
Write-Diagnostic "Building nuget package"
272272

273-
. $nuget pack nuget\CefSharp.BrowserSubProcess.NetCore.win.nuspec -NoPackageAnalysis -Version $Version -OutputDirectory nuget -Properties "RedistVersion=$RedistVersion;Platform=x86;PlatformNative=Win32"
274-
. $nuget pack nuget\CefSharp.BrowserSubProcess.NetCore.win.nuspec -NoPackageAnalysis -Version $Version -OutputDirectory nuget -Properties "RedistVersion=$RedistVersion;Platform=x64;PlatformNative=x64"
275-
276-
# Invoke `AfterBuild` script if available (ie. upload packages to myget)
277-
if(-not (Test-Path $WorkingDir\AfterBuild.ps1)) {
278-
return
279-
}
280-
281-
. $WorkingDir\AfterBuild.ps1 -Version $Version
273+
. $nuget pack nuget\CefSharp.BrowserSubProcess.NetCore.win.nuspec -Verbosity Detailed -Version $Version -OutputDirectory nuget -Properties "RedistVersion=$RedistVersion;Platform=x86;PlatformNative=Win32"
274+
. $nuget pack nuget\CefSharp.BrowserSubProcess.NetCore.win.nuspec -Verbosity Detailed -Version $Version -OutputDirectory nuget -Properties "RedistVersion=$RedistVersion;Platform=x64;PlatformNative=x64"
282275
}
283276

284277
function DownloadNuget()

0 commit comments

Comments
 (0)