1 write to FilePath
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\DocumentInfo.cs (1)
203FilePath = filePath;
10 references to FilePath
Microsoft.CodeAnalysis.Remote.ServiceHub (2)
Host\RemoteWorkspace.SolutionCreator.cs (2)
479Contract.ThrowIfFalse(document.State.Attributes.FilePath == newDocumentInfo.FilePath);
Microsoft.CodeAnalysis.Remote.Workspaces (1)
AbstractAssetProvider.cs (1)
92var textLoader = TextLoader.From(TextAndVersion.Create(text, VersionStamp.Create(), attributes.FilePath));
Microsoft.CodeAnalysis.Workspaces (7)
Workspace\Solution\DocumentInfo.cs (5)
48public string? FilePath => Attributes.FilePath; 221var newFilePath = filePath.HasValue ? filePath.Value : FilePath; 229newFilePath == FilePath && 243=> FilePath ?? (SourceCodeKind == SourceCodeKind.Regular ? Name : ""); 254writer.WriteString(FilePath);
Workspace\Solution\TextDocumentState.cs (1)
70public string? FilePath => Attributes.FilePath;
Workspace\Workspace.cs (1)
901if (oldAttributes.FilePath != newInfo.FilePath)