Skip to content

Commit

Permalink
dotnet: fixes (#360923)
Browse files Browse the repository at this point in the history
  • Loading branch information
corngood authored Dec 3, 2024
2 parents 89fdabb + 58c00eb commit 32adb65
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/development/python-modules/clr-loader/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ let
"example/example.csproj"
];
nugetDeps = ./deps.nix;
dotnet-sdk = dotnetCorePackages.sdk_6_0;
};
in
buildPythonPackage {
Expand Down
1 change: 1 addition & 0 deletions pkgs/development/python-modules/pythonnet/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
3 changes: 3 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 32adb65

Please sign in to comment.