blob: 6232fc158741fbb662766a143a75756928a9520e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Web.Hosting;
namespace System.Web.WebPages.Razor
{
internal sealed class HostingEnvironmentWrapper : IHostingEnvironment
{
public string MapPath(string virtualPath)
{
return HostingEnvironment.MapPath(virtualPath);
}
}
}
|