Bump version to 1.1.0 and add .NET Standard 2.0 support#8
Merged
Merged
Conversation
- Update version from 1.0.0 to 1.1.0 in Directory.Build.props - Add netstandard2.0 to target frameworks alongside existing net8.0, net9.0, and netstandard2.1 - Verified compatibility with Microsoft.Extensions.Logging.Abstractions 9.0.7 - All 328 tests pass on both .NET 8.0 and .NET 9.0 frameworks - Added CLAUDE.md documentation for future development guidance 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR updates the package version, broadens target framework support, and adds development guidance documentation.
- Add
.NET Standard 2.0to the project’s multi-target frameworks and bump the logging dependency - Bump the package version from
1.0.0to1.1.0 - Introduce
CLAUDE.mdwith build/test commands and project guidelines
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| src/LayeredCraft.StructuredLogging/LayeredCraft.StructuredLogging.csproj | Added netstandard2.0 to <TargetFrameworks> and updated the logging abstractions version to 9.0.7 |
| Directory.Build.props | Bumped <VersionPrefix> from 1.0.0 to 1.1.0 |
| CLAUDE.md | Added new development guidelines and commands documentation |
Comments suppressed due to low confidence (2)
CLAUDE.md:1
- [nitpick] The filename
CLAUDE.mdmay be misleading for contributors. Consider renaming it toCONTRIBUTING.mdorDEVELOPMENT_GUIDELINES.mdto better reflect its purpose.
# CLAUDE.md
CLAUDE.md:19
- Test projects generally aren't executable with
dotnet run. Either remove this line or replace it with instructions to run a sample console app or integration test harness if needed.
dotnet run --project test/LayeredCraft.StructuredLogging.Tests/ # Run test project directly
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 Made
<VersionPrefix>from 1.0.0 to 1.1.0netstandard2.0to<TargetFrameworks>Compatibility Verification
Test Results
Breaking Changes
None - this is a backward-compatible addition of .NET Standard 2.0 support.
🤖 Generated with Claude Code