Skip to content

Commit 1015fef

Browse files
committed
shells/migrator: inline csharp-ls override
1 parent 18817ff commit 1015fef

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

shells/migrator/default.nix

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,13 @@ mkShell {
1515
typescript
1616
claude-code
1717
csharpier
18-
csharp-ls
18+
(csharp-ls.overrideAttrs (_oldAttrs: {
19+
# NOTE: csharp-ls requires a very new dotnet 8 sdk. This causes issues with workspace dotnet
20+
# collisions because dotnet commands will run off the newest SDK breaking working with lower
21+
# version projects.
22+
useDotnetFromEnv = false;
23+
meta.badPlatforms = [ ];
24+
}))
1925
(
2026
with dotnetCorePackages;
2127
combinePackages [

0 commit comments

Comments
 (0)