4 instantiations of RunCompilationResult
VBCSCompiler (4)
src\Compilers\Shared\BuildClient.cs (4)
29
internal static readonly RunCompilationResult Succeeded = new
RunCompilationResult
(CommonCompiler.Succeeded);
31
internal static readonly RunCompilationResult Failed = new
RunCompilationResult
(CommonCompiler.Failed);
168
return new
RunCompilationResult
(exitCode);
260
return new
RunCompilationResult
(completedResponse.ReturnCode, ranOnServer: true);
8 references to RunCompilationResult
VBCSCompiler (8)
src\Compilers\Shared\BuildClient.cs (8)
29
internal static readonly
RunCompilationResult
Succeeded = new RunCompilationResult(CommonCompiler.Succeeded);
31
internal static readonly
RunCompilationResult
Failed = new RunCompilationResult(CommonCompiler.Failed);
125
internal
RunCompilationResult
RunCompilation(IEnumerable<string> originalArguments, BuildPaths buildPaths, TextWriter? textWriter = null, string? pipeName = null)
148
return
RunCompilationResult
.Failed;
171
public Task<
RunCompilationResult
> RunCompilationAsync(IEnumerable<string> originalArguments, BuildPaths buildPaths, TextWriter? textWriter = null)
173
var tcs = new TaskCompletionSource<
RunCompilationResult
>();
178
var
result = RunCompilation(originalArguments, buildPaths, textWriter);
211
private
RunCompilationResult
? RunServerCompilation(TextWriter textWriter, List<string> arguments, BuildPaths buildPaths, string? libDirectory, string pipeName, string? keepAlive)