We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ddf9f8 commit 2a96405Copy full SHA for 2a96405
1 file changed
shell.nix
@@ -0,0 +1,12 @@
1
+{pkgs ? import <nixpkgs> {}}: let
2
+ dotnet = with pkgs.dotnetCorePackages;
3
+ combinePackages [
4
+ sdk_7_0
5
+ aspnetcore_7_0
6
+ ];
7
+in
8
+ pkgs.mkShell {
9
+ packages = [dotnet];
10
+
11
+ DOTNET_ROOT = "${dotnet}";
12
+ }
0 commit comments