1 write to _hostingEnvironment
Microsoft.AspNetCore.Hosting (1)
WebHostBuilder.cs (1)
39_hostingEnvironment = new HostingEnvironment();
8 references to _hostingEnvironment
Microsoft.AspNetCore.Hosting (8)
WebHostBuilder.cs (8)
262((IWebHostEnvironment)_hostingEnvironment).Initialize(contentRootPath, _options); 263_context.HostingEnvironment = _hostingEnvironment; 267services.AddSingleton<IWebHostEnvironment>(_hostingEnvironment); 268services.AddSingleton<IHostEnvironment>(_hostingEnvironment); 270services.AddSingleton<AspNetCore.Hosting.IHostingEnvironment>(_hostingEnvironment); 271services.AddSingleton<Extensions.Hosting.IHostingEnvironment>(_hostingEnvironment); 276.SetBasePath(_hostingEnvironment.ContentRootPath) 318var startupType = StartupLoader.FindStartupType(startupAssemblyName, _hostingEnvironment.EnvironmentName);