7 references to IDE
Aspire.Hosting (3)
Dcp\DcpExecutor.cs (3)
1008
exeSpec.Spec.ExecutionType = ExecutionType.
IDE
;
1256
if (spec.ExecutionType == ExecutionType.Process || (spec.ExecutionType == ExecutionType.
IDE
&& appHostArgs.Count == 0))
1260
var 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" })]
123
if (executionType == ExecutionType.
IDE
)
160
var callArgs = executionType == ExecutionType.
IDE
? exe.Spec.Args : exe.Spec.Args![^(expectedArgs?.Length ?? 0)..];