4 overrides of PhysicalPath
Microsoft.CodeAnalysis.Razor.Compiler (4)
Language\DefaultImportProjectItem.cs (1)
18
public override string
PhysicalPath
=> null!;
Language\DefaultRazorProjectItem.cs (1)
63
public override string
PhysicalPath
=> _fileInfo?.FullName ?? _physicalFilePath;
Language\NotFoundProjectItem.cs (1)
31
public override string
PhysicalPath
=> throw new NotSupportedException();
SourceGenerators\SourceGeneratorProjectItem.cs (1)
47
public override string
PhysicalPath
=> AdditionalText.Path;
1 reference to PhysicalPath
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\RazorSourceDocument.cs (1)
135
var filePath = projectItem.
PhysicalPath
;