8 implementations of SupportsLinks
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
61public bool SupportsLinks => MessageConsole.Profile.Capabilities.Links;
Interaction\ExtensionInteractionService.cs (1)
491public bool SupportsLinks => false;
Aspire.Cli.Tests (6)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
1142public bool SupportsLinks { get; set; }
Commands\UpdateCommandTests.cs (1)
3508public bool SupportsLinks => _innerService.SupportsLinks;
Projects\ExtensionGuestLauncherTests.cs (1)
163public bool SupportsLinks { get; set; }
Templating\DotNetTemplateFactoryTests.cs (1)
374public bool SupportsLinks { get; set; }
TestServices\TestExtensionInteractionService.cs (1)
17public bool SupportsLinks { get; set; }
TestServices\TestInteractionService.cs (1)
21public bool SupportsLinks { get; set; }
6 references to SupportsLinks
aspire (5)
Commands\LsCommand.cs (1)
128InteractionService.DisplayRenderable(BuildTable(appHostInfos, InteractionService.SupportsLinks));
Commands\RenderCommand.cs (1)
449InteractionService.DisplayPlainText($"Supports links: {InteractionService.SupportsLinks}");
Utils\MarkupHelpers.cs (3)
20return SafeLink(interactionService.SupportsLinks, link, title); 49return SafeFileLink(interactionService.SupportsLinks, filePath); 73return SafeFileLink(interactionService.SupportsLinks, filePath, displayName);
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
3508public bool SupportsLinks => _innerService.SupportsLinks;