1 write to ProjectId
Microsoft.CodeAnalysis.Features (1)
SolutionCrawler\WorkCoordinator.WorkItem.cs (1)
80ProjectId = projectId;
11 references to ProjectId
Microsoft.CodeAnalysis.Features (11)
SolutionCrawler\WorkCoordinator.AsyncProjectWorkItemQueue.cs (1)
72var key = item.ProjectId;
SolutionCrawler\WorkCoordinator.LowPriorityProcessor.cs (4)
108Logger.Log(FunctionId.WorkCoordinator_Project_Enqueue, s_enqueueLogger, Environment.TickCount, item.ProjectId, !added); 110SolutionCrawlerLogger.LogWorkItemEnqueue(Processor._logAggregator, item.ProjectId); 131var projectId = workItem.ProjectId; 216if (uniqueIds.Add(item.ProjectId))
SolutionCrawler\WorkCoordinator.NormalPriorityProcessor.cs (1)
143SetProjectProcessing(workItem.ProjectId);
SolutionCrawler\WorkCoordinator.WorkItem.cs (5)
105public object Key => DocumentId ?? (object)ProjectId; 110DocumentId, ProjectId, Language, InvocationReasons, IsLowPriority, ActiveMember, SpecificAnalyzers, 123DocumentId, ProjectId, Language, 146DocumentId, ProjectId, Language, InvocationReasons, IsLowPriority, ActiveMember, SpecificAnalyzers, 168=> $"{DocumentId?.ToString() ?? ProjectId.ToString()}, ({InvocationReasons}), LowPriority:{IsLowPriority}, ActiveMember:{ActiveMember != null}, Retry:{IsRetry}, ({string.Join("|", SpecificAnalyzers.Select(a => a.GetType().Name))})";