1 implementation of IWorkspaceAsynchronousOperationListenerProvider
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Host\TaskScheduler\WorkspaceAsynchronousOperationListenerProvider.cs (1)
14internal sealed class WorkspaceAsynchronousOperationListenerProvider : IWorkspaceAsynchronousOperationListenerProvider
10 references to IWorkspaceAsynchronousOperationListenerProvider
Microsoft.CodeAnalysis.EditorFeatures (1)
EditorConfigSettings\Updater\SettingsUpdaterBase.cs (1)
29_listener = workspace.Services.GetRequiredService<IWorkspaceAsynchronousOperationListenerProvider>().GetListener();
Microsoft.CodeAnalysis.Features (4)
Workspace\BackgroundCompiler.cs (2)
35var listenerProvider = workspace.Services.GetRequiredService<IWorkspaceAsynchronousOperationListenerProvider>();
Workspace\BackgroundParser.cs (2)
42var listenerProvider = workspace.Services.GetRequiredService<IWorkspaceAsynchronousOperationListenerProvider>();
Microsoft.CodeAnalysis.Workspaces (4)
Workspace\Host\TaskScheduler\WorkspaceAsynchronousOperationListenerProvider.cs (1)
12[ExportWorkspaceService(typeof(IWorkspaceAsynchronousOperationListenerProvider), ServiceLayer.Default)]
Workspace\ProjectSystem\ProjectSystemProjectFactory.cs (1)
69WorkspaceListener = workspace.Services.GetRequiredService<IWorkspaceAsynchronousOperationListenerProvider>().GetListener();
Workspace\Workspace.cs (2)
81var listenerProvider = _services.GetRequiredService<IWorkspaceAsynchronousOperationListenerProvider>();
Microsoft.VisualStudio.LanguageServices (1)
ProjectSystem\VisualStudioWorkspaceImpl.cs (1)
146_workspaceListener = Services.GetRequiredService<IWorkspaceAsynchronousOperationListenerProvider>().GetListener();