This is an automated email from the ASF dual-hosted git repository.
brodybits pushed a commit to branch brodybits-uwp-only-test-wip0101
in repository https://gitbox.apache.org/repos/asf/cordova-windows.git
The following commit(s) were added to
refs/heads/brodybits-uwp-only-test-wip0101 by this push:
new ea4baea Remove support for VS 14 (Visual Studio 2015)
ea4baea is described below
commit ea4baeaba0417729300dd338bca9bb40a4c0e2ff
Author: Christopher J. Brody <[email protected]>
AuthorDate: Sun Dec 22 14:05:58 2019 -0500
Remove support for VS 14 (Visual Studio 2015)
and update a comment regarding the Visual Studio build tooling
---
template/cordova/lib/MSBuildTools.js | 9 ++-------
1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/template/cordova/lib/MSBuildTools.js
b/template/cordova/lib/MSBuildTools.js
index 535d99c..4c09563 100644
--- a/template/cordova/lib/MSBuildTools.js
+++ b/template/cordova/lib/MSBuildTools.js
@@ -260,12 +260,8 @@ var projFiles = {
win10: 'CordovaApp.Windows10.jsproj'
};
-// TODO: Fix this so that it outlines supported versions based on version
criteria:
-// - v14: Windows 8.1, Windows 10
-// - v12: Windows 8.1
-function msBuild14TargetsFilter (target) {
- return target === projFiles.win || target === projFiles.phone || target
=== projFiles.win10;
-}
+// NOTE: build tools starting with v15 target Windows 10
+// (UWP for Windows 10 desktop and mobile) only.
function msBuild15TargetsFilter (target) {
return target === projFiles.win || target === projFiles.phone || target
=== projFiles.win10;
@@ -283,7 +279,6 @@ function filterSupportedTargets (targets, msbuild) {
}
var targetFilters = {
- '14.0': msBuild14TargetsFilter,
'15.x': msBuild15TargetsFilter,
'15.5': msBuild155TargetsFilter,
get: function (version) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]