-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.bat
More file actions
21 lines (17 loc) · 986 Bytes
/
Copy pathbuild.bat
File metadata and controls
21 lines (17 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
dotnet restore
dotnet build UndertaleRusInstallerGUI.Desktop
dotnet publish UndertaleRusInstallerGUI.Desktop -c Release -r win-x86 --self-contained true -p:PublishSingleFile=true -p:PublishTrimmed=true --output win_x86
dotnet publish UndertaleRusInstallerGUI.Desktop -c Release -r osx-x64 --self-contained true -p:PublishSingleFile=true -p:PublishTrimmed=true --output "osx_x64\UndertaleRusInstaller.app\Contents\MacOS"
dotnet publish UndertaleRusInstallerGUI.Desktop -c Release -r linux-x64 --self-contained true -p:PublishSingleFile=true -p:PublishTrimmed=true --output linux_x64
cd win_x86
del UndertaleRusInstaller.exe
rename UndertaleRusInstallerGUI.Desktop.exe UndertaleRusInstaller.exe
cd ..
cd "osx_x64\UndertaleRusInstaller.app\Contents\MacOS"
del UndertaleRusInstaller
rename UndertaleRusInstallerGUI.Desktop UndertaleRusInstaller
cd ..\..\..\..
cd linux_x64
del UndertaleRusInstaller
rename UndertaleRusInstallerGUI.Desktop UndertaleRusInstaller
pause