2 writes to CreatedExecution
Aspire.Cli.Tests (2)
Commands\AppHostLauncherTests.cs (2)
1309CreatedExecution = new TestDetachedProcessExecution(this, fileName, args, workingDirectory.FullName, environment, options); 1321CreatedExecution = new TestDetachedProcessExecution(this, startInfo.FileName, args, workingDirectory, env, options);
5 references to CreatedExecution
Aspire.Cli.Tests (5)
Commands\AppHostLauncherTests.cs (5)
1288public IReadOnlyList<string>? CreatedArguments => CreatedExecution?.Arguments; 1290public int CreatedExecutionDisposeCount => CreatedExecution?.DisposeCount ?? 0; 1293CreatedExecution?.EnvironmentVariables ?? throw new InvalidOperationException("Expected a detached process execution."); 1310return CreatedExecution; 1322return CreatedExecution;