1 write to _consoleInteractionService
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
39_consoleInteractionService = consoleInteractionService;
26 references to _consoleInteractionService
aspire (26)
Interaction\ExtensionInteractionService.cs (26)
61_consoleInteractionService.DisplayError(ex.Message); 72var value = await _consoleInteractionService.ShowStatusAsync(statusText, action, emoji, allowMarkup).ConfigureAwait(false); 82_consoleInteractionService.ShowStatus(statusText, action, emoji, allowMarkup); 132return await _consoleInteractionService.PromptForStringAsync(promptText, defaultValue, validator, isSecret, required, cancellationToken).ConfigureAwait(false); 163return await _consoleInteractionService.ConfirmAsync(promptText, defaultValue, cancellationToken); 195return await _consoleInteractionService.PromptForSelectionAsync(promptText, choices, choiceFormatter, cancellationToken); 227return await _consoleInteractionService.PromptForSelectionsAsync(promptText, choices, choiceFormatter, cancellationToken); 236return _consoleInteractionService.DisplayIncompatibleVersionError(ex, appHostHostingSdkVersion); 243_consoleInteractionService.DisplayError(errorMessage); 250_consoleInteractionService.DisplayMessage(emoji, message, allowMarkup); 257_consoleInteractionService.DisplaySuccess(message, allowMarkup); 264_consoleInteractionService.DisplaySubtleMessage(message, allowMarkup); 269_consoleInteractionService.DisplaySubtleMessage(message, allowMarkup); 282_consoleInteractionService.DisplayLines(lines); 289_consoleInteractionService.DisplayCancellationMessage(); 296_consoleInteractionService.DisplayEmptyLine(); 309_consoleInteractionService.DisplayPlainText(text); 314get => _consoleInteractionService.Console; 315set => _consoleInteractionService.Console = value; 322_consoleInteractionService.DisplayRawText(text, consoleOverride); 331_consoleInteractionService.DisplayMarkdown(markdown); 339_consoleInteractionService.DisplayMarkupLine(markup); 344_consoleInteractionService.DisplayVersionUpdateNotification(newerVersion, updateCommand); 349_consoleInteractionService.DisplayRenderable(renderable); 365_consoleInteractionService.WriteConsoleLog(message, lineNumber, type, isErrorMessage); 376_consoleInteractionService.DisplayPlainText(message);