Fixes #5412. Migrate from .sln to .slnx and remove redundant solution files#5413
Merged
Conversation
… files - Convert Terminal.sln (520 lines) to Terminal.slnx (~125 lines of clean XML) - Remove stale x64/x86 platform configurations (all mapped to Any CPU) - Remove redundant single-project solutions: - Terminal.Gui/Terminal.Gui.sln - Tests/UnitTests.Legacy/UnitTests.Legacy.sln - Examples/FSharpExample/FSharpExample.sln - docfx/scripts/OutputView/OutputView.sln The .slnx format (supported since .NET 9 SDK) eliminates opaque GUIDs, reduces merge conflicts, and makes the solution human-readable XML. All projects are already in the main solution; the removed files were redundant subsets not used by CI. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 84c3e4de6f
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
- Update Scripts/CleanupAgent.ps1 (4 references) - Update Scripts/Terminal.Gui.PowerShell.Core.psm1 - Update .claude/agents/cleanup-agent.md - Update CONTRIBUTING.md - Update docfx/docs/getting-started.md - Update Examples/UICatalog/Scenarios/Notepad.cs (repo root detection) - Remove obsolete .slnf files (NoSamples.slnf, Release.slnf) These referenced the old Terminal.sln and contained stale project paths Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
BDisp
approved these changes
May 25, 2026
This was referenced May 28, 2026
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
Migrates the repository from the legacy
.slnformat to the modern.slnx(XML-based) format and removes 4 redundant solution files.Changes
Terminal.sln→Terminal.slnxTerminal.Gui/Terminal.Gui.slndotnet build *.csprojsufficesTests/UnitTests.Legacy/UnitTests.Legacy.sln--projectExamples/FSharpExample/FSharpExample.slndocfx/scripts/OutputView/OutputView.slnWhy .slnx?
ProjectConfigurationPlatformsthat all just mapped toAny CPUdotnet sln migratemade this a one-command conversiondotnetCLI all support.slnxAdditional cleanup
Removed stale
x64andx86platform configurations from the solution — every project mapped them toAny CPUanyway.Verification
dotnet restore Terminal.slnx— succeedsdotnet build Terminal.slnx— 0 errorsdotnet test— tests passCloses #5412