From d7f78987abb74080f8c4bdb70a807a7304583349 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 21 Nov 2019 14:19:22 -0800 Subject: [PATCH] Update Blazor linker docs to clarify that we always link on build (#15691) --- aspnetcore/host-and-deploy/blazor/configure-linker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/host-and-deploy/blazor/configure-linker.md b/aspnetcore/host-and-deploy/blazor/configure-linker.md index a48ab9cf70..0d9b26745f 100644 --- a/aspnetcore/host-and-deploy/blazor/configure-linker.md +++ b/aspnetcore/host-and-deploy/blazor/configure-linker.md @@ -15,7 +15,7 @@ By [Luke Latham](https://github.com/guardrex) [!INCLUDE[](~/includes/blazorwasm-preview-notice.md)] -Blazor performs [Intermediate Language (IL)](/dotnet/standard/managed-code#intermediate-language--execution) linking during a Release build to remove unnecessary IL from the app's output assemblies. +Blazor performs [Intermediate Language (IL)](/dotnet/standard/managed-code#intermediate-language--execution) linking during a build to remove unnecessary IL from the app's output assemblies. Control assembly linking using either of the following approaches: @@ -24,7 +24,7 @@ Control assembly linking using either of the following approaches: ## Disable linking with a MSBuild property -Linking is enabled by default in Release mode when an app is built, which includes publishing. To disable linking for all assemblies, set the `BlazorLinkOnBuild` MSBuild property to `false` in the project file: +Linking is enabled by default when an app is built, which includes publishing. To disable linking for all assemblies, set the `BlazorLinkOnBuild` MSBuild property to `false` in the project file: ```xml