From 242df7168615bd5884dba618bf5096b8c915d2ce Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Tue, 9 Nov 2021 18:29:03 -0600 Subject: [PATCH] Update Hot Reload topic cross-link (#23831) * Update Hot Reload topic cross-link * Proper noun * Update --- aspnetcore/release-notes/aspnetcore-6.0.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/aspnetcore/release-notes/aspnetcore-6.0.md b/aspnetcore/release-notes/aspnetcore-6.0.md index 94c8997415..2738780a6b 100644 --- a/aspnetcore/release-notes/aspnetcore-6.0.md +++ b/aspnetcore/release-notes/aspnetcore-6.0.md @@ -45,7 +45,7 @@ The Razor compiler is now based on [C# source generators](/dotnet/csharp/roslyn- The Razor compiler previously utilized a two-step compilation process that produced a separate Views assembly that contained the generated views and pages (`.cshtml` files) defined in the app. The generated types were public and under the `AspNetCore` namespace. -The updated Razor compiler builds the views and pages types into the main project assembly. These types are now generated by default as internal sealed in the `AspNetCoreGeneratedDocument` namespace. This change improves build performance, enables single file deployment, and enables these types to participate in [.NET Hot Reload](https://devblogs.microsoft.com/dotnet/update-on-net-hot-reload-progress-and-visual-studio-2022-highlights/). +The updated Razor compiler builds the views and pages types into the main project assembly. These types are now generated by default as internal sealed in the `AspNetCoreGeneratedDocument` namespace. This change improves build performance, enables single file deployment, and enables these types to participate in [Hot Reload](xref:test/hot-reload). For more information about this change, see [the related announcement issue](https://github.com/aspnet/Announcements/issues/459) on GitHub. @@ -390,11 +390,9 @@ Cookie authentication sliding expiration can now be customized or suppressed usi ## Miscellaneous - +Quickly make UI and code updates to running apps without losing app state for faster and more productive developer experience using [Hot Reload](xref:test/hot-reload). For more information, see [Update on .NET Hot Reload progress and Visual Studio 2022 Highlights](https://devblogs.microsoft.com/dotnet/update-on-net-hot-reload-progress-and-visual-studio-2022-highlights/). +Hot Reload minimizes the number of app restarts after code changes. For more information, see . ### Generic type constraints in Razor