3 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)
Aspire.Hosting.Azure.Tests (1)
AzureDeployerTests.cs (1)
965public Task<IPublishingStep> CreateStepAsync(string title, CancellationToken cancellationToken = default)
11 references to CreateStepAsync
Aspire.Hosting (2)
Publishing\Publisher.cs (1)
31var step = await progressReporter.CreateStepAsync(
Publishing\ResourceContainerImageBuilder.cs (1)
146var step = await activityReporter.CreateStepAsync(
Aspire.Hosting.Azure (8)
AzureDeployingContext.cs (5)
85var validationStep = await activityReporter.CreateStepAsync("Validating Azure CLI authentication", cancellationToken).ConfigureAwait(false); 107var deployingStep = await activityReporter.CreateStepAsync("Deploying Azure resources", cancellationToken).ConfigureAwait(false); 229var computeStep = await activityReporter.CreateStepAsync("Deploying compute resources", cancellationToken).ConfigureAwait(false); 321var loginStep = await activityReporter.CreateStepAsync("Authenticating to container registries", cancellationToken).ConfigureAwait(false); 389var pushStep = await activityReporter.CreateStepAsync($"Pushing {totalImageCount} images to container registries", cancellationToken).ConfigureAwait(false);
AzurePublishingContext.cs (1)
91var step = await ActivityReporter.CreateStepAsync(
Provisioning\Internal\PublishModeProvisioningContextProvider.cs (2)
107var step = await activityReporter.CreateStepAsync( 224var step = await activityReporter.CreateStepAsync(
Aspire.Hosting.Docker (1)
DockerComposePublishingContext.cs (1)
150var step = await activityReporter.CreateStepAsync(