8 implementations of DisplayPlainText
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
214
public void
DisplayPlainText
(string message)
Interaction\ExtensionInteractionService.cs (1)
295
public void
DisplayPlainText
(string text)
Aspire.Cli.Tests (6)
Commands\NewCommandTests.cs (1)
952
public void
DisplayPlainText
(string text) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
948
public void
DisplayPlainText
(string text) { }
Commands\UpdateCommandTests.cs (1)
965
public void
DisplayPlainText
(string text) => _innerService.DisplayPlainText(text);
Templating\DotNetTemplateFactoryTests.cs (1)
439
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)
25 references to DisplayPlainText
aspire (24)
Commands\ConfigCommand.cs (7)
106
InteractionService.
DisplayPlainText
(value);
246
InteractionService.
DisplayPlainText
($" {ConfigCommandStrings.NoLocalConfigurationFound}");
264
InteractionService.
DisplayPlainText
($" {ConfigCommandStrings.NoGlobalConfigurationFound}");
276
InteractionService.
DisplayPlainText
($" {string.Join(", ", unconfiguredFeatures)}");
421
InteractionService.
DisplayPlainText
(json);
427
InteractionService.
DisplayPlainText
($" {localPath}");
430
InteractionService.
DisplayPlainText
($" {globalPath}");
Commands\LogsCommand.cs (1)
342
_interactionService.
DisplayPlainText
($"[{logLine.ResourceName}] {logLine.Content}");
Commands\PsCommand.cs (3)
101
_interactionService.
DisplayPlainText
("[]");
216
_interactionService.
DisplayPlainText
(header);
226
_interactionService.
DisplayPlainText
(row);
Commands\ResourcesCommand.cs (2)
232
_interactionService.
DisplayPlainText
("No resources found.");
294
_interactionService.
DisplayPlainText
($"[{displayName}] {snapshot.State ?? "Unknown"}{health}{endpointsStr}");
Commands\StopCommand.cs (1)
174
_interactionService.
DisplayPlainText
("");
Commands\UpdateCommand.cs (1)
118
InteractionService.
DisplayPlainText
(" dotnet tool update -g Aspire.Cli");
Commands\WaitCommand.cs (1)
152
_interactionService.
DisplayPlainText
("");
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)
965
public void DisplayPlainText(string text) => _innerService.
DisplayPlainText
(text);