Using sqlite-uap-3081101.vsix with RTM version VS2015 and the 1040 SDK for Windows 10 generates the following warnings:
The SDK "SQLite.UAP.2015, version = 3.8.11.1" depends on the following SDKs "Microsoft.VCLibs.AppLocal, version = 14.0" that were not added to the project or could not be found.
This is because the SQLite extension depends on the AppLocal Runtime application suite. Theoretically, the package will automatically be referenced when adding the extension as a link, however, the package is no longer included in the referenced version of the W10 SDK.
The AppLocal Runtime application package has been replaced by a CRT package, such as W8 and W8.1, in versions of VS2015 + W10 SDK.
If you add a link to the "Visual C ++ 2015 Runtime for Universal Windows Platform Apps", your application will create and run, although there will be warnings until the SQLite extension is updated.
Although you can simply include SQLLite.cs and SQLiteAsync.cs from SQLite-net directly, if you use nuget to link to the library according to the tutorial, you will not see the files in your project, although the classes will be available for you can use.
source share