CB-13870 change default from UAP to 10.0 (#253)

diff --git a/template/cordova/lib/ConfigParser.js b/template/cordova/lib/ConfigParser.js
index bd2cb7f..e80521c 100644
--- a/template/cordova/lib/ConfigParser.js
+++ b/template/cordova/lib/ConfigParser.js
@@ -71,7 +71,7 @@
 WindowsConfigParser.prototype.getWindowsTargetVersion = function () {
     var preference = this.getPreference('windows-target-version');
 
-    if (!preference) { preference = 'UAP'; } // default is UAP
+    if (!preference) { preference = '10.0'; }
 
     return preference;
 };