8 implementations of DisplaySuccess
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
202
public void
DisplaySuccess
(string message)
Interaction\ExtensionInteractionService.cs (1)
243
public void
DisplaySuccess
(string message)
Aspire.Cli.Tests (6)
Commands\NewCommandTests.cs (1)
907
public void
DisplaySuccess
(string message) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
989
public void
DisplaySuccess
(string message) { }
Commands\UpdateCommandTests.cs (1)
966
public void
DisplaySuccess
(string message) => _innerService.DisplaySuccess(message);
Templating\DotNetTemplateFactoryTests.cs (1)
419
public void
DisplaySuccess
(string message) { }
TestServices\TestConsoleInteractionService.cs (1)
86
public void
DisplaySuccess
(string message)
TestServices\TestExtensionInteractionService.cs (1)
74
public void
DisplaySuccess
(string message)
15 references to DisplaySuccess
aspire (14)
Commands\AddCommand.cs (1)
196
InteractionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, AddCommandStrings.PackageAddedSuccessfully, selectedNuGetPackage.Package.Id, selectedNuGetPackage.Package.Version));
Commands\CacheCommand.cs (1)
118
InteractionService.
DisplaySuccess
(CacheCommandStrings.CacheCleared);
Commands\ConfigCommand.cs (3)
183
InteractionService.
DisplaySuccess
(isGlobal
299
InteractionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedGlobally, key));
303
InteractionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedLocally, key));
Commands\InitCommand.cs (2)
495
InteractionService.
DisplaySuccess
(InitCommandStrings.AspireInitializationComplete);
524
InteractionService.
DisplaySuccess
(InitCommandStrings.AspireInitializationComplete);
Commands\McpInitCommand.cs (1)
138
_interactionService.
DisplaySuccess
(McpCommandStrings.InitCommand_ConfigurationComplete);
Commands\RunCommand.cs (1)
561
InteractionService.
DisplaySuccess
(RunCommandStrings.RunningInstanceStopped);
Commands\UpdateCommand.cs (1)
479
InteractionService.
DisplaySuccess
($"Updated to version: {version}");
Projects\ProjectUpdater.cs (1)
131
interactionService.
DisplaySuccess
(UpdateCommandStrings.UpdateSuccessfulMessage);
Templating\DotNetTemplateFactory.cs (1)
483
interactionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, TemplatingStrings.ProjectCreatedSuccessfully, outputPath.EscapeMarkup()));
Utils\CliDownloader.cs (1)
82
interactionService.
DisplaySuccess
("Download completed successfully");
Utils\SdkInstallHelper.cs (1)
94
interactionService.
DisplaySuccess
(
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
966
public void DisplaySuccess(string message) => _innerService.
DisplaySuccess
(message);