5 writes to ExecutionType
Aspire.Hosting (5)
Dcp\DcpExecutor.cs (5)
961exe.Spec.ExecutionType = ExecutionType.Process; 970exe.Spec.ExecutionType = ExecutionType.IDE; 984exe.Spec.ExecutionType = ExecutionType.Process; 1032exeSpec.Spec.ExecutionType = ExecutionType.IDE; 1049exeSpec.Spec.ExecutionType = ExecutionType.Process;
8 references to ExecutionType
Aspire.Hosting (3)
Dcp\DcpExecutor.cs (3)
1287if (spec.ExecutionType == ExecutionType.Process || (spec.ExecutionType == ExecutionType.IDE && appHostArgs.Count == 0)) 1291var annotationOnly = spec.ExecutionType == ExecutionType.IDE;
Aspire.Hosting.Tests (5)
Dcp\DcpExecutorTests.cs (5)
1574Assert.Equal(ExecutionType.IDE, debuggableExe.Spec.ExecutionType); 1582Assert.Equal(ExecutionType.Process, nonDebuggableExe.Spec.ExecutionType); 1620Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1658Assert.Equal(ExecutionType.Process, debuggableExe.Spec.ExecutionType); 1662Assert.Equal(ExecutionType.Process, nonDebuggableExe.Spec.ExecutionType);