From 99925fb497339936dd5afd2accfc32f7f057e001 Mon Sep 17 00:00:00 2001 From: Tom Dykstra Date: Tue, 3 Feb 2026 15:59:48 -0800 Subject: [PATCH] Fix typos in view compilation documentation (#36739) * Fix typos in view compilation documentation Corrected typographical errors in notes regarding runtime compilation obsolescence in .NET 10. * Fix typos in view-compilation.md notes --- aspnetcore/mvc/views/view-compilation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/mvc/views/view-compilation.md b/aspnetcore/mvc/views/view-compilation.md index 04662d5ae7a6..92922d06bda0 100644 --- a/aspnetcore/mvc/views/view-compilation.md +++ b/aspnetcore/mvc/views/view-compilation.md @@ -16,7 +16,7 @@ uid: mvc/views/view-compilation Razor files with a `.cshtml` extension are compiled at both build and publish time using the [Razor SDK](xref:razor-pages/sdk). Runtime compilation may be optionally enabled by configuring the project. > [!NOTE] -> **Runtime compilation is obsolete in .NET 10. For more information, see [Razor runtime compilation is obsolete](/dotnet/core/compatibility/aspnet-core/10/razor-runtime-compilation-obsolete).** +> **Runtime compilation was obsoleted starting in .NET 10. For more information, see [Razor runtime compilation is obsolete](/dotnet/core/compatibility/aspnet-core/10/razor-runtime-compilation-obsolete).** ## Razor compilation @@ -25,7 +25,7 @@ Build-time and publish-time compilation of Razor files is enabled by default by Updating Razor views and Razor Pages during development while the app is running is also supported using [.NET Hot Reload](xref:test/hot-reload). > [!NOTE] -> Razor runtime compilation is obsolete in .NET 10. When enabled, runtime compilation disables [.NET Hot Reload](xref:test/hot-reload). We recommend using Hot Reload instead for development scenarios. For more information, see [Razor runtime compilation is obsolete](/dotnet/core/compatibility/aspnet-core/10/razor-runtime-compilation-obsolete). +> **Razor runtime compilation was obsoleted starting in .NET 10. When enabled, runtime compilation disables [.NET Hot Reload](xref:test/hot-reload). We recommend using Hot Reload instead for development scenarios. For more information, see [Razor runtime compilation is obsolete](/dotnet/core/compatibility/aspnet-core/10/razor-runtime-compilation-obsolete).** ## Enable runtime compilation for all environments