Implemented interface member:
method
ShowStatusAsync<T>
Aspire.Cli.Interaction.IInteractionService.ShowStatusAsync<T>(System.String, System.Func<System.Threading.Tasks.Task<T>>)
2 references to ShowStatusAsync
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
69
var value = await _consoleInteractionService.
ShowStatusAsync
(statusText, action).ConfigureAwait(false);
Aspire.Cli.Tests (1)
Interaction\ConsoleInteractionServiceTests.cs (1)
189
var actualResult = await interactionService.
ShowStatusAsync
(statusText, () => Task.FromResult(result));