2 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)
10 references to CreateStepAsync
Aspire.Hosting (2)
Publishing\Publisher.cs (1)
29
var step = await progressReporter.
CreateStepAsync
(
Publishing\ResourceContainerImageBuilder.cs (1)
146
var step = await activityReporter.
CreateStepAsync
(
Aspire.Hosting.Azure (7)
AzureDeployingContext.cs (4)
75
var deployingStep = await activityReporter.
CreateStepAsync
("Deploying Azure resources", cancellationToken).ConfigureAwait(false);
198
var computeStep = await activityReporter.
CreateStepAsync
("Deploying compute resources", cancellationToken).ConfigureAwait(false);
285
var loginStep = await activityReporter.
CreateStepAsync
("Authenticating to container registries", cancellationToken).ConfigureAwait(false);
340
var pushStep = await activityReporter.
CreateStepAsync
($"Pushing {totalImageCount} images to container registries", cancellationToken).ConfigureAwait(false);
AzurePublishingContext.cs (1)
88
var step = await ActivityReporter.
CreateStepAsync
(
Provisioning\Internal\PublishModeProvisioningContextProvider.cs (2)
107
var step = await activityReporter.
CreateStepAsync
(
225
var step = await activityReporter.
CreateStepAsync
(
Aspire.Hosting.Docker (1)
DockerComposePublishingContext.cs (1)
129
var step = await activityReporter.
CreateStepAsync
(