10 references to RemoteProcessConfiguration
Microsoft.CodeAnalysis.Remote.Workspaces (7)
ServiceDescriptors.cs (4)
138=> GetServiceDescriptor(serviceType, RemoteProcessConfiguration.ServerGC); 140public ServiceDescriptor GetServiceDescriptor(Type serviceType, RemoteProcessConfiguration configuration) 148return (configuration & RemoteProcessConfiguration.ServerGC) switch 151RemoteProcessConfiguration.ServerGC => descriptorCoreClr64ServerGC,
ServiceHubRemoteHostClient.cs (3)
29public readonly RemoteProcessConfiguration Configuration; 35RemoteProcessConfiguration configuration, 56RemoteProcessConfiguration configuration,
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (1)
Remote\InProcRemostHostClient.cs (1)
60var descriptor = ServiceDescriptors.Instance.GetServiceDescriptor(typeof(T), RemoteProcessConfiguration.ServerGC);
Microsoft.VisualStudio.LanguageServices (2)
Remote\VisualStudioRemoteHostClientProvider.cs (2)
134var configuration = 135_globalOptions.GetOption(RemoteHostOptionsStorage.OOPServerGCFeatureFlag) ? RemoteProcessConfiguration.ServerGC : 0;