feat: add .NET 10 support and split package dependencies by framework#38
Merged
ncipollina merged 2 commits intomainfrom Oct 19, 2025
Merged
Conversation
- Add .NET 10.0 target framework to all projects - Split NuGet package dependencies by framework version to use appropriate versions: - .NET 8.0: Uses v8.x packages - .NET 9.0: Uses v9.x packages - .NET 10.0: Uses v10.0-rc.2 packages - Update AWS SDK packages to latest versions - Update OpenTelemetry to 1.13.1 - Update test dependencies (xUnit, AwesomeAssertions) - Bump version to 1.2.2 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
- Updated workflow template version from v6.1 to v6.2 - Added .NET 10.0.x to dotnet-version matrix in both build and PR workflows - Ensures CI/CD pipeline tests all supported frameworks (.NET 8, 9, and 10) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds .NET 10 support to the project and restructures package dependencies to be framework-specific, ensuring each target framework uses appropriate package versions. The version is bumped from 1.2.1 to 1.2.2.
Key Changes:
- Added .NET 10.0 as a target framework across all projects (core, observability, and tests)
- Reorganized NuGet dependencies into framework-specific ItemGroups, with .NET 8 using v8.x packages, .NET 9 using v9.x packages, and .NET 10 using v10.0-rc.2 packages
- Updated AWS SDK and test dependencies to latest stable versions
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| test/DynamoDb.DistributedLock.Tests/DynamoDb.DistributedLock.Tests.csproj | Added .NET 10 target, updated test dependencies, and split Microsoft.Extensions.Configuration by framework |
| src/DynamoDb.DistributedLock/DynamoDb.DistributedLock.csproj | Added .NET 10 target, updated AWS SDK packages, and split Microsoft.Extensions packages by framework |
| src/DynamoDb.DistributedLock.Observability/DynamoDb.DistributedLock.Observability.csproj | Added .NET 10 target and updated OpenTelemetry package |
| Directory.Build.props | Bumped version from 1.2.1 to 1.2.2 |
| .github/workflows/pr-build.yaml | Updated workflow template version and added .NET 10.0.x to build matrix |
| .github/workflows/build.yaml | Updated workflow template version and added .NET 10.0.x to build matrix |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
test/DynamoDb.DistributedLock.Tests/DynamoDb.DistributedLock.Tests.csproj
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.
Summary
Changes
Framework Support
net10.0toTargetFrameworksin all projectsPackage Dependencies (Framework-Specific)
Core Library:
Observability Package:
Test Project:
Version
Test Plan
🤖 Generated with Claude Code