-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added build.bat for CI; +hMSBuild 2.3
- Loading branch information
Showing
4 changed files
with
557 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
@echo off | ||
|
||
set reltype=%~1 | ||
if not defined reltype ( | ||
set reltype=Release | ||
) | ||
set platform="Any CPU" | ||
|
||
echo Restore packages ... | ||
call hMSBuild -t:restore /v:q /m:8 /p:Configuration="%reltype%" /p:Platform=%platform% /nologo || goto err | ||
|
||
echo Build IeXod ... | ||
call hMSBuild IeXod.sln /t:Rebuild /v:m /m:6 /p:Configuration="%reltype%" /p:Platform=%platform% /nologo || goto err | ||
|
||
goto exit | ||
|
||
:err | ||
|
||
echo. Build failed. 1>&2 | ||
exit /B 1 | ||
|
||
:exit | ||
exit /B 0 |
Oops, something went wrong.