8 implementations of DisplaySubtleMessage
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
737public void DisplaySubtleMessage(string message, bool allowMarkup = false)
Interaction\ExtensionInteractionService.cs (1)
420public void DisplaySubtleMessage(string message, bool allowMarkup = false)
Aspire.Cli.Tests (6)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
1244public void DisplaySubtleMessage(string message, bool allowMarkup = false) { }
Commands\UpdateCommandTests.cs (1)
3539public void DisplaySubtleMessage(string message, bool allowMarkup = false) => _innerService.DisplaySubtleMessage(message, allowMarkup);
Projects\ExtensionGuestLauncherTests.cs (1)
178public void DisplaySubtleMessage(string message, bool allowMarkup = false) => throw new NotImplementedException();
Templating\DotNetTemplateFactoryTests.cs (1)
413public void DisplaySubtleMessage(string message, bool allowMarkup = false) { }
TestServices\TestExtensionInteractionService.cs (1)
165public void DisplaySubtleMessage(string message, bool allowMarkup = false)
TestServices\TestInteractionService.cs (1)
316public void DisplaySubtleMessage(string message, bool allowMarkup = false)
32 references to DisplaySubtleMessage
aspire (31)
Commands\AddCommand.cs (2)
241InteractionService.DisplaySubtleMessage(string.Format(CultureInfo.CurrentCulture, AddCommandStrings.PolyglotIntegrationsHidden, hiddenIntegrationCount)); 587InteractionService.DisplaySubtleMessage(string.Format(CultureInfo.CurrentCulture, AddCommandStrings.NoPackagesMatchedSearchTerm, searchTerm));
Commands\AgentInitCommand.cs (4)
425InteractionService.DisplaySubtleMessage(AgentCommandStrings.InitCommand_PlaywrightCliSkipped); 454InteractionService.DisplaySubtleMessage( 495InteractionService.DisplaySubtleMessage(ex.Message); 519InteractionService.DisplaySubtleMessage(message);
Commands\InitCommand.cs (1)
193InteractionService.DisplaySubtleMessage($" {command}");
Commands\IntegrationSearchCommand.cs (1)
127InteractionService.DisplaySubtleMessage(string.Format(CultureInfo.CurrentCulture, AddCommandStrings.PolyglotIntegrationsHidden, hiddenIntegrationCount));
Commands\NewCommand.cs (1)
324InteractionService.DisplaySubtleMessage(string.Format(CultureInfo.CurrentCulture, InteractionServiceStrings.NonInteractiveAvailableValues, templateNames));
Commands\PipelineCommandBase.cs (7)
736InteractionService.DisplaySubtleMessage($"[[DEBUG]] Step {stepCounter++}: {statusText}", allowMarkup: true); 745InteractionService.DisplaySubtleMessage($"[[DEBUG]] Step {activity.Data.Id}: {status} - {statusText}", allowMarkup: true); 767InteractionService.DisplaySubtleMessage(formattedMessage, allowMarkup: true); 778InteractionService.DisplaySubtleMessage($"[[DEBUG]] Task {activity.Data.Id} ({stepId}): {status} - {statusText}", allowMarkup: true); 782InteractionService.DisplaySubtleMessage($"[[DEBUG]] {completionMessage}", allowMarkup: true); 788InteractionService.DisplaySubtleMessage($"[[DEBUG]] Task {activity.Data.Id} ({stepId}): {statusText}", allowMarkup: true); 800InteractionService.DisplaySubtleMessage($"[[DEBUG]] {OperationCompletedPrefix}: {status} - {statusText}", allowMarkup: true);
Commands\RenderCommand.cs (5)
248InteractionService.DisplaySubtleMessage("This is a subtle hint."); 344InteractionService.DisplaySubtleMessage("This is a subtle hint."); 447InteractionService.DisplaySubtleMessage($"Temporary file created at {filePath}", allowMarkup: false); 577InteractionService.DisplaySubtleMessage($"ProcessPublishingActivitiesDebugAsync returned succeeded={succeeded}", allowMarkup: false); 587InteractionService.DisplaySubtleMessage($"ProcessAndDisplayPublishingActivitiesAsync returned succeeded={succeeded}", allowMarkup: false);
Commands\UpdateCommand.cs (5)
504InteractionService.DisplaySubtleMessage($" - {descriptor.Title}"); 507InteractionService.DisplaySubtleMessage(UpdateCommandStrings.PendingMigrationsHint); 513InteractionService.DisplaySubtleMessage(MigrationStrings.NothingToMigrate); 520InteractionService.DisplaySubtleMessage($" - {descriptor.Title}"); 532InteractionService.DisplaySubtleMessage(MigrationStrings.MigrationCancelled);
Projects\ProjectLocator.cs (2)
395interactionService.DisplaySubtleMessage(relativePath); 527interactionService.DisplaySubtleMessage(settingsAppHostRelativePath);
Projects\ProjectUpdater.cs (3)
165interactionService.DisplaySubtleMessage(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.ExecutingUpdateStepFormat, updateStep.Description)); 668interactionService.DisplaySubtleMessage(string.Format(CultureInfo.InvariantCulture, 674interactionService.DisplaySubtleMessage(UpdateCommandStrings.RemovedObsoleteAppHostPackage);
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
3539public void DisplaySubtleMessage(string message, bool allowMarkup = false) => _innerService.DisplaySubtleMessage(message, allowMarkup);