15 references to ExportCommandStrings
aspire (14)
Commands\ExportCommand.cs (13)
38Description = ExportCommandStrings.OutputOptionDescription 43Description = ExportCommandStrings.ResourceOptionDescription, 57: base("export", ExportCommandStrings.Description, features, updateNotifier, executionContext, interactionService, telemetry) 82string.Format(CultureInfo.CurrentCulture, SharedCommandStrings.SelectAppHost, ExportCommandStrings.SelectAppHostAction), 100_interactionService.DisplayMessage(KnownEmojis.Warning, ExportCommandStrings.DashboardNotAvailable); 125var (telemetryResources, snapshots) = await _interactionService.ShowStatusAsync(ExportCommandStrings.GatheringResources, async () => 139_interactionService.DisplayError(string.Format(CultureInfo.CurrentCulture, ExportCommandStrings.ResourceNotFound, resourceName)); 147_interactionService.DisplayMessage(KnownEmojis.Information, ExportCommandStrings.NoResourcesFound); 168await _interactionService.ShowStatusAsync(ExportCommandStrings.GatheringConsoleLogs, async () => 177await _interactionService.ShowStatusAsync(ExportCommandStrings.GatheringStructuredLogs, async () => 184await _interactionService.ShowStatusAsync(ExportCommandStrings.GatheringTraces, async () => 194_interactionService.DisplayMessage(KnownEmojis.CheckMark, string.Format(CultureInfo.CurrentCulture, ExportCommandStrings.ExportComplete, fullPath)); 200_interactionService.DisplayError(string.Format(CultureInfo.CurrentCulture, ExportCommandStrings.FailedToExport, ex.Message));
Resources\ExportCommandStrings.Designer.cs (1)
42global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aspire.Cli.Resources.ExportCommandStrings", typeof(ExportCommandStrings).Assembly);
Aspire.Cli.Tests (1)
Commands\ExportCommandTests.cs (1)
679Assert.Contains(outputWriter.Logs, line => line.Contains(ExportCommandStrings.DashboardNotAvailable));