8 implementations of ShowStatusAsync
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
105public async Task<T> ShowStatusAsync<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false)
Interaction\ExtensionInteractionService.cs (1)
80public async Task<T> ShowStatusAsync<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false)
Aspire.Cli.Tests (6)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
1237public Task<T> ShowStatusAsync<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false) => action();
Commands\UpdateCommandTests.cs (1)
3517public Task<T> ShowStatusAsync<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false) => _innerService.ShowStatusAsync(statusText, action, emoji, allowMarkup);
Projects\ExtensionGuestLauncherTests.cs (1)
164public Task<T> ShowStatusAsync<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false) => throw new NotImplementedException();
Templating\DotNetTemplateFactoryTests.cs (1)
391public Task<TResult> ShowStatusAsync<TResult>(string message, Func<Task<TResult>> work, KnownEmoji? emoji = null, bool allowMarkup = false)
TestServices\TestExtensionInteractionService.cs (1)
41public Task<T> ShowStatusAsync<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false)
TestServices\TestInteractionService.cs (1)
77public Task<T> ShowStatusAsync<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false)
80 references to ShowStatusAsync
aspire (79)
Agents\AspireSkills\AspireSkillsInstaller.cs (1)
60return interactionService.ShowStatusAsync(
Agents\Playwright\PlaywrightCliInstaller.cs (1)
111return await interactionService.ShowStatusAsync(
Backchannel\AppHostConnectionResolver.cs (2)
63var connections = await interactionService.ShowStatusAsync( 184var connections = await interactionService.ShowStatusAsync(
Certificates\CertificateService.cs (1)
132var trustResultCode = await interactionService.ShowStatusAsync(
Commands\AddCommand.cs (4)
182var (discoveredPackages, discoveredPolyglotIds) = await InteractionService.ShowStatusAsync( 190var discoveredPackages = await InteractionService.ShowStatusAsync( 390success = await InteractionService.ShowStatusAsync( 499var allVersions = await InteractionService.ShowStatusAsync(
Commands\AgentInitCommand.cs (1)
210var applicators = await InteractionService.ShowStatusAsync(
Commands\ApiGetCommand.cs (1)
53var item = await InteractionService.ShowStatusAsync(
Commands\ApiListCommand.cs (1)
55var items = await InteractionService.ShowStatusAsync(
Commands\ApiSearchCommand.cs (1)
69var items = await InteractionService.ShowStatusAsync(
Commands\DashboardRunCommand.cs (2)
176return await InteractionService.ShowStatusAsync( 437var completedTask = await InteractionService.ShowStatusAsync(
Commands\DocsGetCommand.cs (1)
62var doc = await InteractionService.ShowStatusAsync(
Commands\DocsListCommand.cs (1)
50var docs = await InteractionService.ShowStatusAsync(
Commands\DocsSearchCommand.cs (1)
64var response = await InteractionService.ShowStatusAsync(
Commands\DoctorCommand.cs (1)
81var results = await InteractionService.ShowStatusAsync(
Commands\ExportCommand.cs (4)
150var (telemetryResources, allSnapshots) = await InteractionService.ShowStatusAsync(ExportCommandStrings.GatheringResources, async () => 200await InteractionService.ShowStatusAsync(ExportCommandStrings.GatheringConsoleLogs, async () => 210await InteractionService.ShowStatusAsync(ExportCommandStrings.GatheringStructuredLogs, async () => 217await InteractionService.ShowStatusAsync(ExportCommandStrings.GatheringTraces, async () =>
Commands\InitCommand.cs (1)
450var result = await InteractionService.ShowStatusAsync(
Commands\IntegrationSearchCommand.cs (2)
85var (discoveredPackages, discoveredPolyglotIds) = await InteractionService.ShowStatusAsync( 93packagesWithChannels = (await InteractionService.ShowStatusAsync(
Commands\LogsCommand.cs (2)
240var entries = await InteractionService.ShowStatusAsync( 308var entries = await InteractionService.ShowStatusAsync(
Commands\NewCommand.cs (1)
355return await InteractionService.ShowStatusAsync(
Commands\PipelineCommandBase.cs (1)
295var backchannel = await InteractionService.ShowStatusAsync(GetProgressMessage(parseResult), (Func<Task<IAppHostCliBackchannel>>)(async () =>
Commands\PsCommand.cs (1)
127: await InteractionService.ShowStatusAsync(
Commands\RenderCommand.cs (4)
261await InteractionService.ShowStatusAsync( 276await InteractionService.ShowStatusAsync( 291await InteractionService.ShowStatusAsync( 352await InteractionService.ShowStatusAsync(
Commands\ResourceCommand.cs (2)
671var inScopeConnections = await command.InteractionService.ShowStatusAsync( 707var matchingConnections = await command.InteractionService.ShowStatusAsync(
Commands\ResourceCommandHelper.cs (2)
45var response = await interactionService.ShowStatusAsync( 74var response = await interactionService.ShowStatusAsync(
Commands\RestoreCommand.cs (3)
98var success = await _interactionService.ShowStatusAsync( 135var restoreExitCode = await _interactionService.ShowStatusAsync( 155var success = await _interactionService.ShowStatusAsync(
Commands\RunCommand.cs (3)
854var resolution = await InteractionService.ShowStatusAsync( 880backchannel = await InteractionService.ShowStatusAsync( 906dashboardUrls = await InteractionService.ShowStatusAsync(
Commands\Sdk\SdkDumpCommand.cs (1)
157return CommandResult.FromExitCode(await InteractionService.ShowStatusAsync(
Commands\Sdk\SdkGenerateCommand.cs (1)
89return CommandResult.FromExitCode(await InteractionService.ShowStatusAsync(
Commands\SetupCommand.cs (1)
68var exitCode = await InteractionService.ShowStatusAsync(
Commands\StopCommand.cs (2)
351var cleanupResult = await InteractionService.ShowStatusAsync( 502var stopped = await InteractionService.ShowStatusAsync(
Commands\TerminalAttachCommand.cs (2)
111var snapshots = await _interactionService.ShowStatusAsync( 130var info = await _interactionService.ShowStatusAsync(
Commands\TerminalPsCommand.cs (1)
123var response = await _interactionService.ShowStatusAsync(
Commands\UpdateCommand.cs (2)
248var allChannels = await InteractionService.ShowStatusAsync( 771await InteractionService.ShowStatusAsync(
Commands\WaitCommand.cs (1)
110var exitCode = await InteractionService.ShowStatusAsync(
Interaction\IInteractionService.cs (1)
21/// Use this instead of <see cref="ShowStatusAsync{T}(string, Func{Task{T}}, KnownEmoji?, bool)"/> when the
Migrations\TypeScriptAppHostMigration.cs (2)
103await _interactionService.ShowStatusAsync( 348var success = await _interactionService.ShowStatusAsync(
Projects\GuestAppHostProject.cs (3)
425var buildResult = await _interactionService.ShowStatusAsync( 1449var updates = await _interactionService.ShowStatusAsync( 1551var regenerateResult = await _interactionService.ShowStatusAsync(
Projects\ProjectLocator.cs (1)
560return await interactionService.ShowStatusAsync(InteractionServiceStrings.FindingAppHosts, FindAppHostsAsync);
Projects\ProjectUpdater.cs (3)
36var (updateSteps, fallbackUsed) = await interactionService.ShowStatusAsync(UpdateCommandStrings.AnalyzingProjectStatus, () => GetUpdateStepsAsync(projectFile, channel, cancellationToken)); 159await interactionService.ShowStatusAsync( 188await interactionService.ShowStatusAsync(
Scaffolding\ScaffoldingService.cs (2)
138var prepareResult = await _interactionService.ShowStatusAsync( 231var installResult = await _interactionService.ShowStatusAsync(
Templating\CliTemplateFactory.EmptyTemplate.cs (1)
65templateResult = await _interactionService.ShowStatusAsync(
Templating\CliTemplateFactory.GoStarterTemplate.cs (1)
48templateResult = await _interactionService.ShowStatusAsync(
Templating\CliTemplateFactory.JavaStarterTemplate.cs (1)
48templateResult = await _interactionService.ShowStatusAsync(
Templating\CliTemplateFactory.PythonStarterTemplate.cs (1)
50templateResult = await _interactionService.ShowStatusAsync(
Templating\CliTemplateFactory.TypeScriptStarterTemplate.cs (1)
49templateResult = await _interactionService.ShowStatusAsync(
Templating\DotNetTemplateFactory.cs (1)
494var newProjectExitCode = await interactionService.ShowStatusAsync(
Templating\TemplateNuGetConfigService.cs (2)
295var packagesFromChannels = await interactionService.ShowStatusAsync(Resources.TemplatingStrings.SearchingForAvailableTemplateVersions, async () => 440var (exitCode, templateVersion) = await interactionService.ShowStatusAsync<(int ExitCode, string? TemplateVersion)>(
Utils\AppHostHelper.cs (2)
79var appHostInformationResult = await interactionService.ShowStatusAsync( 93return await interactionService.ShowStatusAsync(
Utils\CliDownloader.cs (1)
67_ = await interactionService.ShowStatusAsync($"Downloading {archiveDescriptor}", async () =>
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
3517public Task<T> ShowStatusAsync<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false) => _innerService.ShowStatusAsync(statusText, action, emoji, allowMarkup);