2 writes to Reporter
Aspire.Hosting (2)
Publishing\NullPublishingActivityProgressReporter.cs (1)
38Reporter = this
Publishing\PublishingActivityProgressReporter.cs (1)
420Reporter = this
17 references to Reporter
Aspire.Hosting (17)
Publishing\PublishingActivityProgressReporter.cs (9)
228if (Reporter is null) 233await Reporter.UpdateTaskAsync(this, statusText, cancellationToken).ConfigureAwait(false); 243if (Reporter is null) 248await Reporter.CompleteTaskAsync(this, CompletionState.Completed, completionMessage, cancellationToken).ConfigureAwait(false); 258if (Reporter is null) 263await Reporter.CompleteTaskAsync(this, CompletionState.CompletedWithWarning, completionMessage, cancellationToken).ConfigureAwait(false); 273if (Reporter is null) 278await Reporter.CompleteTaskAsync(this, CompletionState.CompletedWithError, completionMessage, cancellationToken).ConfigureAwait(false); 286if (Reporter is null || CompletionState != CompletionState.InProgress)
Publishing\PublishingExtensions.cs (8)
98if (task.Reporter is null) 103await task.Reporter.UpdateTaskAsync(task, statusText, cancellationToken).ConfigureAwait(false); 120if (task.Reporter is null) 125await task.Reporter.CompleteTaskAsync(task, CompletionState.Completed, message, cancellationToken).ConfigureAwait(false); 142if (task.Reporter is null) 147await task.Reporter.CompleteTaskAsync(task, CompletionState.CompletedWithWarning, message, cancellationToken).ConfigureAwait(false); 164if (task.Reporter is null) 169await task.Reporter.CompleteTaskAsync(task, CompletionState.CompletedWithError, errorMessage, cancellationToken).ConfigureAwait(false);