3 instantiations of PostConfigureDashboardOptions
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
681new PostConfigureDashboardOptions(builder.Configuration).PostConfigure(name: string.Empty, dashboardOptions);
Aspire.Dashboard.Tests (2)
DashboardOptionsTests.cs (2)
127new PostConfigureDashboardOptions(configuration).PostConfigure(null, options); 145new PostConfigureDashboardOptions(configuration).PostConfigure(null, options);
3 references to PostConfigureDashboardOptions
Aspire.Dashboard (3)
Configuration\PostConfigureDashboardOptions.cs (2)
15public PostConfigureDashboardOptions(IConfiguration configuration) : this(configuration, NullLogger<PostConfigureDashboardOptions>.Instance) 19public PostConfigureDashboardOptions(IConfiguration configuration, ILogger<PostConfigureDashboardOptions> logger)
DashboardWebApplication.cs (1)
216builder.Services.AddSingleton<IPostConfigureOptions<DashboardOptions>, PostConfigureDashboardOptions>();