Get nix-ld to work with the Roslyn analyzer
This commit is contained in:
parent
5b4758a4ed
commit
0fd9c93a70
|
@ -2,7 +2,7 @@
|
|||
"terminal.integrated.profiles.linux": {
|
||||
"nix develop": {
|
||||
"path": "nix",
|
||||
"args": ["develop"]
|
||||
"args": ["develop", "--impure"]
|
||||
}
|
||||
},
|
||||
"terminal.integrated.profiles.windows": {
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
in rec {
|
||||
devShell = pkgs.mkShell {
|
||||
DOTNET_CLI_TELEMETRY_OPTOUT = 1;
|
||||
NIX_LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [ pkgs.stdenv.cc.cc ];
|
||||
NIX_LD = builtins.readFile "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
|
||||
packages = [
|
||||
pkgs.bashInteractive
|
||||
pkgs.dotnet-sdk_8
|
||||
|
|
Loading…
Reference in New Issue