This repository was archived by the owner on Jul 12, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,16 @@ SETLOCAL
44
55SET CACHED_NUGET = %LocalAppData% \NuGet\NuGet.exe
66SET SOLUTION_PATH = %~dp0 src\CodeFormatter.sln
7- SET VS2015_BUILD_TOOLS_PATH = " %ProgramFiles(x86)% \MSBuild\14.0\bin\MSBuild.exe"
7+ SET BUILD_TOOLS_PATH = " %ProgramFiles(x86)% \MSBuild\14.0\bin\MSBuild.exe"
88
9- IF NOT EXIST %VS2015_BUILD_TOOLS_PATH% (
10- echo In order to build or run this tool you need either Visual Studio 2015 Preview or
11- echo Microsoft Build Tools 2015 Preview tools installed.
9+ IF NOT EXIST %BUILD_TOOLS_PATH% (
10+ echo In order to build or run this tool you need either Visual Studio 2015 or
11+ echo Microsoft Build Tools 2015 tools installed.
12+ echo .
13+ echo Visit this page to download either:
14+ echo .
15+ echo http://www.visualstudio.com/en-us/downloads/visual-studio-2015-downloads-vs
1216 echo .
13- echo Visit http://www.visualstudio.com/en-us/downloads/visual-studio-2015-downloads-vs
14- echo to download either.
1517 goto :eof
1618)
1719
@@ -26,4 +28,4 @@ IF EXIST "%~dp0src\packages" goto build
2628
2729:build
2830
29- " %ProgramFiles(x86)% \MSBuild\14.0\bin\MSBuild.exe " %SOLUTION_PATH% /p:OutDir=" %~dp0 bin " /nologo /m /v:m /flp:verbosity=normal %*
31+ %BUILD_TOOLS_PATH% %SOLUTION_PATH% /p:OutDir=" %~dp0 bin " /nologo /m /v:m /flp:verbosity=normal %*
You can’t perform that action at this time.
0 commit comments