1 write to _interactionService
aspire (1)
Commands\NewCommand.cs (1)
34_interactionService = interactionService;
11 references to _interactionService
aspire (11)
Commands\NewCommand.cs (11)
122var candidatePackages = await _interactionService.ShowStatusAsync( 147var templateInstallResult = await _interactionService.ShowStatusAsync<(int ExitCode, string? TemplateVersion)>( 162_interactionService.DisplayLines(templateInstallCollector.GetLines()); 163_interactionService.DisplayError($"The template installation failed with exit code {templateInstallResult.ExitCode}. For more information run with --debug switch."); 167_interactionService.DisplayMessage($"package", $"Using project templates version: {templateInstallResult.TemplateVersion}"); 170var newProjectExitCode = await _interactionService.ShowStatusAsync( 189_interactionService.DisplayLines(newProjectCollector.GetLines()); 190_interactionService.DisplayError($"Project creation failed with exit code {newProjectExitCode}. For more information run with --debug switch."); 196_interactionService.DisplaySuccess($"Project created successfully in {outputPath}."); 202_interactionService.DisplayCancellationMessage(); 207_interactionService.DisplayError($"An error occurred while trusting the certificates: {ex.Message}");