35 references to RunCommandStrings
aspire (34)
Commands\AppHostLauncher.cs (7)
134
RunCommandStrings
.StartingAppHostInBackground,
289
interactionService.DisplayError(
RunCommandStrings
.FailedToStartAppHost);
299
interactionService.DisplayError(
RunCommandStrings
.TimeoutWaitingForAppHost);
316
RunCommandStrings
.CheckLogsForDetails,
357
interactionService.DisplaySuccess(
RunCommandStrings
.AppHostStartedSuccessfully);
368
ExitCodeConstants.FailedToBuildArtifacts =>
RunCommandStrings
.AppHostFailedToBuild,
369
_ => string.Format(CultureInfo.CurrentCulture,
RunCommandStrings
.AppHostExitedWithCode, childExitCode)
Commands\ExecCommand.cs (4)
145
if (!appHostCompatibilityCheck?.IsCompatibleAppHost ?? throw new InvalidOperationException(
RunCommandStrings
.IsCompatibleAppHostIsNull))
184
RunCommandStrings
.StartingAppHost,
246
InteractionService.DisplayError(string.Format(CultureInfo.CurrentCulture,
RunCommandStrings
.ProjectCouldNotBeRun, ExecutionContext.LogFilePath));
257
InteractionService.DisplayError(string.Format(CultureInfo.CurrentCulture,
RunCommandStrings
.ProjectCouldNotBeRun, ExecutionContext.LogFilePath));
Commands\PipelineCommandBase.cs (1)
103
Description =
RunCommandStrings
.StartDebugSessionArgumentDescription
Commands\RunCommand.cs (17)
76
Description =
RunCommandStrings
.DetachArgumentDescription
80
Description =
RunCommandStrings
.NoBuildArgumentDescription
99
: base("run",
RunCommandStrings
.Description, features, updateNotifier, executionContext, interactionService, telemetry)
121
Description =
RunCommandStrings
.StartDebugSessionArgumentDescription
148
InteractionService.DisplayError(
RunCommandStrings
.FormatRequiresDetach);
157
InteractionService.DisplayError(
RunCommandStrings
.NoBuildNotSupportedWithWatchMode);
172
extensionInteractionService.DisplayConsolePlainText(
RunCommandStrings
.StartingDebugSessionInExtension);
207
InteractionService.DisplayMessage(KnownEmojis.Warning,
RunCommandStrings
.IsolatedModeRunningInstanceWarning);
256
RunCommandStrings
.ConnectingToAppHost,
264
RunCommandStrings
.StartingDashboard,
269
InteractionService.DisplayError(
RunCommandStrings
.DashboardFailedToStart);
300
var endpointsLocalizedString =
RunCommandStrings
.Endpoints;
421
ctrlCGrid.AddRow(new Text(string.Empty), new Markup(
RunCommandStrings
.PressCtrlCToStopAppHost) { Overflow = Overflow.Ellipsis });
461
var appHostLabel =
RunCommandStrings
.AppHost;
462
var dashboardLabel =
RunCommandStrings
.Dashboard;
463
var logsLabel =
RunCommandStrings
.Logs;
464
var pidLabel =
RunCommandStrings
.ProcessId;
Commands\StartCommand.cs (1)
22
Description =
RunCommandStrings
.NoBuildArgumentDescription
Projects\DotNetAppHostProject.cs (2)
298
if (!appHostCompatibilityCheck?.IsCompatibleAppHost ?? throw new InvalidOperationException(
RunCommandStrings
.IsCompatibleAppHostIsNull))
602
_interactionService.DisplayMessage(KnownEmojis.Key,
RunCommandStrings
.CopyingUserSecrets);
Projects\RunningInstanceManager.cs (1)
71
_interactionService.DisplaySuccess(
RunCommandStrings
.RunningInstanceStopped);
Resources\RunCommandStrings.Designer.cs (1)
31
System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Aspire.Cli.Resources.RunCommandStrings", typeof(
RunCommandStrings
).Assembly);
Aspire.Cli.Tests (1)
Commands\RunCommandTests.cs (1)
138
Assert.Equal(
RunCommandStrings
.AppHostFailedToBuild, message);