1
0
mirror of synced 2024-11-23 23:21:06 +01:00

Add build shell scripts for osx and linux

This commit is contained in:
0auBSQ 2023-10-28 21:22:12 +09:00
parent e5807104f1
commit 241af47ec9
3 changed files with 3 additions and 0 deletions

1
build-linux-x64.sh Normal file
View File

@ -0,0 +1 @@
dotnet publish OpenTaiko/OpenTaiko.csproj --configuration Release -p:PublishSingleFile=true --self-contained true --runtime linux-x64

1
build-osx-x64.sh Normal file
View File

@ -0,0 +1 @@
dotnet publish OpenTaiko/OpenTaiko.csproj --configuration Release -p:PublishSingleFile=true --self-contained true --runtime osx-x64

1
install-dotnet-sdk.sh Normal file
View File

@ -0,0 +1 @@
sudo apt install dotnet-sdk-7.0