1 write to Reporter
Aspire.Hosting (1)
Pipelines\ReportingStep.cs (1)
22
Reporter
= reporter;
20 references to Reporter
Aspire.Hosting (20)
Pipelines\ReportingStep.cs (16)
96
if (
Reporter
is null)
101
return await
Reporter
.CreateTaskAsync(this, statusText, enableMarkdown: false, cancellationToken: cancellationToken).ConfigureAwait(false);
109
if (
Reporter
is null)
114
return await
Reporter
.CreateTaskAsync(this, statusText.Value, enableMarkdown: true, cancellationToken: cancellationToken).ConfigureAwait(false);
122
if (
Reporter
is null)
127
Reporter
.Log(this, logLevel, message, enableMarkdown);
133
if (
Reporter
is null)
138
Reporter
.Log(this, logLevel, message, enableMarkdown: false);
146
if (
Reporter
is null)
151
Reporter
.Log(this, logLevel, message.Value, enableMarkdown: true);
157
if (
Reporter
is null)
162
await
Reporter
.CompleteStepAsync(this, completionText, completionState, enableMarkdown: false, cancellationToken: cancellationToken).ConfigureAwait(false);
170
if (
Reporter
is null)
175
await
Reporter
.CompleteStepAsync(this, completionText.Value, completionState, enableMarkdown: true, cancellationToken: cancellationToken).ConfigureAwait(false);
183
if (
Reporter
is null)
208
await
Reporter
.CompleteStepAsync(this, completionText, finalState, enableMarkdown: false, cancellationToken: CancellationToken.None).ConfigureAwait(false);
Pipelines\ReportingTask.cs (4)
57
await ParentStep.
Reporter
.UpdateTaskAsync(this, statusText, enableMarkdown: false, cancellationToken: cancellationToken).ConfigureAwait(false);
64
await ParentStep.
Reporter
.UpdateTaskAsync(this, statusText.Value, enableMarkdown: true, cancellationToken: cancellationToken).ConfigureAwait(false);
70
await ParentStep.
Reporter
.CompleteTaskAsync(this, completionState, completionMessage, enableMarkdown: false, cancellationToken: cancellationToken).ConfigureAwait(false);
77
await ParentStep.
Reporter
.CompleteTaskAsync(this, completionState, completionMessage.Value, enableMarkdown: true, cancellationToken: cancellationToken).ConfigureAwait(false);