about summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-05-26 00:26:18 +0200
committerGitHub <noreply@github.com>2022-05-26 00:26:18 +0200
commitb9c9593a88c851402914bc2f09e5f0e1ab04ebdd (patch)
tree9a7104359142645eae15c9c71c1a72b1082127a5 /pkgs/build-support
parente201bb529f00c1da7d514450d95000b31baf2ecd (diff)
parent578589e1dadb6358ff015746844acf297c07c9e1 (diff)
Merge pull request #173304 from IvarWithoutBones/bump/dotnetmodule
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/dotnet/build-dotnet-module/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/build-support/dotnet/build-dotnet-module/default.nix b/pkgs/build-support/dotnet/build-dotnet-module/default.nix
index 6e7388a4a75e7..fa987237a75cb 100644
--- a/pkgs/build-support/dotnet/build-dotnet-module/default.nix
+++ b/pkgs/build-support/dotnet/build-dotnet-module/default.nix
@@ -56,9 +56,9 @@
 # The type of build to perform. This is passed to `dotnet` with the `--configuration` flag. Possible values are `Release`, `Debug`, etc.
 , buildType ? "Release"
 # The dotnet SDK to use.
-, dotnet-sdk ? dotnetCorePackages.sdk_5_0
+, dotnet-sdk ? dotnetCorePackages.sdk_6_0
 # The dotnet runtime to use.
-, dotnet-runtime ? dotnetCorePackages.runtime_5_0
+, dotnet-runtime ? dotnetCorePackages.runtime_6_0
 # The dotnet SDK to run tests against. This can differentiate from the SDK compiled against.
 , dotnet-test-sdk ? dotnet-sdk
 , ... } @ args: