Skip to content

Commit

Permalink
Update publish script to publish single files
Browse files Browse the repository at this point in the history
  • Loading branch information
aevitas committed Apr 17, 2020
1 parent b7b68bc commit a8bfc9a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions publish.ps1
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dotnet publish ./Patcher.sln -o="./publish/win-x64" -f="netcoreapp3.1" --runtime win-x64
dotnet publish ./Patcher.sln -o="./publish/osx-64" -f="netcoreapp3.1" --runtime osx-x64
dotnet publish ./Patcher.sln -o="./publish/linux-x64" -f="netcoreapp3.1" --runtime linux-x64
dotnet publish ./Patcher.sln -o="./publish/win-x64" -f="netcoreapp3.1" -p:PublishSingleFile=true -c=Release --runtime win-x64
dotnet publish ./Patcher.sln -o="./publish/osx-64" -f="netcoreapp3.1" -p:PublishSingleFile=true -c=Release --runtime osx-x64
dotnet publish ./Patcher.sln -o="./publish/linux-x64" -f="netcoreapp3.1" -p:PublishSingleFile=true -c=Release --runtime linux-x64

0 comments on commit a8bfc9a

Please sign in to comment.