Browse Source

Load ILSpy.sln via a relative path in the DotRush settings

With no configured solution, DotRush only auto-loads when the folder
contains exactly one solution file; this repo has several, so it shows
a picker and writes the chosen absolute path into .vscode/settings.json,
dirtying every fresh clone or worktree. The server resolves configured
entries against the workspace folder it is launched in, so a committed
relative path works everywhere and stops the write-back.

Assisted-by: Claude:claude-fable-5:Claude Code
pull/3935/head
Siegfried Pammer 2 months ago committed by Siegfried Pammer
parent
commit
dd6a9979f4
  1. 3
      .vscode/settings.json

3
.vscode/settings.json vendored

@ -4,4 +4,7 @@ @@ -4,4 +4,7 @@
"ILSpy-tests/**": true
},
"dotnet.defaultSolution": "ILSpy.sln",
"dotrush.roslyn.projectOrSolutionFiles": [
"ILSpy.sln"
],
}
Loading…
Cancel
Save