1 write to FilePath
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\SolutionInfo.cs (1)
125FilePath = filePath;
8 references to FilePath
Microsoft.CodeAnalysis.Remote.ServiceHub (2)
Host\RemoteWorkspace.SolutionCreator.cs (2)
50return _baseSolution.Id == newSolutionInfo.Id && _baseSolution.FilePath == newSolutionInfo.FilePath; 71Contract.ThrowIfFalse(solution.Id == newSolutionInfo.Id && solution.FilePath == newSolutionInfo.FilePath);
Microsoft.CodeAnalysis.Remote.Workspaces (1)
AbstractAssetProvider.cs (1)
44return SolutionInfo.Create(solutionAttributes.Id, solutionAttributes.Version, solutionAttributes.FilePath, projects, analyzerReferences).WithTelemetryId(solutionAttributes.TelemetryId);
Microsoft.CodeAnalysis.Workspaces (5)
Workspace\Solution\SolutionInfo.cs (4)
37public string? FilePath => Attributes.FilePath; 135var newFilePath = filePath.HasValue ? filePath.Value : FilePath; 139newFilePath == FilePath && 158writer.WriteString(FilePath);
Workspace\Solution\SolutionState.cs (1)
159public string? FilePath => _solutionAttributes.FilePath;