1 write to Id
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\ProjectId.cs (1)
48this.Id = guid;
20 references to Id
Microsoft.CodeAnalysis.Features (6)
Completion\Providers\AbstractInternalsVisibleToCompletionProvider.cs (1)
154var projectGuid = project.Id.Id.ToString();
Completion\Providers\SymbolCompletionItem.cs (2)
254properties.Add(KeyValuePair.Create("InvalidProjects", string.Join(";", supportedPlatforms.InvalidProjects.Select(id => id.Id)))); 255properties.Add(KeyValuePair.Create("CandidateProjects", string.Join(";", supportedPlatforms.CandidateProjects.Select(id => id.Id))));
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingWorkCoordinator.UnitTestingLowPriorityProcessor.cs (1)
167UnitTestingSolutionCrawlerLogger.LogProcessProject(Processor._logAggregator, projectId.Id, processedEverything);
FindUsages\DefinitionItemFactory.cs (1)
155.Add(DefinitionItem.MetadataSymbolOriginatingProjectIdGuid, originatingProjectId.Id.ToString())
PdbSourceDocument\PdbSourceDocumentMetadataAsSourceFileProvider.cs (1)
230var tempFilePath = Path.Combine(tempPath, projectId.Id.ToString());
Microsoft.CodeAnalysis.Workspaces (14)
Diagnostics\Extensions.cs (1)
400foreach (var projectRef in project.ProjectReferences.OrderBy(r => r.ProjectId.Id))
Workspace\Solution\ProjectId.cs (9)
28/// Checksum of this ProjectId, built only from <see cref="Id"/>. 70=> string.Format("({0}, #{1} - {2})", this.GetType().Name, this.Id, DebugName); 80this.Id == other.Id; 89=> this.Id.GetHashCode(); 93writer.WriteGuid(Id); 113writer.WriteGuid(@this.Id); 117=> this.Id.CompareTo(other.Id);
Workspace\Solution\Solution.cs (1)
124/// Ordered by <see cref="ProjectState.Id"/>'s <see cref="ProjectId.Id"/> value.
Workspace\Solution\SolutionState.cs (1)
143/// Ordered by <see cref="ProjectState.Id"/>'s <see cref="ProjectId.Id"/> value.
Workspace\Solution\SourceGeneratedDocumentIdentity.cs (1)
51projectId.Id.TryWriteBytes(bytesToChecksum);
Workspace\Workspace.cs (1)
2561var name = project != null ? project.Name : "<Project" + projectId.Id + ">";