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