1 write to ReportingStep
Aspire.Hosting (1)
Pipelines\DistributedApplicationPipeline.cs (1)
546
ReportingStep
= reportingStep
23 references to ReportingStep
Aspire.Hosting (1)
Pipelines\DistributedApplicationPipeline.cs (1)
941
context.
ReportingStep
.Log(LogLevel.Information, sb.ToString(), enableMarkdown: false);
Aspire.Hosting.Azure (6)
AzureBicepResource.cs (1)
318
var resourceTask = await context.
ReportingStep
AzureEnvironmentResource.cs (3)
131
context.
ReportingStep
);
146
await context.
ReportingStep
.CompleteAsync(
153
await context.
ReportingStep
.CompleteAsync(
AzureEnvironmentResourceHelpers.cs (2)
40
var loginTask = await context.
ReportingStep
.CreateTaskAsync($"Logging in to **{registryName}**", context.CancellationToken).ConfigureAwait(false);
80
var pushTask = await context.
ReportingStep
.CreateTaskAsync($"Pushing **{resource.Name}** to **{registryName}**", context.CancellationToken).ConfigureAwait(false);
Aspire.Hosting.Azure.AppContainers (3)
AzureContainerAppEnvironmentResource.cs (1)
142
await context.
ReportingStep
.CompleteAsync(
AzureContainerAppResource.cs (2)
87
ctx.
ReportingStep
.Log(LogLevel.Information, $"Successfully deployed **{targetResource.Name}** to [{endpoint}]({endpoint})", enableMarkdown: true);
91
ctx.
ReportingStep
.Log(LogLevel.Information, $"Successfully deployed **{targetResource.Name}** to Azure Container Apps environment **{containerAppEnv.Name}**. No public endpoints were configured.", enableMarkdown: true);
Aspire.Hosting.Azure.AppService (2)
AzureAppServiceEnvironmentResource.cs (1)
143
await context.
ReportingStep
.CompleteAsync(
AzureAppServiceWebSiteResource.cs (1)
87
ctx.
ReportingStep
.Log(LogLevel.Information, $"Successfully deployed **{targetResource.Name}** to [{endpoint}]({endpoint})", enableMarkdown: true);
Aspire.Hosting.Docker (3)
DockerComposeEnvironmentResource.cs (3)
192
context.
ReportingStep
,
209
var deployTask = await context.
ReportingStep
.CreateTaskAsync($"Running docker compose up for **{Name}**", context.CancellationToken).ConfigureAwait(false);
276
var deployTask = await context.
ReportingStep
.CreateTaskAsync($"Running docker compose down for **{Name}**", context.CancellationToken).ConfigureAwait(false);
Aspire.Hosting.Tests (2)
Pipelines\DistributedApplicationPipelineTests.cs (2)
1134
Assert.Same(context.
ReportingStep
, PipelineLoggerProvider.CurrentStep);
1146
Assert.Same(context.
ReportingStep
, PipelineLoggerProvider.CurrentStep);
Pipelines.AppHost (2)
AppHost.cs (2)
65
var assignRoleTask = await context.
ReportingStep
264
var uploadTask = await deployingContext.
ReportingStep
Pipelines.Library (3)
DistributedApplicationPipelineExtensions.cs (3)
66
var publishTask = await context.
ReportingStep
.CreateTaskAsync($"Publishing {projectResource.Name}", cancellationToken).ConfigureAwait(false);
110
var zipTask = await context.
ReportingStep
.CreateTaskAsync($"Creating deployment package", cancellationToken).ConfigureAwait(false);
122
var uploadTask = await context.
ReportingStep
.CreateTaskAsync($"Uploading to {projectResource.Name}", cancellationToken).ConfigureAwait(false);
Publishers.AppHost (1)
DistributedApplicationBuilderExtensions.cs (1)
36
var reporter = context.
ReportingStep
;