build.bat 471 B

12345678910111213141516
  1. :DebugLinux64
  2. SET RETURN=DebugLinux64
  3. SET NEXT=ReleaseLinux64
  4. "%InstallDir%\%MSBuildExe%" "Shop Server.sln" /t:rebuild /p:configuration=debug /p:platform=x64
  5. if errorlevel 1 GOTO Error
  6. :ReleaseLinux64
  7. SET RETURN=ReleaseLinux64
  8. SET NEXT=End
  9. "%InstallDir%\%MSBuildExe%" "Shop Server.sln" /t:rebuild /p:configuration=release /p:platform=x64
  10. if errorlevel 1 GOTO Error
  11. GOTO End
  12. :Error
  13. SET /p redo=Nochmal versuchen?(j/n):
  14. IF /I '%redo%' equ 'j' GOTO %RETURN%
  15. GOTO %NEXT%
  16. :End