9 implementations of DisplaySubtleMessage
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
399
public void
DisplaySubtleMessage
(string message, bool allowMarkup = false)
Interaction\ExtensionInteractionService.cs (1)
327
public void
DisplaySubtleMessage
(string message, bool allowMarkup = false)
Aspire.Cli.Tests (7)
Commands\NewCommandTests.cs (1)
1582
public void
DisplaySubtleMessage
(string message, bool escapeMarkup = true) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
955
public void
DisplaySubtleMessage
(string message, bool allowMarkup = false) { }
Commands\UpdateCommandTests.cs (1)
1065
public void
DisplaySubtleMessage
(string message, bool allowMarkup = false) => _innerService.DisplaySubtleMessage(message, allowMarkup);
Projects\ExtensionGuestLauncherTests.cs (1)
172
public void
DisplaySubtleMessage
(string message, bool allowMarkup = false) => throw new NotImplementedException();
Templating\DotNetTemplateFactoryTests.cs (1)
491
public void
DisplaySubtleMessage
(string message, bool allowMarkup = false) { }
TestServices\TestExtensionInteractionService.cs (1)
129
public void
DisplaySubtleMessage
(string message, bool allowMarkup = false)
TestServices\TestInteractionService.cs (1)
187
public void
DisplaySubtleMessage
(string message, bool allowMarkup = false)
17 references to DisplaySubtleMessage
aspire (16)
Commands\AddCommand.cs (1)
328
InteractionService.
DisplaySubtleMessage
(string.Format(CultureInfo.CurrentCulture, AddCommandStrings.NoPackagesMatchedSearchTerm, searchTerm));
Commands\AgentInitCommand.cs (3)
149
_interactionService.
DisplaySubtleMessage
(McpCommandStrings.InitCommand_NoAgentEnvironmentsDetected);
247
_interactionService.
DisplaySubtleMessage
(AgentCommandStrings.InitCommand_NothingSelected);
264
_interactionService.
DisplaySubtleMessage
(
Commands\PipelineCommandBase.cs (7)
395
InteractionService.
DisplaySubtleMessage
($"[[DEBUG]] Step {stepCounter++}: {statusText}", allowMarkup: true);
404
InteractionService.
DisplaySubtleMessage
($"[[DEBUG]] Step {activity.Data.Id}: {status} - {statusText}", allowMarkup: true);
439
InteractionService.
DisplaySubtleMessage
(formattedMessage, allowMarkup: true);
450
InteractionService.
DisplaySubtleMessage
($"[[DEBUG]] Task {activity.Data.Id} ({stepId}): {status} - {statusText}", allowMarkup: true);
454
InteractionService.
DisplaySubtleMessage
($"[[DEBUG]] {completionMessage}", allowMarkup: true);
460
InteractionService.
DisplaySubtleMessage
($"[[DEBUG]] Task {activity.Data.Id} ({stepId}): {statusText}", allowMarkup: true);
472
InteractionService.
DisplaySubtleMessage
($"[[DEBUG]] {OperationCompletedPrefix}: {status} - {statusText}", allowMarkup: true);
Commands\RenderCommand.cs (1)
149
InteractionService.
DisplaySubtleMessage
("This is a subtle hint.");
Projects\ProjectLocator.cs (1)
126
interactionService.
DisplaySubtleMessage
(relativePath);
Projects\ProjectUpdater.cs (3)
129
interactionService.
DisplaySubtleMessage
(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.ExecutingUpdateStepFormat, updateStep.Description));
384
interactionService.
DisplaySubtleMessage
(string.Format(CultureInfo.InvariantCulture,
390
interactionService.
DisplaySubtleMessage
(UpdateCommandStrings.RemovedObsoleteAppHostPackage);
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
1065
public void DisplaySubtleMessage(string message, bool allowMarkup = false) => _innerService.
DisplaySubtleMessage
(message, allowMarkup);