16 references to Process
Aspire.Hosting (5)
Dcp\DcpExecutor.cs (5)
1329exe.Spec.FallbackExecutionTypes = [ ExecutionType.Process ]; 1334exe.Spec.ExecutionType = ExecutionType.Process; 1382exe.Spec.FallbackExecutionTypes = [ ExecutionType.Process ]; 1393exe.Spec.ExecutionType = ExecutionType.Process; 1772if (spec.ExecutionType == ExecutionType.Process || (spec.ExecutionType == ExecutionType.IDE && !appHostArgs.Any()))
Aspire.Hosting.Tests (11)
Dcp\DcpExecutorTests.cs (11)
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" })] 1701Assert.Equal(ExecutionType.Process, nonDebuggableExe.Spec.ExecutionType); 1738Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1775Assert.Equal(ExecutionType.Process, debuggableExe.Spec.ExecutionType); 1779Assert.Equal(ExecutionType.Process, nonDebuggableExe.Spec.ExecutionType); 1816Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1852Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1894Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 1936Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType); 2175Assert.Equal(ExecutionType.Process, exe.Spec.ExecutionType);