9 implementations of DisplayPlainText
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
306public void DisplayPlainText(string message)
Interaction\ExtensionInteractionService.cs (1)
374public void DisplayPlainText(string text)
Aspire.Cli.Tests (7)
Commands\NewCommandTests.cs (1)
1584public void DisplayPlainText(string text) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
959public void DisplayPlainText(string text) { }
Commands\UpdateCommandTests.cs (1)
1060public void DisplayPlainText(string text) => _innerService.DisplayPlainText(text);
Projects\ExtensionGuestLauncherTests.cs (1)
174public void DisplayPlainText(string text) => throw new NotImplementedException();
Templating\DotNetTemplateFactoryTests.cs (1)
487public void DisplayPlainText(string text) { }
TestServices\TestExtensionInteractionService.cs (1)
138public void DisplayPlainText(string text)
TestServices\TestInteractionService.cs (1)
196public void DisplayPlainText(string text)
20 references to DisplayPlainText
aspire (19)
Commands\ConfigCommand.cs (3)
108InteractionService.DisplayPlainText(value); 490InteractionService.DisplayPlainText($" {localPath}"); 493InteractionService.DisplayPlainText($" {globalPath}");
Commands\DescribeCommand.cs (1)
265_interactionService.DisplayPlainText("No resources found.");
Commands\NewCommand.cs (1)
170InteractionService.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\SecretPathCommand.cs (1)
46InteractionService.DisplayPlainText(result.Store.FilePath);
Commands\StopCommand.cs (1)
274_interactionService.DisplayPlainText("");
Commands\UpdateCommand.cs (1)
121InteractionService.DisplayPlainText(" dotnet tool update -g Aspire.Cli");
Commands\WaitCommand.cs (1)
150_interactionService.DisplayPlainText("");
Projects\ProjectUpdater.cs (8)
903interactionService.DisplayPlainText(UpdateCommandStrings.NoChangesDetectedInNuGetConfig); 1046interactionService.DisplayPlainText(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.AddedFeedFormat, feed.Value)); 1053interactionService.DisplayPlainText(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.MappingAddedFormat, pattern)); 1062interactionService.DisplayPlainText(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.RemovedFeedFormat, feed.Value)); 1069interactionService.DisplayPlainText(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.RetainedFeedFormat, feed.Value)); 1077interactionService.DisplayPlainText(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.MappingAddedFormat, pattern)); 1083interactionService.DisplayPlainText(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.MappingRemovedFormat, pattern)); 1097interactionService.DisplayPlainText(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.MappingRetainedFormat, pattern));
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
1060public void DisplayPlainText(string text) => _innerService.DisplayPlainText(text);