6 references to DeployCommandStrings
aspire (6)
Commands\DeployCommand.cs (5)
16
: base("deploy",
DeployCommandStrings
.Description, runner, interactionService, projectLocator, telemetry)
20
protected override string GetOutputPathDescription() =>
DeployCommandStrings
.OutputPathArgumentDescription;
27
protected override string GetSuccessMessage(string fullyQualifiedOutputPath) => string.Format(CultureInfo.CurrentCulture,
DeployCommandStrings
.SuccessfullyDeployed, fullyQualifiedOutputPath);
29
protected override string GetFailureMessage(int exitCode) => string.Format(CultureInfo.CurrentCulture,
DeployCommandStrings
.DeploymentFailed, exitCode);
31
protected override string GetCanceledMessage() =>
DeployCommandStrings
.DeploymentCanceled;
Resources\DeployCommandStrings.Designer.cs (1)
31
System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Aspire.Cli.Resources.DeployCommandStrings", typeof(
DeployCommandStrings
).Assembly);