Rect to Razor rename

This commit is contained in:
Ajay Bhargav Baaskaran 2017-07-06 18:45:34 -07:00
parent 0c31f51d28
commit 8bc4d7bb2d
1 changed files with 2 additions and 2 deletions

View File

@ -13,14 +13,14 @@ namespace Microsoft.AspNetCore.Mvc.Razor.Internal
{ {
FileInfo = fileInfo; FileInfo = fileInfo;
BasePath = basePath; BasePath = basePath;
Path = path; FilePath = path;
} }
public IFileInfo FileInfo { get; } public IFileInfo FileInfo { get; }
public override string BasePath { get; } public override string BasePath { get; }
public override string Path { get; } public override string FilePath { get; }
public override bool Exists => FileInfo.Exists; public override bool Exists => FileInfo.Exists;