From 1ea0647ae2395252e6e8423691a544ca34491a73 Mon Sep 17 00:00:00 2001 From: Justin Kotalik Date: Tue, 22 Aug 2017 16:46:00 -0700 Subject: [PATCH] Update comments to reflect code behavior (#1182) --- .../IHostingEnvironment.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Microsoft.AspNetCore.Hosting.Abstractions/IHostingEnvironment.cs b/src/Microsoft.AspNetCore.Hosting.Abstractions/IHostingEnvironment.cs index 6086f51b34..a619c7791f 100644 --- a/src/Microsoft.AspNetCore.Hosting.Abstractions/IHostingEnvironment.cs +++ b/src/Microsoft.AspNetCore.Hosting.Abstractions/IHostingEnvironment.cs @@ -12,10 +12,10 @@ namespace Microsoft.AspNetCore.Hosting { /// /// Gets or sets the name of the environment. This property is automatically set by the host to the value - /// of the "ASPNETCORE_ENVIRONMENT" environment variable. + /// of the "ASPNETCORE_ENVIRONMENT" environment variable, or "environment" as specified in any other configuration source. /// string EnvironmentName { get; set; } - + /// /// Gets or sets the name of the application. This property is automatically set by the host to the assembly containing /// the application entry point. @@ -42,4 +42,4 @@ namespace Microsoft.AspNetCore.Hosting /// IFileProvider ContentRootFileProvider { get; set; } } -} \ No newline at end of file +}