From ba5d43d2eb551fe44a9fee24a6d35541c77f4483 Mon Sep 17 00:00:00 2001 From: softwarepronto Date: Fri, 3 Jun 2022 15:30:22 -0700 Subject: [PATCH] Add missing host & fixed number of hosts available (#25922) * Add missing host & fixed number of hosts available The original section said: There are three different hosts: .NET WebApplication Host .NET Generic Host ASP.NET Core Web Host The .NET Minimal Host is recommended and used in all the ASP.NET Core templates. ---- Notice a 4th host, ".NET Minimal Host" is discussed under the list. I added it to the bulleted list. The strart setence said "There are three different hosts:" but the number three is wrong (the correct number is four) but I made the setence agnostic to the number of hosts in case a 5ht, 6th or 7th host is added. The new setence is "The different hosts include:" which works for 50 or 100 or 1000 hosts. * Update index.md * Update aspnetcore/fundamentals/index.md * Update aspnetcore/fundamentals/index.md Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com> --- aspnetcore/fundamentals/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aspnetcore/fundamentals/index.md b/aspnetcore/fundamentals/index.md index 136f20afa6..212f7ccf2d 100644 --- a/aspnetcore/fundamentals/index.md +++ b/aspnetcore/fundamentals/index.md @@ -70,9 +70,9 @@ On startup, an ASP.NET Core app builds a *host*. The host encapsulates all of th There are three different hosts: -* .NET WebApplication Host -* .NET Generic Host -* ASP.NET Core Web Host +* [.NET WebApplication Host](xref:migration/50-to-60#new-hosting-model), also known as the Minimum Host. +* [.NET Generic Host](xref:fundamentals/host/generic-host) +* The .NET Minimal Host is recommended and used in all the ASP.NET Core templates. The Minimal and Generic Host share many of the same interfaces and classes. The ASP.NET Core Web Host is available only for backward compatibility.