10 references to Process
Aspire.Hosting (4)
Dcp\DcpExecutor.cs (4)
961exe.Spec.ExecutionType = ExecutionType.Process; 984exe.Spec.ExecutionType = ExecutionType.Process; 1049exeSpec.Spec.ExecutionType = ExecutionType.Process; 1287if (spec.ExecutionType == ExecutionType.Process || (spec.ExecutionType == ExecutionType.IDE && appHostArgs.Count == 0))
Aspire.Hosting.Tests (6)
Dcp\DcpExecutorTests.cs (6)
113[InlineData(ExecutionType.Process, false, new string[] { "--test1", "--test2" }, new string[] { "--test1", "--test2" })] 114[InlineData(ExecutionType.Process, true, new string[] { "--", "--test1", "--test2", "--withargs-test" }, new string[] { "--", "--test1", "--test2", "--withargs-test" })] 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);