Skip to content

Commit

Permalink
chore: build output, show which build is in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardog committed Nov 28, 2022
1 parent 75c50fa commit a9d93ac
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build/01-build.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
pushd $PSScriptRoot\..
"-- Building net7.0 win-arm64"
dotnet publish .\src\gsudo\gsudo.csproj -c Release -o .\artifacts\arm64 -f net7.0 -r win-arm64 --sc -p:PublishReadyToRun=true -p:PublishSingleFile=true -v minimal -p:WarningLevel=0 || $(exit $LASTEXITCODE)
"-- Building net7.0 win-x86"
dotnet publish .\src\gsudo\gsudo.csproj -c Release -o .\artifacts\x86 -f net7.0 -r win-x86 --sc -p:PublishReadyToRun=true -p:PublishSingleFile=true -v minimal -p:WarningLevel=0 || $(exit $LASTEXITCODE)
"-- Building net7.0 win-x64"
dotnet publish .\src\gsudo\gsudo.csproj -c Release -o .\artifacts\x64 -f net7.0 -r win-x64 --sc -p:PublishAot=true -p:IlcOptimizationPreference=Size || $(exit $LASTEXITCODE)

cp .\src\gsudo.Wrappers\* .\artifacts\x86
Expand Down

0 comments on commit a9d93ac

Please sign in to comment.