1 write to _consoleInteractionService
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
39_consoleInteractionService = consoleInteractionService;
28 references to _consoleInteractionService
aspire (28)
Interaction\ExtensionInteractionService.cs (28)
61_consoleInteractionService.DisplayError(ex.Message); 74return await _consoleInteractionService.ShowStatusAsync(statusText, action, emoji, allowMarkup).ConfigureAwait(false); 91_consoleInteractionService.ShowStatus(statusText, action, emoji, allowMarkup); 145return await _consoleInteractionService.PromptForStringAsync(promptText, defaultValue, validator, isSecret, required, cancellationToken).ConfigureAwait(false); 198return await _consoleInteractionService.PromptForFilePathAsync(promptText, defaultValue, validator, directory, required, cancellationToken).ConfigureAwait(false); 228return await _consoleInteractionService.ConfirmAsync(promptText, defaultValue, cancellationToken); 260return await _consoleInteractionService.PromptForSelectionAsync(promptText, choices, choiceFormatter, cancellationToken); 294return await _consoleInteractionService.PromptForSelectionsAsync(promptText, choices, choiceFormatter, preSelected, optional, cancellationToken); 303return _consoleInteractionService.DisplayIncompatibleVersionError(ex, appHostHostingSdkVersion); 310_consoleInteractionService.DisplayError(errorMessage); 317_consoleInteractionService.DisplayMessage(emoji, message, allowMarkup); 324_consoleInteractionService.DisplaySuccess(message, allowMarkup); 331_consoleInteractionService.DisplaySubtleMessage(message, allowMarkup); 336_consoleInteractionService.DisplaySubtleMessage(message, allowMarkup); 351_consoleInteractionService.DisplayLines(lines); 358_consoleInteractionService.DisplayCancellationMessage(); 365_consoleInteractionService.DisplayEmptyLine(); 378_consoleInteractionService.DisplayPlainText(text); 383get => _consoleInteractionService.Console; 384set => _consoleInteractionService.Console = value; 391_consoleInteractionService.DisplayRawText(text, consoleOverride); 400_consoleInteractionService.DisplayMarkdown(markdown); 408_consoleInteractionService.DisplayMarkupLine(markup); 413_consoleInteractionService.DisplayVersionUpdateNotification(newerVersion, updateCommand); 418_consoleInteractionService.DisplayRenderable(renderable); 423return _consoleInteractionService.DisplayLiveAsync(initialRenderable, callback); 439_consoleInteractionService.WriteConsoleLog(message, lineNumber, type, isErrorMessage); 450_consoleInteractionService.DisplayPlainText(message);