6 implementations of ShowStatusAsync
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
30
public async Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action)
Interaction\ExtensionInteractionService.cs (1)
62
public async Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action)
Aspire.Cli.Tests (4)
Commands\NewCommandTests.cs (1)
628
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
834
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action) => action();
TestServices\TestConsoleInteractionService.cs (1)
18
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action)
TestServices\TestExtensionInteractionService.cs (1)
23
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action)
17 references to ShowStatusAsync
aspire (17)
Certificates\CertificateService.cs (2)
27
var checkExitCode = await interactionService.
ShowStatusAsync
(
49
var trustExitCode = await interactionService.
ShowStatusAsync
(
Commands\AddCommand.cs (2)
92
var packagesWithChannels = await _interactionService.
ShowStatusAsync
(
156
var addPackageResult = await _interactionService.
ShowStatusAsync
(
Commands\ExecCommand.cs (3)
188
backchannel = await _interactionService.
ShowStatusAsync
(
206
commandExitCode = await _interactionService.
ShowStatusAsync
<int?>(
229
_ = await _interactionService.
ShowStatusAsync
<int>(
Commands\PublishCommandBase.cs (1)
165
var backchannel = await _interactionService.
ShowStatusAsync
($":hammer_and_wrench: {GetProgressMessage()}", async () =>
Commands\RunCommand.cs (2)
180
var backchannel = await _interactionService.
ShowStatusAsync
(RunCommandStrings.ConnectingToAppHost, async () => { return await backchannelCompletitionSource.Task.WaitAsync(cancellationToken); });
186
var dashboardUrls = await _interactionService.
ShowStatusAsync
(RunCommandStrings.StartingDashboard, async () => { return await backchannel.GetDashboardUrlsAsync(cancellationToken); });
Projects\ProjectLocator.cs (1)
34
return await interactionService.
ShowStatusAsync
(InteractionServiceStrings.SearchingProjects, async () =>
Projects\ProjectUpdater.cs (1)
29
var (updateSteps, fallbackUsed) = await interactionService.
ShowStatusAsync
(UpdateCommandStrings.AnalyzingProjectStatus, () => GetUpdateStepsAsync(projectFile, channel, cancellationToken));
Templating\DotNetTemplateFactory.cs (3)
233
var templateInstallResult = await interactionService.
ShowStatusAsync
<(int ExitCode, string? TemplateVersion)>(
270
var newProjectExitCode = await interactionService.
ShowStatusAsync
(
359
var packagesFromChannels = await interactionService.
ShowStatusAsync
(TemplatingStrings.SearchingForAvailableTemplateVersions, async () =>
Utils\AppHostHelper.cs (2)
58
var appHostInformationResult = await interactionService.
ShowStatusAsync
(
71
return await interactionService.
ShowStatusAsync
(