36 references to RunCommandStrings
aspire (35)
Commands\ExecCommand.cs (4)
156
if (!appHostCompatibilityCheck?.IsCompatibleAppHost ?? throw new InvalidOperationException(
RunCommandStrings
.IsCompatibleAppHostIsNull))
195
$":linked_paperclips: {
RunCommandStrings
.StartingAppHost}",
257
InteractionService.DisplayError(string.Format(CultureInfo.CurrentCulture,
RunCommandStrings
.ProjectCouldNotBeRun, ExecutionContext.LogFilePath));
268
InteractionService.DisplayError(string.Format(CultureInfo.CurrentCulture,
RunCommandStrings
.ProjectCouldNotBeRun, ExecutionContext.LogFilePath));
Commands\RunCommand.cs (27)
77
Description =
RunCommandStrings
.ProjectArgumentDescription
81
Description =
RunCommandStrings
.DetachArgumentDescription
85
Description =
RunCommandStrings
.JsonArgumentDescription
89
Description =
RunCommandStrings
.IsolatedArgumentDescription
93
Description =
RunCommandStrings
.NoBuildArgumentDescription
119
: base("run",
RunCommandStrings
.Description, features, updateNotifier, executionContext, interactionService, telemetry)
146
Description =
RunCommandStrings
.StartDebugSessionArgumentDescription
176
InteractionService.DisplayError(
RunCommandStrings
.FormatRequiresDetach);
185
InteractionService.DisplayError(
RunCommandStrings
.NoBuildNotSupportedWithWatchMode);
200
extensionInteractionService.DisplayConsolePlainText(
RunCommandStrings
.StartingDebugSessionInExtension);
238
InteractionService.DisplayMessage("warning",
RunCommandStrings
.IsolatedModeRunningInstanceWarning);
281
isExtensionHost ? InteractionServiceStrings.BuildingAppHost :
RunCommandStrings
.ConnectingToAppHost,
289
RunCommandStrings
.StartingDashboard,
294
InteractionService.DisplayError(
RunCommandStrings
.DashboardFailedToStart);
319
var endpointsLocalizedString =
RunCommandStrings
.Endpoints;
435
ctrlCGrid.AddRow(new Text(string.Empty), new Markup(
RunCommandStrings
.PressCtrlCToStopAppHost) { Overflow = Overflow.Ellipsis });
466
var appHostLabel =
RunCommandStrings
.AppHost;
467
var dashboardLabel =
RunCommandStrings
.Dashboard;
468
var logsLabel =
RunCommandStrings
.Logs;
469
var pidLabel =
RunCommandStrings
.ProcessId;
828
RunCommandStrings
.StartingAppHostInBackground,
837
_interactionService.DisplayError(
RunCommandStrings
.FailedToStartAppHost);
848
_interactionService.DisplayError(
RunCommandStrings
.TimeoutWaitingForAppHost);
867
RunCommandStrings
.CheckLogsForDetails,
907
_interactionService.DisplaySuccess(
RunCommandStrings
.AppHostStartedSuccessfully);
917
ExitCodeConstants.FailedToBuildArtifacts =>
RunCommandStrings
.AppHostFailedToBuild,
918
_ => string.Format(CultureInfo.CurrentCulture,
RunCommandStrings
.AppHostExitedWithCode, childExitCode)
Projects\DotNetAppHostProject.cs (2)
289
if (!appHostCompatibilityCheck?.IsCompatibleAppHost ?? throw new InvalidOperationException(
RunCommandStrings
.IsCompatibleAppHostIsNull))
560
_interactionService.DisplayMessage("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)
137
Assert.Equal(
RunCommandStrings
.AppHostFailedToBuild, message);