Fixes teamcity issue with Console.ReadLine()
This commit is contained in:
parent
2df9d8f098
commit
368e96ad32
|
|
@ -179,8 +179,9 @@ namespace E2ETests
|
|||
{
|
||||
FileName = monoPath,
|
||||
Arguments = string.Format("{0} {1} {2}", klrMonoManaged, applicationHost, startParameters.ServerType.ToString()),
|
||||
UseShellExecute = true,
|
||||
CreateNoWindow = true
|
||||
UseShellExecute = false,
|
||||
CreateNoWindow = true,
|
||||
RedirectStandardInput = true
|
||||
};
|
||||
|
||||
var hostProcess = Process.Start(startInfo);
|
||||
|
|
|
|||
Loading…
Reference in New Issue