Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- cd /d %~dp0
- git config --global url."https://github.com/".insteadOf git@github.com:
- git clone -b develop --recursive https://github.com/DBCTRADO/TVTest.git
- cd TVTest\src\LibISDB\Projects
- MSBuild LibISDB.sln /target:Build /p:Configuration=Release /p:Platform=x86
- IF %ERRORLEVEL% NEQ 0 GOTO err
- MSBuild LibISDB.sln /target:Build /p:Configuration=Release /p:Platform=x64
- IF %ERRORLEVEL% NEQ 0 GOTO err
- cd ..\..
- MSBuild TVTest.sln /target:Build /p:Configuration=Release /p:Platform=Win32
- IF %ERRORLEVEL% NEQ 0 GOTO err
- MSBuild TVTest.sln /target:Build /p:Configuration=Release /p:Platform=x64
- IF %ERRORLEVEL% NEQ 0 GOTO err
- exit /b 0
- :err
- exit /b 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement