Advertisement
Guest User

TVTest Build Batch

a guest
Jan 31st, 2019
1,908
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.67 KB | None | 0 0
  1. @echo off
  2.  
  3. cd /d %~dp0
  4.  
  5. git config --global url."https://github.com/".insteadOf git@github.com:
  6. git clone -b develop --recursive https://github.com/DBCTRADO/TVTest.git
  7.  
  8. cd TVTest\src\LibISDB\Projects
  9. MSBuild LibISDB.sln /target:Build /p:Configuration=Release /p:Platform=x86
  10. IF %ERRORLEVEL% NEQ 0 GOTO err
  11. MSBuild LibISDB.sln /target:Build /p:Configuration=Release /p:Platform=x64
  12. IF %ERRORLEVEL% NEQ 0 GOTO err
  13.  
  14. cd ..\..
  15. MSBuild TVTest.sln /target:Build /p:Configuration=Release /p:Platform=Win32
  16. IF %ERRORLEVEL% NEQ 0 GOTO err
  17. MSBuild TVTest.sln /target:Build /p:Configuration=Release /p:Platform=x64
  18. IF %ERRORLEVEL% NEQ 0 GOTO err
  19.  
  20. exit /b 0
  21.  
  22. :err
  23. exit /b 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement