| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- ::-------------------------------------------------------------------------------------------------------
- :: Copyright (C) Microsoft. All rights reserved.
- :: Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- ::-------------------------------------------------------------------------------------------------------
- @echo off
- if not "%JENKINS_BUILD%" == "True" (
- echo This script should be run under a Jenkins Build environment
- exit /b 2
- )
- set REPO_ROOT=%~dp0\..
- set JENKINS_BUILD_ARGS=
- set JENKINS_USE_MSBUILD_12=
- :ContinueArgParse
- if not [%1]==[] (
- if [%1]==[msbuild12] (
- set JENKINS_USE_MSBUILD_12=True
- goto :ContinueArgParseEnd
- )
- :: DEFAULT - add any other params to %JENKINS_BUILD_ARGS%
- if [%1] NEQ [] (
- set JENKINS_BUILD_ARGS=%JENKINS_BUILD_ARGS% %1
- goto :ContinueArgParseEnd
- )
- :ContinueArgParseEnd
- shift
- goto :ContinueArgParse
- )
- :: ========================================
- :: Set up msbuild.exe
- :: ========================================
- if "%JENKINS_USE_MSBUILD_12%" == "True" (
- echo Skipping Dev14 and trying Dev12...
- goto :LABEL_USE_MSBUILD_12
- )
- where /q msbuild.exe
- IF "%ERRORLEVEL%" == "0" (
- goto :SkipMsBuildSetup
- )
- REM Try Dev14 first
- set MSBUILD_VERSION=14.0
- set MSBUILD_PATH="%ProgramFiles%\msbuild\%MSBUILD_VERSION%\Bin\x86"
- if not exist %MSBUILD_PATH%\msbuild.exe (
- set MSBUILD_PATH="%ProgramFiles(x86)%\msbuild\%MSBUILD_VERSION%\Bin"
- )
- if not exist %MSBUILD_PATH%\msbuild.exe (
- set MSBUILD_PATH="%ProgramFiles(x86)%\msbuild\%MSBUILD_VERSION%\Bin\amd64"
- )
- if exist %MSBUILD_PATH%\msbuild.exe (
- goto :MSBuildFound
- )
- echo Dev14 not found, trying Dev %MSBUILD_VERSION%
- :LABEL_USE_MSBUILD_12
- set MSBUILD_VERSION=12.0
- set MSBUILD_PATH="%ProgramFiles%\msbuild\%MSBUILD_VERSION%\Bin\x86"
- if not exist %MSBUILD_PATH%\msbuild.exe (
- set MSBUILD_PATH="%ProgramFiles(x86)%\msbuild\%MSBUILD_VERSION%\Bin"
- )
- if not exist %MSBUILD_PATH%\msbuild.exe (
- set MSBUILD_PATH="%ProgramFiles(x86)%\msbuild\%MSBUILD_VERSION%\Bin\amd64"
- )
- if not exist %MSBUILD_PATH%\msbuild.exe (
- echo Can't find msbuild.exe in %MSBUILD_PATH%
- goto :SkipMsBuildSetup
- )
- :MSBuildFound
- echo MSBuild located at %MSBUILD_PATH%
- set PATH=%MSBUILD_PATH%;%PATH%
- set JENKINS_USE_MSBUILD_12=
- set MSBUILD_PATH=
- :SkipMsBuildSetup
|