2 instantiations of ProcessResult
Aspire.Hosting.Kubernetes (2)
src\Aspire.Hosting\Dcp\Process\ProcessUtil.cs (2)
236
return new
ProcessResult
(exitCode);
239
return new
ProcessResult
(exitCode, outputCapture.ToArray(), outputCapture.TotalLineCount);
19 references to ProcessResult
Aspire.Hosting.Azure.Kubernetes (3)
AzureKubernetesEnvironmentResource.AksPipeline.cs (3)
626
var
result = await applyResultTask.WaitAsync(context.CancellationToken).ConfigureAwait(false);
701
var
result = await resultTask.WaitAsync(cancellationToken).ConfigureAwait(false);
1038
var
result = await task.ConfigureAwait(false);
Aspire.Hosting.Kubernetes (16)
CertManagerExtensions.cs (2)
478
var
result = await resultTask.WaitAsync(context.CancellationToken).ConfigureAwait(false);
543
var
result = await resultTask.WaitAsync(context.CancellationToken).ConfigureAwait(false);
Deployment\DefaultHelmRunner.cs (1)
34
var
processResult = await pendingProcessResult
Deployment\HelmDeploymentEngine.cs (1)
736
var
processResult = await pendingProcessResult
KubernetesEnvironmentResource.cs (9)
1512
var
patchExitResult = await patchResult.WaitAsync(context.CancellationToken).ConfigureAwait(false);
1572
var
result = await checkResult.WaitAsync(context.CancellationToken).ConfigureAwait(false);
1617
var
createExitResult = await createResult.WaitAsync(context.CancellationToken).ConfigureAwait(false);
1708
var
result = await getResult.WaitAsync(ct).ConfigureAwait(false);
1797
var
result = await getResult.WaitAsync(context.CancellationToken).ConfigureAwait(false);
2060
var
exitResult = await getResult.WaitAsync(context.CancellationToken).ConfigureAwait(false);
2130
var
applyExitResult = await applyResult.WaitAsync(context.CancellationToken).ConfigureAwait(false);
2209
var
result = await checkResult.WaitAsync(context.CancellationToken).ConfigureAwait(false);
2254
var
createExitResult = await createResult.WaitAsync(context.CancellationToken).ConfigureAwait(false);
src\Aspire.Hosting\Dcp\Process\ProcessUtil.cs (3)
22
public static (Task<
ProcessResult
>, IAsyncDisposable) Run(ProcessSpec processSpec)
124
var processLifetimeTcs = new TaskCompletionSource<
ProcessResult
>();
232
private static
ProcessResult
CreateProcessResult(int exitCode, ProcessOutputCapture? outputCapture)