Convert TestPlatform.sln to slnx format#15551
Merged
Merged
Conversation
Replace the legacy .sln solution file with the new .slnx XML-based format introduced in .NET 9+. The .slnx format is cleaner, easier to diff, and the recommended format going forward. Changes: - Add TestPlatform.slnx generated via `dotnet sln migrate` - Remove TestPlatform.sln (Arcade SDK does not support both) - Update CONTRIBUTING.md to reference .slnx - Update scripts/test.sh solution variable - Update DataCollectorAttachmentsProcessorsFactoryTests.cs repo root detection Closes microsoft#15543 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Migrates the repository’s primary solution from legacy .sln to the newer XML-based .slnx format (recommended for .NET 9+), and updates tooling/docs/tests to reference the new solution file.
Changes:
- Added
TestPlatform.slnxand removedTestPlatform.sln(cannot coexist with Arcade SDK). - Updated developer docs and scripts to reference
TestPlatform.slnx. - Updated repo-root detection in an integration test to key off the new solution file.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| test/Microsoft.TestPlatform.Acceptance.IntegrationTests/DataCollectorAttachmentsProcessorsFactoryTests.cs | Updates repo-root marker file check from .sln to .slnx. |
| scripts/test.sh | Points test script’s solution variable to .slnx. |
| TestPlatform.slnx | Adds the new XML-based solution representation. |
| TestPlatform.sln | Deletes the legacy solution file. |
| CONTRIBUTING.md | Updates Visual Studio instructions to open the .slnx solution. |
Evangelink
approved these changes
Mar 24, 2026
This was referenced Mar 25, 2026
This was referenced May 26, 2026
This was referenced Jun 10, 2026
Open
Open
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.
Replace the legacy .sln solution file with the new .slnx XML-based format introduced in .NET 9+. The .slnx format is cleaner, easier to diff, and the recommended format going forward.
Changes
Verification
Closes #15543