8 implementations of DisplaySubtleMessage
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
338
public void
DisplaySubtleMessage
(string message, bool allowMarkup = false)
Interaction\ExtensionInteractionService.cs (1)
312
public void
DisplaySubtleMessage
(string message, bool allowMarkup = false)
Aspire.Cli.Tests (6)
Commands\NewCommandTests.cs (1)
1410
public void
DisplaySubtleMessage
(string message, bool escapeMarkup = true) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
949
public void
DisplaySubtleMessage
(string message, bool allowMarkup = false) { }
Commands\UpdateCommandTests.cs (1)
1067
public void
DisplaySubtleMessage
(string message, bool allowMarkup = false) => _innerService.DisplaySubtleMessage(message, allowMarkup);
Templating\DotNetTemplateFactoryTests.cs (1)
491
public void
DisplaySubtleMessage
(string message, bool allowMarkup = false) { }
TestServices\TestConsoleInteractionService.cs (1)
110
public void
DisplaySubtleMessage
(string message, bool allowMarkup = false)
TestServices\TestExtensionInteractionService.cs (1)
123
public void
DisplaySubtleMessage
(string message, bool allowMarkup = false)
19 references to DisplaySubtleMessage
aspire (18)
Commands\AddCommand.cs (1)
318
InteractionService.
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)
338
InteractionService.
DisplaySubtleMessage
($"[[DEBUG]] Step {stepCounter++}: {statusText}", allowMarkup: true);
347
InteractionService.
DisplaySubtleMessage
($"[[DEBUG]] Step {activity.Data.Id}: {status} - {statusText}", allowMarkup: true);
382
InteractionService.
DisplaySubtleMessage
(formattedMessage, allowMarkup: true);
393
InteractionService.
DisplaySubtleMessage
($"[[DEBUG]] Task {activity.Data.Id} ({stepId}): {status} - {statusText}", allowMarkup: true);
397
InteractionService.
DisplaySubtleMessage
($"[[DEBUG]] {completionMessage}", allowMarkup: true);
403
InteractionService.
DisplaySubtleMessage
($"[[DEBUG]] Task {activity.Data.Id} ({stepId}): {statusText}", allowMarkup: true);
415
InteractionService.
DisplaySubtleMessage
($"[[DEBUG]] {OperationCompletedPrefix}: {status} - {statusText}", allowMarkup: true);
Commands\RenderCommand.cs (1)
149
InteractionService.
DisplaySubtleMessage
("This is a subtle hint.");
Projects\ProjectLocator.cs (1)
94
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);
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)
1067
public void DisplaySubtleMessage(string message, bool allowMarkup = false) => _innerService.
DisplaySubtleMessage
(message, allowMarkup);