7 references to IsExecuting
Aspire.Dashboard (5)
Components\Pages\ConsoleLogs.razor.cs (1)
515(resource, command) => DashboardCommandExecutor.IsExecuting(resource.Name, command.Name),
Components\Pages\Resources.razor.cs (1)
649(resource, command) => DashboardCommandExecutor.IsExecuting(resource.Name, command.Name),
Components_Pages_ConsoleLogs_razor.g.cs (1)
596command.State == CommandViewModelState.Disabled || DashboardCommandExecutor.IsExecuting(selectedResource.Name, command.Name)
Components_Pages_Resources_razor.g.cs (2)
2699(resource, command) => DashboardCommandExecutor.IsExecuting(resource.Name, command.Name) 3359(resource, command) => DashboardCommandExecutor.IsExecuting(resource.Name, command.Name)
Aspire.Dashboard.Components.Tests (2)
Pages\ConsoleLogsTests.cs (2)
703await AsyncTestHelpers.AssertIsTrueRetryAsync(() => dashboardCommandExecutor.IsExecuting("test-resource", "test-name"), "Command start executing"); 710await AsyncTestHelpers.AssertIsTrueRetryAsync(() => !dashboardCommandExecutor.IsExecuting("test-resource", "test-name"), "Command finish executing");