14 references to Process
Aspire.Hosting (4)
Dcp\DcpExecutor.cs (4)
1250exe.Spec.ExecutionType = ExecutionType.Process; 1267exe.Spec.ExecutionType = ExecutionType.Process; 1327exeSpec.Spec.ExecutionType = ExecutionType.Process; 1587if (spec.ExecutionType == ExecutionType.Process || (spec.ExecutionType == ExecutionType.IDE && appHostArgs.Count == 0))
Aspire.Hosting.Tests (10)
Dcp\DcpExecutorTests.cs (10)
114[InlineData(ExecutionType.Process, false, new string[] { "--test1", "--test2" }, new string[] { "--test1", "--test2" })] 115[InlineData(ExecutionType.Process, true, new string[] { "--", "--test1", "--test2", "--withargs-test" }, new string[] { "--", "--test1", "--test2", "--withargs-test" })] 1591Assert.Equal(ExecutionType.Process, nonDebuggableExe.Spec.ExecutionType); 1628Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1665Assert.Equal(ExecutionType.Process, debuggableExe.Spec.ExecutionType); 1669Assert.Equal(ExecutionType.Process, nonDebuggableExe.Spec.ExecutionType); 1706Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1742Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1784Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1826Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType);