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