Feat: Compile and package for .NET 10#1138
Merged
rasmus merged 5 commits intodevelop-v1from Dec 6, 2025
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds compilation and packaging support for .NET 10 to the EventFlow framework. The changes update the SDK version, add net10.0 as a target framework across multiple projects, and include version 10.0.0 of various Microsoft dependencies.
- Adds .NET 10 SDK configuration via global.json
- Extends target frameworks to include
net10.0across core library, test projects, and integration packages - Updates dependency versions to 10.0.0 for Microsoft.Extensions.* and Microsoft.EntityFrameworkCore packages for the net10.0 target
Reviewed changes
Copilot reviewed 18 out of 18 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| global.json | Specifies .NET SDK version 10.0.100 with latestFeature rollForward policy |
| Source/EventFlow/EventFlow.csproj | Adds net10.0 target with Microsoft.Extensions.* v10.0.0 dependencies; excludes System.Linq.Async per release notes |
| Source/EventFlow.Tests/EventFlow.Tests.csproj | Adds net10.0 to test target frameworks |
| Source/EventFlow.TestHelpers/EventFlow.TestHelpers.csproj | Adds net10.0 to test helper target frameworks |
| Source/EventFlow.Sql/EventFlow.Sql.csproj | Adds net10.0 to SQL module target frameworks |
| Source/EventFlow.Sql.Tests/EventFlow.Sql.Tests.csproj | Adds net10.0 to SQL test target frameworks |
| Source/EventFlow.SQLite/EventFlow.SQLite.csproj | Adds net10.0 to SQLite module target frameworks |
| Source/EventFlow.SQLite.Tests/EventFlow.SQLite.Tests.csproj | Adds net10.0 to SQLite test target frameworks |
| Source/EventFlow.RabbitMQ/EventFlow.RabbitMQ.csproj | Adds net8.0 and net10.0 to RabbitMQ module target frameworks |
| Source/EventFlow.RabbitMQ.Tests/EventFlow.RabbitMQ.Tests.csproj | Adds net8.0 and net10.0 to RabbitMQ test target frameworks |
| Source/EventFlow.MsSql/EventFlow.MsSql.csproj | Adds net8.0 and net10.0 to MsSql module target frameworks |
| Source/EventFlow.MongoDB/EventFlow.MongoDB.csproj | Adds net10.0 to MongoDB module target frameworks |
| Source/EventFlow.MongoDB.Tests/EventFlow.MongoDB.Tests.csproj | Adds net8.0 and net10.0 to MongoDB test target frameworks |
| Source/EventFlow.Hangfire/EventFlow.Hangfire.csproj | Adds net10.0 to Hangfire module target frameworks |
| Source/EventFlow.Hangfire.Tests/EventFlow.Hangfire.Tests.csproj | Adds net10.0 to Hangfire test target frameworks (missing net8.0) |
| Source/EventFlow.EntityFramework/EventFlow.EntityFramework.csproj | Converts to multi-targeting (net8.0;net10.0) and adds EF Core v10.0.0 for net10.0 |
| Source/EventFlow.EntityFramework.Tests/EventFlow.EntityFramework.Tests.csproj | Converts to multi-targeting and adds Npgsql v10.0.0 packages for net10.0 |
| RELEASE_NOTES.md | Documents .NET 10 support in version 1.3.0 with System.Linq.Async removal note |
Source/EventFlow.Hangfire.Tests/EventFlow.Hangfire.Tests.csproj
Outdated
Show resolved
Hide resolved
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.
No description provided.