Orchard.proj and ClickToBuild.cmd: Adding additional parameter to build using a custom solution. Fixes #6627

This commit is contained in:
Lombiq
2016-03-25 15:06:39 +01:00
committed by Benedek Farkas
parent 9f4b842df2
commit ede741b9df
2 changed files with 17 additions and 13 deletions

View File

@@ -23,13 +23,14 @@ echo "Unable to detect suitable environment. Build may not succeed."
SET target=%1
SET project=%2
SET solution=%3
IF "%target%" == "" SET target=Build
IF "%project%" =="" SET project=Orchard.proj
IF "%project%" == "" SET project=Orchard.proj
IF "%solution%" == "" SET solution=src\Orchard.sln
lib\nuget\nuget.exe restore .\src\Orchard.sln
lib\nuget\nuget.exe restore %solution%
msbuild /t:%target% %project%
pause
msbuild /t:%target% %project% /p:Solution=%solution%
pause