18 lines
836 B
C#
18 lines
836 B
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using Microsoft.AspNet.FileProviders;
|
|
using Microsoft.AspNet.Hosting.Internal;
|
|
|
|
namespace Microsoft.AspNet.Hosting
|
|
{
|
|
public static class HostingEnvironmentExtensions
|
|
{
|
|
public static void Initialize(this IHostingEnvironment hostingEnvironment, string applicationBasePath, string environmentName)
|
|
{
|
|
hostingEnvironment.WebRootPath = HostingUtilities.GetWebRoot(applicationBasePath);
|
|
hostingEnvironment.WebRootFileProvider = new PhysicalFileProvider(hostingEnvironment.WebRootPath);
|
|
hostingEnvironment.EnvironmentName = environmentName ?? hostingEnvironment.EnvironmentName;
|
|
}
|
|
}
|
|
} |