2 implementations of ICompilerServerHost
VBCSCompiler (1)
src\Compilers\Server\VBCSCompiler\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)
src\Compilers\Server\VBCSCompiler\BuildServerController.cs (3)
87internal static ICompilerServerHost CreateCompilerServerHost(ICompilerServerLogger logger) 101ICompilerServerHost? compilerServerHost = null, 142ICompilerServerHost? compilerServerHost = null,
src\Compilers\Server\VBCSCompiler\ClientConnectionHandler.cs (3)
22internal ICompilerServerHost CompilerServerHost { get; } 25internal ClientConnectionHandler(ICompilerServerHost compilerServerHost) 163static Task<BuildResponse> ProcessCompilationRequestCoreAsync(ICompilerServerHost compilerServerHost, BuildRequest buildRequest, CancellationToken cancellationToken)
src\Compilers\Server\VBCSCompiler\ServerDispatcher.cs (3)
54private readonly ICompilerServerHost _compilerServerHost; 66internal ServerDispatcher(ICompilerServerHost compilerServerHost, IClientConnectionHost clientConnectionHost, IDiagnosticListener? diagnosticListener = null) 335ICompilerServerHost compilerServerHost,
VBCSCompiler.UnitTests (3)
ServerUtil.cs (2)
80ICompilerServerHost compilerServerHost = null, 175ICompilerServerHost compilerServerHost = null,
TestableCompilerServerHost.cs (1)
24BuildResponse ICompilerServerHost.RunCompilation(in RunRequest request, CancellationToken cancellationToken)