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