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