20 references to Process
Aspire.Hosting (6)
Dcp\DcpExecutor.cs (6)
1427exe.Spec.FallbackExecutionTypes = [ ExecutionType.Process ]; 1431exe.Spec.ExecutionType = ExecutionType.Process; 1476exe.Spec.FallbackExecutionTypes = [ ExecutionType.Process ]; 1500exe.Spec.ExecutionType = ExecutionType.Process; 1894exe.Spec.ExecutionType = ExecutionType.Process; 1920if (spec.ExecutionType == ExecutionType.Process || (spec.ExecutionType == ExecutionType.IDE && !appHostArgs.Any()))
Aspire.Hosting.Tests (14)
Dcp\DcpExecutorTests.cs (14)
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" })] 1735Assert.Equal(ExecutionType.Process, nonDebuggableExe.Spec.ExecutionType); 1772Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1809Assert.Equal(ExecutionType.Process, debuggableExe.Spec.ExecutionType); 1813Assert.Equal(ExecutionType.Process, nonDebuggableExe.Spec.ExecutionType); 1850Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1886Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1928Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1970Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 2209Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 2386Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 2490Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 2538Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType);