Description line in the wrong spot (#9103)

pull/9105/head
Luke Latham 2018-10-18 13:02:39 -05:00 committed by Scott Addie
parent b2f79137f1
commit e88d6d6e86
1 changed files with 2 additions and 4 deletions

View File

@ -4,7 +4,7 @@ author: guardrex
description: Learn about the web host in ASP.NET Core, which is responsible for app startup and lifetime management.
ms.author: riande
ms.custom: mvc
ms.date: 09/01/2018
ms.date: 10/18/2018
uid: fundamentals/host/web-host
---
# ASP.NET Core Web Host
@ -360,7 +360,7 @@ WebHost.CreateDefaultBuilder(args)
### Hosting Startup Exclude Assemblies
DESCRIPTION
A semicolon-delimited string of hosting startup assemblies to exclude on startup.
**Key**: hostingStartupExcludeAssemblies
**Type**: *string*
@ -368,8 +368,6 @@ DESCRIPTION
**Set using**: `UseSetting`
**Environment variable**: `ASPNETCORE_HOSTINGSTARTUPEXCLUDEASSEMBLIES`
A semicolon-delimited string of hosting startup assemblies to exclude on startup.
```csharp
WebHost.CreateDefaultBuilder(args)
.UseSetting(WebHostDefaults.HostingStartupExcludeAssembliesKey, "assembly1;assembly2")