8 implementations of DisplayPlainText
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
245public void DisplayPlainText(string message)
Interaction\ExtensionInteractionService.cs (1)
357public void DisplayPlainText(string text)
Aspire.Cli.Tests (6)
Commands\NewCommandTests.cs (1)
1412public void DisplayPlainText(string text) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
953public void DisplayPlainText(string text) { }
Commands\UpdateCommandTests.cs (1)
1062public void DisplayPlainText(string text) => _innerService.DisplayPlainText(text);
Templating\DotNetTemplateFactoryTests.cs (1)
487public void DisplayPlainText(string text) { }
TestServices\TestConsoleInteractionService.cs (1)
119public void DisplayPlainText(string text)
TestServices\TestExtensionInteractionService.cs (1)
132public void DisplayPlainText(string text)
19 references to DisplayPlainText
aspire (18)
Commands\ConfigCommand.cs (3)
108InteractionService.DisplayPlainText(value); 465InteractionService.DisplayPlainText($" {localPath}"); 468InteractionService.DisplayPlainText($" {globalPath}");
Commands\DescribeCommand.cs (1)
265_interactionService.DisplayPlainText("No resources found.");
Commands\NewCommand.cs (1)
242InteractionService.DisplayPlainText($"{NewCommandStrings.SelectAProjectTemplate} {result.Description}");
Commands\RenderCommand.cs (1)
154InteractionService.DisplayPlainText("Plain text with [brackets] that should appear literally.");
Commands\SecretGetCommand.cs (1)
64InteractionService.DisplayPlainText(value);
Commands\StopCommand.cs (1)
301_interactionService.DisplayPlainText("");
Commands\UpdateCommand.cs (1)
117InteractionService.DisplayPlainText(" dotnet tool update -g Aspire.Cli");
Commands\WaitCommand.cs (1)
150_interactionService.DisplayPlainText("");
Projects\ProjectUpdater.cs (8)
902interactionService.DisplayPlainText(UpdateCommandStrings.NoChangesDetectedInNuGetConfig); 1045interactionService.DisplayPlainText(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.AddedFeedFormat, feed.Value)); 1052interactionService.DisplayPlainText(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.MappingAddedFormat, pattern)); 1061interactionService.DisplayPlainText(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.RemovedFeedFormat, feed.Value)); 1068interactionService.DisplayPlainText(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.RetainedFeedFormat, feed.Value)); 1076interactionService.DisplayPlainText(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.MappingAddedFormat, pattern)); 1082interactionService.DisplayPlainText(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.MappingRemovedFormat, pattern)); 1096interactionService.DisplayPlainText(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.MappingRetainedFormat, pattern));
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
1062public void DisplayPlainText(string text) => _innerService.DisplayPlainText(text);