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