1 write to Id
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\ProjectId.cs (1)
38this.Id = guid;
22 references to Id
Microsoft.CodeAnalysis.Features (8)
CodeLens\CodeLensReferencesService.cs (1)
159documentId.ProjectId.Id,
Completion\Providers\AbstractInternalsVisibleToCompletionProvider.cs (1)
154var projectGuid = project.Id.Id.ToString();
Completion\Providers\SymbolCompletionItem.cs (2)
220.AddProperty("InvalidProjects", string.Join(";", supportedPlatforms.InvalidProjects.Select(id => id.Id))) 221.AddProperty("CandidateProjects", string.Join(";", supportedPlatforms.CandidateProjects.Select(id => id.Id)));
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingWorkCoordinator.UnitTestingLowPriorityProcessor.cs (1)
197UnitTestingSolutionCrawlerLogger.LogProcessProject(Processor._logAggregator, projectId.Id, processedEverything);
FindUsages\DefinitionItem.cs (1)
254.Add(MetadataSymbolOriginatingProjectIdGuid, projectId.Id.ToString())
PdbSourceDocument\PdbSourceDocumentMetadataAsSourceFileProvider.cs (1)
224var tempFilePath = Path.Combine(tempPath, projectId.Id.ToString());
SolutionCrawler\WorkCoordinator.LowPriorityProcessor.cs (1)
176SolutionCrawlerLogger.LogProcessProject(Processor._logAggregator, projectId.Id, processedEverything);
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Extensions\ProtocolConversions.cs (1)
661return id.Id + "|" + id.DebugName;
Handler\Diagnostics\AbstractPullDiagnosticHandler.cs (1)
394ProjectIdentifier = project.Id.Id.ToString(),
Microsoft.CodeAnalysis.Remote.Workspaces (2)
Serialization\MessagePackFormatters.cs (2)
79if (previousId is not null && previousId.Id == id && previousId.DebugName == debugName) 103GuidFormatter.Instance.Serialize(ref writer, value.Id, options);
Microsoft.CodeAnalysis.Workspaces (8)
Workspace\Solution\ProjectId.cs (5)
62=> string.Format("({0}, #{1} - {2})", this.GetType().Name, this.Id, _debugName); 74this.Id == other.Id; 84=> this.Id.GetHashCode(); 90writer.WriteGuid(Id);
Workspace\Solution\SolutionState_Checksum.cs (1)
123var orderedProjectIds = ChecksumCache.GetOrCreate(ProjectIds, _ => ProjectIds.OrderBy(id => id.Id).ToImmutableArray());
Workspace\Solution\SourceGeneratedDocumentIdentity.cs (1)
35var projectIdBytes = projectId.Id.ToByteArray();
Workspace\Workspace.cs (1)
2294var name = project != null ? project.Name : "<Project" + projectId.Id + ">";
Microsoft.VisualStudio.LanguageServices.Xaml (2)
Implementation\LanguageServer\Handler\Completion\CompletionHandler.cs (1)
96Data = new CompletionResolveData { ProjectGuid = documentId.ProjectId.Id, DocumentGuid = documentId.Id, Position = position, DisplayText = xamlCompletion.DisplayText }
Implementation\LanguageServer\Handler\Diagnostics\AbstractPullDiagnosticHandler.cs (1)
142ProjectIdentifier = project.Id.Id.ToString(),