9 references to PublishCommandStrings
aspire (9)
Commands\DeployCommand.cs (1)
33protected override string GetProgressMessage() => PublishCommandStrings.GeneratingArtifacts;
Commands\PublishCommand.cs (6)
23PublishCommandStrings.SelectAPublisher, 36: base("publish", PublishCommandStrings.Description, runner, interactionService, projectLocator, telemetry) 42protected override string GetOutputPathDescription() => PublishCommandStrings.OutputPathArgumentDescription; 49protected override string GetSuccessMessage(string fullyQualifiedOutputPath) => string.Format(CultureInfo.CurrentCulture, PublishCommandStrings.SuccessfullyPublishedArtifacts, fullyQualifiedOutputPath); 51protected override string GetFailureMessage(int exitCode) => string.Format(CultureInfo.CurrentCulture, PublishCommandStrings.FailedToPublishArtifacts, exitCode); 55protected override string GetProgressMessage() => PublishCommandStrings.GeneratingArtifacts;
Commands\PublishCommandBase.cs (1)
43Description = PublishCommandStrings.ProjectArgumentDescription
Resources\PublishCommandStrings.Designer.cs (1)
31System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Aspire.Cli.Resources.PublishCommandStrings", typeof(PublishCommandStrings).Assembly);