From bf9bcd74b9623e26341433fe54aa82cbe3801bb7 Mon Sep 17 00:00:00 2001 From: Christoph Wille Date: Thu, 19 May 2016 09:37:32 +0200 Subject: [PATCH] Update all batch files to use MSBuild 14 --- BuildTools/buildAndCreatePackage.bat | 2 +- debugbuild.bat | 2 +- releasebuild.bat | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BuildTools/buildAndCreatePackage.bat b/BuildTools/buildAndCreatePackage.bat index 3624a6f0c..e5974726b 100644 --- a/BuildTools/buildAndCreatePackage.bat +++ b/BuildTools/buildAndCreatePackage.bat @@ -1,6 +1,6 @@ @echo This script simulates what the build server is doing @rem /p:AdditionalBuildProperties="/v:d /p:MSBuildTargetsVerbose=true" -%windir%\microsoft.net\framework\v4.0.30319\msbuild Automated.proj /p:ArtefactsOutputDir="%CD%\build" /p:TestReportsDir="%CD%\build" +"%ProgramFiles(x86)%\MSBuild\14.0\Bin\msbuild.exe" Automated.proj /p:ArtefactsOutputDir="%CD%\build" /p:TestReportsDir="%CD%\build" @IF %ERRORLEVEL% NEQ 0 GOTO err @exit /B 0 :err diff --git a/debugbuild.bat b/debugbuild.bat index 1dfe9ceca..9227bc776 100644 --- a/debugbuild.bat +++ b/debugbuild.bat @@ -1,7 +1,7 @@ @if not exist "AvalonEdit\ICSharpCode.AvalonEdit.sln" ( git submodule update --init || exit /b 1 ) -%windir%\microsoft.net\framework\v4.0.30319\msbuild /m ILSpy.sln /p:Configuration=Debug "/p:Platform=Any CPU" +"%ProgramFiles(x86)%\MSBuild\14.0\Bin\msbuild.exe" /m ILSpy.sln /p:Configuration=Debug "/p:Platform=Any CPU" @IF %ERRORLEVEL% NEQ 0 GOTO err @exit /B 0 :err diff --git a/releasebuild.bat b/releasebuild.bat index 11f863dab..57d174305 100644 --- a/releasebuild.bat +++ b/releasebuild.bat @@ -1,7 +1,7 @@ @if not exist "AvalonEdit\ICSharpCode.AvalonEdit.sln" ( git submodule update --init || exit /b 1 ) -%windir%\microsoft.net\framework\v4.0.30319\msbuild /m ILSpy.sln /p:Configuration=Release "/p:Platform=Any CPU" +"%ProgramFiles(x86)%\MSBuild\14.0\Bin\msbuild.exe" /m ILSpy.sln /p:Configuration=Release "/p:Platform=Any CPU" @IF %ERRORLEVEL% NEQ 0 GOTO err @exit /B 0 :err