summary refs log tree commit diff
path: root/doc/languages-frameworks/dotnet.section.md
diff options
context:
space:
mode:
authorFelix Tenley <dev@felschr.com>2020-11-11 12:05:31 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-11-11 15:35:23 -0800
commita94cc8dc921112051cd477e4ded922acfd254fbe (patch)
tree1e9963f9a7c8edec241acae7b6c6737d460ca44d /doc/languages-frameworks/dotnet.section.md
parente60fc2ca56ca3aad77d42818839529fe12fcbcf3 (diff)
downloadnixpkgs-a94cc8dc921112051cd477e4ded922acfd254fbe.tar
nixpkgs-a94cc8dc921112051cd477e4ded922acfd254fbe.tar.gz
nixpkgs-a94cc8dc921112051cd477e4ded922acfd254fbe.tar.bz2
nixpkgs-a94cc8dc921112051cd477e4ded922acfd254fbe.tar.lz
nixpkgs-a94cc8dc921112051cd477e4ded922acfd254fbe.tar.xz
nixpkgs-a94cc8dc921112051cd477e4ded922acfd254fbe.tar.zst
nixpkgs-a94cc8dc921112051cd477e4ded922acfd254fbe.zip
dotnet: document new net packages
Diffstat (limited to 'doc/languages-frameworks/dotnet.section.md')
-rw-r--r--doc/languages-frameworks/dotnet.section.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/languages-frameworks/dotnet.section.md b/doc/languages-frameworks/dotnet.section.md
index c56f4728bed..88fd74db825 100644
--- a/doc/languages-frameworks/dotnet.section.md
+++ b/doc/languages-frameworks/dotnet.section.md
@@ -64,9 +64,9 @@ $ dotnet --info
 
 The `dotnetCorePackages.sdk_X_Y` is preferred over the old dotnet-sdk as both major and minor version are very important for a dotnet environment. If a given minor version isn't present (or was changed), then this will likely break your ability to build a project.
 
-## dotnetCorePackages.sdk vs dotnetCorePackages.netcore vs dotnetCorePackages.aspnetcore
+## dotnetCorePackages.sdk vs vs dotnetCorePackages.net vs dotnetCorePackages.netcore vs dotnetCorePackages.aspnetcore
 
-The `dotnetCorePackages.sdk` contains both a runtime and the full sdk of a given version. The `netcore` and `aspnetcore` packages are meant to serve as minimal runtimes to deploy alongside already built applications.
+The `dotnetCorePackages.sdk` contains both a runtime and the full sdk of a given version. The `net`, `netcore` and `aspnetcore` packages are meant to serve as minimal runtimes to deploy alongside already built applications. For runtime versions >= .NET 5 `net` is used while `netcore` is used for older .NET Core runtime version.
 
 ## Packaging a Dotnet Application