3 implementations of SupportsTerminalsV1
aspire (1)
Backchannel\AppHostAuxiliaryBackchannel.cs (1)
100
public bool
SupportsTerminalsV1
=> _capabilities.Contains(AuxiliaryBackchannelCapabilities.Terminals_V1);
Aspire.Cli.Tests (2)
Commands\TerminalCommandTests.cs (1)
678
public bool
SupportsTerminalsV1
=> _inner.SupportsTerminalsV1;
TestServices\TestAppHostAuxiliaryBackchannel.cs (1)
27
public bool
SupportsTerminalsV1
{ get; set; } = true;
3 references to SupportsTerminalsV1
aspire (3)
Backchannel\IAppHostAuxiliaryBackchannel.cs (1)
204
/// <c>aspire terminal ps</c>. Gated on <see cref="
SupportsTerminalsV1
"/>; older AppHosts
Commands\TerminalAttachCommand.cs (1)
104
if (!connection.
SupportsTerminalsV1
)
Commands\TerminalPsCommand.cs (1)
113
if (!connection.
SupportsTerminalsV1
)