3 implementations of IPipelineActivityReporter
Aspire.Hosting (2)
Pipelines\NullPipelineActivityReporter.cs (1)
14
public sealed class NullPublishingActivityReporter :
IPipelineActivityReporter
Pipelines\PipelineActivityReporter.cs (1)
17
internal sealed class PipelineActivityReporter :
IPipelineActivityReporter
, IAsyncDisposable
Aspire.Hosting.Azure.Tests (1)
AzureDeployerTests.cs (1)
1198
private sealed class TestPublishingActivityReporter :
IPipelineActivityReporter
23 references to IPipelineActivityReporter
Aspire.Hosting (10)
DistributedApplicationBuilder.cs (1)
447
_innerBuilder.Services.AddSingleton<
IPipelineActivityReporter
, PipelineActivityReporter>(sp => sp.GetRequiredService<PipelineActivityReporter>());
DistributedApplicationRunner.cs (1)
18
internal sealed class DistributedApplicationRunner(ILogger<DistributedApplicationRunner> logger, IHostApplicationLifetime lifetime, DistributedApplicationExecutionContext executionContext, DistributedApplicationModel model, IServiceProvider serviceProvider,
IPipelineActivityReporter
activityReporter, IDistributedApplicationEventing eventing, BackchannelService backchannelService, IOptions<PublishingOptions> publishingOptions) : BackgroundService
Pipelines\DistributedApplicationPipeline.cs (2)
236
var
activityReporter = context.Services.GetRequiredService<
IPipelineActivityReporter
>();
Pipelines\NullPipelineActivityReporter.cs (1)
11
/// A no-op implementation of <see cref="
IPipelineActivityReporter
"/> for testing purposes.
Publishing\Publisher.cs (1)
17
IPipelineActivityReporter
progressReporter,
Publishing\PublishingContext.cs (3)
29
private
IPipelineActivityReporter
? _activityReporter;
48
public
IPipelineActivityReporter
ActivityReporter => _activityReporter ??=
49
Services.GetRequiredService<
IPipelineActivityReporter
>();
Publishing\ResourceContainerImageBuilder.cs (1)
137
IPipelineActivityReporter
activityReporter) : IResourceContainerImageBuilder
Aspire.Hosting.Azure (3)
AzurePublishingContext.cs (2)
30
IPipelineActivityReporter
activityReporter)
34
private
IPipelineActivityReporter
ActivityReporter => activityReporter;
Provisioning\Internal\PublishModeProvisioningContextProvider.cs (1)
30
IPipelineActivityReporter
activityReporter) : BaseProvisioningContextProvider(
Aspire.Hosting.Azure.Tests (1)
AzureDeployerTests.cs (1)
870
IPipelineActivityReporter
? activityReporter = null,
Aspire.Hosting.Docker (1)
DockerComposePublishingContext.cs (1)
30
IPipelineActivityReporter
activityReporter,
Aspire.Hosting.Tests (7)
Pipelines\DistributedApplicationPipelineTests.cs (7)
699
builder.Services.AddSingleton<
IPipelineActivityReporter
>(reporter);
734
builder.Services.AddSingleton<
IPipelineActivityReporter
>(reporter);
775
builder.Services.AddSingleton<
IPipelineActivityReporter
>(reporter);
823
builder.Services.AddSingleton<
IPipelineActivityReporter
>(reporter);
871
builder.Services.AddSingleton<
IPipelineActivityReporter
>(reporter);
912
builder.Services.AddSingleton<
IPipelineActivityReporter
>(reporter);
1062
builder.Services.AddSingleton<
IPipelineActivityReporter
>(reporter);
Publishers.AppHost (1)
DistributedApplicationBuilderExtensions.cs (1)
27
var
reporter = context.ActivityReporter;