Removing timeout for dnu publish

Sometimes on slower machines that it takes more than this time especially when -no-source is turned on.
This commit is contained in:
Praburaj 2015-04-20 11:11:00 -07:00
parent 0ab04fd319
commit 0e9f876d4e
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ namespace Microsoft.AspNet.Server.Testing
};
var hostProcess = Process.Start(startInfo);
hostProcess.WaitForExit(60 * 1000);
hostProcess.WaitForExit();
if (hostProcess.ExitCode != 0)
{