dotnet / docs

This repository contains .NET Documentation.
https://learn.microsoft.com/dotnet
Creative Commons Attribution 4.0 International
4.27k stars 5.9k forks source link

Incorrect information on Runtime Information #38670

Closed edespong closed 10 months ago

edespong commented 11 months ago

Type of issue

Other (describe below)

Description

The article says that:

ASP.NET Core runtime
Runs ASP.NET Core apps. Includes the .NET runtime.

This does not seems to be correct. Installing the latest (8.0) ASP.NET Core runtime does not install the .NET Runtime (e.g. nothing is placed under dotnet\shared\Microsoft.NETCore.App), and my web application returns an error complaining that .NET runtime is missing. It is also indicated by the size of the installers: ASP.NET Core runtime installer is approx. 10Mb, and the standalone .NET Runtime 8.0.0 installer is 27Mb. If .NET Runtime is included in ASP.NET Core runtime, then how can it be 1/3 of the size.

Page URL

https://learn.microsoft.com/en-us/dotnet/core/install/windows?tabs=net80#runtime-information

Content source URL

https://github.com/dotnet/docs/blob/main/docs/core/install/windows.md

Document Version Independent Id

d11d0d14-8a03-50e4-5c00-9a4417ad4d0a

Article author

@adegeo

Metadata


Associated WorkItem - 192422

adegeo commented 11 months ago

You're right. This information was true for .NET 7, but I guess it was changed in .NET 8. I'll bring this up to the team and then see what to do in the docs... 😿

adegeo commented 11 months ago

I looked a little more into this and it's the "Hosting Bundle" that includes both runtimes, there's a note on the download section. I'll update the docs to match:

image