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