16 references to Process
Aspire.Hosting (5)
Dcp\DcpExecutor.cs (5)
1420exe.Spec.FallbackExecutionTypes = [ExecutionType.Process]; 1425exe.Spec.ExecutionType = ExecutionType.Process; 1473exe.Spec.FallbackExecutionTypes = [ExecutionType.Process]; 1484exe.Spec.ExecutionType = ExecutionType.Process; 1863if (spec.ExecutionType == ExecutionType.Process || (spec.ExecutionType == ExecutionType.IDE && !appHostArgs.Any()))
Aspire.Hosting.Tests (11)
Dcp\DcpExecutorTests.cs (11)
116[InlineData(ExecutionType.Process, false, new string[] { "--test1", "--test2" }, new string[] { "--test1", "--test2" })] 117[InlineData(ExecutionType.Process, true, new string[] { "--", "--test1", "--test2", "--withargs-test" }, new string[] { "--", "--test1", "--test2", "--withargs-test" })] 1702Assert.Equal(ExecutionType.Process, nonDebuggableExe.Spec.ExecutionType); 1739Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1776Assert.Equal(ExecutionType.Process, debuggableExe.Spec.ExecutionType); 1780Assert.Equal(ExecutionType.Process, nonDebuggableExe.Spec.ExecutionType); 1817Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1853Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1895Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1937Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 2176Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType);