9 implementations of DisplaySuccess
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
348public void DisplaySuccess(string message, bool allowMarkup = false)
Interaction\ExtensionInteractionService.cs (1)
320public void DisplaySuccess(string message, bool allowMarkup = false)
Aspire.Cli.Tests (7)
Commands\NewCommandTests.cs (1)
1576public void DisplaySuccess(string message, bool allowMarkup = false) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
954public void DisplaySuccess(string message, bool allowMarkup = false) { }
Commands\UpdateCommandTests.cs (1)
1064public void DisplaySuccess(string message, bool allowMarkup = false) => _innerService.DisplaySuccess(message, allowMarkup);
Projects\ExtensionGuestLauncherTests.cs (1)
168public void DisplaySuccess(string message, bool allowMarkup = false) => throw new NotImplementedException();
Templating\DotNetTemplateFactoryTests.cs (1)
481public void DisplaySuccess(string message, bool allowMarkup = false) { }
TestServices\TestExtensionInteractionService.cs (1)
87public void DisplaySuccess(string message, bool allowMarkup = false)
TestServices\TestInteractionService.cs (1)
153public void DisplaySuccess(string message, bool allowMarkup = false)
37 references to DisplaySuccess
aspire (36)
Backchannel\AppHostConnectionResolver.cs (1)
198interactionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, SharedCommandStrings.UsingAppHost, selectedDisplay));
Commands\AddCommand.cs (1)
252InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, AddCommandStrings.PackageAddedSuccessfully, selectedNuGetPackage.Package.Id, selectedNuGetPackage.Package.Version));
Commands\AgentInitCommand.cs (2)
172_interactionService.DisplaySuccess(McpCommandStrings.InitCommand_ConfigurationComplete); 277_interactionService.DisplaySuccess(McpCommandStrings.InitCommand_ConfigurationComplete);
Commands\AppHostLauncher.cs (1)
357interactionService.DisplaySuccess(RunCommandStrings.AppHostStartedSuccessfully);
Commands\CacheCommand.cs (1)
157InteractionService.DisplaySuccess(CacheCommandStrings.CacheCleared);
Commands\CertificatesCleanCommand.cs (1)
38InteractionService.DisplaySuccess(CertificatesCommandStrings.CleanSuccess);
Commands\CertificatesTrustCommand.cs (1)
39InteractionService.DisplaySuccess(CertificatesCommandStrings.TrustSuccess);
Commands\ConfigCommand.cs (3)
183InteractionService.DisplaySuccess(isGlobal 408InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedGlobally, key)); 412InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedLocally, key));
Commands\DocsListCommand.cs (1)
76InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, DocsCommandStrings.FoundDocumentationPages, docs.Count));
Commands\DocsSearchCommand.cs (1)
90InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, DocsCommandStrings.FoundSearchResults, response.Results.Count, query));
Commands\InitCommand.cs (3)
559InteractionService.DisplaySuccess(InitCommandStrings.AspireInitializationComplete); 596InteractionService.DisplaySuccess($"Created {appHostFileName}"); 627InteractionService.DisplaySuccess(InitCommandStrings.AspireInitializationComplete);
Commands\RenderCommand.cs (2)
148InteractionService.DisplaySuccess("Step 1 complete!"); 187InteractionService.DisplaySuccess("Confirmed!");
Commands\ResourceCommandHelper.cs (2)
68interactionService.DisplaySuccess($"Command '{commandName}' executed successfully on resource '{resourceName}'."); 94interactionService.DisplaySuccess($"Resource '{resourceName}' {pastTenseVerb} successfully.");
Commands\RestoreCommand.cs (2)
104_interactionService.DisplaySuccess( 124_interactionService.DisplaySuccess(
Commands\Sdk\SdkDumpCommand.cs (1)
217InteractionService.DisplaySuccess($"Capabilities written to {outputFile.FullName}");
Commands\Sdk\SdkGenerateCommand.cs (1)
195InteractionService.DisplaySuccess($"Generated {generatedFiles.Count} files in {outputDir.FullName}");
Commands\SecretDeleteCommand.cs (1)
63InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, SecretCommandStrings.SecretDeleteSuccess, key));
Commands\SecretSetCommand.cs (1)
67InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, SecretCommandStrings.SecretSetSuccess, key));
Commands\StopCommand.cs (1)
278_interactionService.DisplaySuccess(StopCommandStrings.AppHostStoppedSuccessfully);
Commands\UpdateCommand.cs (1)
513InteractionService.DisplaySuccess($"Updated to version: {version}");
Commands\WaitCommand.cs (1)
155_interactionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, WaitCommandStrings.ResourceReachedTargetStatus, resourceName, statusLabel, elapsed.TotalSeconds));
Projects\GuestAppHostProject.cs (1)
1152_interactionService.DisplaySuccess(UpdateCommandStrings.UpdateSuccessfulMessage);
Projects\ProjectUpdater.cs (1)
138interactionService.DisplaySuccess(UpdateCommandStrings.UpdateSuccessfulMessage);
Projects\RunningInstanceManager.cs (1)
71_interactionService.DisplaySuccess(RunCommandStrings.RunningInstanceStopped);
Templating\CliTemplateFactory.EmptyTemplate.cs (1)
103_interactionService.DisplaySuccess($"Created {language.DisplayName.EscapeMarkup()} project at {outputPath.EscapeMarkup()}");
Templating\CliTemplateFactory.TypeScriptStarterTemplate.cs (1)
104_interactionService.DisplaySuccess($"Created TypeScript starter project at {outputPath.EscapeMarkup()}");
Templating\DotNetTemplateFactory.cs (1)
596interactionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, TemplatingStrings.ProjectCreatedSuccessfully, outputPath));
Utils\CliDownloader.cs (1)
82interactionService.DisplaySuccess("Download completed successfully");
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
1064public void DisplaySuccess(string message, bool allowMarkup = false) => _innerService.DisplaySuccess(message, allowMarkup);