13 references to IDE
Aspire.Hosting (4)
Dcp\DcpExecutor.cs (4)
1266exe.Spec.ExecutionType = ExecutionType.IDE; 1320exeSpec.Spec.ExecutionType = ExecutionType.IDE; 1595if (spec.ExecutionType == ExecutionType.Process || (spec.ExecutionType == ExecutionType.IDE && appHostArgs.Count == 0)) 1599var annotationOnly = spec.ExecutionType == ExecutionType.IDE;
Aspire.Hosting.Tests (9)
Dcp\DcpExecutorTests.cs (9)
113[InlineData(ExecutionType.IDE, false, null, new string[] { "--test1", "--test2" })] 114[InlineData(ExecutionType.IDE, true, new string[] { "--withargs-test" }, new string[] { "--withargs-test" })] 125if (executionType == ExecutionType.IDE) 161var callArgs = executionType == ExecutionType.IDE ? exe.Spec.Args : exe.Spec.Args![^(expectedArgs?.Length ?? 0)..]; 1590Assert.Equal(ExecutionType.IDE, debuggableExe.Spec.ExecutionType); 1874Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType); 1911Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType); 1948Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType); 1991Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType);