2 writes to CreatedExecution
Aspire.Cli.Tests (2)
Commands\AppHostLauncherTests.cs (2)
1474CreatedExecution = new TestDetachedProcessExecution(this, fileName, args, workingDirectory.FullName, environment, options); 1486CreatedExecution = new TestDetachedProcessExecution(this, startInfo.FileName, args, workingDirectory, env, options);
5 references to CreatedExecution
Aspire.Cli.Tests (5)
Commands\AppHostLauncherTests.cs (5)
1453public IReadOnlyList<string>? CreatedArguments => CreatedExecution?.Arguments; 1455public int CreatedExecutionDisposeCount => CreatedExecution?.DisposeCount ?? 0; 1458CreatedExecution?.EnvironmentVariables ?? throw new InvalidOperationException("Expected a detached process execution."); 1475return CreatedExecution; 1487return CreatedExecution;