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.

publish.cmd 495 B

12345678
  1. @ECHO OFF
  2. CD %~dp0
  3. dotnet publish "../../Logic/Server/Server.csproj" -c Release -r linux-x64 --self-contained true
  4. dotnet publish "../../Logic/Server/Server.csproj" -c Release -r win-x64 --self-contained true
  5. dotnet publish "../../Logic/Server/Server.csproj" -c Debug -r win-x64 --self-contained true
  6. dotnet publish "../../Logic/Server/Server.csproj" -c Debug -r linux-x64 --self-contained true
  7. dotnet publish "../../Logic/Client/Client.csproj" -c Release -r win-x64 --self-contained true
  8. PAUSE