-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed build. vsSolutionBuildEvent up to 1.16
+netmsb.bat replaced by modern hMSBuild.bat
- Loading branch information
Showing
9 changed files
with
547 additions
and
64 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="vsSolutionBuildEvent" version="1.14.0" output="vsSolutionBuildEvent" /> | ||
<package id="vsSolutionBuildEvent" version="1.16.0" output="vsSolutionBuildEvent" /> | ||
</packages> |
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 @@ | ||
@echo off & build # & packages\vsSolutionBuildEvent\GUI |
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 |
---|---|---|
@@ -1,19 +1,12 @@ | ||
@echo off | ||
|
||
set reltype=%1 | ||
set msbuild=.\netmsb | ||
set cim=packages\vsSolutionBuildEvent\cim.cmd | ||
|
||
if "%reltype%"=="" ( | ||
set reltype=Release | ||
call .tools\hMSBuild -GetNuTool /p:wpath="%cd%" /p:ngconfig=".tools\packages.config" /nologo /v:m /m:7 & ( | ||
if [%~1]==[#] exit /B 0 | ||
) | ||
|
||
call %msbuild% logic.targets /p:ngconfig="packages.config" /nologo /v:m /m:4 || goto err | ||
call %cim% "gnt.sln" /v:m /m:4 /p:Configuration="%reltype%" /p:Platform="Any CPU" || goto err | ||
|
||
exit /B 0 | ||
|
||
:err | ||
|
||
echo. Build failed. 1>&2 | ||
exit /B 1 | ||
set "reltype=%~1" & if not defined reltype set reltype=Release | ||
call packages\vsSolutionBuildEvent\cim.cmd /v:m /m:7 /p:Configuration=%reltype% || ( | ||
echo. Failed 1>&2 | ||
exit /B 1 | ||
) | ||
exit /B 0 |
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
This file was deleted.
Oops, something went wrong.