release: multi-target net8.0;net10.0 (0.2.0)#5
Merged
Conversation
Add net8.0 alongside net10.0 so consumers on .NET 8 can use the package without upgrading to .NET 10. No public API changes. - Directory.Build.props: drop singular <TargetFramework> so the library's <TargetFrameworks> is honoured (test/demo keep their own net10.0 line) - library csproj: <TargetFrameworks>net8.0;net10.0</TargetFrameworks>; bump 0.1.3 -> 0.2.0 - CHANGELOG: 0.2.0 entry Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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
net8.0;net10.0(wasnet10.0only) so .NET 8 consumers can use the package without upgrading to .NET 10. No public API changes.0.1.3→0.2.0(additive, non-breaking).Changes
Directory.Build.props: removed the singular<TargetFramework>net10.0</TargetFramework>so the library's<TargetFrameworks>is honoured. Test/demo projects keep their ownnet10.0line and stay single-targeted.<TargetFrameworks>net8.0;net10.0</TargetFrameworks>; version →0.2.0.CHANGELOG.md:0.2.0entry.No source changes were required — net8 supports every API/feature the code uses, and there is no
lock/System.Threading.Lock(the one typical net8 blocker).netstandard2.0was deliberately not added, for consistency with the rest of theNextIteration.SpectreConsole.*family.Verification (local)
dotnet build -c Release— both TFMs compile, 0 warnings (TreatWarningsAsErrorson).dotnet test -c Release— 40/40 pass..nupkgcontains bothlib/net8.0/andlib/net10.0/(assembly + XML doc).🤖 Generated with Claude Code