50 references to ComponentModel
Microsoft.VisualStudio.LanguageServices (50)
LanguageService\AbstractLanguageService`2.cs (10)
84
this.EditorOptionsService = this.Package.
ComponentModel
.GetService<EditorOptionsService>();
85
this.Workspace = this.Package.
ComponentModel
.GetService<VisualStudioWorkspaceImpl>();
86
this.EditorAdaptersFactoryService = this.Package.
ComponentModel
.GetService<IVsEditorAdaptersFactoryService>();
90
private IThreadingContext ThreadingContext => this.Package.
ComponentModel
.GetService<IThreadingContext>();
148
var workspace = Package.
ComponentModel
.GetService<VisualStudioWorkspace>();
153
v, Package.
ComponentModel
).AttachToVsTextView());
165
var globalOptions = this.Package.
ComponentModel
.GetService<IGlobalOptionService>();
195
var outliningManagerService = this.Package.
ComponentModel
.GetService<IOutliningManagerService>();
228
this.Package.
ComponentModel
.GetService<IUIThreadOperationExecutor>());
237
this.Package.
ComponentModel
,
LanguageService\AbstractLanguageService`2.IVsImmediateStatementCompletion2.cs (2)
55
this.Package.
ComponentModel
,
56
this.Package.
ComponentModel
.GetService<IFeatureServiceFactory>());
LanguageService\AbstractLanguageService`2.IVsLanguageBlock.cs (1)
43
var uiThreadOperationExecutor = this.Package.
ComponentModel
.GetService<IUIThreadOperationExecutor>();
LanguageService\AbstractLanguageService`2.IVsLanguageTextOps.cs (1)
31
var uiThreadOperationExecutor = this.Package.
ComponentModel
.GetService<IUIThreadOperationExecutor>();
LanguageService\AbstractLanguageService`2.VsCodeWindowManager.cs (8)
51
_globalOptions = languageService.Package.
ComponentModel
.GetService<IGlobalOptionService>();
160
var controllerFactoryService = _languageService.Package.
ComponentModel
.GetService<INavigationBarControllerFactoryService>();
252
var threadingContext = _languageService.Package.
ComponentModel
.GetService<IThreadingContext>();
257
var languageServiceBroker = _languageService.Package.
ComponentModel
.GetService<ILanguageServiceBroker2>();
258
var asyncListenerProvider = _languageService.Package.
ComponentModel
.GetService<IAsynchronousOperationListenerProvider>();
260
var editorAdaptersFactoryService = _languageService.Package.
ComponentModel
.GetService<IVsEditorAdaptersFactoryService>();
261
var outliningManagerService = _languageService.Package.
ComponentModel
.GetService<IOutliningManagerService>();
285
var threadingContext = _languageService.Package.
ComponentModel
.GetService<IThreadingContext>();
LanguageService\AbstractPackage.cs (1)
41
var globalOptions =
ComponentModel
.GetService<IGlobalOptionService>();
LanguageService\AbstractPackage`2.cs (2)
69
var miscellaneousFilesWorkspace = this.
ComponentModel
.GetService<MiscellaneousFilesWorkspace>();
96
var workspace =
ComponentModel
.GetService<VisualStudioWorkspace>();
RoslynPackage.cs (17)
153
LoadOptionPersistersAsync(this.
ComponentModel
, cancellationToken).Forget();
161
var globalNotificationService = this.
ComponentModel
.GetService<IGlobalOperationNotificationService>();
167
var settingsEditorFactory = this.
ComponentModel
.GetService<SettingsEditorFactory>();
173
await this.
ComponentModel
.GetService<MiscellaneousFilesWorkspace>().InitializeAsync().ConfigureAwait(false);
180
(_, _, _, _) => ValueTaskFactory.FromResult<object?>(new WorkspaceProjectFactoryService(this.
ComponentModel
.GetService<IWorkspaceProjectContextFactory>())));
185
(_, _, _, _) => ValueTaskFactory.FromResult<object?>(new ManagedEditAndContinueLanguageServiceBridge(this.
ComponentModel
.GetService<EditAndContinueLanguageService>())));
213
_colorSchemeApplier =
ComponentModel
.GetService<ColorSchemeApplier>();
229
await this.
ComponentModel
.GetService<VisualStudioSuppressionFixService>().InitializeAsync(this).ConfigureAwait(false);
230
await this.
ComponentModel
.GetService<VisualStudioDiagnosticListSuppressionStateService>().InitializeAsync(this, cancellationToken).ConfigureAwait(false);
232
await this.
ComponentModel
.GetService<IVisualStudioDiagnosticAnalyzerService>().InitializeAsync(this, cancellationToken).ConfigureAwait(false);
233
await this.
ComponentModel
.GetService<RemoveUnusedReferencesCommandHandler>().InitializeAsync(this, cancellationToken).ConfigureAwait(false);
234
await this.
ComponentModel
.GetService<SyncNamespacesCommandHandler>().InitializeAsync(this, cancellationToken).ConfigureAwait(false);
271
await
ComponentModel
.DefaultExportProvider.GetExportedValue<KeybindingReset.KeybindingResetDetector>().InitializeAsync(cancellationToken).ConfigureAwait(true);
305
ComponentModel
.GetService<VisualStudioSourceGeneratorTelemetryCollectorWorkspaceServiceFactory>().ReportOtherWorkspaceTelemetry();
310
await this.
ComponentModel
.GetService<IAnalyzerNodeSetup>().InitializeAsync(this, cancellationToken).ConfigureAwait(false);
312
_ruleSetEventHandler = this.
ComponentModel
.GetService<RuleSetEventHandler>();
318
=> this.
ComponentModel
.GetService<IAnalyzerNodeSetup>().Unregister();
StackTraceExplorer\StackTraceExplorerCommandHandler.cs (2)
30
_threadingContext = package.
ComponentModel
.GetService<IThreadingContext>();
31
_globalOptions = package.
ComponentModel
.GetService<IGlobalOptionService>();
StackTraceExplorer\StackTraceExplorerToolWindow.cs (5)
123
var workspace = roslynPackage.
ComponentModel
.GetService<VisualStudioWorkspace>();
124
var formatMapService = roslynPackage.
ComponentModel
.GetService<IClassificationFormatMapService>();
126
var typeMap = roslynPackage.
ComponentModel
.GetService<ClassificationTypeMap>();
127
var threadingContext = roslynPackage.
ComponentModel
.GetService<IThreadingContext>();
128
var themingService = roslynPackage.
ComponentModel
.GetService<IWpfThemeService>();
Venus\VenusCommandFilter`2.cs (1)
30
: base(wpfTextView, subjectBuffer, nextCommandTarget, languageService.Package.
ComponentModel
)