5 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)
52
public async Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action)
Aspire.Cli.Tests (3)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
744
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)
TestServices\TestExtensionInteractionService.cs (1)
21
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action)
16 references to ShowStatusAsync
aspire (16)
Certificates\CertificateService.cs (2)
27
var checkExitCode = await interactionService.
ShowStatusAsync
(
49
var trustExitCode = await interactionService.
ShowStatusAsync
(
Commands\AddCommand.cs (2)
92
var packages = await _interactionService.
ShowStatusAsync
(
140
var addPackageResult = await _interactionService.
ShowStatusAsync
(
Commands\ExecCommand.cs (3)
183
backchannel = await _interactionService.
ShowStatusAsync
(
201
commandExitCode = await _interactionService.
ShowStatusAsync
<int?>(
224
_ = await _interactionService.
ShowStatusAsync
<int>(
Commands\PublishCommandBase.cs (1)
168
var backchannel = await _interactionService.
ShowStatusAsync
($":hammer_and_wrench: {GetProgressMessage()}", async ()=>
Commands\RunCommand.cs (2)
175
var backchannel = await _interactionService.
ShowStatusAsync
(RunCommandStrings.ConnectingToAppHost, async () =>
184
var dashboardUrls = await _interactionService.
ShowStatusAsync
(RunCommandStrings.StartingDashboard, async () =>
Projects\ProjectLocator.cs (1)
28
return await interactionService.
ShowStatusAsync
(InteractionServiceStrings.SearchingProjects, async () =>
Templating\DotNetTemplateFactory.cs (3)
231
var templateInstallResult = await interactionService.
ShowStatusAsync
<(int ExitCode, string? TemplateVersion)>(
255
var newProjectExitCode = await interactionService.
ShowStatusAsync
(
345
var candidatePackages = await interactionService.
ShowStatusAsync
(
Utils\AppHostHelper.cs (2)
57
var appHostInformationResult = await interactionService.
ShowStatusAsync
(
69
return await interactionService.
ShowStatusAsync
(