You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- @ECHO OFF
- CD %~dp0
- dotnet publish "../../Logic/Server/Server.csproj" -c Release -r linux-x64 --self-contained true
- dotnet publish "../../Logic/Server/Server.csproj" -c Release -r win-x64 --self-contained true
- dotnet publish "../../Logic/Server/Server.csproj" -c Debug -r win-x64 --self-contained true
- dotnet publish "../../Logic/Server/Server.csproj" -c Debug -r linux-x64 --self-contained true
- dotnet publish "../../Logic/Client/Client.csproj" -c Release -r win-x64 --self-contained true
- PAUSE
|