If .net core is already installed it only installs aspnetcore and its dependency (netcore).
.Net 8.0.10 and 8.0.11 hosting bundle doesn't install components
I have downloaded and installed the .NET Core Hosting bundle for 8.0.10 on the windows sever 2019.
In the past when installing this bundle it will install the following components:
Microsoft .NET Runtime - version (x64)
Microsoft .NET Runtime - version (x86)
Microsoft ASP.NET Core - version - Shared Framework (x64)
Microsoft ASP.NET Core - version - Shared Framework (x86)
However the latest version, 8.0.10 and 8.011 the bundle does not install any of the above components. It just installs a single line, Microsoft .NET 8.0.10 - Windows server Hosting and nothing else.
Only Microsoft .NET 8.0.10 - Windows server Hosting is visible in the control panel and not all other components.
This was not the case with previous hosting bundle installers. When I Installed 8.0.4, it did show the below components in the control panel
Microsoft .NET Runtime - version (x64)
Microsoft .NET Runtime - version (x86)
Microsoft ASP.NET Core - version - Shared Framework (x64)
Microsoft ASP.NET Core - version - Shared Framework (x86)
When Latest version 8.0.10 bundle is installed, even the control panel shows only windows server hosting component, but when I ran the command dotnet --list-runtimes, it returned me the below run times that includes 8.0.10 as well but control panel doesnt show the runtime component.
Microsoft.AspNetCore.App 7.0.10 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 8.0.10 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.NETCore.App 7.0.10 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 8.0.4 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 8.0.10 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Please suggest if the runtime versions are installed or do I need install them separately as they are not being shown in control panel?
2 answers
Sort by: Most helpful
-
-
Jiachen Li-MSFT 33,701 Reputation points Microsoft External Staff
2025-03-07T06:35:41.3666667+00:00 Hi @Krishna Sandeep Reddy Govindareddy
If the Hosting Bundle is installed after installing the 64-bit (x64) version of .NET Core, SDKs might appear to be missing (No .NET Core SDKs were detected). To resolve the problem, see Troubleshoot and debug ASP.NET Core projects.
If the required runtimes are listed in
dotnet --list-runtimes
and your applications are running as expected, there is no need to install anything further.Best Regards.
Jiachen Li
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment". Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.