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 34bf721 Remove support for super-old VS13
34bf721 is described below
commit 34bf72107ae060b2c0d19ee5ceca3c6881dcde39
Author: Christopher J. Brody <[email protected]>
AuthorDate: Sun Dec 22 13:59:03 2019 -0500
Remove support for super-old VS13
Co-authored-by: Jan Piotrowski <[email protected]>
Co-authored-by: Christopher J. Brody <[email protected]>
---
template/cordova/lib/MSBuildTools.js | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/template/cordova/lib/MSBuildTools.js
b/template/cordova/lib/MSBuildTools.js
index b522609..535d99c 100644
--- a/template/cordova/lib/MSBuildTools.js
+++ b/template/cordova/lib/MSBuildTools.js
@@ -263,10 +263,6 @@ var projFiles = {
// TODO: Fix this so that it outlines supported versions based on version
criteria:
// - v14: Windows 8.1, Windows 10
// - v12: Windows 8.1
-function msBuild12TargetsFilter (target) {
- return target === projFiles.win || target === projFiles.phone;
-}
-
function msBuild14TargetsFilter (target) {
return target === projFiles.win || target === projFiles.phone || target
=== projFiles.win10;
}
@@ -287,7 +283,6 @@ function filterSupportedTargets (targets, msbuild) {
}
var targetFilters = {
- '12.0': msBuild12TargetsFilter,
'14.0': msBuild14TargetsFilter,
'15.x': msBuild15TargetsFilter,
'15.5': msBuild155TargetsFilter,
@@ -308,8 +303,7 @@ function filterSupportedTargets (targets, msbuild) {
// unsupported targets have been detected
if (supportedTargets.length !== targets.length) {
events.emit('warn', 'Not all desired build targets are compatible with
the current build environment. ' +
- 'Please install Visual Studio 2015 for Windows 8.1 and Windows 10,
' +
- 'or Visual Studio 2013 Update 2 for Windows 8.1.');
+ 'Please install Visual Studio 2017.');
}
return supportedTargets;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]