8 implementations of DisplaySuccess
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
253
public void
DisplaySuccess
(string message)
Interaction\ExtensionInteractionService.cs (1)
243
public void
DisplaySuccess
(string message)
Aspire.Cli.Tests (6)
Commands\NewCommandTests.cs (1)
946
public void
DisplaySuccess
(string message) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
943
public void
DisplaySuccess
(string message) { }
Commands\UpdateCommandTests.cs (1)
969
public void
DisplaySuccess
(string message) => _innerService.DisplaySuccess(message);
Templating\DotNetTemplateFactoryTests.cs (1)
433
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)
27 references to DisplaySuccess
aspire (26)
Commands\AddCommand.cs (1)
220
InteractionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, AddCommandStrings.PackageAddedSuccessfully, selectedNuGetPackage.Package.Id, selectedNuGetPackage.Package.Version));
Commands\AgentInitCommand.cs (1)
147
_interactionService.
DisplaySuccess
(McpCommandStrings.InitCommand_ConfigurationComplete);
Commands\CacheCommand.cs (1)
156
InteractionService.
DisplaySuccess
(CacheCommandStrings.CacheCleared);
Commands\ConfigCommand.cs (3)
181
InteractionService.
DisplaySuccess
(isGlobal
347
InteractionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedGlobally, key));
351
InteractionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedLocally, key));
Commands\DocsListCommand.cs (1)
75
InteractionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, DocsCommandStrings.FoundDocumentationPages, docs.Count));
Commands\DocsSearchCommand.cs (1)
89
InteractionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, DocsCommandStrings.FoundSearchResults, response.Results.Count, query));
Commands\InitCommand.cs (3)
537
InteractionService.
DisplaySuccess
(InitCommandStrings.AspireInitializationComplete);
570
InteractionService.
DisplaySuccess
($"Created {appHostFileName}");
600
InteractionService.
DisplaySuccess
(InitCommandStrings.AspireInitializationComplete);
Commands\NewCommand.cs (1)
235
InteractionService.
DisplaySuccess
($"Created {language.DisplayName} project at {outputPath}");
Commands\ResourceCommandHelper.cs (2)
68
interactionService.
DisplaySuccess
($"Command '{commandName}' executed successfully on resource '{resourceName}'.");
94
interactionService.
DisplaySuccess
($"Resource '{resourceName}' {pastTenseVerb} successfully.");
Commands\RunCommand.cs (1)
911
_interactionService.
DisplaySuccess
(RunCommandStrings.AppHostStartedSuccessfully);
Commands\Sdk\SdkDumpCommand.cs (1)
201
InteractionService.
DisplaySuccess
($"Capabilities written to {outputFile.FullName}");
Commands\Sdk\SdkGenerateCommand.cs (1)
197
InteractionService.
DisplaySuccess
($"Generated {generatedFiles.Count} files in {outputDir.FullName}");
Commands\StopCommand.cs (1)
178
_interactionService.
DisplaySuccess
(StopCommandStrings.AppHostStoppedSuccessfully);
Commands\UpdateCommand.cs (1)
490
InteractionService.
DisplaySuccess
($"Updated to version: {version}");
Commands\WaitCommand.cs (1)
157
_interactionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, WaitCommandStrings.ResourceReachedTargetStatus, resourceName, statusLabel, elapsed.TotalSeconds));
Projects\GuestAppHostProject.cs (1)
932
_interactionService.
DisplaySuccess
(UpdateCommandStrings.UpdateSuccessfulMessage);
Projects\ProjectUpdater.cs (1)
131
interactionService.
DisplaySuccess
(UpdateCommandStrings.UpdateSuccessfulMessage);
Projects\RunningInstanceManager.cs (1)
71
_interactionService.
DisplaySuccess
(RunCommandStrings.RunningInstanceStopped);
Templating\DotNetTemplateFactory.cs (1)
495
interactionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, TemplatingStrings.ProjectCreatedSuccessfully, outputPath.EscapeMarkup()));
Utils\CliDownloader.cs (1)
82
interactionService.
DisplaySuccess
("Download completed successfully");
Utils\SdkInstallHelper.cs (1)
119
interactionService.
DisplaySuccess
(
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
969
public void DisplaySuccess(string message) => _innerService.
DisplaySuccess
(message);