6 references to SucceedAsync
Aspire.Hosting (1)
Publishing\PipelineExecutor.cs (1)
64await step.SucceedAsync(cancellationToken: stoppingToken).ConfigureAwait(false);
Aspire.Hosting.Azure (4)
Provisioning\Internal\PublishModeProvisioningContextProvider.cs (4)
138await step.SucceedAsync($"Found {tenantOptions!.Count} available tenant(s)", cancellationToken).ConfigureAwait(false); 237await step.SucceedAsync($"Found {subscriptionOptions!.Count} available subscription(s)", cancellationToken).ConfigureAwait(false); 336await step.SucceedAsync($"Found {resourceGroupOptions.Count} resource group(s)", cancellationToken).ConfigureAwait(false); 431await step.SucceedAsync($"Found {locationOptions!.Count} region(s)", cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Tests (1)
Publishing\PublishingExtensionsTests.cs (1)
42var result = await step.SucceedAsync("Success message", CancellationToken.None);