feat: v5 line — target .NET 10 / EF Core 10#4
Merged
Conversation
Establishes the v5 line of the AutoGuru fork, matching the version->EF-Core convention (v3 = EF Core 6, v4 = EF Core 9, v5 = EF Core 10): - EFCorePackageVersion / MicrosoftExtensionsVersion 9.0.3 -> 10.0.9 - src TargetFramework net9.0 -> net10.0 (the packed AutoGuru.* libraries) - test + benchmark + sample projects net9.0 -> net10.0 - global.json SDK 9.0.200 -> 10.0.301 - samples baseline EFCoreTriggeredPackageVersion 3.0.0 -> 5.0.0 - prerelease pack version prefix 3-pre- -> 5-pre- in build.yml - README: .NET 9 / EF Core 9 -> .NET 10 / EF Core 10 Suppress NU1903-as-error in the Tests project only: EF Core 10's Sqlite provider pulls SQLitePCLRaw.lib.e_sqlite3 2.1.11 (latest stable) which carries a high-severity advisory. Test-only, never packaged, so scoped rather than relaxing TreatWarningsAsErrors repo-wide. Build + 229 tests pass on the .NET 10 SDK; all 5 AutoGuru.* packages pack as 5.0.0 / net10.0. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
anthony-keller
approved these changes
Jun 23, 2026
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.
What
Establishes the v5 line of the AutoGuru fork of
EntityFrameworkCore.Triggered, targeting .NET 10 / EF Core 10. This unblocks the AutoGuru platform's .NET 10 upgrade — EF-using services can't restore against this fork until net10-compatibleAutoGuru.*packages exist on NuGet.Version → EF Core convention
This repo lines up package major version with the EF Core major:
main)Changes
EFCorePackageVersion/MicrosoftExtensionsVersion9.0.3->10.0.9src/Directory.Build.propsTFMnet9.0->net10.0(the packedAutoGuru.*libraries)net9.0->net10.0global.jsonSDK9.0.200->10.0.301samples/Directory.Build.propsbaselineEFCoreTriggeredPackageVersion3.0.0->5.0.0build.ymlprerelease pack prefix3-pre-->5-pre-.NET 9 / EF Core 9->.NET 10 / EF Core 10NoWarn;NU1903on the Tests project only — EF Core 10's Sqlite provider pullsSQLitePCLRaw.lib.e_sqlite32.1.11 (latest stable), which carries a high-severity advisory. Test-only (never packaged), so suppressed locally rather than relaxingTreatWarningsAsErrorsrepo-wide.Verification (local, .NET 10 SDK 10.0.301)
dotnet buildof the Core slnf: succeedsdotnet testof the Core slnf: 229 tests pass (169 + 38 + 22)dotnet pack -p:PackageVersion=5.0.0: produces all 5AutoGuru.*.5.0.0packages targeting net10.0How publish works (for the reviewer)
mainpacks5-pre-<run-id>and pushes to the GitHub Packages feed.vX.Y.ZpacksX.Y.Zand pushes to both the GitHub feed and nuget.org.v5.0.0GitHub Release publishes the stableAutoGuru.*5.x packages to nuget.org that the platform consumes.Known / out of scope
build-samplesCI job will fail until the v5 packages are published — samples reference the published packages by version (>= 5.0.0), a pre-existing bootstrap characteristic. (Separately, samples reference the un-prefixed upstreamEntityFrameworkCore.Triggeredid, which tops out at4.0.0-preview.1on nuget.org — an upstream-inherited quirk, not introduced here.)10.0.9, baseline5.0.0) left for human review before merge.Draft — do not merge until the versioning is reviewed.