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