2 implementations of ISolutionCrawlerProgressReporter
Microsoft.CodeAnalysis.Features (2)
SolutionCrawler\SolutionCrawlerProgressReporter.cs (2)
23internal sealed class SolutionCrawlerProgressReporter : ISolutionCrawlerProgressReporter 97private class NullReporter : ISolutionCrawlerProgressReporter
8 references to ISolutionCrawlerProgressReporter
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
SolutionCrawler\WorkCoordinatorTests.cs (1)
1383var reporter = service.GetProgressReporter(workspace);
Microsoft.CodeAnalysis.Features (3)
SolutionCrawler\ISolutionCrawlerService.cs (2)
22/// Get <see cref="ISolutionCrawlerProgressReporter"/> for the given <see cref="Workspace"/> 24ISolutionCrawlerProgressReporter GetProgressReporter(Workspace workspace);
SolutionCrawler\SolutionCrawlerService.cs (1)
42public ISolutionCrawlerProgressReporter GetProgressReporter(Workspace workspace)
Microsoft.VisualStudio.LanguageServices (4)
Diagnostics\DiagnosticProgressReporter.cs (2)
72/// from the <see cref="ISolutionCrawlerProgressReporter"/> 102var reporter = crawlerService.GetProgressReporter(_workspace);
TableDataSource\AbstractRoslynTableDataSource.cs (2)
37/// We get build progress updates from <see cref="ISolutionCrawlerProgressReporter.ProgressChanged"/>. 51var reporter = crawlerService.GetProgressReporter(workspace);