-
Notifications
You must be signed in to change notification settings - Fork 716
Closed
Description
Visual Studio '15' Preview is now publicitly available and we'd like to make sure that building apps using this plugin will work with VS15 just out of the box. However as of now the plugin requires VS 2015 to be installed as it specifies <PlatformToolset>v140</PlatformToolset>
in SQLite3.UWP.vcxproj and will not build from VS15 which ships with toolset v141
So, to support VS15 I propose to:
- bump toolset version in SQLite C++ project
- to make sure that the users of previous versions of VS are not broken, ensure that the version of the plugin with updated toolset specifies new requirement
"cordova-windows": ">=4.4.1"
inpackage.json
(see more about plugin requirements here: Specifying Cordova dependencies).
The support for build with VS 2015 then might be moved to Cordova-sqlite-legacy-build-support (just as in #579) so users would still be able to build the plugin with previous version of VS.