1 write to _consoleInteractionService
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
56_consoleInteractionService = consoleInteractionService;
35 references to _consoleInteractionService
aspire (35)
Interaction\ExtensionInteractionService.cs (35)
94return await _consoleInteractionService.ShowStatusAsync(statusText, action, emoji, allowMarkup).ConfigureAwait(false); 111return await _consoleInteractionService.ShowDynamicStatusAsync( 135_consoleInteractionService.ShowStatus(statusText, action, emoji, allowMarkup); 152_consoleInteractionService.ValidateResolvedStringValue(value, required, validator, binding!.SymbolDisplayName); 198return await _consoleInteractionService.PromptForStringAsync(promptText, validator, isSecret, required, binding, cancellationToken).ConfigureAwait(false); 207_consoleInteractionService.ValidateResolvedStringValue(value, required, validator, binding!.SymbolDisplayName); 268return await _consoleInteractionService.PromptForFilePathAsync(promptText, validator, directory, required, binding, retryOnValidationFailure, cancellationToken).ConfigureAwait(false); 304return await _consoleInteractionService.PromptConfirmAsync(promptText, binding, cancellationToken); 314return _consoleInteractionService.MatchChoiceOrThrow(value, binding!, choices, choiceFormatter); 342return await _consoleInteractionService.PromptForSelectionAsync(promptText, choices, choiceFormatter, binding, echoSelected, cancellationToken); 353return _consoleInteractionService.MatchChoicesOrThrow(value, binding!, validationChoices, choiceFormatter); 381return await _consoleInteractionService.PromptForSelectionsAsync(promptText, choices, choiceFormatter, preSelected, optional, binding, echoSelected, bindingChoices, cancellationToken); 390return _consoleInteractionService.DisplayIncompatibleVersionError(ex, appHostHostingSdkVersion); 403_consoleInteractionService.DisplayError(errorMessage, allowMarkup); 414_consoleInteractionService.DisplayError(errorMessage, allowMarkup); 424_consoleInteractionService.DisplayMessage(emoji, message, allowMarkup, consoleOverride); 435_consoleInteractionService.DisplayMessage(emoji, message, allowMarkup, consoleOverride); 444_consoleInteractionService.DisplayMessage(emoji, message, allowMarkup, consoleOverride); 528_consoleInteractionService.DisplaySuccess(message, allowMarkup); 535_consoleInteractionService.DisplaySubtleMessage(message, allowMarkup); 540_consoleInteractionService.DisplaySubtleMessage(message, allowMarkup); 571_consoleInteractionService.DisplayCancellationMessage(message, consoleOverride); 578_consoleInteractionService.DisplayEmptyLine(); 591_consoleInteractionService.DisplayPlainText(text); 596get => _consoleInteractionService.Console; 597set => _consoleInteractionService.Console = value; 608_consoleInteractionService.DisplayRawText(text, consoleOverride); 617_consoleInteractionService.DisplayMarkdown(markdown, consoleOverride, maxWidth); 625_consoleInteractionService.DisplayMarkupLine(markup); 630_consoleInteractionService.DisplayVersionUpdateNotification(newerVersion, updateCommand); 635_consoleInteractionService.DisplayRenderable(renderable); 640return _consoleInteractionService.DisplayLiveAsync(initialRenderable, callback); 656_consoleInteractionService.WriteConsoleLog(message, lineNumber, type, isErrorMessage); 667_consoleInteractionService.DisplayPlainText(message); 711_consoleInteractionService.DisplayError(ex.Message);