-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Up to vsSolutionBuildEvent 1.14.1. +Scripts.GUI if no VS or plugin
- Loading branch information
Showing
6 changed files
with
24 additions
and
213 deletions.
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
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,12 @@ | ||
@echo off | ||
|
||
:: VS IDE plugin: https://github.com/3F/vsSolutionBuildEvent/releases/latest | ||
|
||
call tools\gnt /p:wpath="%cd%" /p:ngconfig="packages.config" /nologo /v:m /m:7 || goto err | ||
call packages\vsSolutionBuildEvent\GUI.bat || goto err | ||
|
||
exit /B 0 | ||
|
||
:err | ||
echo. GUI Failed. Error %ERRORLEVEL%. 1>&2 | ||
exit /B %ERRORLEVEL% |
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,15 @@ | ||
@echo off | ||
|
||
set reltype=%1 | ||
set cim=packages\vsSolutionBuildEvent\cim.cmd | ||
set _gnt=tools\gnt | ||
|
||
if "%reltype%"=="" ( | ||
set reltype=Release | ||
) | ||
set reltype=%1 | ||
if not defined reltype set reltype=Release | ||
|
||
call %_gnt% /p:wpath="%cd%" /p:ngconfig="packages.config" /nologo /v:m /m:4 || goto err | ||
call %cim% "7z.Libs.sln" /v:m /m:4 /p:Configuration="%reltype%" /p:Platform="Any CPU" || goto err | ||
call tools\gnt /p:wpath="%cd%" /p:ngconfig="packages.config" /nologo /v:m /m:7 || goto err | ||
call %cim% /v:m /m:7 /p:Configuration="%reltype%" || goto err | ||
|
||
exit /B 0 | ||
|
||
:err | ||
|
||
echo. Build failed. 1>&2 | ||
exit /B 1 |
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.14.1.1" output="vsSolutionBuildEvent" /> | ||
</packages> |