18 references to RunCommandStrings
aspire (18)
Commands\ExecCommand.cs (4)
161
if (!appHostCompatibilityCheck?.IsCompatibleAppHost ?? throw new InvalidOperationException(
RunCommandStrings
.IsCompatibleAppHostIsNull))
199
$":linked_paperclips: {
RunCommandStrings
.StartingAppHost}",
261
InteractionService.DisplayError(
RunCommandStrings
.ProjectCouldNotBeRun);
272
InteractionService.DisplayError(
RunCommandStrings
.ProjectCouldNotBeRun);
Commands\RunCommand.cs (13)
51
: base("run",
RunCommandStrings
.Description, features, updateNotifier, executionContext, interactionService)
76
projectOption.Description =
RunCommandStrings
.ProjectArgumentDescription;
82
startDebugOption.Description =
RunCommandStrings
.StartDebugSessionArgumentDescription;
100
extensionInteractionService.DisplayConsolePlainText(
RunCommandStrings
.StartingDebugSessionInExtension);
180
if (!appHostCompatibilityCheck?.IsCompatibleAppHost ?? throw new InvalidOperationException(
RunCommandStrings
.IsCompatibleAppHostIsNull))
227
var backchannel = await InteractionService.ShowStatusAsync(shouldBuildAppHostInExtension ? InteractionServiceStrings.BuildingAppHost :
RunCommandStrings
.ConnectingToAppHost, async () => { return await backchannelCompletitionSource.Task.WaitAsync(cancellationToken); });
233
var dashboardUrls = await InteractionService.ShowStatusAsync(
RunCommandStrings
.StartingDashboard, async () => { return await backchannel.GetDashboardUrlsAsync(cancellationToken); });
237
InteractionService.DisplayError(
RunCommandStrings
.DashboardFailedToStart);
249
var dashboardsLocalizedString =
RunCommandStrings
.Dashboard;
250
var logsLocalizedString =
RunCommandStrings
.Logs;
251
var endpointsLocalizedString =
RunCommandStrings
.Endpoints;
252
var appHostLocalizedString =
RunCommandStrings
.AppHost;
406
ctrlCGrid.AddRow(new Text(string.Empty), new Markup(
RunCommandStrings
.PressCtrlCToStopAppHost) { Overflow = Overflow.Ellipsis });
Resources\RunCommandStrings.Designer.cs (1)
31
System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Aspire.Cli.Resources.RunCommandStrings", typeof(
RunCommandStrings
).Assembly);