1 instantiation of DashboardCommandExecutor
Aspire.Dashboard.Tests (1)
Model\DashboardCommandExecutorTests.cs (1)
199return new DashboardCommandExecutor(
13 references to DashboardCommandExecutor
Aspire.Dashboard (3)
Components\Pages\ConsoleLogs.razor.cs (1)
105public required DashboardCommandExecutor DashboardCommandExecutor { get; init; }
Components\Pages\Resources.razor.cs (1)
57public required DashboardCommandExecutor DashboardCommandExecutor { get; init; }
DashboardWebApplication.cs (1)
303builder.Services.TryAddScoped<DashboardCommandExecutor>();
Aspire.Dashboard.Components.Tests (5)
Pages\ConsoleLogsTests.cs (3)
924var dashboardCommandExecutor = Services.GetRequiredService<DashboardCommandExecutor>(); 1118Services.AddScoped<DashboardCommandExecutor>();
Shared\ResourceSetupHelpers.cs (2)
65context.Services.AddScoped<DashboardCommandExecutor, DashboardCommandExecutor>();
Aspire.Dashboard.Tests (5)
Model\DashboardCommandExecutorTests.cs (5)
39var executor = CreateExecutor(dashboardClient, out var notificationService, out var toastService); 83var executor = CreateExecutor(dashboardClient, out var notificationService, out var toastService); 123var executor = CreateExecutor(dashboardClient, out var notificationService, out var toastService); 167var executor = CreateExecutor(dashboardClient, out _, out var toastService); 187private static DashboardCommandExecutor CreateExecutor(TestDashboardClient dashboardClient, out Aspire.Dashboard.Model.INotificationService notificationService, out TestNotificationService toastService)