We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18817ff commit 1015fefCopy full SHA for 1015fef
1 file changed
shells/migrator/default.nix
@@ -15,7 +15,13 @@ mkShell {
15
typescript
16
claude-code
17
csharpier
18
- csharp-ls
+ (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
+ }))
25
(
26
with dotnetCorePackages;
27
combinePackages [
0 commit comments