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