Migrate solution from .sln to .slnx format#167
Merged
LittleLittleCloud merged 2 commits intomainfrom Nov 22, 2025
Merged
Conversation
Co-authored-by: LittleLittleCloud <16876986+LittleLittleCloud@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Convert solution from sln to slnx format
Migrate solution from .sln to .slnx format
Nov 22, 2025
LittleLittleCloud
approved these changes
Nov 22, 2025
Contributor
There was a problem hiding this comment.
Pull request overview
This PR successfully migrates the solution from the legacy MSBuild .sln format to the new XML-based .slnx format introduced in .NET 9, achieving a 93% size reduction while maintaining full functionality.
- Replaced
RazorConsole.sln(119 lines) withRazorConsole.slnx(17 lines) containing the same 6 projects - Updated all
.slnreferences to.slnxacross CI/CD workflows and documentation - Maintains identical build, test, and format command compatibility
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| RazorConsole.slnx | New XML-based solution file with all 6 projects organized in folders |
| RazorConsole.sln | Legacy solution file removed |
| .github/workflows/ci.yml | Updated all dotnet commands to reference .slnx in format validation, build-test, and nightly publish jobs |
| .github/workflows/release.yml | Updated all dotnet commands to reference .slnx in release workflow |
| CONTRIBUTING.md | Updated solution file references in setup instructions and development workflow guidelines |
| .github/copilot-instructions.md | Updated solution file references in development workflow section |
| design-doc/project-overview.md | Updated solution filename in project structure documentation |
ParadiseFallen
approved these changes
Nov 22, 2025
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.
Migrates to the new XML-based
.slnxsolution format introduced in .NET 9, replacing the legacy MSBuild.slnformat.Changes
Solution file: Generated
RazorConsole.slnxviadotnet sln migrate, removedRazorConsole.slnCI/CD workflows: Updated
.github/workflows/ci.ymlandrelease.ymlto reference.slnxDocumentation: Updated references in
CONTRIBUTING.md,.github/copilot-instructions.md, anddesign-doc/project-overview.mdThe new format is functionally equivalent—all build, test, and format commands work identically with
.slnxas the solution parameter.Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.