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