update bat

This commit is contained in:
milimoe 2024-03-24 14:23:46 +08:00
parent 95526ec3d1
commit 0391f4f045
Signed by: milimoe
GPG Key ID: 05D280912DA6C69E
4 changed files with 18 additions and 1 deletions

View File

@ -1,3 +1,5 @@
@echo off @echo off
call dotnet publish -c Release -r linux-x64 call cd src
call dotnet clean
call dotnet build -c Release -r linux-x64
pause pause

5
build-release-x64.bat Normal file
View File

@ -0,0 +1,5 @@
@echo off
call cd src
call dotnet clean
call dotnet build -c Release -r win-x64
pause

5
publish-linux-x64.bat Normal file
View File

@ -0,0 +1,5 @@
@echo off
call cd src
call dotnet clean
call dotnet publish -c Release -r linux-x64
pause

5
publish-release-x64.bat Normal file
View File

@ -0,0 +1,5 @@
@echo off
call cd src
call dotnet clean
call dotnet publish -c Release -r win-x64
pause