summary refs log tree commit diff
path: root/pkgs/build-support/dotnet/build-dotnet-module/default.nix
diff options
context:
space:
mode:
authorIvar Scholten <ivar.scholten@protonmail.com>2022-05-16 21:07:52 +0200
committerIvar Scholten <ivar.scholten@protonmail.com>2022-05-16 21:39:35 +0200
commit6107bbf55393e58d0da7841c25a55a923dc16949 (patch)
tree741ea295e97c257e46c0749fa80edf56f1cfe31e /pkgs/build-support/dotnet/build-dotnet-module/default.nix
parent72cb3780a57881aa2fc5e2268380d85de7ea2b4c (diff)
downloadnixpkgs-6107bbf55393e58d0da7841c25a55a923dc16949.tar
nixpkgs-6107bbf55393e58d0da7841c25a55a923dc16949.tar.gz
nixpkgs-6107bbf55393e58d0da7841c25a55a923dc16949.tar.bz2
nixpkgs-6107bbf55393e58d0da7841c25a55a923dc16949.tar.lz
nixpkgs-6107bbf55393e58d0da7841c25a55a923dc16949.tar.xz
nixpkgs-6107bbf55393e58d0da7841c25a55a923dc16949.tar.zst
nixpkgs-6107bbf55393e58d0da7841c25a55a923dc16949.zip
buildDotnetModule: change default dotnet SDK and runtime to version 6
dotnet 5 is now EOL.
Diffstat (limited to 'pkgs/build-support/dotnet/build-dotnet-module/default.nix')
-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 6e7388a4a75..fa987237a75 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: