8 implementations of DisplaySubtleMessage
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
338public void DisplaySubtleMessage(string message, bool allowMarkup = false)
Interaction\ExtensionInteractionService.cs (1)
312public void DisplaySubtleMessage(string message, bool allowMarkup = false)
Aspire.Cli.Tests (6)
Commands\NewCommandTests.cs (1)
1410public void DisplaySubtleMessage(string message, bool escapeMarkup = true) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
949public void DisplaySubtleMessage(string message, bool allowMarkup = false) { }
Commands\UpdateCommandTests.cs (1)
1067public void DisplaySubtleMessage(string message, bool allowMarkup = false) => _innerService.DisplaySubtleMessage(message, allowMarkup);
Templating\DotNetTemplateFactoryTests.cs (1)
491public void DisplaySubtleMessage(string message, bool allowMarkup = false) { }
TestServices\TestConsoleInteractionService.cs (1)
110public void DisplaySubtleMessage(string message, bool allowMarkup = false)
TestServices\TestExtensionInteractionService.cs (1)
123public void DisplaySubtleMessage(string message, bool allowMarkup = false)
19 references to DisplaySubtleMessage
aspire (18)
Commands\AddCommand.cs (1)
318InteractionService.DisplaySubtleMessage(string.Format(CultureInfo.CurrentCulture, AddCommandStrings.NoPackagesMatchedSearchTerm, searchTerm));
Commands\AgentInitCommand.cs (2)
106_interactionService.DisplaySubtleMessage(McpCommandStrings.InitCommand_NoAgentEnvironmentsDetected); 156_interactionService.DisplaySubtleMessage(
Commands\PipelineCommandBase.cs (7)
338InteractionService.DisplaySubtleMessage($"[[DEBUG]] Step {stepCounter++}: {statusText}", allowMarkup: true); 347InteractionService.DisplaySubtleMessage($"[[DEBUG]] Step {activity.Data.Id}: {status} - {statusText}", allowMarkup: true); 382InteractionService.DisplaySubtleMessage(formattedMessage, allowMarkup: true); 393InteractionService.DisplaySubtleMessage($"[[DEBUG]] Task {activity.Data.Id} ({stepId}): {status} - {statusText}", allowMarkup: true); 397InteractionService.DisplaySubtleMessage($"[[DEBUG]] {completionMessage}", allowMarkup: true); 403InteractionService.DisplaySubtleMessage($"[[DEBUG]] Task {activity.Data.Id} ({stepId}): {statusText}", allowMarkup: true); 415InteractionService.DisplaySubtleMessage($"[[DEBUG]] {OperationCompletedPrefix}: {status} - {statusText}", allowMarkup: true);
Commands\RenderCommand.cs (1)
149InteractionService.DisplaySubtleMessage("This is a subtle hint.");
Projects\ProjectLocator.cs (1)
94interactionService.DisplaySubtleMessage(relativePath);
Projects\ProjectUpdater.cs (3)
129interactionService.DisplaySubtleMessage(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.ExecutingUpdateStepFormat, updateStep.Description)); 384interactionService.DisplaySubtleMessage(string.Format(CultureInfo.InvariantCulture, 390interactionService.DisplaySubtleMessage(UpdateCommandStrings.RemovedObsoleteAppHostPackage);
Templating\CliTemplateFactory.cs (2)
207_interactionService.DisplaySubtleMessage(result.StandardOutput.TrimEnd()); 219_interactionService.DisplaySubtleMessage(message);
Templating\CliTemplateFactory.TypeScriptStarterTemplate.cs (1)
74_interactionService.DisplaySubtleMessage("npm install had warnings or errors. You may need to run 'npm install' manually after dependencies are available.");
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
1067public void DisplaySubtleMessage(string message, bool allowMarkup = false) => _innerService.DisplaySubtleMessage(message, allowMarkup);