4 writes to Configuration
Microsoft.AspNetCore.Hosting (4)
GenericHost\WebHostBuilderBase.cs (2)
84
Configuration
= context.Configuration,
95
webHostContext.
Configuration
= context.Configuration;
WebHostBuilder.cs (2)
62
Configuration
= _config
286
_context.
Configuration
= configuration;
8 references to Configuration
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
642
var kestrelSection = context.
Configuration
.GetSection("Kestrel");
Microsoft.AspNetCore (5)
WebHost.cs (5)
206
loggingBuilder.AddConfiguration(hostingContext.
Configuration
.GetSection("Logging"));
227
StaticWebAssetsLoader.UseStaticWebAssets(ctx.HostingEnvironment, ctx.
Configuration
);
250
options.Configure(builderContext.
Configuration
.GetSection("Kestrel"), reloadOnChange: true);
263
var hosts = hostingContext.
Configuration
["AllowedHosts"]?.Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries);
270
new ConfigurationChangeTokenSource<HostFilteringOptions>(hostingContext.
Configuration
));
Microsoft.AspNetCore.Hosting (2)
GenericHost\GenericWebHostBuilder.cs (1)
393
return _context.
Configuration
;
WebHostBuilderExtensions.cs (1)
256
StaticWebAssetsLoader.UseStaticWebAssets(context.HostingEnvironment, context.
Configuration
);