7 implementations of DisplaySuccess
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
178public void DisplaySuccess(string message)
Interaction\ExtensionInteractionService.cs (1)
241public void DisplaySuccess(string message)
Aspire.Cli.Tests (5)
Commands\NewCommandTests.cs (1)
675public void DisplaySuccess(string message) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
978public void DisplaySuccess(string message) { }
Templating\DotNetTemplateFactoryTests.cs (1)
406public void DisplaySuccess(string message) { }
TestServices\TestConsoleInteractionService.cs (1)
68public void DisplaySuccess(string message)
TestServices\TestExtensionInteractionService.cs (1)
73public void DisplaySuccess(string message)
9 references to DisplaySuccess
aspire (9)
Commands\AddCommand.cs (1)
183InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, AddCommandStrings.PackageAddedSuccessfully, selectedNuGetPackage.Package.Id, selectedNuGetPackage.Package.Version));
Commands\CacheCommand.cs (1)
90InteractionService.DisplaySuccess(CacheCommandStrings.CacheCleared);
Commands\ConfigCommand.cs (3)
183InteractionService.DisplaySuccess(isGlobal 299InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedGlobally, key)); 303InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedLocally, key));
Commands\InitCommand.cs (2)
399InteractionService.DisplaySuccess(InitCommandStrings.AspireInitializationComplete); 444InteractionService.DisplaySuccess(InitCommandStrings.AspireInitializationComplete);
Projects\ProjectUpdater.cs (1)
130interactionService.DisplaySuccess(UpdateCommandStrings.UpdateSuccessfulMessage);
Templating\DotNetTemplateFactory.cs (1)
372interactionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, TemplatingStrings.ProjectCreatedSuccessfully, outputPath));