Base:
property
PhysicalPath
Microsoft.AspNetCore.Razor.Language.RazorProjectItem.PhysicalPath
3 references to PhysicalPath
Microsoft.AspNetCore.Razor.Language.UnitTests (1)
DefaultRazorProjectItemTest.cs (1)
31Assert.Equal(fileInfo.FullName, projectItem.PhysicalPath);
Microsoft.CodeAnalysis.Razor.Compiler (2)
Language\DefaultRazorProjectItem.cs (2)
61public override bool Exists => _fileInfo?.Exists ?? System.IO.File.Exists(PhysicalPath); 71public override Stream Read() => new FileStream(PhysicalPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite | FileShare.Delete);