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