mirror of
https://github.com/zoriya/EntityFrameworkCore.Projectables.git
synced 2025-12-05 21:46:11 +00:00
13 lines
220 B
Nix
13 lines
220 B
Nix
{pkgs ? import <nixpkgs> {}}: let
|
|
dotnet = with pkgs.dotnetCorePackages;
|
|
combinePackages [
|
|
sdk_7_0
|
|
aspnetcore_7_0
|
|
];
|
|
in
|
|
pkgs.mkShell {
|
|
packages = [dotnet];
|
|
|
|
DOTNET_ROOT = "${dotnet}";
|
|
}
|