1 instantiation of UnitTestingSolutionCrawlerProgressReporter
Microsoft.CodeAnalysis.Features (1)
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingSolutionCrawlerRegistrationService.cs (1)
27private readonly UnitTestingSolutionCrawlerProgressReporter _progressReporter = new();
9 references to UnitTestingSolutionCrawlerProgressReporter
Microsoft.CodeAnalysis.Features (9)
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingSolutionCrawlerProgressReporter.cs (2)
81private readonly UnitTestingSolutionCrawlerProgressReporter _owner; 83public UnitTestingProgressStatusRAII(UnitTestingSolutionCrawlerProgressReporter owner)
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingSolutionCrawlerRegistrationService.cs (3)
27private readonly UnitTestingSolutionCrawlerProgressReporter _progressReporter = new(); 265UnitTestingSolutionCrawlerProgressReporter progressReporter) 272public readonly UnitTestingSolutionCrawlerProgressReporter ProgressReporter = progressReporter;
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingWorkCoordinator.UnitTestingAsyncDocumentWorkItemQueue.cs (1)
16private sealed class UnitTestingAsyncDocumentWorkItemQueue(UnitTestingSolutionCrawlerProgressReporter progressReporter) : UnitTestingAsyncWorkItemQueue<DocumentId>(progressReporter)
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingWorkCoordinator.UnitTestingAsyncProjectWorkItemQueue.cs (1)
17private sealed class UnitTestingAsyncProjectWorkItemQueue(UnitTestingSolutionCrawlerProgressReporter progressReporter) : UnitTestingAsyncWorkItemQueue<ProjectId>(progressReporter)
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingWorkCoordinator.UnitTestingAsyncWorkItemQueue.cs (2)
19private abstract class UnitTestingAsyncWorkItemQueue<TKey>(UnitTestingSolutionCrawlerProgressReporter progressReporter) : IDisposable 26private readonly UnitTestingSolutionCrawlerProgressReporter _progressReporter = progressReporter;