6 implementations of IsBundle
aspire (1)
Bundles\BundleService.cs (1)
64
public bool
IsBundle
=> payloadProvider.HasPayload;
Aspire.Cli.Tests (5)
DotNet\ProcessExecutionDetachedTests.cs (3)
537
public bool
IsBundle
=> true;
570
public bool
IsBundle
=> true;
605
public bool
IsBundle
=> true;
Utils\CliTestHelper.cs (2)
787
public bool
IsBundle
=> false;
815
public bool
IsBundle
=> isBundle;
2 references to IsBundle
aspire (2)
Commands\RootCommand.cs (1)
260
if (bundleService.
IsBundle
)
Program.cs (1)
481
if (sp.GetRequiredService<IBundleService>().
IsBundle
)