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