2 implementations of CreateStepAsync
Aspire.Hosting (2)
Publishing\NullPublishingActivityReporter.cs (1)
17public Task<IPublishingStep> CreateStepAsync(string title, CancellationToken cancellationToken = default)
Publishing\PublishingActivityReporter.cs (1)
36public async Task<IPublishingStep> CreateStepAsync(string title, CancellationToken cancellationToken = default)
10 references to CreateStepAsync
Aspire.Hosting (2)
Publishing\Publisher.cs (1)
29var step = await progressReporter.CreateStepAsync(
Publishing\ResourceContainerImageBuilder.cs (1)
146var step = await activityReporter.CreateStepAsync(
Aspire.Hosting.Azure (7)
AzureDeployingContext.cs (4)
75var deployingStep = await activityReporter.CreateStepAsync("Deploying Azure resources", cancellationToken).ConfigureAwait(false); 198var computeStep = await activityReporter.CreateStepAsync("Deploying compute resources", cancellationToken).ConfigureAwait(false); 285var loginStep = await activityReporter.CreateStepAsync("Authenticating to container registries", cancellationToken).ConfigureAwait(false); 340var pushStep = await activityReporter.CreateStepAsync($"Pushing {totalImageCount} images to container registries", cancellationToken).ConfigureAwait(false);
AzurePublishingContext.cs (1)
88var step = await ActivityReporter.CreateStepAsync(
Provisioning\Internal\PublishModeProvisioningContextProvider.cs (2)
107var step = await activityReporter.CreateStepAsync( 225var step = await activityReporter.CreateStepAsync(
Aspire.Hosting.Docker (1)
DockerComposePublishingContext.cs (1)
129var step = await activityReporter.CreateStepAsync(