8 implementations of DisplayPlainText
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
175
public void
DisplayPlainText
(string message)
Interaction\ExtensionInteractionService.cs (1)
295
public void
DisplayPlainText
(string text)
Aspire.Cli.Tests (6)
Commands\NewCommandTests.cs (1)
913
public void
DisplayPlainText
(string text) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
994
public void
DisplayPlainText
(string text) { }
Commands\UpdateCommandTests.cs (1)
964
public void
DisplayPlainText
(string text) => _innerService.DisplayPlainText(text);
Templating\DotNetTemplateFactoryTests.cs (1)
425
public void
DisplayPlainText
(string text) { }
TestServices\TestConsoleInteractionService.cs (1)
112
public void
DisplayPlainText
(string text)
TestServices\TestExtensionInteractionService.cs (1)
125
public void
DisplayPlainText
(string text)
11 references to DisplayPlainText
aspire (10)
Commands\ConfigCommand.cs (1)
107
InteractionService.
DisplayPlainText
(value);
Commands\UpdateCommand.cs (1)
120
InteractionService.
DisplayPlainText
(" dotnet tool update -g Aspire.Cli");
Projects\ProjectUpdater.cs (8)
840
interactionService.
DisplayPlainText
(UpdateCommandStrings.NoChangesDetectedInNuGetConfig);
983
interactionService.
DisplayPlainText
(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.AddedFeedFormat, feed.Value));
990
interactionService.
DisplayPlainText
(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.MappingAddedFormat, pattern));
999
interactionService.
DisplayPlainText
(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.RemovedFeedFormat, feed.Value));
1006
interactionService.
DisplayPlainText
(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.RetainedFeedFormat, feed.Value));
1014
interactionService.
DisplayPlainText
(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.MappingAddedFormat, pattern));
1020
interactionService.
DisplayPlainText
(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.MappingRemovedFormat, pattern));
1034
interactionService.
DisplayPlainText
(string.Format(CultureInfo.InvariantCulture, UpdateCommandStrings.MappingRetainedFormat, pattern));
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
964
public void DisplayPlainText(string text) => _innerService.
DisplayPlainText
(text);