You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 1, 2018. It is now read-only.
Currently if the rc2 nuget package is referenced from a UWP, it automatically includes a copy of sqlite3.dll in the AppX package. This pretty much defeats one of the primary purposes of WinSqlite, which is to reduce app package size and reduce the number of times sqlite3.dll is present in various apps.
One potential solution to this is to check for an MSBuild property (say DisableIncludeSqlite) and check if that's set in the targets file, and if so don't include it.
This would also enable developers to provide custom (perhaps newer) builds of sqlite3.dll if needed.
The text was updated successfully, but these errors were encountered:
Currently if the rc2 nuget package is referenced from a UWP, it automatically includes a copy of sqlite3.dll in the AppX package. This pretty much defeats one of the primary purposes of WinSqlite, which is to reduce app package size and reduce the number of times sqlite3.dll is present in various apps.
One potential solution to this is to check for an MSBuild property (say DisableIncludeSqlite) and check if that's set in the targets file, and if so don't include it.
This would also enable developers to provide custom (perhaps newer) builds of sqlite3.dll if needed.
The text was updated successfully, but these errors were encountered: