mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
dotnet: fixes (#360923)
This commit is contained in:
commit
32adb65c08
@ -29,6 +29,7 @@ let
|
||||
"example/example.csproj"
|
||||
];
|
||||
nugetDeps = ./deps.nix;
|
||||
dotnet-sdk = dotnetCorePackages.sdk_6_0;
|
||||
};
|
||||
in
|
||||
buildPythonPackage {
|
||||
|
@ -28,6 +28,7 @@ let
|
||||
projectFile = "src/runtime/Python.Runtime.csproj";
|
||||
testProjectFile = "src/testing/Python.Test.csproj";
|
||||
nugetDeps = ./deps.nix;
|
||||
dotnet-sdk = dotnet-sdk_6;
|
||||
};
|
||||
in
|
||||
buildPythonPackage {
|
||||
|
@ -418,14 +418,17 @@ with pkgs;
|
||||
dotnet-sdk_6 = dotnetCorePackages.sdk_6_0;
|
||||
dotnet-sdk_7 = dotnetCorePackages.sdk_7_0;
|
||||
dotnet-sdk_8 = dotnetCorePackages.sdk_8_0;
|
||||
dotnet-sdk_9 = dotnetCorePackages.sdk_9_0;
|
||||
|
||||
dotnet-runtime_6 = dotnetCorePackages.runtime_6_0;
|
||||
dotnet-runtime_7 = dotnetCorePackages.runtime_7_0;
|
||||
dotnet-runtime_8 = dotnetCorePackages.runtime_8_0;
|
||||
dotnet-runtime_9 = dotnetCorePackages.runtime_9_0;
|
||||
|
||||
dotnet-aspnetcore_6 = dotnetCorePackages.aspnetcore_6_0;
|
||||
dotnet-aspnetcore_7 = dotnetCorePackages.aspnetcore_7_0;
|
||||
dotnet-aspnetcore_8 = dotnetCorePackages.aspnetcore_8_0;
|
||||
dotnet-aspnetcore_9 = dotnetCorePackages.aspnetcore_9_0;
|
||||
|
||||
dotnet-sdk = dotnetCorePackages.sdk_8_0;
|
||||
dotnet-runtime = dotnetCorePackages.runtime_8_0;
|
||||
|
Loading…
Reference in New Issue
Block a user