Update/dependencies#31
Merged
Merged
Conversation
Upgraded Microsoft.Extensions.Logging, System.Text.Json, Microsoft.NET.Test.Sdk, and xunit.runner.visualstudio to their latest versions across all projects to ensure compatibility and access to new features and fixes.
Deleted .claude/settings.local.json and added it to .gitignore to prevent local configuration from being tracked in version control.
Contributor
Contributor
There was a problem hiding this comment.
Pull request overview
This PR attempts to update multiple NuGet package dependencies to version 10.0.0 and adds .gitignore rules for Claude local settings while removing the local settings file itself.
- Upgrades
System.Text.Json,Microsoft.Extensions.Logging, andMicrosoft.Extensions.Logging.Consoleto version 10.0.0 - Updates test-related packages (
Microsoft.NET.Test.Sdkto 18.0.1,xunit.runner.visualstudioto 3.1.5) - Adds
.claude/settings.local.jsonto.gitignoreand removes the tracked file
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| ReflectorNet/ReflectorNet.csproj | Updates Microsoft.Extensions.Logging and System.Text.Json to version 10.0.0 for all target frameworks |
| ReflectorNet.Tests/ReflectorNet.Tests.csproj | Updates Microsoft.NET.Test.Sdk to 18.0.1, System.Text.Json to 10.0.0, and xunit.runner.visualstudio to 3.1.5 |
| ReflectorNet.Tests.OuterAssembly/ReflectorNet.Tests.OuterAssembly.csproj | Updates System.Text.Json to version 10.0.0 for all target frameworks |
| ConsoleApp/ConsoleApp.csproj | Updates Microsoft.Extensions.Logging.Console to version 10.0.0 |
| .gitignore | Adds exclusion rule for .claude/settings.local.json |
| .claude/settings.local.json | Removes Claude permissions configuration file from repository |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
This pull request updates several dependencies across multiple projects to their latest versions, primarily focusing on
System.Text.Json,Microsoft.Extensions.Logging, and test-related packages. Additionally, it removes the local Claude permissions configuration file.Dependency Upgrades:
System.Text.Jsonto version 10.0.0 inReflectorNet,ReflectorNet.Tests, andReflectorNet.Tests.OuterAssemblyfor all target frameworks. [1] [2] [3]Microsoft.Extensions.LoggingandMicrosoft.Extensions.Logging.Consoleto version 10.0.0 inReflectorNetandConsoleAppprojects. [1] [2]Test Framework Updates:
Microsoft.NET.Test.Sdkto version 18.0.1 andxunit.runner.visualstudioto version 3.1.5 inReflectorNet.Tests.Configuration Cleanup:
.claude/settings.local.json, eliminating local permissions configuration for Claude commands.