19 references to RemoteProcessConfiguration
Microsoft.CodeAnalysis.Remote.Workspaces (13)
ServiceDescriptors.cs (9)
133
=> GetServiceDescriptor(serviceType,
RemoteProcessConfiguration
.ServerGC | (IsCurrentProcessRunningOnCoreClr() ?
RemoteProcessConfiguration
.Core : 0));
135
public ServiceDescriptor GetServiceDescriptor(Type serviceType,
RemoteProcessConfiguration
configuration)
138
return (configuration & (
RemoteProcessConfiguration
.Core |
RemoteProcessConfiguration
.ServerGC)) switch
141
RemoteProcessConfiguration
.Core => descriptorCoreClr64,
142
RemoteProcessConfiguration
.ServerGC => descriptor64ServerGC,
143
RemoteProcessConfiguration
.Core |
RemoteProcessConfiguration
.ServerGC => descriptorCoreClr64ServerGC,
ServiceHubRemoteHostClient.cs (4)
38
public readonly
RemoteProcessConfiguration
Configuration;
44
RemoteProcessConfiguration
configuration,
65
RemoteProcessConfiguration
configuration,
104
if (configuration.HasFlag(
RemoteProcessConfiguration
.EnableSolutionCrawler))
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (2)
Remote\InProcRemostHostClient.cs (2)
68
var descriptor = ServiceDescriptors.Instance.GetServiceDescriptor(typeof(T),
RemoteProcessConfiguration
.ServerGC | (ServiceDescriptors.IsCurrentProcessRunningOnCoreClr() ?
RemoteProcessConfiguration
.Core : 0));
Microsoft.VisualStudio.LanguageServices (4)
Remote\VisualStudioRemoteHostClientProvider.cs (4)
105
var
configuration =
106
(_globalOptions.GetOption(RemoteHostOptionsStorage.OOPCoreClrFeatureFlag) ?
RemoteProcessConfiguration
.Core : 0) |
107
(_globalOptions.GetOption(RemoteHostOptionsStorage.OOPServerGCFeatureFlag) ?
RemoteProcessConfiguration
.ServerGC : 0) |
108
(_globalOptions.GetOption(SolutionCrawlerRegistrationService.EnableSolutionCrawler) ?
RemoteProcessConfiguration
.EnableSolutionCrawler : 0);