We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81f904e commit daf5975Copy full SHA for daf5975
build/build.cmd
@@ -6,13 +6,13 @@ set MSBUILD_HOME=%WINDIR%\Microsoft.NET\Framework\v4.0.30319
6
rem MSBuild project file is located in the same directory as the current script
7
set MSBUILD_PROJECT=%~dp0\build.proj
8
9
-set MSBUILD_EXE=%MSBUILD_HOME%\msbuild.exe
+set MSBUILD_EXE="%MSBUILD_HOME%\msbuild.exe"
10
11
rem verify whether the version of MSBuild that we need is installed
12
if not exist %MSBUILD_EXE% goto msbuild_missing
13
14
rem launch the build script
15
-call %MSBUILD_HOME%\msbuild.exe %MSBUILD_PROJECT% /verbosity:minimal /nologo
+call %MSBUILD_EXE% %MSBUILD_PROJECT% /verbosity:minimal /nologo
16
if errorlevel 1 goto msbuild_failure
17
goto :EOF
18
0 commit comments