2 implementations of ICompilerServerHost
VBCSCompiler (1)
CompilerRequestHandler.cs (1)
42internal sealed class CompilerServerHost : ICompilerServerHost
VBCSCompiler.UnitTests (1)
TestableCompilerServerHost.cs (1)
13internal sealed class TestableCompilerServerHost : ICompilerServerHost
12 references to ICompilerServerHost
VBCSCompiler (9)
BuildServerController.cs (3)
91internal static ICompilerServerHost CreateCompilerServerHost(ICompilerServerLogger logger) 105ICompilerServerHost? compilerServerHost = null, 140ICompilerServerHost? compilerServerHost = null,
ClientConnectionHandler.cs (3)
22internal ICompilerServerHost CompilerServerHost { get; } 25internal ClientConnectionHandler(ICompilerServerHost compilerServerHost) 163static Task<BuildResponse> ProcessCompilationRequestCore(ICompilerServerHost compilerServerHost, BuildRequest buildRequest, CancellationToken cancellationToken)
ServerDispatcher.cs (3)
54private readonly ICompilerServerHost _compilerServerHost; 66internal ServerDispatcher(ICompilerServerHost compilerServerHost, IClientConnectionHost clientConnectionHost, IDiagnosticListener? diagnosticListener = null) 333ICompilerServerHost compilerServerHost,
VBCSCompiler.UnitTests (3)
ServerUtil.cs (2)
80ICompilerServerHost compilerServerHost = null, 175ICompilerServerHost compilerServerHost = null,
TestableCompilerServerHost.cs (1)
24BuildResponse ICompilerServerHost.RunCompilation(in RunRequest request, CancellationToken cancellationToken)