Skip to content
This repository was archived by the owner on Jun 5, 2019. It is now read-only.

Commit 0ea50d5

Browse files
committed
Merge pull request #126 from cw2/fix-vs14-build-sdk
Fixed VS14 SDK check in build_sdk.cmd (#125)
2 parents cd5f083 + 22982a8 commit 0ea50d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build_sdk.cmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ if "%1" == "-?" goto :ShowUsage
99
if /i "%1" == "/h" goto :ShowUsage
1010
if /i "%1" == "-h" goto :ShowUsage
1111

12-
if /i "%VSSDK120Install%"=="" goto :MissingVSSDK
13-
if NOT EXIST "%VSSDK120Install%" goto :MissingVSSDK
12+
if /i "%VSSDK140Install%"=="" goto :MissingVSSDK
13+
if NOT EXIST "%VSSDK140Install%" goto :MissingVSSDK
1414

1515
SET BUILD_VERSION=%1
1616
if "%BUILD_VERSION%"=="" set BUILD_VERSION=0
@@ -60,5 +60,5 @@ GOTO :EOF
6060
goto :EOF
6161

6262
:MissingVSSDK
63-
@ECHO ERROR: Visual Studio 2013 SDK (VSSDK) was not detected, this SDK is required to build the .NET Micro Framework SDK source code
63+
@ECHO ERROR: Visual Studio 2015 SDK (VSSDK) was not detected, this SDK is required to build the .NET Micro Framework SDK source code
6464
goto :EOF

0 commit comments

Comments
 (0)