From 36ea388e9b09fa721f590e1cf915b8e437730192 Mon Sep 17 00:00:00 2001 From: Patrick Westerhoff Date: Fri, 6 Jul 2018 01:13:28 +0200 Subject: [PATCH] Remove doc about unshipped default configuration (#274) --- src/Microsoft.AspNetCore/WebHost.cs | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/src/Microsoft.AspNetCore/WebHost.cs b/src/Microsoft.AspNetCore/WebHost.cs index 987d9afd2c9..31ab9461d27 100644 --- a/src/Microsoft.AspNetCore/WebHost.cs +++ b/src/Microsoft.AspNetCore/WebHost.cs @@ -122,16 +122,15 @@ namespace Microsoft.AspNetCore /// load from 'appsettings.json' and 'appsettings.[].json', /// load from User Secrets when is 'Development' using the entry assembly, /// load from environment variables, - /// configures the to log to the console and debug output, - /// enables IIS integration, - /// and enables the ability for frameworks to bind their options to their default configuration sections. + /// configure the to log to the console and debug output, + /// and enable IIS integration. /// /// The initialized . public static IWebHostBuilder CreateDefaultBuilder() => CreateDefaultBuilder(args: null); /// - /// Initializes a new instance of the class with pre-configured defaults. + /// Initializes a new instance of the class with pre-configured defaults. /// /// /// The following defaults are applied to the returned : @@ -141,9 +140,8 @@ namespace Microsoft.AspNetCore /// load from User Secrets when is 'Development' using the entry assembly, /// load from environment variables, /// load from supplied command line args, - /// configures the to log to the console and debug output, - /// enables IIS integration, - /// and enables the ability for frameworks to bind their options to their default configuration sections. + /// configure the to log to the console and debug output, + /// and enable IIS integration. /// /// The command line args. /// The initialized . @@ -232,9 +230,8 @@ namespace Microsoft.AspNetCore /// load from User Secrets when is 'Development' using the entry assembly, /// load from environment variables, /// load from supplied command line args, - /// configures the to log to the console and debug output, - /// enables IIS integration, - /// enables the ability for frameworks to bind their options to their default configuration sections. + /// configure the to log to the console and debug output, + /// enable IIS integration. /// /// The type containing the startup methods for the application. /// The command line args.