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