1 implementation of IProgressTracker
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
NoOpProgressTracker.cs (1)
7internal class NoOpProgressTracker : IProgressTracker
7 references to IProgressTracker
Microsoft.CodeAnalysis.CodeStyle.Fixes (7)
AbstractChangeNamespaceToMatchFolderCodeFixProvider.CustomFixAllProvider.cs (1)
75IProgressTracker progressTracker,
FixAllContextExtensions.cs (1)
13public static IProgressTracker GetProgressTracker(this FixAllContext context)
IProgressTracker.cs (4)
23/// Opens a scope that will call <see cref="IProgressTracker.ItemCompleted"/> on <paramref name="tracker"/> once 27public static ItemCompletedDisposer ItemCompletedScope(this IProgressTracker tracker, string? description = null) 37private readonly IProgressTracker _tracker; 39public ItemCompletedDisposer(IProgressTracker tracker)
NoOpProgressTracker.cs (1)
9public static readonly IProgressTracker Instance = new NoOpProgressTracker();