This repository has been archived on 2024-08-06. You can view files and clone it, but cannot push or open issues or pull requests.
linear-app-launcher/build.bat

17 lines
507 B
Batchfile
Raw Permalink Normal View History

2024-07-06 15:30:37 +00:00
RMDIR /s /q "bin\"
RMDIR /s /q "obj\"
MKDIR bin
2024-07-06 15:30:37 +00:00
dotnet restore skye.sln
dotnet publish skye.sln -r win-x64 -c Release /p:PublishSingleFile=true /p:SelfContained=false /p:PublishReadyToRunfalse=true /p:PublishDir="bin\"
2022-12-29 16:11:47 +00:00
"C:\B\Portable Files (dev)\Inno Setup\v6.0.4-2\app\ISCC.exe" "build-installer.iss"
2024-07-06 15:30:37 +00:00
"C:\B\Portable Files\7-Zip (Portable)\23.01\App\7-Zip64\7z.exe" a -t7z "bin\rokettolaunch.7z" ".\bin\rokettolaunch.exe" -mx9
RMDIR /s /q "bin\debug"
RMDIR /s /q "bin\release"
RMDIR /s /q "obj\"
2024-07-05 23:30:02 +00:00
PAUSE