1 write to Id
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\SolutionInfo.cs (1)
123
Id
= id;
7 references to Id
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 (4)
Workspace\Solution\SolutionInfo.cs (3)
27
public SolutionId Id => Attributes.
Id
;
145
return new SolutionAttributes(
Id
, newVersion, newFilePath, newTelemetryId);
152
Id
.WriteTo(writer);
Workspace\Solution\SolutionState.cs (1)
154
public SolutionId Id => _solutionAttributes.
Id
;