1 write to _interactionService
aspire (1)
Templating\CliTemplateFactory.cs (1)
66_interactionService = interactionService;
15 references to _interactionService
aspire (15)
Templating\CliTemplateFactory.cs (2)
229_interactionService.DisplayMessage(KnownEmojis.Information, string.Format(CultureInfo.CurrentCulture, TemplatingStrings.RunCdThenAspireRun, relativePath)); 233_interactionService.DisplayMessage(KnownEmojis.Information, TemplatingStrings.RunAspireRun);
Templating\CliTemplateFactory.EmptyTemplate.cs (7)
20_interactionService.DisplayError("Language selection is required."); 27_interactionService.DisplayError($"Unknown language: '{languageId}'"); 65templateResult = await _interactionService.ShowStatusAsync( 99_interactionService.DisplayError($"Failed to create project files: {ex.Message}"); 103_interactionService.DisplaySuccess($"Created {language.DisplayName.EscapeMarkup()} project at {outputPath.EscapeMarkup()}"); 121useLocalhostTld = await _interactionService.PromptForSelectionAsync( 135_interactionService.DisplayMessage(KnownEmojis.CheckMark, TemplatingStrings.UseLocalhostTld_UsingLocalhostTld);
Templating\CliTemplateFactory.TypeScriptStarterTemplate.cs (6)
26_interactionService.DisplayError("Unable to determine Aspire version for the TypeScript starter template."); 51templateResult = await _interactionService.ShowStatusAsync( 78_interactionService.DisplayError("Automatic 'aspire restore' is unavailable for the new TypeScript starter project because no TypeScript AppHost SDK generator was found."); 86_interactionService.DisplayError("Automatic 'aspire restore' failed for the new TypeScript starter project. Run 'aspire restore' in the project directory for more details."); 100_interactionService.DisplayError($"Failed to create project files: {ex.Message}"); 104_interactionService.DisplaySuccess($"Created TypeScript starter project at {outputPath.EscapeMarkup()}");