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