diff --git a/aspnetcore/fundamentals/host/web-host.md b/aspnetcore/fundamentals/host/web-host.md index b6d3197765..f6a1f8dc50 100644 --- a/aspnetcore/fundamentals/host/web-host.md +++ b/aspnetcore/fundamentals/host/web-host.md @@ -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")