-
Notifications
You must be signed in to change notification settings - Fork 275
[WIP] feat: Add support to .NET v10 #3840
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
# Conflicts: # Directory.Packages.props # src/Paramore.Brighter.Locking.Firestore/Paramore.Brighter.Locking.Firestore.csproj # src/Paramore.Brighter.MySql.EntityFrameworkCore/Paramore.Brighter.MySql.EntityFrameworkCore.csproj # tests/Paramore.Brighter.AWS.Tests/Paramore.Brighter.AWS.Tests.csproj # tests/Paramore.Brighter.AWS.V4.Tests/Paramore.Brighter.AWS.V4.Tests.csproj # tests/Paramore.Brighter.AWSScheduler.Tests/Paramore.Brighter.AWSScheduler.Tests.csproj # tests/Paramore.Brighter.AWSScheduler.V4.Tests/Paramore.Brighter.AWSScheduler.V4.Tests.csproj # tests/Paramore.Brighter.Azure.Tests/Paramore.Brighter.Azure.Tests.csproj # tests/Paramore.Brighter.AzureServiceBus.Tests/Paramore.Brighter.AzureServiceBus.Tests.csproj # tests/Paramore.Brighter.Core.Tests/Paramore.Brighter.Core.Tests.csproj # tests/Paramore.Brighter.DynamoDB.Tests/Paramore.Brighter.DynamoDB.Tests.csproj # tests/Paramore.Brighter.DynamoDB.V4.Tests/Paramore.Brighter.DynamoDB.V4.Tests.csproj # tests/Paramore.Brighter.Extensions.Tests/Paramore.Brighter.Extensions.Tests.csproj # tests/Paramore.Brighter.Gcp.Tests/Paramore.Brighter.Gcp.Tests.csproj # tests/Paramore.Brighter.Hangfire.Tests/Paramore.Brighter.Hangfire.Tests.csproj # tests/Paramore.Brighter.InMemory.Tests/Paramore.Brighter.InMemory.Tests.csproj # tests/Paramore.Brighter.Kafka.Tests/Paramore.Brighter.Kafka.Tests.csproj # tests/Paramore.Brighter.MQTT.Tests/Paramore.Brighter.MQTT.Tests.csproj # tests/Paramore.Brighter.MSSQL.Tests/Paramore.Brighter.MSSQL.Tests.csproj # tests/Paramore.Brighter.MongoDb.Tests/Paramore.Brighter.MongoDb.Tests.csproj # tests/Paramore.Brighter.MySQL.Tests/Paramore.Brighter.MySQL.Tests.csproj # tests/Paramore.Brighter.PostgresSQL.Tests/Paramore.Brighter.PostgresSQL.Tests.csproj # tests/Paramore.Brighter.Quartz.Tests/Paramore.Brighter.Quartz.Tests.csproj # tests/Paramore.Brighter.RMQ.Async.Tests/Paramore.Brighter.RMQ.Async.Tests.csproj # tests/Paramore.Brighter.RMQ.Sync.Tests/Paramore.Brighter.RMQ.Sync.Tests.csproj # tests/Paramore.Brighter.Redis.Tests/Paramore.Brighter.Redis.Tests.csproj # tests/Paramore.Brighter.RocketMQ.Tests/Paramore.Brighter.RocketMQ.Tests/Paramore.Brighter.RocketMQ.Tests.csproj # tests/Paramore.Brighter.Sqlite.Tests/Paramore.Brighter.Sqlite.Tests.csproj # tests/Paramore.Brighter.Transforms.Adaptors.Tests/Paramore.Brighter.Transforms.Adaptors.Tests.csproj
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No application code in the PR — skipped Code Health checks.
See analysis details in CodeScene
Quality Gate Profile: Clean Code Collective
Want more control? Customize Code Health rules or catch issues early with our IDE extension and CLI tool.
Pull Request Review: .NET 10 SupportThank you for this PR! Adding .NET 10 support is a significant undertaking. Here's my comprehensive review: ✅ Positive Aspects1. Comprehensive Scope
2. Good Architectural Decisions
3. Package Management
🐛 Critical Issues1. Typo in System.Text.Json Package References (Lines 138 & 159 in Directory.Packages.props)<!-- CURRENT (INCORRECT) -->
<PackageVersion Include="System.Text.Json" ersion="9.0.9" />
<PackageVersion Include="System.Text.Json" ersion="10.0.0-rc.2.25502.107" />
<!-- SHOULD BE -->
<PackageVersion Include="System.Text.Json" Version="9.0.9" />
<PackageVersion Include="System.Text.Json" Version="10.0.0-rc.2.25502.107" />Missing 'V' in 'Version' attribute - This will cause build failures. Location:
|
Add support for .NET v10