1 write to _consoleInteractionService
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
50
_consoleInteractionService
= consoleInteractionService;
32 references to _consoleInteractionService
aspire (32)
Interaction\ExtensionInteractionService.cs (32)
88
return await
_consoleInteractionService
.ShowStatusAsync(statusText, action, emoji, allowMarkup).ConfigureAwait(false);
105
return await
_consoleInteractionService
.ShowDynamicStatusAsync(
129
_consoleInteractionService
.ShowStatus(statusText, action, emoji, allowMarkup);
146
_consoleInteractionService
.ValidateResolvedStringValue(value, required, validator, binding!.SymbolDisplayName);
192
return await
_consoleInteractionService
.PromptForStringAsync(promptText, validator, isSecret, required, binding, cancellationToken).ConfigureAwait(false);
201
_consoleInteractionService
.ValidateResolvedStringValue(value, required, validator, binding!.SymbolDisplayName);
262
return await
_consoleInteractionService
.PromptForFilePathAsync(promptText, validator, directory, required, binding, retryOnValidationFailure, cancellationToken).ConfigureAwait(false);
298
return await
_consoleInteractionService
.PromptConfirmAsync(promptText, binding, cancellationToken);
308
return
_consoleInteractionService
.MatchChoiceOrThrow(value, binding!, choices, choiceFormatter);
336
return await
_consoleInteractionService
.PromptForSelectionAsync(promptText, choices, choiceFormatter, binding, echoSelected, cancellationToken);
347
return
_consoleInteractionService
.MatchChoicesOrThrow(value, binding!, validationChoices, choiceFormatter);
377
return await
_consoleInteractionService
.PromptForSelectionsAsync(promptText, choices, choiceFormatter, preSelected, optional, binding, echoSelected, bindingChoices, cancellationToken);
386
return
_consoleInteractionService
.DisplayIncompatibleVersionError(ex, appHostHostingSdkVersion);
399
_consoleInteractionService
.DisplayError(errorMessage, allowMarkup);
409
_consoleInteractionService
.DisplayMessage(emoji, message, allowMarkup, consoleOverride);
418
_consoleInteractionService
.DisplaySuccess(message, allowMarkup);
425
_consoleInteractionService
.DisplaySubtleMessage(message, allowMarkup);
430
_consoleInteractionService
.DisplaySubtleMessage(message, allowMarkup);
461
_consoleInteractionService
.DisplayCancellationMessage(message, consoleOverride);
468
_consoleInteractionService
.DisplayEmptyLine();
481
_consoleInteractionService
.DisplayPlainText(text);
486
get =>
_consoleInteractionService
.Console;
487
set =>
_consoleInteractionService
.Console = value;
498
_consoleInteractionService
.DisplayRawText(text, consoleOverride);
507
_consoleInteractionService
.DisplayMarkdown(markdown, consoleOverride, maxWidth);
515
_consoleInteractionService
.DisplayMarkupLine(markup);
520
_consoleInteractionService
.DisplayVersionUpdateNotification(newerVersion, updateCommand);
525
_consoleInteractionService
.DisplayRenderable(renderable);
530
return
_consoleInteractionService
.DisplayLiveAsync(initialRenderable, callback);
546
_consoleInteractionService
.WriteConsoleLog(message, lineNumber, type, isErrorMessage);
557
_consoleInteractionService
.DisplayPlainText(message);
601
_consoleInteractionService
.DisplayError(ex.Message);