mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
9 lines
No EOL
316 B
Batchfile
9 lines
No EOL
316 B
Batchfile
@echo off
|
|
|
|
rmdir /s /q publish
|
|
|
|
cd src
|
|
dotnet publish SourceGit.csproj --nologo -c Release -r win-x64 -f net6.0-windows -p:PublishSingleFile=true --no-self-contained -o ..\publish
|
|
dotnet publish SourceGit.csproj --nologo -c Release -r win-x64 -f net6.0-windows --self-contained -o ..\publish\SourceGit
|
|
|
|
cd .. |