You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/MicroBatchFramework/BatchHost.cs
+14-29Lines changed: 14 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@
7
7
usingSystem.IO;
8
8
usingSystem.Reflection;
9
9
usingSystem.Collections.Generic;
10
+
usingSystem.Linq;
10
11
11
12
namespaceMicroBatchFramework
12
13
{
@@ -21,7 +22,7 @@ public static class BatchHost
21
22
/// </summary>
22
23
/// <remarks>
23
24
/// The following defaults are applied to the returned <see cref="HostBuilder"/>:
24
-
/// set the <see cref="IHostingEnvironment.EnvironmentName"/> to the NETCORE_ENVIRONMENT,
25
+
/// set the <see cref="IHostingEnvironment.EnvironmentName"/> to the DOTNET_ENVIRONMENT,
25
26
/// load <see cref="IConfiguration"/> from 'appsettings.json' and 'appsettings.[<see cref="IHostingEnvironment.EnvironmentName"/>].json',
26
27
/// load <see cref="IConfiguration"/> from User Secrets when <see cref="IHostingEnvironment.EnvironmentName"/> is 'Development' using the entry assembly,
27
28
/// load <see cref="IConfiguration"/> from environment variables,
@@ -35,7 +36,7 @@ public static class BatchHost
35
36
/// </summary>
36
37
/// <remarks>
37
38
/// The following defaults are applied to the returned <see cref="HostBuilder"/>:
38
-
/// set the <see cref="IHostingEnvironment.EnvironmentName"/> to the NETCORE_ENVIRONMENT,
39
+
/// set the <see cref="IHostingEnvironment.EnvironmentName"/> to the DOTNET_ENVIRONMENT,
39
40
/// load <see cref="IConfiguration"/> from 'appsettings.json' and 'appsettings.[<see cref="IHostingEnvironment.EnvironmentName"/>].json',
40
41
/// load <see cref="IConfiguration"/> from User Secrets when <see cref="IHostingEnvironment.EnvironmentName"/> is 'Development' using the entry assembly,
41
42
/// load <see cref="IConfiguration"/> from environment variables,
0 commit comments