Switch Microsoft.Data.Sqlite to SQLite3MC.PCLRaw.bundle#38402
Open
Copilot wants to merge 1 commit into
Open
Conversation
Co-authored-by: AndriySvyryd <6539701+AndriySvyryd@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
AndriySvyryd
June 10, 2026 20:43
View session
There was a problem hiding this comment.
Pull request overview
Updates the Microsoft.Data.Sqlite meta-package to depend on the SQLite3 Multiple Ciphers (SQLite3MC) bundle by default, and moves the corresponding central package version to the repo root so the product project can resolve it.
Changes:
- Switched
src/Microsoft.Data.Sqlite/Microsoft.Data.Sqlite.csprojfromSQLitePCLRaw.bundle_e_sqlite3toSQLite3MC.PCLRaw.bundle. - Moved the central
PackageVersionforSQLite3MC.PCLRaw.bundlefromtest/Directory.Packages.propsto the rootDirectory.Packages.propsand removed the duplicate test-only entry.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| test/Directory.Packages.props | Removes the test-local central version entry now that the version is defined at the repo root. |
| src/Microsoft.Data.Sqlite/Microsoft.Data.Sqlite.csproj | Changes the meta-package dependency to SQLite3MC.PCLRaw.bundle so consumers get SQLite3MC by default. |
| Directory.Packages.props | Adds the central version entry for SQLite3MC.PCLRaw.bundle to support product builds. |
Member
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Part of #38257
Changes the
Microsoft.Data.Sqlitemeta-package to bundleSQLite3MC.PCLRaw.bundleinstead ofSQLitePCLRaw.bundle_e_sqlite3, giving shipped consumers a native SQLite build with encryption (SQLite3 Multiple Ciphers) by default, while keeping test coverage for both providers.Changes
src/Microsoft.Data.Sqlite/Microsoft.Data.Sqlite.csprojnow referencesSQLite3MC.PCLRaw.bundle.SQLite3MC.PCLRaw.bundlePackageVersion(pinned to the existing$(SQLite3MCPCLRawBundleVersion)) fromtest/Directory.Packages.propsup to the rootDirectory.Packages.props, so the non-test product project resolves it; removed the now-duplicate test entry.Test coverage
No structural test change required — the existing provider matrix already exercises both bundles via separate projects and
DefineConstants:Microsoft.Data.Sqlite.Tests→E_SQLITE3/SQLitePCLRaw.bundle_e_sqlite3Microsoft.Data.Sqlite.sqlite3mc.Tests→SQLITE3MC/SQLite3MC.PCLRaw.bundleNotes
EFCore.Sqliteand the SQLite benchmarks intentionally remain onbundle_e_sqlite3; this change is scoped to theMicrosoft.Data.Sqlitepackage.