9 references to IDE
Aspire.Hosting (4)
Dcp\DcpExecutor.cs (4)
972exe.Spec.ExecutionType = ExecutionType.IDE; 1026exeSpec.Spec.ExecutionType = ExecutionType.IDE; 1275if (spec.ExecutionType == ExecutionType.Process || (spec.ExecutionType == ExecutionType.IDE && appHostArgs.Count == 0)) 1279var annotationOnly = spec.ExecutionType == ExecutionType.IDE;
Aspire.Hosting.Tests (5)
Dcp\DcpExecutorTests.cs (5)
111[InlineData(ExecutionType.IDE, false, null, new string[] { "--test1", "--test2" })] 112[InlineData(ExecutionType.IDE, true, new string[] { "--withargs-test" }, new string[] { "--withargs-test" })] 123if (executionType == ExecutionType.IDE) 160var callArgs = executionType == ExecutionType.IDE ? exe.Spec.Args : exe.Spec.Args![^(expectedArgs?.Length ?? 0)..]; 1574Assert.Equal(ExecutionType.IDE, debuggableExe.Spec.ExecutionType);