13 references to IDE
Aspire.Hosting (4)
Dcp\DcpExecutor.cs (4)
1262exe.Spec.ExecutionType = ExecutionType.IDE; 1316exeSpec.Spec.ExecutionType = ExecutionType.IDE; 1587if (spec.ExecutionType == ExecutionType.Process || (spec.ExecutionType == ExecutionType.IDE && appHostArgs.Count == 0)) 1591var annotationOnly = spec.ExecutionType == ExecutionType.IDE;
Aspire.Hosting.Tests (9)
Dcp\DcpExecutorTests.cs (9)
112[InlineData(ExecutionType.IDE, false, null, new string[] { "--test1", "--test2" })] 113[InlineData(ExecutionType.IDE, true, new string[] { "--withargs-test" }, new string[] { "--withargs-test" })] 124if (executionType == ExecutionType.IDE) 160var callArgs = executionType == ExecutionType.IDE ? exe.Spec.Args : exe.Spec.Args![^(expectedArgs?.Length ?? 0)..]; 1584Assert.Equal(ExecutionType.IDE, debuggableExe.Spec.ExecutionType); 1868Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType); 1905Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType); 1942Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType); 1985Assert.Equal(ExecutionType.IDE, exe.Spec.ExecutionType);