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