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