chore: Target .NET 10 LTS only#73
Merged
Merged
Conversation
Remove .NET 9 multi-targeting. Going forward: - Current release: .NET 10 (LTS) - Next release: .NET 11 + 10 - Following: .NET 12 only (LTS) This simplifies the build and aligns with LTS release strategy.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR simplifies the Abies library build configuration by removing .NET 9 multi-targeting in favor of targeting only .NET 10 LTS. This aligns with a clearer LTS release strategy where the library will track long-term support releases. All consuming projects in the solution already target .NET 10 exclusively, so this change has no downstream impact.
Changes:
- Removed .NET 9 from the Abies library's target frameworks, keeping only .NET 10 LTS
MCGPPeters
added a commit
that referenced
this pull request
Apr 13, 2026
Remove .NET 9 multi-targeting. Going forward: - Current release: .NET 10 (LTS) - Next release: .NET 11 + 10 - Following: .NET 12 only (LTS) This simplifies the build and aligns with LTS release strategy.
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.
📝 Description
What
Remove .NET 9 multi-targeting from the Abies library project.
Why
Simplifies the build and aligns with the LTS release strategy:
How
Changed
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>to<TargetFramework>net10.0</TargetFramework>inAbies/Abies.csproj.🔗 Related Issues
None
✅ Type of Change
🧪 Testing
Test Coverage
Testing Details
dotnet build Abies.sln -c Release- 0 warnings, 0 errors✨ Changes Made
Abies/Abies.csprojfrom multi-targeting (net9.0;net10.0) to single target (net10.0)🔍 Code Review Checklist