13 references to FilePath
Microsoft.CodeAnalysis.Remote.ServiceHub (3)
Host\RemoteWorkspace.SolutionCreator.cs (3)
581if (document.State.Attributes.FilePath != newDocumentInfo.FilePath) 582document = document.Project.Solution.WithDocumentFilePath(document.Id, newDocumentInfo.FilePath).GetRequiredDocument(document.Id);
Microsoft.CodeAnalysis.Remote.Workspaces (1)
AbstractAssetProvider.cs (1)
169var textLoader = serializableSourceText.ToTextLoader(attributes.FilePath);
Microsoft.CodeAnalysis.Workspaces (9)
Workspace\Solution\AnalyzerConfigDocumentState.cs (2)
48Attributes.FilePath == newAttributes.FilePath ? _lazyAnalyzerConfig : null);
Workspace\Solution\DocumentInfo.cs (5)
46public string? FilePath => Attributes.FilePath; 208var newFilePath = filePath.HasValue ? filePath.Value : FilePath; 216newFilePath == FilePath && 230=> FilePath ?? (SourceCodeKind == SourceCodeKind.Regular ? Name : ""); 239writer.WriteString(FilePath);
Workspace\Solution\TextDocumentState.cs (1)
49public string? FilePath => Attributes.FilePath;
Workspace\Workspace.cs (1)
1152if (oldAttributes.FilePath != newInfo.FilePath)