26 references to Editor
Microsoft.CodeAnalysis.CodeStyle.Fixes (2)
MefLanguageServices.cs (1)
103
if (TryGetServiceByLayer(ServiceLayer.
Editor
, services, out service))
MefWorkspaceServices.cs (1)
119
if (TryGetServiceByLayer(ServiceLayer.
Editor
, services, out service))
Microsoft.CodeAnalysis.EditorFeatures (14)
CodeRefactorings\EditorLayerCodeActionHelpersService.cs (1)
15
[ExportWorkspaceServiceFactory(typeof(ICodeRefactoringHelpersService), ServiceLayer.
Editor
), Shared]
EditAndContinue\ActiveStatementTrackingService.cs (1)
38
[ExportWorkspaceServiceFactory(typeof(IActiveStatementTrackingService), ServiceLayer.
Editor
), Shared]
Editor\EditorLayerExtensionManager.cs (1)
28
[ExportWorkspaceServiceFactory(typeof(IExtensionManager), ServiceLayer.
Editor
), Shared]
ErrorReporting\EditorErrorReportingService.cs (1)
13
[ExportWorkspaceService(typeof(IErrorReportingService), ServiceLayer.
Editor
), Shared]
IntelliSense\ImportCompletionCacheService\EditorExtensionMethodImportCompletionCacheServiceFactory.cs (1)
16
[ExportWorkspaceServiceFactory(typeof(IImportCompletionCacheService<ExtensionMethodImportCompletionCacheEntry, object>), ServiceLayer.
Editor
), Shared]
IntelliSense\ImportCompletionCacheService\EditorTypeImportCompletionCacheServiceFactory.cs (1)
16
[ExportWorkspaceServiceFactory(typeof(IImportCompletionCacheService<TypeImportCompletionCacheEntry, TypeImportCompletionCacheEntry>), ServiceLayer.
Editor
), Shared]
LanguageServer\EditorHoverCreationService.cs (1)
20
[ExportWorkspaceService(typeof(ILspHoverResultCreationService), ServiceLayer.
Editor
), Shared]
LanguageServer\EditorLspCompletionResultCreationService.cs (1)
19
[ExportWorkspaceService(typeof(ILspCompletionResultCreationService), ServiceLayer.
Editor
), Shared]
LanguageServer\EditorLspReferencesResultCreationService.cs (1)
18
[ExportWorkspaceService(typeof(ILspReferencesResultCreationService), ServiceLayer.
Editor
), Shared]
LanguageServer\EditorLspSymbolInformationCreationService.cs (1)
15
[ExportWorkspaceService(typeof(ILspSymbolInformationCreationService), ServiceLayer.
Editor
), Shared]
Shared\DefaultTextBufferSupportsFeatureService.cs (1)
12
[ExportWorkspaceService(typeof(ITextBufferSupportsFeatureService), ServiceLayer.
Editor
), Shared]
Shared\Utilities\ThreadingContextTaskSchedulerProvider.cs (1)
16
[ExportWorkspaceService(typeof(ITaskSchedulerProvider), ServiceLayer.
Editor
), Shared]
Undo\EditorSourceTextUndoService.cs (1)
18
[ExportWorkspaceService(typeof(ISourceTextUndoService), ServiceLayer.
Editor
), Shared]
Workspaces\EditorTextFactoryService.cs (1)
19
[ExportWorkspaceService(typeof(ITextFactoryService), ServiceLayer.
Editor
), Shared]
Microsoft.CodeAnalysis.EditorFeatures.Wpf (4)
BackgroundWorkIndicator\WpfBackgroundWorkIndicatorFactory.cs (1)
20
[ExportWorkspaceService(typeof(IBackgroundWorkIndicatorFactory), ServiceLayer.
Editor
), Shared]
NavigateTo\DefaultNavigateToPreviewServiceFactory.cs (1)
14
[ExportWorkspaceServiceFactory(typeof(INavigateToPreviewService), ServiceLayer.
Editor
), Shared]
Notification\EditorNotificationServiceFactory.cs (1)
16
[ExportWorkspaceServiceFactory(typeof(INotificationService), ServiceLayer.
Editor
)]
QuickInfo\ContentControlService.cs (1)
27
[ExportWorkspaceService(typeof(IContentControlService), layer: ServiceLayer.
Editor
), Shared]
Microsoft.CodeAnalysis.Workspaces (5)
MefLanguageServices.cs (1)
103
if (TryGetServiceByLayer(ServiceLayer.
Editor
, services, out service))
MefWorkspaceServices.cs (1)
119
if (TryGetServiceByLayer(ServiceLayer.
Editor
, services, out service))
Workspace\Host\Mef\ServiceLayer.cs (3)
17
/// Service layer that overrides <see cref="
Editor
"/>, <see cref="Desktop"/> and <see cref="Default"/>.
22
/// Service layer that overrides <see cref="
Editor
"/>, <see cref="Desktop"/> and <see cref="Default"/>.
29
public const string Editor = nameof(
Editor
);
Microsoft.VisualStudio.IntegrationTest.Setup (1)
TestExtensionManager.cs (1)
16
/// is preferred over EditorLayerExtensionManager (which has layer: <see cref="ServiceLayer.
Editor
"/>) when running VS integration tests.