C# Extension Missing Support for .slnx Solution Files

Up, same. Very need slnx support…

2 Likes

Up as well, this proves a big impediment in C# development with Cursor

Meanwhile you can use this to create a temporary .sln file that is supported, as a workaround:

dotnet new sln -n Temp
Get-ChildItem -Path . -Recurse -Filter *.csproj | ForEach-Object | {dotnet sln Temp.sln add $_.FullName}