blob: 61fc9a8c4cde3df2c231719347ffe7dca1a7103c (
plain)
1
2
3
4
5
6
7
8
9
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
namespace System.Web.WebPages.Razor
{
internal interface IHostingEnvironment
{
string MapPath(string virtualPath);
}
}
|