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