9 references to GetApplication
Aspire.Dashboard (4)
Components\Pages\ConsoleLogs.razor.cs (1)
260return _resources.GetApplication(Logger, ResourceName, canSelectGrouping: false, fallback: _noSelection);
Components\Pages\Metrics.razor.cs (1)
150viewModel.SelectedApplication = _applicationViewModels.GetApplication(Logger, ApplicationName, canSelectGrouping: true, _selectApplication);
Components\Pages\StructuredLogs.razor.cs (1)
441viewModel.SelectedApplication = _applicationViewModels.GetApplication(Logger, ApplicationName, canSelectGrouping: true, _allApplication);
Components\Pages\Traces.razor.cs (1)
264viewModel.SelectedApplication = _applicationViewModels.GetApplication(Logger, ApplicationName, canSelectGrouping: true, _allApplication);
Aspire.Dashboard.Tests (5)
Model\ApplicationsSelectHelpersTests.cs (5)
57var app = appVMs.GetApplication(NullLogger.Instance, "multiple-instanceabc", canSelectGrouping: false, null!); 98var app = appVMs.GetApplication(factory.CreateLogger("Test"), "name-instance", canSelectGrouping: false, null!); 122var app = appVMs.GetApplication(factory.CreateLogger("Test"), "test", canSelectGrouping: false, null!); 161var app = appVMs.GetApplication(NullLogger.Instance, "app", canSelectGrouping: false, null!); 198var app = appVMs.GetApplication(NullLogger.Instance, "app", canSelectGrouping: true, null!);