mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
Fixing that ClickToBuild couldn't find VS 2017's MSBuild
This commit is contained in:
parent
9839ceca69
commit
5753a7cacc
@ -1,11 +1,15 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
|
REM Necessary for the InstallDir variable to work inside the MsBuild-finding loop below.
|
||||||
|
SETLOCAL ENABLEDELAYEDEXPANSION
|
||||||
|
|
||||||
for /f "usebackq tokens=1* delims=: " %%i in (`lib\vswhere\vswhere -latest -version "[15.0,16.0)" -requires Microsoft.Component.MSBuild`) do (
|
for /f "usebackq tokens=1* delims=: " %%i in (`lib\vswhere\vswhere -latest -version "[15.0,16.0)" -requires Microsoft.Component.MSBuild`) do (
|
||||||
if /i "%%i"=="installationPath" (
|
if /i "%%i"=="installationPath" (
|
||||||
set InstallDir=%%j
|
set InstallDir=%%j
|
||||||
if exist "%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe" (
|
echo !InstallDir!
|
||||||
|
if exist "!InstallDir!\MSBuild\15.0\Bin\MSBuild.exe" (
|
||||||
echo "Using MSBuild from Visual Studio 2017"
|
echo "Using MSBuild from Visual Studio 2017"
|
||||||
set msbuild="%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe"
|
set msbuild="!InstallDir!\MSBuild\15.0\Bin\MSBuild.exe"
|
||||||
goto build
|
goto build
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user