8 references to FilePath
Microsoft.CodeAnalysis.Remote.ServiceHub (2)
Host\RemoteWorkspace.cs (1)
230return currentSolution.Id == newSolutionInfo.Id && currentSolution.FilePath == newSolutionInfo.FilePath;
Host\RemoteWorkspace.SolutionCreator.cs (1)
59Contract.ThrowIfFalse(solution.Id == newSolutionInfo.Id && solution.FilePath == newSolutionInfo.FilePath);
Microsoft.CodeAnalysis.Remote.Workspaces (1)
AbstractAssetProvider.cs (1)
67solutionAttributes.FilePath,
Microsoft.CodeAnalysis.Workspaces (5)
Workspace\Solution\SolutionInfo.cs (4)
34public string? FilePath => Attributes.FilePath; 148var newFilePath = filePath.HasValue ? filePath.Value : FilePath; 152newFilePath == FilePath && 169writer.WriteString(FilePath);
Workspace\Solution\SolutionState.cs (1)
146public string? FilePath => SolutionAttributes.FilePath;