// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.Extensions.Configuration;
namespace Microsoft.AspNetCore.Hosting
{
///
/// Context containing the common services on the . Some properties may be null until set by the .
///
public class WebHostBuilderContext
{
///
/// The initialized by the .
///
public IHostingEnvironment HostingEnvironment { get; set; }
///
/// The containing the merged configuration of the application and the .
///
public IConfiguration Configuration { get; set; }
}
}