This repository was archived by the owner on Jul 12, 2022. It is now read-only.
File tree 1 file changed +9
-7
lines changed
1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,16 @@ SETLOCAL
4
4
5
5
SET CACHED_NUGET = %LocalAppData% \NuGet\NuGet.exe
6
6
SET 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"
8
8
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
12
16
echo .
13
- echo Visit http://www.visualstudio.com/en-us/downloads/visual-studio-2015-downloads-vs
14
- echo to download either.
15
17
goto :eof
16
18
)
17
19
@@ -26,4 +28,4 @@ IF EXIST "%~dp0src\packages" goto build
26
28
27
29
:build
28
30
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