7 references to IDE
Aspire.Hosting (3)
Dcp\DcpExecutor.cs (3)
1008exeSpec.Spec.ExecutionType = ExecutionType.IDE; 1256if (spec.ExecutionType == ExecutionType.Process || (spec.ExecutionType == ExecutionType.IDE && appHostArgs.Count == 0)) 1260var annotationOnly = spec.ExecutionType == ExecutionType.IDE;
Aspire.Hosting.Tests (4)
Dcp\DcpExecutorTests.cs (4)
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)..];