4 implementations of ShowStatusAsync
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
27
public async Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action)
Interaction\ExtensionInteractionService.cs (1)
43
public async Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action)
Aspire.Cli.Tests (2)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
734
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action) => action();
TestServices\TestConsoleInteractionService.cs (1)
16
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action)
16 references to ShowStatusAsync
aspire (16)
Certificates\CertificateService.cs (2)
26
var checkExitCode = await interactionService.
ShowStatusAsync
(
48
var trustExitCode = await interactionService.
ShowStatusAsync
(
Commands\AddCommand.cs (2)
82
var packages = await _interactionService.
ShowStatusAsync
(
130
var addPackageResult = await _interactionService.
ShowStatusAsync
(
Commands\ExecCommand.cs (3)
158
backchannel = await _interactionService.
ShowStatusAsync
(
176
commandExitCode = await _interactionService.
ShowStatusAsync
<int?>(
199
_ = await _interactionService.
ShowStatusAsync
<int>(
Commands\PublishCommandBase.cs (1)
157
var backchannel = await _interactionService.
ShowStatusAsync
($":hammer_and_wrench: {GetProgressMessage()}", async ()=>
Commands\RunCommand.cs (2)
150
var backchannel = await _interactionService.
ShowStatusAsync
("Connecting to app host...", async () =>
159
var dashboardUrls = await _interactionService.
ShowStatusAsync
("Starting dashboard...", async () =>
Projects\ProjectLocator.cs (1)
27
return await interactionService.
ShowStatusAsync
(InteractionServiceStrings.SearchingProjects, async () =>
Templating\DotNetTemplateFactory.cs (3)
209
var templateInstallResult = await interactionService.
ShowStatusAsync
<(int ExitCode, string? TemplateVersion)>(
233
var newProjectExitCode = await interactionService.
ShowStatusAsync
(
315
var candidatePackages = await interactionService.
ShowStatusAsync
(
Utils\AppHostHelper.cs (2)
56
var appHostInformationResult = await interactionService.
ShowStatusAsync
(
68
return await interactionService.
ShowStatusAsync
(