Resolve #31: Framework already upgraded beyond requested netcoreapp3.1 #59
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.
📋 Issue Reference
Closes #31
✅ Analysis Summary
Upon investigation, issue #31 has already been resolved by a previous framework upgrade. The original issue requested updating the target framework from
netcoreapp3.0tonetcoreapp3.1, but the project has since been upgraded to.NET 8which far exceeds the requested upgrade.🔍 Historical Context
<TargetFrameworks>net472;netcoreapp2.1;netcoreapp3.0</TargetFrameworks>netcoreapp3.0tonetcoreapp3.1<TargetFramework>net8</TargetFramework>✨ Current Status
Both project files now use
.NET 8as the target framework:csharp/Platform.Random/Platform.Random.csproj(line 9):<TargetFramework>net8</TargetFramework>csharp/Platform.Random.Tests/Platform.Random.Tests.csproj(line 4):<TargetFramework>net8</TargetFramework>🧪 Verification
✅ Build Status:
dotnet buildcompletes successfully✅ Test Status: All 3 tests pass with
dotnet test✅ Framework: .NET 8 (much newer than the requested netcoreapp3.1)
🏁 Conclusion
No code changes are required as the issue has been addressed by the framework upgrade to .NET 8. The project is now using a much more modern and capable framework than what was originally requested.
🤖 Generated with Claude Code