39 references to BrokeredServiceDescriptors
Microsoft.CodeAnalysis.EditorFeatures (4)
EditAndContinue\ManagedHotReloadServiceProxy.cs (2)
17BrokeredServiceProxy<IManagedHotReloadService>(serviceBroker, BrokeredServiceDescriptors.DebuggerManagedHotReloadService, BrokeredServiceDescriptors.DebuggerManagedHotReloadServiceLegacy),
src\Workspaces\Remote\ServiceHub\Services\EditAndContinue\HotReloadLoggerProxy.cs (2)
16BrokeredServiceDescriptors.HotReloadLoggerService, 17BrokeredServiceDescriptors.HotReloadLoggerServiceLegacy),
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (4)
EditAndContinue\EditorManagedHotReloadLanguageServiceTests.cs (4)
67BrokeredServiceDescriptors.DebuggerManagedHotReloadService, 68BrokeredServiceDescriptors.DebuggerManagedHotReloadServiceLegacy) 111BrokeredServiceDescriptors.HotReloadLoggerService, 112BrokeredServiceDescriptors.HotReloadLoggerServiceLegacy)
Microsoft.CodeAnalysis.LanguageServer (14)
BrokeredServices\Services\Descriptors.cs (14)
44{ BrokeredServiceDescriptors.SolutionSnapshotProvider.Moniker, new ServiceRegistration(ServiceAudience.Local, null, allowGuestClients: false) }, 45{ BrokeredServiceDescriptors.DebuggerManagedHotReloadService.Moniker, new ServiceRegistration(ServiceAudience.Local, null, allowGuestClients: false) }, 46{ BrokeredServiceDescriptors.DebuggerManagedHotReloadServiceLegacy.Moniker, new ServiceRegistration(ServiceAudience.Local, null, allowGuestClients: false) }, 47{ BrokeredServiceDescriptors.HotReloadSessionNotificationService.Moniker, new ServiceRegistration(ServiceAudience.Local, null, allowGuestClients: false) }, 48{ BrokeredServiceDescriptors.ManagedHotReloadAgentManagerService.Moniker, new ServiceRegistration(ServiceAudience.Local, null, allowGuestClients: false) }, 49{ BrokeredServiceDescriptors.GenericHotReloadAgentManagerService.Moniker, new ServiceRegistration(ServiceAudience.Local, null, allowGuestClients: false) }, 50{ BrokeredServiceDescriptors.HotReloadOptionService.Moniker, new ServiceRegistration(ServiceAudience.Local, null, allowGuestClients: false) }, 51{ BrokeredServiceDescriptors.HotReloadLoggerService.Moniker, new ServiceRegistration(ServiceAudience.Local, null, allowGuestClients: false) }, 52{ BrokeredServiceDescriptors.HotReloadLoggerServiceLegacy.Moniker, new ServiceRegistration(ServiceAudience.Local, null, allowGuestClients: false) }, 53{ BrokeredServiceDescriptors.MauiLaunchCustomizerService.Moniker, new ServiceRegistration(ServiceAudience.Local, null, allowGuestClients: false) }, 54{ BrokeredServiceDescriptors.DebuggerSymbolLocatorService.Moniker, new ServiceRegistration(ServiceAudience.Local, null, allowGuestClients: false) }, 55{ BrokeredServiceDescriptors.DebuggerSourceLinkService.Moniker, new ServiceRegistration(ServiceAudience.Local, null, allowGuestClients: false) }, 56{ BrokeredServiceDescriptors.ProjectSystemQueryExecutionService.Moniker, new ServiceRegistration(ServiceAudience.Local, null, allowGuestClients: false) }, 57{ BrokeredServiceDescriptors.CssVisualDiagnosticsService.Moniker, new ServiceRegistration(ServiceAudience.Local, null, allowGuestClients: false) },
Microsoft.CodeAnalysis.LanguageServer.UnitTests (5)
BrokeredServices\DescriptorsTests.cs (5)
16Assert.Contains(BrokeredServiceDescriptors.DebuggerManagedHotReloadServiceLegacy.Moniker, Descriptors.RemoteServicesToRegister.Keys); 17Assert.Contains(BrokeredServiceDescriptors.HotReloadLoggerServiceLegacy.Moniker, Descriptors.RemoteServicesToRegister.Keys); 23Assert.Contains(BrokeredServiceDescriptors.HotReloadSessionNotificationService.Moniker, Descriptors.RemoteServicesToRegister.Keys); 24Assert.Contains(BrokeredServiceDescriptors.ManagedHotReloadAgentManagerService.Moniker, Descriptors.RemoteServicesToRegister.Keys); 25Assert.Contains(BrokeredServiceDescriptors.GenericHotReloadAgentManagerService.Moniker, Descriptors.RemoteServicesToRegister.Keys);
Microsoft.CodeAnalysis.Remote.ServiceHub (2)
Services\EditAndContinue\HotReloadLoggerProxy.cs (2)
16BrokeredServiceDescriptors.HotReloadLoggerService, 17BrokeredServiceDescriptors.HotReloadLoggerServiceLegacy),
Microsoft.CodeAnalysis.Remote.Workspaces (3)
EditAndContinue\ManagedHotReloadLanguageServiceDescriptor.cs (3)
15public const string MonikerName = BrokeredServiceDescriptors.LanguageServerComponentNamespace + "." + BrokeredServiceDescriptors.LanguageServerComponentName + "." + ServiceName; 17public static readonly ServiceJsonRpcDescriptor Descriptor = BrokeredServiceDescriptors.CreateServerServiceDescriptor(ServiceName, new(ServiceVersion));
Microsoft.VisualStudio.LanguageServices.DevKit (7)
EditAndContinue\LspSolutionSnapshotProvider.cs (1)
17: BrokeredServiceProxy<ISolutionSnapshotProviderService>(serviceBroker, BrokeredServiceDescriptors.SolutionSnapshotProvider),
SourceLink\VSCodeSourceLinkService.cs (2)
28var proxy = await _serviceBroker.GetProxyAsync<IDebuggerSymbolLocatorService>(BrokeredServiceDescriptors.DebuggerSymbolLocatorService, cancellationToken).ConfigureAwait(false); 52var proxy = await _serviceBroker.GetProxyAsync<IDebuggerSourceLinkService>(BrokeredServiceDescriptors.DebuggerSourceLinkService, cancellationToken).ConfigureAwait(false);
src\EditorFeatures\Core\EditAndContinue\ManagedHotReloadServiceProxy.cs (2)
17BrokeredServiceProxy<IManagedHotReloadService>(serviceBroker, BrokeredServiceDescriptors.DebuggerManagedHotReloadService, BrokeredServiceDescriptors.DebuggerManagedHotReloadServiceLegacy),
src\Workspaces\Remote\ServiceHub\Services\EditAndContinue\HotReloadLoggerProxy.cs (2)
16BrokeredServiceDescriptors.HotReloadLoggerService, 17BrokeredServiceDescriptors.HotReloadLoggerServiceLegacy),