(61d00a474) v0.9.7.1
This commit is contained in:
10
Deploy/Linux/DeployLinux.sh
Normal file
10
Deploy/Linux/DeployLinux.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd ../../Barotrauma
|
||||
|
||||
cd BarotraumaClient
|
||||
dotnet publish LinuxClient.csproj -c Release -clp:"ErrorsOnly;Summary" --self-contained -r linux-x64 \/p:Platform="x64"
|
||||
|
||||
cd ..
|
||||
cd BarotraumaServer
|
||||
dotnet publish LinuxServer.csproj -c Release -clp:"ErrorsOnly;Summary" --self-contained -r linux-x64 \/p:Platform="x64"
|
||||
10
Deploy/Linux/DeployLinuxUnstable.sh
Normal file
10
Deploy/Linux/DeployLinuxUnstable.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd ../../Barotrauma
|
||||
|
||||
cd BarotraumaClient
|
||||
dotnet publish LinuxClient.csproj -c Unstable -clp:"ErrorsOnly;Summary" --self-contained -r linux-x64 \/p:Platform="x64"
|
||||
|
||||
cd ..
|
||||
cd BarotraumaServer
|
||||
dotnet publish LinuxServer.csproj -c Unstable -clp:ErrorsOnly;Summary" --self-contained -r linux-x64 \/p:Platform="x64"
|
||||
10
Deploy/Linux/DeployMac.sh
Normal file
10
Deploy/Linux/DeployMac.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd ../../Barotrauma
|
||||
|
||||
cd BarotraumaClient
|
||||
dotnet publish MacClient.csproj -c Release -clp:"ErrorsOnly;Summary" --self-contained -r osx-x64 \/p:Platform="x64"
|
||||
|
||||
cd ..
|
||||
cd BarotraumaServer
|
||||
dotnet publish MacServer.csproj -c Release -clp:"ErrorsOnly;Summary" --self-contained -r osx-x64 \/p:Platform="x64"
|
||||
10
Deploy/Linux/DeployMacUnstable.sh
Normal file
10
Deploy/Linux/DeployMacUnstable.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd ../../Barotrauma
|
||||
|
||||
cd BarotraumaClient
|
||||
dotnet publish MacClient.csproj -c Unstable -clp:"ErrorsOnly;Summary" --self-contained -r osx-x64 \/p:Platform="x64"
|
||||
|
||||
cd ..
|
||||
cd BarotraumaServer
|
||||
dotnet publish MacServer.csproj -c Unstable -clp:"ErrorsOnly;Summary" --self-contained -r osx-x64 \/p:Platform="x64"
|
||||
10
Deploy/Linux/DeployWindows.sh
Normal file
10
Deploy/Linux/DeployWindows.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd ../../Barotrauma
|
||||
|
||||
cd BarotraumaClient
|
||||
dotnet publish WindowsClient.csproj -c Release -clp:"ErrorsOnly;Summary" --self-contained -r win-x64 \/p:Platform="x64"
|
||||
|
||||
cd ..
|
||||
cd BarotraumaServer
|
||||
dotnet publish WindowsServer.csproj -c Release -clp:"ErrorsOnly;Summary" --self-contained -r win-x64 \/p:Platform="x64"
|
||||
10
Deploy/Linux/DeployWindowsUnstable.sh
Normal file
10
Deploy/Linux/DeployWindowsUnstable.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd ../../Barotrauma
|
||||
|
||||
cd BarotraumaClient
|
||||
dotnet publish WindowsClient.csproj -c Unstable -clp:"ErrorsOnly;Summary" --self-contained -r win-x64 \/p:Platform="x64"
|
||||
|
||||
cd ..
|
||||
cd BarotraumaServer
|
||||
dotnet publish WindowsServer.csproj -c Unstable -clp:"ErrorsOnly;Summary" --self-contained -r win-x64 \/p:Platform="x64"
|
||||
12
Deploy/Windows/DeployLinux.bat
Normal file
12
Deploy/Windows/DeployLinux.bat
Normal file
@@ -0,0 +1,12 @@
|
||||
@ECHO OFF
|
||||
|
||||
cd ../../Barotrauma
|
||||
|
||||
cd BarotraumaClient
|
||||
dotnet publish LinuxClient.csproj -c Release -clp:ErrorsOnly;Summary --self-contained -r linux-x64 /p:Platform=x64
|
||||
|
||||
cd ..
|
||||
cd BarotraumaServer
|
||||
dotnet publish LinuxServer.csproj -c Release -clp:ErrorsOnly;Summary --self-contained -r linux-x64 /p:Platform=x64
|
||||
|
||||
PAUSE
|
||||
12
Deploy/Windows/DeployLinuxUnstable.bat
Normal file
12
Deploy/Windows/DeployLinuxUnstable.bat
Normal file
@@ -0,0 +1,12 @@
|
||||
@ECHO OFF
|
||||
|
||||
cd ../../Barotrauma
|
||||
|
||||
cd BarotraumaClient
|
||||
dotnet publish LinuxClient.csproj -c Unstable -clp:ErrorsOnly;Summary --self-contained -r linux-x64 /p:Platform=x64
|
||||
|
||||
cd ..
|
||||
cd BarotraumaServer
|
||||
dotnet publish LinuxServer.csproj -c Unstable -clp:ErrorsOnly;Summary --self-contained -r linux-x64 /p:Platform=x64
|
||||
|
||||
PAUSE
|
||||
12
Deploy/Windows/DeployMac.bat
Normal file
12
Deploy/Windows/DeployMac.bat
Normal file
@@ -0,0 +1,12 @@
|
||||
@ECHO OFF
|
||||
|
||||
cd ../../Barotrauma
|
||||
|
||||
cd BarotraumaClient
|
||||
dotnet publish MacClient.csproj -c Release -clp:ErrorsOnly;Summary --self-contained -r osx-x64 /p:Platform=x64
|
||||
|
||||
cd ..
|
||||
cd BarotraumaServer
|
||||
dotnet publish MacServer.csproj -c Release -clp:ErrorsOnly;Summary --self-contained -r osx-x64 /p:Platform=x64
|
||||
|
||||
PAUSE
|
||||
12
Deploy/Windows/DeployMacUnstable.bat
Normal file
12
Deploy/Windows/DeployMacUnstable.bat
Normal file
@@ -0,0 +1,12 @@
|
||||
@ECHO OFF
|
||||
|
||||
cd ../../Barotrauma
|
||||
|
||||
cd BarotraumaClient
|
||||
dotnet publish MacClient.csproj -c Unstable -clp:ErrorsOnly;Summary --self-contained -r osx-x64 /p:Platform=x64
|
||||
|
||||
cd ..
|
||||
cd BarotraumaServer
|
||||
dotnet publish MacServer.csproj -c Unstable -clp:ErrorsOnly;Summary --self-contained -r osx-x64 /p:Platform=x64
|
||||
|
||||
PAUSE
|
||||
12
Deploy/Windows/DeployWindows.bat
Normal file
12
Deploy/Windows/DeployWindows.bat
Normal file
@@ -0,0 +1,12 @@
|
||||
@ECHO OFF
|
||||
|
||||
cd ../../Barotrauma
|
||||
|
||||
cd BarotraumaClient
|
||||
dotnet publish WindowsClient.csproj -c Release -clp:ErrorsOnly;Summary --self-contained -r win-x64 /p:Platform=x64
|
||||
|
||||
cd ..
|
||||
cd BarotraumaServer
|
||||
dotnet publish WindowsServer.csproj -c Release -clp:ErrorsOnly;Summary --self-contained -r win-x64 /p:Platform=x64
|
||||
|
||||
PAUSE
|
||||
12
Deploy/Windows/DeployWindowsUnstable.bat
Normal file
12
Deploy/Windows/DeployWindowsUnstable.bat
Normal file
@@ -0,0 +1,12 @@
|
||||
@ECHO OFF
|
||||
|
||||
cd ../../Barotrauma
|
||||
|
||||
cd BarotraumaClient
|
||||
dotnet publish WindowsClient.csproj -c Unstable -clp:ErrorsOnly;Summary --self-contained -r win-x64 /p:Platform=x64
|
||||
|
||||
cd ..
|
||||
cd BarotraumaServer
|
||||
dotnet publish WindowsServer.csproj -c Unstable -clp:ErrorsOnly;Summary --self-contained -r win-x64 /p:Platform=x64
|
||||
|
||||
PAUSE
|
||||
Reference in New Issue
Block a user