dotnet: fixes (#360923)

This commit is contained in:
David McFarland 2024-12-03 08:46:33 -04:00 committed by GitHub
commit 32adb65c08
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 0 deletions

View File

@ -29,6 +29,7 @@ let
"example/example.csproj"
];
nugetDeps = ./deps.nix;
dotnet-sdk = dotnetCorePackages.sdk_6_0;
};
in
buildPythonPackage {

View File

@ -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 {

View File

@ -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;