14 references to IDE
Aspire.Hosting (4)
Dcp\DcpExecutor.cs (4)
1426exe.Spec.ExecutionType = ExecutionType.IDE; 1475exe.Spec.ExecutionType = ExecutionType.IDE; 1920if (spec.ExecutionType == ExecutionType.Process || (spec.ExecutionType == ExecutionType.IDE && !appHostArgs.Any())) 1924var executableArg = spec.ExecutionType != ExecutionType.IDE;
Aspire.Hosting.Tests (10)
Dcp\DcpExecutorTests.cs (10)
114[InlineData(ExecutionType.IDE, false, null, new string[] { "--test1", "--test2" })] 115[InlineData(ExecutionType.IDE, true, new string[] { "--withargs-test" }, new string[] { "--withargs-test" })] 126if (executionType == ExecutionType.IDE) 162var callArgs = executionType == ExecutionType.IDE ? exe.Spec.Args : exe.Spec.Args![^(expectedArgs?.Length ?? 0)..]; 1728Assert.Equal(ExecutionType.IDE, debuggableExe.Spec.ExecutionType); 2012Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType); 2049Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType); 2086Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType); 2129Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType); 2434Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType);