1 write to ReportingStep
Aspire.Hosting (1)
Pipelines\DistributedApplicationPipeline.cs (1)
651
ReportingStep
= reportingStep
31 references to ReportingStep
Aspire.Hosting (3)
Pipelines\DistributedApplicationPipeline.cs (1)
1052
context.
ReportingStep
.Log(LogLevel.Information, sb.ToString(), enableMarkdown: false);
Pipelines\PipelineStepHelpers.cs (2)
68
var tagTask = await context.
ReportingStep
.CreateTaskAsync(
114
var pushTask = await context.
ReportingStep
.CreateTaskAsync(
Aspire.Hosting.Azure (4)
AzureBicepResource.cs (1)
319
var resourceTask = await context.
ReportingStep
AzureEnvironmentResource.cs (3)
135
context.
ReportingStep
);
150
await context.
ReportingStep
.CompleteAsync(
157
await context.
ReportingStep
.CompleteAsync(
Aspire.Hosting.Azure.AppContainers (3)
AzureContainerAppEnvironmentResource.cs (1)
128
await context.
ReportingStep
.CompleteAsync(
AzureContainerAppResource.cs (2)
63
ctx.
ReportingStep
.Log(LogLevel.Information, $"Successfully deployed **{targetResource.Name}** to [{endpoint}]({endpoint})", enableMarkdown: true);
67
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 (6)
AzureAppServiceEnvironmentResource.cs (1)
129
await context.
ReportingStep
.CompleteAsync(
AzureAppServiceWebSiteResource.cs (5)
63
ctx.
ReportingStep
.Log(LogLevel.Information, $"Website {websiteName} does not exist. Adding annotation to refresh provisionable resource", false);
96
ctx.
ReportingStep
.Log(LogLevel.Information, $"Updated provisionable resource to deploy website and deployment slot", false);
100
ctx.
ReportingStep
.Log(LogLevel.Warning, $"No environment context annotation on the environment resource", false);
132
ctx.
ReportingStep
.Log(LogLevel.Information, $"Successfully deployed **{targetResource.Name}** to [{endpoint}]({endpoint})", enableMarkdown: true);
211
context.
ReportingStep
.Log(LogLevel.Information, $"Check if website {websiteName} exists", false);
Aspire.Hosting.Azure.ContainerRegistry (1)
AzureContainerRegistryHelpers.cs (1)
35
var loginTask = await context.
ReportingStep
.CreateTaskAsync($"Logging in to **{registryName}**", context.CancellationToken).ConfigureAwait(false);
Aspire.Hosting.Docker (6)
DockerComposeEnvironmentResource.cs (3)
212
context.
ReportingStep
,
228
var deployTask = await context.
ReportingStep
.CreateTaskAsync($"Running docker compose up for **{Name}**", context.CancellationToken).ConfigureAwait(false);
290
var deployTask = await context.
ReportingStep
.CreateTaskAsync($"Running docker compose down for **{Name}**", context.CancellationToken).ConfigureAwait(false);
DockerComposeServiceResource.cs (3)
317
context.
ReportingStep
.Log(LogLevel.Information,
332
context.
ReportingStep
.Log(LogLevel.Information, $"Successfully deployed **{TargetResource.Name}** to {endpointList}.", enableMarkdown: true);
337
context.
ReportingStep
.Log(LogLevel.Information,
Aspire.Hosting.Tests (2)
Pipelines\DistributedApplicationPipelineTests.cs (2)
1181
Assert.Same(context.
ReportingStep
, PipelineLoggerProvider.CurrentStep);
1193
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
;