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.