-
-
Notifications
You must be signed in to change notification settings - Fork 119
Description
๐ Feature Request
With the introduction of the new XML-based Solution format (.slnx) in Visual Studio 2026 Preview and .NET 8/9, I would like to request support for parsing this file type.
๐ Problem
Currently, running the tool against a .slnx file results in an error because the parser only recognizes legacy .sln or .csproj files.
Steps to reproduce:
Create a solution using the new .slnx format.
Run the tool: dotnet tool run -i MySolution.slnx
Actual Result:
"Only .sln, .csproj, .fsproj, .vbproj, and packages.config files are supported"
๐ก Suggested Solution
Update the solution parser logic to recognize and parse the XML structure of .slnx files to resolve project references.
โน๏ธ Additional Context
.NET version: 8.0 / 9.0 Preview
Environment: GitHub Actions (Linux)
This format is becoming standard for modern .NET projects.
