1 implementation of IPublishingActivityReporter
Aspire.Hosting (1)
Publishing\PublishingActivityReporter.cs (1)
14internal sealed class PublishingActivityReporter : IPublishingActivityReporter, IAsyncDisposable
17 references to IPublishingActivityReporter
Aspire.Hosting (10)
DistributedApplicationBuilder.cs (1)
396_innerBuilder.Services.AddSingleton<IPublishingActivityReporter, PublishingActivityReporter>(sp => sp.GetRequiredService<PublishingActivityReporter>());
DistributedApplicationRunner.cs (1)
17internal sealed class DistributedApplicationRunner(ILogger<DistributedApplicationRunner> logger, IHostApplicationLifetime lifetime, DistributedApplicationExecutionContext executionContext, DistributedApplicationModel model, IServiceProvider serviceProvider, IPublishingActivityReporter activityReporter, IDistributedApplicationEventing eventing, BackchannelService backchannelService, IOptions<PublishingOptions> publishingOptions) : BackgroundService
Publishing\DeployingContext.cs (3)
29private IPublishingActivityReporter? _activityReporter; 49public IPublishingActivityReporter ActivityReporter => _activityReporter ??= 50Services.GetRequiredService<IPublishingActivityReporter>();
Publishing\Publisher.cs (1)
13IPublishingActivityReporter progressReporter,
Publishing\PublishingContext.cs (3)
29private IPublishingActivityReporter? _activityReporter; 48public IPublishingActivityReporter ActivityReporter => _activityReporter ??= 49Services.GetRequiredService<IPublishingActivityReporter>();
Publishing\ResourceContainerImageBuilder.cs (1)
120IPublishingActivityReporter activityReporter) : IResourceContainerImageBuilder
Aspire.Hosting.Azure (2)
AzurePublishingContext.cs (2)
29IPublishingActivityReporter activityReporter) 33private IPublishingActivityReporter ActivityReporter => activityReporter;
Aspire.Hosting.Docker (1)
DockerComposePublishingContext.cs (1)
29IPublishingActivityReporter activityReporter,
Aspire.Hosting.Tests (3)
PublishingTests.cs (3)
285Assert.IsAssignableFrom<IPublishingActivityReporter>(context.ActivityReporter); 288var reporter1 = context.ActivityReporter; 289var reporter2 = context.ActivityReporter;
Publishers.AppHost (1)
DistributedApplicationBuilderExtensions.cs (1)
27var reporter = context.ActivityReporter;