mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
8 lines
297 B
Batchfile
8 lines
297 B
Batchfile
|
@echo off
|
||
|
|
||
|
cd src
|
||
|
|
||
|
dotnet publish -c Release -r win-x64 -o ..\publish\selfcontained\ -p:PublishSingleFile=true -p:PublishTrimmed=true -p:TrimMode=link --self-contained=true
|
||
|
dotnet publish -c Release -r win-x64 -o ..\publish\no-selfcontained\ -p:PublishSingleFile=true --self-contained=false
|
||
|
|
||
|
pause
|