8 implementations of ShowStatusAsync
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
45
public async Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false)
Interaction\ExtensionInteractionService.cs (1)
67
public async Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false)
Aspire.Cli.Tests (6)
Commands\NewCommandTests.cs (1)
1357
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
943
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false) => action();
Commands\UpdateCommandTests.cs (1)
1046
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false) => _innerService.ShowStatusAsync(statusText, action, emoji, allowMarkup);
Templating\DotNetTemplateFactoryTests.cs (1)
472
public Task<TResult>
ShowStatusAsync
<TResult>(string message, Func<Task<TResult>> work, KnownEmoji? emoji = null, bool allowMarkup = false)
TestServices\TestConsoleInteractionService.cs (1)
28
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false)
TestServices\TestExtensionInteractionService.cs (1)
27
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false)
63 references to ShowStatusAsync
aspire (62)
Agents\Playwright\PlaywrightCliInstaller.cs (1)
80
return await interactionService.
ShowStatusAsync
(
Backchannel\AppHostConnectionResolver.cs (2)
51
var connections = await interactionService.
ShowStatusAsync
(
115
var connections = await interactionService.
ShowStatusAsync
(
Certificates\CertificateService.cs (2)
83
var (_, result) = await interactionService.
ShowStatusAsync
(
118
var trustExitCode = await interactionService.
ShowStatusAsync
(
Commands\AddCommand.cs (2)
112
var packagesWithChannels = await InteractionService.
ShowStatusAsync
(
231
var success = await InteractionService.
ShowStatusAsync
(
Commands\AgentInitCommand.cs (1)
100
var applicators = await _interactionService.
ShowStatusAsync
(
Commands\AppHostLauncher.cs (1)
123
var launchResult = await interactionService.
ShowStatusAsync
(
Commands\DocsGetCommand.cs (1)
71
var doc = await InteractionService.
ShowStatusAsync
(
Commands\DocsListCommand.cs (1)
58
var docs = await InteractionService.
ShowStatusAsync
(
Commands\DocsSearchCommand.cs (1)
72
var response = await InteractionService.
ShowStatusAsync
(
Commands\DoctorCommand.cs (1)
48
var results = await InteractionService.
ShowStatusAsync
(
Commands\ExecCommand.cs (3)
183
backchannel = await InteractionService.
ShowStatusAsync
(
201
commandExitCode = await InteractionService.
ShowStatusAsync
<int?>(
224
_ = await InteractionService.
ShowStatusAsync
<int>(
Commands\InitCommand.cs (10)
179
var (getSolutionExitCode, solutionProjects) = await InteractionService.
ShowStatusAsync
("Reading solution...", async () =>
202
_ = await InteractionService.
ShowStatusAsync
("Evaluating existing projects...", async () =>
320
var templateInstallResult = await InteractionService.
ShowStatusAsync
(
348
var createResult = await InteractionService.
ShowStatusAsync
(
403
var addAppHostResult = await InteractionService.
ShowStatusAsync
(
429
var addServiceDefaultsResult = await InteractionService.
ShowStatusAsync
(
462
var addRefResult = await InteractionService.
ShowStatusAsync
(
496
var addRefResult = await InteractionService.
ShowStatusAsync
(
681
var allChannels = await InteractionService.
ShowStatusAsync
(
714
var packagesFromChannels = await InteractionService.
ShowStatusAsync
("Searching for available template versions...", async () =>
Commands\LogsCommand.cs (2)
210
var entries = await _interactionService.
ShowStatusAsync
(
263
var entries = await _interactionService.
ShowStatusAsync
(
Commands\NewCommand.cs (1)
260
return await InteractionService.
ShowStatusAsync
(
Commands\PipelineCommandBase.cs (1)
176
var backchannel = await InteractionService.
ShowStatusAsync
(GetProgressMessage(parseResult), async () =>
Commands\PsCommand.cs (1)
105
var connections = await _interactionService.
ShowStatusAsync
(
Commands\RenderCommand.cs (4)
101
await InteractionService.
ShowStatusAsync
(
116
await InteractionService.
ShowStatusAsync
(
131
await InteractionService.
ShowStatusAsync
(
157
await InteractionService.
ShowStatusAsync
(
Commands\ResourceCommandHelper.cs (2)
42
var response = await interactionService.
ShowStatusAsync
(
62
var response = await interactionService.
ShowStatusAsync
(
Commands\RunCommand.cs (2)
254
var backchannel = await InteractionService.
ShowStatusAsync
(
262
var dashboardUrls = await InteractionService.
ShowStatusAsync
(
Commands\Sdk\SdkDumpCommand.cs (1)
107
return await InteractionService.
ShowStatusAsync
(
Commands\Sdk\SdkGenerateCommand.cs (1)
95
return await InteractionService.
ShowStatusAsync
(
Commands\SetupCommand.cs (1)
73
var exitCode = await InteractionService.
ShowStatusAsync
(
Commands\StopCommand.cs (1)
277
var stopped = await _interactionService.
ShowStatusAsync
(
Commands\UpdateCommand.cs (2)
155
var allChannels = await InteractionService.
ShowStatusAsync
(
355
await InteractionService.
ShowStatusAsync
(
Commands\WaitCommand.cs (1)
121
var exitCode = await _interactionService.
ShowStatusAsync
(
Projects\GuestAppHostProject.cs (3)
300
var buildResult = await _interactionService.
ShowStatusAsync
(
872
var updates = await _interactionService.
ShowStatusAsync
(
967
await _interactionService.
ShowStatusAsync
(
Projects\ProjectLocator.cs (1)
43
return await interactionService.
ShowStatusAsync
(InteractionServiceStrings.SearchingProjects, async () =>
Projects\ProjectUpdater.cs (2)
32
var (updateSteps, fallbackUsed) = await interactionService.
ShowStatusAsync
(UpdateCommandStrings.AnalyzingProjectStatus, () => GetUpdateStepsAsync(projectFile, channel, cancellationToken));
123
await interactionService.
ShowStatusAsync
(
Scaffolding\ScaffoldingService.cs (2)
74
var prepareResult = await _interactionService.
ShowStatusAsync
(
118
var installResult = await _interactionService.
ShowStatusAsync
(
Templating\CliTemplateFactory.EmptyTemplate.cs (1)
65
templateResult = await _interactionService.
ShowStatusAsync
(
Templating\CliTemplateFactory.TypeScriptStarterTemplate.cs (1)
49
templateResult = await _interactionService.
ShowStatusAsync
(
Templating\DotNetTemplateFactory.cs (3)
458
var templateInstallResult = await interactionService.
ShowStatusAsync
<(int ExitCode, string? TemplateVersion)>(
495
var newProjectExitCode = await interactionService.
ShowStatusAsync
(
622
var packagesFromChannels = await interactionService.
ShowStatusAsync
(TemplatingStrings.SearchingForAvailableTemplateVersions, async () =>
Utils\AppHostHelper.cs (2)
58
var appHostInformationResult = await interactionService.
ShowStatusAsync
(
72
return await interactionService.
ShowStatusAsync
(
Utils\CliDownloader.cs (1)
66
_ = await interactionService.
ShowStatusAsync
($"Downloading Aspire CLI from: {archiveUrl}", async () =>
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
1046
public Task<T> ShowStatusAsync<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false) => _innerService.
ShowStatusAsync
(statusText, action, emoji, allowMarkup);