13 references to IDE
Aspire.Hosting (4)
Dcp\DcpExecutor.cs (4)
1419exe.Spec.ExecutionType = ExecutionType.IDE; 1472exe.Spec.ExecutionType = ExecutionType.IDE; 1863if (spec.ExecutionType == ExecutionType.Process || (spec.ExecutionType == ExecutionType.IDE && !appHostArgs.Any())) 1867var executableArg = spec.ExecutionType != ExecutionType.IDE;
Aspire.Hosting.Tests (9)
Dcp\DcpExecutorTests.cs (9)
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)..]; 1695Assert.Equal(ExecutionType.IDE, debuggableExe.Spec.ExecutionType); 1979Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType); 2016Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType); 2053Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType); 2096Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType);