Fixing that ClickToBuild couldn't find VS 2017's MSBuild

This commit is contained in:
Lombiq 2018-01-12 00:20:22 +01:00 committed by Zoltán Lehóczky
parent 9839ceca69
commit 5753a7cacc

View File

@ -1,11 +1,15 @@
@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 (
if /i "%%i"=="installationPath" (
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"
set msbuild="%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe"
set msbuild="!InstallDir!\MSBuild\15.0\Bin\MSBuild.exe"
goto build
)
)