1 implementation of Exception
Aspire.Hosting (1)
ApplicationModel\ExecutionConfigurationResult.cs (1)
30public Exception? Exception { get; init; }
11 references to Exception
Aspire.Hosting (7)
ApplicationModel\IExecutionConfigurationBuilder.cs (1)
26/// <returns>The resource configuration result. Any exceptions that occurred while processing are available via the <see cref="IExecutionConfigurationResult.Exception"/> property.</returns>
Dcp\DcpExecutor.cs (2)
1714if (configuration.Exception is not null) 2116if (failedToApplyRunArgs || configuration.Exception is not null)
Publishing\ManifestPublishingContext.cs (4)
536if (executionConfiguration.Exception is not null) 538ExceptionDispatchInfo.Throw(executionConfiguration.Exception); 574if (executionConfiguration.Exception is not null) 576ExceptionDispatchInfo.Throw(executionConfiguration.Exception);
Aspire.Hosting.Tests (4)
Utils\ArgumentEvaluator.cs (2)
24if (executionConfiguration.Exception is not null) 26ExceptionDispatchInfo.Throw(executionConfiguration.Exception);
Utils\EnvironmentVariableEvaluator.cs (2)
25if (executionConfiguration.Exception is not null) 27ExceptionDispatchInfo.Throw(executionConfiguration.Exception);