Trying to redirect the stdinput as well to see if this succeeds on CI
This commit is contained in:
parent
f92b1f36e1
commit
1a4dc9488a
|
|
@ -60,7 +60,9 @@ namespace Microsoft.AspNet.Server.Testing
|
||||||
UseShellExecute = false,
|
UseShellExecute = false,
|
||||||
CreateNoWindow = true,
|
CreateNoWindow = true,
|
||||||
RedirectStandardError = true,
|
RedirectStandardError = true,
|
||||||
RedirectStandardOutput = true
|
RedirectStandardOutput = true,
|
||||||
|
// Trying a work around for https://github.com/aspnet/Hosting/issues/140.
|
||||||
|
RedirectStandardInput = true
|
||||||
};
|
};
|
||||||
|
|
||||||
AddEnvironmentVariablesToProcess(startInfo);
|
AddEnvironmentVariablesToProcess(startInfo);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue