Skip to content
This repository was archived by the owner on Jul 12, 2022. It is now read-only.

Commit 0b41a1d

Browse files
author
Immo Landwerth
committed
Rename variable to not include the VS version
This minimizes the number of changes when the tool has to target a higher version of Visual Studio. Besides, it doesn't actually point to Visual Studio per-se.
1 parent a14d18f commit 0b41a1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ SETLOCAL
44

55
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
66
SET SOLUTION_PATH=%~dp0src\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% (
9+
IF NOT EXIST %BUILD_TOOLS_PATH% (
1010
echo In order to build or run this tool you need either Visual Studio 2015 Preview or
1111
echo Microsoft Build Tools 2015 Preview tools installed.
1212
echo.

0 commit comments

Comments
 (0)