Skip to content

Commit

Permalink
Fix new project wizard to look at major version number not revision n…
Browse files Browse the repository at this point in the history
…umber (#33)
  • Loading branch information
spebl authored Sep 13, 2017
1 parent 8115927 commit 2361144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GoogleTestAdapter/NewProjectWizard/WizardImplementation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public void RunStarted(object automationObject,

string versionString;

if (latestSdk.TargetPlatformVersion.Revision >= 10)
if (latestSdk.TargetPlatformVersion.Major >= 10)
{
List<Platform> allPlatformsForLatestSdk = ToolLocationHelper.GetPlatformsForSDK("Windows", latestSdk.TargetPlatformVersion)
.Select(moniker => TryParsePlatformVersion(moniker))
Expand Down

0 comments on commit 2361144

Please sign in to comment.