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>
pull/26047/head
softwarepronto 2022-06-03 15:30:22 -07:00 committed by GitHub
parent 755fb64cf2
commit ba5d43d2eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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)
* <xref:fundamentals/host/web-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.