3 implementations of IPipelineActivityReporter
Aspire.Hosting (2)
Pipelines\NullPipelineActivityReporter.cs (1)
15
public sealed class NullPublishingActivityReporter :
IPipelineActivityReporter
Pipelines\PipelineActivityReporter.cs (1)
17
internal sealed class PipelineActivityReporter :
IPipelineActivityReporter
, IAsyncDisposable
Aspire.Hosting.Azure.Tests (1)
AzureDeployerTests.cs (1)
1351
private sealed class TestPublishingActivityReporter :
IPipelineActivityReporter
14 references to IPipelineActivityReporter
Aspire.Hosting (6)
DistributedApplicationBuilder.cs (1)
475
_innerBuilder.Services.AddSingleton<
IPipelineActivityReporter
, PipelineActivityReporter>(sp => sp.GetRequiredService<PipelineActivityReporter>());
Pipelines\DistributedApplicationPipeline.cs (2)
538
var
activityReporter = context.Services.GetRequiredService<
IPipelineActivityReporter
>();
Pipelines\NullPipelineActivityReporter.cs (1)
12
/// A no-op implementation of <see cref="
IPipelineActivityReporter
"/> for testing purposes.
Publishing\PipelineExecutor.cs (2)
24
IPipelineActivityReporter
activityReporter,
27
IPipelineActivityReporter
pipelineActivityReporter) : BackgroundService
Aspire.Hosting.Azure (1)
Provisioning\Internal\PublishModeProvisioningContextProvider.cs (1)
31
IPipelineActivityReporter
activityReporter) : BaseProvisioningContextProvider(
Aspire.Hosting.Azure.Tests (1)
AzureDeployerTests.cs (1)
1072
IPipelineActivityReporter
? activityReporter = null,
Aspire.Hosting.Tests (6)
Pipelines\DistributedApplicationPipelineTests.cs (6)
779
builder.Services.AddSingleton<
IPipelineActivityReporter
>(reporter);
1058
builder.Services.AddSingleton<
IPipelineActivityReporter
>(reporter);
1122
builder.Services.AddSingleton<
IPipelineActivityReporter
>(reporter);
1235
builder.Services.AddSingleton<
IPipelineActivityReporter
>(reporter);
1296
builder.Services.AddSingleton<
IPipelineActivityReporter
>(reporter);
1399
builder.Services.AddSingleton<
IPipelineActivityReporter
>(reporter);