1 instantiation of RunRequest
VBCSCompiler (1)
BuildProtocolUtil.cs (1)
35
return new
RunRequest
(req.RequestId, language, currentDirectory, tempDirectory, libDirectory, arguments);
8 references to RunRequest
VBCSCompiler (5)
BuildProtocolUtil.cs (1)
18
internal static
RunRequest
GetRunRequest(BuildRequest req)
ClientConnectionHandler.cs (1)
167
var
request = BuildProtocolUtil.GetRunRequest(buildRequest);
CompilerRequestHandler.cs (2)
77
public bool TryCreateCompiler(in
RunRequest
request, BuildPaths buildPaths, [NotNullWhen(true)] out CommonCompiler? compiler)
105
public BuildResponse RunCompilation(in
RunRequest
request, CancellationToken cancellationToken)
ICompilerServerHost.cs (1)
20
BuildResponse RunCompilation(in
RunRequest
request, CancellationToken cancellationToken);
VBCSCompiler.UnitTests (3)
TestableCompilerServerHost.cs (3)
15
internal Func<
RunRequest
, CancellationToken, BuildResponse> RunCompilation { get; }
18
internal TestableCompilerServerHost(Func<
RunRequest
, CancellationToken, BuildResponse> runCompilation = null, ICompilerServerLogger logger = null)
24
BuildResponse ICompilerServerHost.RunCompilation(in
RunRequest
request, CancellationToken cancellationToken)