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)
108
if (
Reporter
is null)
113
return await
Reporter
.CreateTaskAsync(this, statusText, enableMarkdown: false, cancellationToken: cancellationToken).ConfigureAwait(false);
121
if (
Reporter
is null)
126
return await
Reporter
.CreateTaskAsync(this, statusText.Value, enableMarkdown: true, cancellationToken: cancellationToken).ConfigureAwait(false);
134
if (
Reporter
is null)
139
Reporter
.Log(this, logLevel, message, enableMarkdown);
145
if (
Reporter
is null)
150
Reporter
.Log(this, logLevel, message, enableMarkdown: false);
158
if (
Reporter
is null)
163
Reporter
.Log(this, logLevel, message.Value, enableMarkdown: true);
169
if (
Reporter
is null)
174
await
Reporter
.CompleteStepAsync(this, completionText, completionState, enableMarkdown: false, cancellationToken: cancellationToken).ConfigureAwait(false);
182
if (
Reporter
is null)
187
await
Reporter
.CompleteStepAsync(this, completionText.Value, completionState, enableMarkdown: true, cancellationToken: cancellationToken).ConfigureAwait(false);
195
if (
Reporter
is null)
220
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);