9 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 (7)
Commands\NewCommandTests.cs (1)
1524
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
949
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false) => action();
Commands\UpdateCommandTests.cs (1)
1044
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false) => _innerService.ShowStatusAsync(statusText, action, emoji, allowMarkup);
Projects\ExtensionGuestLauncherTests.cs (1)
159
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false) => throw new NotImplementedException();
Templating\DotNetTemplateFactoryTests.cs (1)
472
public Task<TResult>
ShowStatusAsync
<TResult>(string message, Func<Task<TResult>> work, KnownEmoji? emoji = null, bool allowMarkup = false)
TestServices\TestExtensionInteractionService.cs (1)
28
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false)
TestServices\TestInteractionService.cs (1)
53
public Task<T>
ShowStatusAsync
<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false)
69 references to ShowStatusAsync
aspire (68)
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)
56
var result = await interactionService.
ShowStatusAsync
(
77
var trustResultCode = await interactionService.
ShowStatusAsync
(
Commands\AddCommand.cs (2)
121
var packagesWithChannels = await InteractionService.
ShowStatusAsync
(
237
var success = await InteractionService.
ShowStatusAsync
(
Commands\AgentInitCommand.cs (1)
143
var applicators = await _interactionService.
ShowStatusAsync
(
Commands\AppHostLauncher.cs (1)
133
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\ExportCommand.cs (4)
125
var (telemetryResources, snapshots) = await _interactionService.
ShowStatusAsync
(ExportCommandStrings.GatheringResources, async () =>
168
await _interactionService.
ShowStatusAsync
(ExportCommandStrings.GatheringConsoleLogs, async () =>
177
await _interactionService.
ShowStatusAsync
(ExportCommandStrings.GatheringStructuredLogs, async () =>
184
await _interactionService.
ShowStatusAsync
(ExportCommandStrings.GatheringTraces, async () =>
Commands\InitCommand.cs (10)
213
var (getSolutionExitCode, solutionProjects) = await InteractionService.
ShowStatusAsync
("Reading solution...", async () =>
236
_ = await InteractionService.
ShowStatusAsync
("Evaluating existing projects...", async () =>
355
var templateInstallResult = await InteractionService.
ShowStatusAsync
(
383
var createResult = await InteractionService.
ShowStatusAsync
(
438
var addAppHostResult = await InteractionService.
ShowStatusAsync
(
464
var addServiceDefaultsResult = await InteractionService.
ShowStatusAsync
(
497
var addRefResult = await InteractionService.
ShowStatusAsync
(
531
var addRefResult = await InteractionService.
ShowStatusAsync
(
720
var allChannels = await InteractionService.
ShowStatusAsync
(
753
var packagesFromChannels = await InteractionService.
ShowStatusAsync
("Searching for available template versions...", async () =>
Commands\LogsCommand.cs (2)
209
var entries = await _interactionService.
ShowStatusAsync
(
262
var entries = await _interactionService.
ShowStatusAsync
(
Commands\NewCommand.cs (1)
190
return await InteractionService.
ShowStatusAsync
(
Commands\PipelineCommandBase.cs (1)
223
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\RestoreCommand.cs (2)
97
var restoreExitCode = await _interactionService.
ShowStatusAsync
(
117
var success = await _interactionService.
ShowStatusAsync
(
Commands\RunCommand.cs (2)
255
var backchannel = await InteractionService.
ShowStatusAsync
(
263
var dashboardUrls = await InteractionService.
ShowStatusAsync
(
Commands\Sdk\SdkDumpCommand.cs (1)
127
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)
250
var stopped = await _interactionService.
ShowStatusAsync
(
Commands\UpdateCommand.cs (2)
159
var allChannels = await InteractionService.
ShowStatusAsync
(
359
await InteractionService.
ShowStatusAsync
(
Commands\WaitCommand.cs (1)
121
var exitCode = await _interactionService.
ShowStatusAsync
(
Projects\GuestAppHostProject.cs (3)
368
var buildResult = await _interactionService.
ShowStatusAsync
(
1035
var updates = await _interactionService.
ShowStatusAsync
(
1130
var regenerateResult = await _interactionService.
ShowStatusAsync
(
Projects\ProjectLocator.cs (1)
52
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)
67
var prepareResult = await _interactionService.
ShowStatusAsync
(
111
var installResult = await _interactionService.
ShowStatusAsync
(
Templating\CliTemplateFactory.EmptyTemplate.cs (1)
65
templateResult = await _interactionService.
ShowStatusAsync
(
Templating\CliTemplateFactory.TypeScriptStarterTemplate.cs (1)
51
templateResult = await _interactionService.
ShowStatusAsync
(
Templating\DotNetTemplateFactory.cs (3)
516
var templateInstallResult = await interactionService.
ShowStatusAsync
<(int ExitCode, string? TemplateVersion)>(
553
var newProjectExitCode = await interactionService.
ShowStatusAsync
(
680
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)
1044
public Task<T> ShowStatusAsync<T>(string statusText, Func<Task<T>> action, KnownEmoji? emoji = null, bool allowMarkup = false) => _innerService.
ShowStatusAsync
(statusText, action, emoji, allowMarkup);