summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authormdarocha <git@mdarocha.pl>2023-01-22 17:36:31 +0100
committermdarocha <git@mdarocha.pl>2023-01-23 19:16:58 +0100
commit5234f4ce9340fffb705b908fff4896faeddb8a12 (patch)
treeeb08ac3b816f27a864dde515e428f5fe28c734b0 /doc
parenta8f575995434695a10b574d35ca51b0f26ae9049 (diff)
dotnet-sdk_5: remove package
It's EOL and not used in nixpkgs anymore
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/dotnet.section.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/languages-frameworks/dotnet.section.md b/doc/languages-frameworks/dotnet.section.md
index bfb193b1f021a..30a12d4e8ffad 100644
--- a/doc/languages-frameworks/dotnet.section.md
+++ b/doc/languages-frameworks/dotnet.section.md
@@ -28,13 +28,13 @@ mkShell {
   packages = [
     (with dotnetCorePackages; combinePackages [
       sdk_3_1
-      sdk_5_0
+      sdk_6_0
     ])
   ];
 }
 ```
 
-This will produce a dotnet installation that has the dotnet 3.1, 3.0, and 2.1 sdk. The first sdk listed will have it's cli utility present in the resulting environment. Example info output:
+This will produce a dotnet installation that has the dotnet 3.1 6.0 sdk. The first sdk listed will have it's cli utility present in the resulting environment. Example info output:
 
 ```ShellSession
 $ dotnet --info
@@ -120,7 +120,7 @@ in buildDotnetModule rec {
   projectReferences = [ referencedProject ]; # `referencedProject` must contain `nupkg` in the folder structure.
 
   dotnet-sdk = dotnetCorePackages.sdk_3_1;
-  dotnet-runtime = dotnetCorePackages.net_5_0;
+  dotnet-runtime = dotnetCorePackages.net_6_0;
 
   executables = [ "foo" ]; # This wraps "$out/lib/$pname/foo" to `$out/bin/foo`.
   executables = []; # Don't install any executables.