mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
buildDotnetModule: change default dotnet SDK and runtime to version 6
dotnet 5 is now EOL.
This commit is contained in:
parent
72cb3780a5
commit
6107bbf553
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
# The type of build to perform. This is passed to `dotnet` with the `--configuration` flag. Possible values are `Release`, `Debug`, etc.
|
||||||
, buildType ? "Release"
|
, buildType ? "Release"
|
||||||
# The dotnet SDK to use.
|
# The dotnet SDK to use.
|
||||||
, dotnet-sdk ? dotnetCorePackages.sdk_5_0
|
, dotnet-sdk ? dotnetCorePackages.sdk_6_0
|
||||||
# The dotnet runtime to use.
|
# 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.
|
# The dotnet SDK to run tests against. This can differentiate from the SDK compiled against.
|
||||||
, dotnet-test-sdk ? dotnet-sdk
|
, dotnet-test-sdk ? dotnet-sdk
|
||||||
, ... } @ args:
|
, ... } @ args:
|
||||||
|
|
Loading…
Reference in a new issue