15 references to ExportCommandStrings
aspire (14)
Commands\ExportCommand.cs (13)
38
Description =
ExportCommandStrings
.OutputOptionDescription
43
Description =
ExportCommandStrings
.ResourceOptionDescription,
57
: base("export",
ExportCommandStrings
.Description, features, updateNotifier, executionContext, interactionService, telemetry)
82
string.Format(CultureInfo.CurrentCulture, SharedCommandStrings.SelectAppHost,
ExportCommandStrings
.SelectAppHostAction),
100
_interactionService.DisplayMessage(KnownEmojis.Warning,
ExportCommandStrings
.DashboardNotAvailable);
125
var (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);
168
await _interactionService.ShowStatusAsync(
ExportCommandStrings
.GatheringConsoleLogs, async () =>
177
await _interactionService.ShowStatusAsync(
ExportCommandStrings
.GatheringStructuredLogs, async () =>
184
await _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)
42
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aspire.Cli.Resources.ExportCommandStrings", typeof(
ExportCommandStrings
).Assembly);
Aspire.Cli.Tests (1)
Commands\ExportCommandTests.cs (1)
679
Assert.Contains(outputWriter.Logs, line => line.Contains(
ExportCommandStrings
.DashboardNotAvailable));