Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
CB-13237 Default to UAP
Browse files Browse the repository at this point in the history
This addresses an issue when app developers only have VS-2017 which does not include the older tooling.
UWP 'should' be the default going forward anyway.
  • Loading branch information
purplecabbage committed Sep 6, 2017
1 parent ab9837b commit c1dfc77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template/cordova/lib/ConfigParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ WindowsConfigParser.prototype.getMatchingPreferences = function (regexp) {
WindowsConfigParser.prototype.getWindowsTargetVersion = function () {
var preference = this.getPreference('windows-target-version');

if (!preference) { preference = '8.1'; } // default is 8.1.
if (!preference) { preference = 'UAP'; } // default is UAP

return preference;
};
Expand Down

0 comments on commit c1dfc77

Please sign in to comment.