15 references to Process
Aspire.Hosting (5)
Dcp\DcpExecutor.cs (5)
1304exe.Spec.FallbackExecutionTypes = [ ExecutionType.Process ]; 1309exe.Spec.ExecutionType = ExecutionType.Process; 1359exe.Spec.FallbackExecutionTypes = [ ExecutionType.Process ]; 1370exe.Spec.ExecutionType = ExecutionType.Process; 1742if (spec.ExecutionType == ExecutionType.Process || (spec.ExecutionType == ExecutionType.IDE && !appHostArgs.Any()))
Aspire.Hosting.Tests (10)
Dcp\DcpExecutorTests.cs (10)
115[InlineData(ExecutionType.Process, false, new string[] { "--test1", "--test2" }, new string[] { "--test1", "--test2" })] 116[InlineData(ExecutionType.Process, true, new string[] { "--", "--test1", "--test2", "--withargs-test" }, new string[] { "--", "--test1", "--test2", "--withargs-test" })] 1665Assert.Equal(ExecutionType.Process, nonDebuggableExe.Spec.ExecutionType); 1702Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1739Assert.Equal(ExecutionType.Process, debuggableExe.Spec.ExecutionType); 1743Assert.Equal(ExecutionType.Process, nonDebuggableExe.Spec.ExecutionType); 1780Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1816Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1858Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1900Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType);