9 implementations of DisplaySuccess
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
348
public void
DisplaySuccess
(string message, bool allowMarkup = false)
Interaction\ExtensionInteractionService.cs (1)
320
public void
DisplaySuccess
(string message, bool allowMarkup = false)
Aspire.Cli.Tests (7)
Commands\NewCommandTests.cs (1)
1576
public void
DisplaySuccess
(string message, bool allowMarkup = false) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
954
public void
DisplaySuccess
(string message, bool allowMarkup = false) { }
Commands\UpdateCommandTests.cs (1)
1064
public void
DisplaySuccess
(string message, bool allowMarkup = false) => _innerService.DisplaySuccess(message, allowMarkup);
Projects\ExtensionGuestLauncherTests.cs (1)
168
public void
DisplaySuccess
(string message, bool allowMarkup = false) => throw new NotImplementedException();
Templating\DotNetTemplateFactoryTests.cs (1)
481
public void
DisplaySuccess
(string message, bool allowMarkup = false) { }
TestServices\TestExtensionInteractionService.cs (1)
87
public void
DisplaySuccess
(string message, bool allowMarkup = false)
TestServices\TestInteractionService.cs (1)
153
public void
DisplaySuccess
(string message, bool allowMarkup = false)
37 references to DisplaySuccess
aspire (36)
Backchannel\AppHostConnectionResolver.cs (1)
198
interactionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, SharedCommandStrings.UsingAppHost, selectedDisplay));
Commands\AddCommand.cs (1)
252
InteractionService.
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)
357
interactionService.
DisplaySuccess
(RunCommandStrings.AppHostStartedSuccessfully);
Commands\CacheCommand.cs (1)
157
InteractionService.
DisplaySuccess
(CacheCommandStrings.CacheCleared);
Commands\CertificatesCleanCommand.cs (1)
38
InteractionService.
DisplaySuccess
(CertificatesCommandStrings.CleanSuccess);
Commands\CertificatesTrustCommand.cs (1)
39
InteractionService.
DisplaySuccess
(CertificatesCommandStrings.TrustSuccess);
Commands\ConfigCommand.cs (3)
183
InteractionService.
DisplaySuccess
(isGlobal
408
InteractionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedGlobally, key));
412
InteractionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedLocally, key));
Commands\DocsListCommand.cs (1)
76
InteractionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, DocsCommandStrings.FoundDocumentationPages, docs.Count));
Commands\DocsSearchCommand.cs (1)
90
InteractionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, DocsCommandStrings.FoundSearchResults, response.Results.Count, query));
Commands\InitCommand.cs (3)
559
InteractionService.
DisplaySuccess
(InitCommandStrings.AspireInitializationComplete);
596
InteractionService.
DisplaySuccess
($"Created {appHostFileName}");
627
InteractionService.
DisplaySuccess
(InitCommandStrings.AspireInitializationComplete);
Commands\RenderCommand.cs (2)
148
InteractionService.
DisplaySuccess
("Step 1 complete!");
187
InteractionService.
DisplaySuccess
("Confirmed!");
Commands\ResourceCommandHelper.cs (2)
68
interactionService.
DisplaySuccess
($"Command '{commandName}' executed successfully on resource '{resourceName}'.");
94
interactionService.
DisplaySuccess
($"Resource '{resourceName}' {pastTenseVerb} successfully.");
Commands\RestoreCommand.cs (2)
104
_interactionService.
DisplaySuccess
(
124
_interactionService.
DisplaySuccess
(
Commands\Sdk\SdkDumpCommand.cs (1)
217
InteractionService.
DisplaySuccess
($"Capabilities written to {outputFile.FullName}");
Commands\Sdk\SdkGenerateCommand.cs (1)
195
InteractionService.
DisplaySuccess
($"Generated {generatedFiles.Count} files in {outputDir.FullName}");
Commands\SecretDeleteCommand.cs (1)
63
InteractionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, SecretCommandStrings.SecretDeleteSuccess, key));
Commands\SecretSetCommand.cs (1)
67
InteractionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, SecretCommandStrings.SecretSetSuccess, key));
Commands\StopCommand.cs (1)
278
_interactionService.
DisplaySuccess
(StopCommandStrings.AppHostStoppedSuccessfully);
Commands\UpdateCommand.cs (1)
513
InteractionService.
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)
138
interactionService.
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)
596
interactionService.
DisplaySuccess
(string.Format(CultureInfo.CurrentCulture, TemplatingStrings.ProjectCreatedSuccessfully, outputPath));
Utils\CliDownloader.cs (1)
82
interactionService.
DisplaySuccess
("Download completed successfully");
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
1064
public void DisplaySuccess(string message, bool allowMarkup = false) => _innerService.
DisplaySuccess
(message, allowMarkup);