Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Grunke <toddgrun@microsoft.com>2017-09-08 01:48:18 +0300
committerGitHub <noreply@github.com>2017-09-08 01:48:18 +0300
commitb6eb6529ff14265f7c54e38b738f8d723da378b2 (patch)
tree0f46fbab7b05dbbefe8e6c8ecced186a366aad7a /main/winbuild.bat
parent9423c5b05f4d608e167fa7c8e7261179b0a1187c (diff)
Dev/toddgrun/master less and sass support (#3003)
* Cherry pick c0d8c40ca0ffd9b0bd207c585cd5b5529f9de8b5 from master-roslyncompletion * Change mimetype names for less/scss to not conflict with that defined in the old web addin
Diffstat (limited to 'main/winbuild.bat')
-rw-r--r--main/winbuild.bat3
1 files changed, 3 insertions, 0 deletions
diff --git a/main/winbuild.bat b/main/winbuild.bat
index ba0614cfd8..5b7ea9e1b8 100644
--- a/main/winbuild.bat
+++ b/main/winbuild.bat
@@ -11,6 +11,9 @@ FOR %%E in (Enterprise, Professional, Community) DO (
REM Couldn't be located in the standard locations, expand search
FOR /F "delims=" %%E IN ('dir /b /ad "%ProgramFiles(x86)%\Microsoft Visual Studio\"') DO (
+ set "MSBUILD_EXE=%ProgramFiles(x86)%\Microsoft Visual Studio\%%E\MSBuild\15.0\Bin\MSBuild.exe"
+ if exist "!MSBUILD_EXE!" goto :build
+
FOR /F "delims=" %%F IN ('dir /b /ad "%ProgramFiles(x86)%\Microsoft Visual Studio\%%E"') DO (
set "MSBUILD_EXE=%ProgramFiles(x86)%\Microsoft Visual Studio\%%E\%%F\MSBuild\15.0\Bin\MSBuild.exe"
if exist "!MSBUILD_EXE!" goto :build