roketto-launch/build.bat
Ray 7b73a8098b Changed to update nupkg
Changed folder structure
Added readme
2026-07-07 14:01:21 +01:00

15 lines
535 B
Batchfile

rmdir /s /q "bin\"
rmdir /s /q "source\bin\"
rmdir /s /q "source\obj\"
dotnet restore RokettoLaunch.slnx
dotnet publish RokettoLaunch.slnx -r win-x64 -c Release /p:PublishSingleFile=true /p:SelfContained=false /p:PublishReadyToRunfalse=true /p:PublishDir="..\bin\"
"C:\B\Portable Files (dev)\Inno Setup\v6.0.4-2\app\ISCC.exe" "build-installer.iss"
"C:\B\Portable Files\7-Zip (Portable)\26.02\App\7-Zip64\7z.exe" a -t7z "bin\rokettolaunch.7z" ".\bin\rokettolaunch.exe" -mx9
rmdir /s /q "source\bin\"
rmdir /s /q "source\obj\"
PAUSE