1 implementation of CompletePublishAsync
Aspire.Hosting (1)
Publishing\PublishingActivityReporter.cs (1)
193public async Task CompletePublishAsync(string? completionMessage = null, CompletionState? completionState = null, bool isDeploy = false, CancellationToken cancellationToken = default)
3 references to CompletePublishAsync
Aspire.Hosting (2)
DistributedApplicationRunner.cs (2)
49await activityReporter.CompletePublishAsync(completionMessage: null, completionState: null, isDeploy: publishingOptions.Value.Deploy, cancellationToken: stoppingToken).ConfigureAwait(false); 64await activityReporter.CompletePublishAsync(completionMessage: ex.Message, completionState: CompletionState.CompletedWithError, isDeploy: publishingOptions.Value.Deploy, cancellationToken: stoppingToken).ConfigureAwait(false);
Aspire.Hosting.Azure (1)
AzureDeployingContext.cs (1)
59await activityReporter.CompletePublishAsync($"Deployment completed successfully. View Aspire dashboard at {dashboardUrl}", cancellationToken: cancellationToken).ConfigureAwait(false);