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