13 references to ResolveIsolated
aspire (1)
Commands\RunCommand.cs (1)
284var isolated = AppHostLauncher.ResolveIsolated(parseResult);
Aspire.Cli.Tests (12)
Commands\StartCommandTests.cs (12)
624Assert.False(AppHostLauncher.ResolveIsolated(command.Parse("start"))); 625Assert.True(AppHostLauncher.ResolveIsolated(command.Parse("start --isolated"))); 626Assert.False(AppHostLauncher.ResolveIsolated(command.Parse("start --isolated false"))); 627Assert.False(AppHostLauncher.ResolveIsolated(command.Parse("run"))); 628Assert.True(AppHostLauncher.ResolveIsolated(command.Parse("run --isolated"))); 629Assert.False(AppHostLauncher.ResolveIsolated(command.Parse("run --isolated false"))); 656Assert.False(AppHostLauncher.ResolveIsolated(command.Parse("start"))); 657Assert.True(AppHostLauncher.ResolveIsolated(command.Parse("start --isolated"))); 658Assert.False(AppHostLauncher.ResolveIsolated(command.Parse("start --isolated false"))); 659Assert.False(AppHostLauncher.ResolveIsolated(command.Parse("run"))); 660Assert.True(AppHostLauncher.ResolveIsolated(command.Parse("run --isolated"))); 661Assert.False(AppHostLauncher.ResolveIsolated(command.Parse("run --isolated false")));