2 writes to _fileInfo
Microsoft.CodeAnalysis.Razor.Compiler (2)
Language\DefaultRazorProjectItem.cs (2)
32
_fileInfo
= file;
55
public FileInfo File =>
_fileInfo
??= new(FilePath);
2 references to _fileInfo
Microsoft.CodeAnalysis.Razor.Compiler (2)
Language\DefaultRazorProjectItem.cs (2)
61
public override bool Exists =>
_fileInfo
?.Exists ?? System.IO.File.Exists(PhysicalPath);
63
public override string PhysicalPath =>
_fileInfo
?.FullName ?? _physicalFilePath;