Conversation
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 modernizes the build and test infrastructure for the repository by upgrading to .NET 10, updating several dependencies, and transitioning from legacy Visual Studio solution files to the new
.slnxformat. It also updates test project configurations and improves test isolation. Below are the most important changes:Build and SDK Upgrades
global.json, and updated MSBuild SDKs to newer versions.net9.0tonet10.0. [1] [2] [3]System.Text.Jsonpackage to version 10.0.0 inDirectory.Packages.propsand removed redundant package references from sample projects. [1] [2]Solution and Project Structure Modernization
.slnsolution files (ReferenceProtector.sln,samples/Samples.sln) and replaced them with new.slnxsolution files (ReferenceProtector.slnx,samples/Samples.slnx) for improved organization and compatibility with modern tooling. [1] [2] [3] [4]Test Infrastructure Updates
xunit.v3.mtp-v2test runner, removing older xUnit and Visual Studio test runner dependencies. [1] [2] [3]test.runnerconfiguration forMicrosoft.Testing.Platforminglobal.jsonto standardize test execution.Build System Improvements
<DisableTransitiveProjectReferences>true</DisableTransitiveProjectReferences>to central build properties to control transitive project reference behavior._ReferenceProtector_DeclaredReferences.tsvinReferenceProtector.targetsis always an absolute path for reliability.Test Isolation Enhancements
Directory.Packages.propsin test directories to decouple tests from the repo's central package management settings, and explicitly setsDisableTransitiveProjectReferencestofalsefor test builds. [1] [2]