1 write to Value
Aspire.Hosting (1)
Pipelines\MarkdownString.cs (1)
38Value = value;
26 references to Value
Aspire.Hosting (7)
Pipelines\MarkdownString.cs (1)
47public override string ToString() => Value;
Pipelines\PipelineSummary.cs (1)
107_items.Add(new PipelineSummaryItem(key, value.Value, enableMarkdown: true));
Pipelines\ReportingStep.cs (3)
114return await Reporter.CreateTaskAsync(this, statusText.Value, enableMarkdown: true, cancellationToken: cancellationToken).ConfigureAwait(false); 151Reporter.Log(this, logLevel, message.Value, enableMarkdown: true); 175await Reporter.CompleteStepAsync(this, completionText.Value, completionState, enableMarkdown: true, cancellationToken: cancellationToken).ConfigureAwait(false);
Pipelines\ReportingTask.cs (2)
64await ParentStep.Reporter.UpdateTaskAsync(this, statusText.Value, enableMarkdown: true, cancellationToken: cancellationToken).ConfigureAwait(false); 77await ParentStep.Reporter.CompleteTaskAsync(this, completionState, completionMessage.Value, enableMarkdown: true, cancellationToken: cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Azure.Tests (6)
tests\Shared\TestPipelineActivityReporter.cs (6)
221_reporter.LoggedMessages.Add((_title, logLevel, message.Value)); 222_testOutputHelper.WriteLine($" [{logLevel}:{_title}] {message.Value}"); 229return CreateTaskAsync(statusText.Value, cancellationToken); 235return CompleteAsync(completionText.Value, completionState, cancellationToken); 279return UpdateAsync(statusText.Value, cancellationToken); 285return CompleteAsync(completionMessage.Value, completionState, cancellationToken);
Aspire.Hosting.Docker.Tests (6)
tests\Shared\TestPipelineActivityReporter.cs (6)
221_reporter.LoggedMessages.Add((_title, logLevel, message.Value)); 222_testOutputHelper.WriteLine($" [{logLevel}:{_title}] {message.Value}"); 229return CreateTaskAsync(statusText.Value, cancellationToken); 235return CompleteAsync(completionText.Value, completionState, cancellationToken); 279return UpdateAsync(statusText.Value, cancellationToken); 285return CompleteAsync(completionMessage.Value, completionState, cancellationToken);
Aspire.Hosting.Tests (7)
Pipelines\PipelineLoggerProviderTests.cs (1)
171LoggedMessages.Add((logLevel, message.Value));
tests\Shared\TestPipelineActivityReporter.cs (6)
221_reporter.LoggedMessages.Add((_title, logLevel, message.Value)); 222_testOutputHelper.WriteLine($" [{logLevel}:{_title}] {message.Value}"); 229return CreateTaskAsync(statusText.Value, cancellationToken); 235return CompleteAsync(completionText.Value, completionState, cancellationToken); 279return UpdateAsync(statusText.Value, cancellationToken); 285return CompleteAsync(completionMessage.Value, completionState, cancellationToken);