7 instantiations of ProcessFailedException
Aspire.Hosting (5)
Publishing\DockerContainerRuntime.cs (2)
112
throw new
ProcessFailedException
(
207
throw new
ProcessFailedException
(
Publishing\PodmanContainerRuntime.cs (2)
220
throw new
ProcessFailedException
(
251
throw new
ProcessFailedException
(
Publishing\ResourceContainerImageManager.cs (1)
419
throw new
ProcessFailedException
(
Aspire.Hosting.Tests (2)
Pipelines\DistributedApplicationPipelineTests.cs (1)
912
var expected = new
ProcessFailedException
("Docker build failed with exit code 1.", 1, ["output-001"]);
Publishing\ProcessFailedExceptionTests.cs (1)
18
var exception = new
ProcessFailedException
("Build failed.", 1, processOutput, totalProcessOutputLineCount: 60);
14 references to ProcessFailedException
Aspire.Hosting (1)
Publishing\ProcessFailedException.cs (1)
14
/// Initializes a new instance of <see cref="
ProcessFailedException
"/>.
Aspire.Hosting.Tests (13)
Pipelines\DistributedApplicationPipelineTests.cs (3)
912
var
expected = new ProcessFailedException("Docker build failed with exit code 1.", 1, ["output-001"]);
918
var
exception = await Assert.ThrowsAsync<
ProcessFailedException
>(() => pipeline.ExecuteAsync(context)).DefaultTimeout();
Publishing\PodmanSaveArgumentsTests.cs (4)
230
var
exception = await Assert.ThrowsAsync<
ProcessFailedException
>(() => BuildImageAsync(runtime, options));
252
var
exception = await Assert.ThrowsAsync<
ProcessFailedException
>(() => BuildImageAsync(runtime, options));
Publishing\ProcessFailedExceptionTests.cs (1)
18
var
exception = new ProcessFailedException("Build failed.", 1, processOutput, totalProcessOutputLineCount: 60);
Publishing\ResourceContainerImageManagerTests.cs (5)
668
var
exception = await Assert.ThrowsAsync<
ProcessFailedException
>(() =>
706
await Assert.ThrowsAsync<
ProcessFailedException
>(() =>
1544
var
ex = await Assert.ThrowsAsync<
ProcessFailedException
>(