Add more logging while starting dnx.exe or dnu.cmd

This commit is contained in:
Praburaj 2015-04-20 13:51:00 -07:00
parent 0e9f876d4e
commit 78e9ef2782
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ namespace Microsoft.AspNet.Server.Testing
FileName = dnuPath,
Arguments = parameters,
UseShellExecute = false,
CreateNoWindow = true
CreateNoWindow = false
};
var hostProcess = Process.Start(startInfo);

View File

@ -58,7 +58,7 @@ namespace Microsoft.AspNet.Server.Testing
FileName = dnxPath,
Arguments = string.Format("\"{0}\" {1} --server.urls {2}", DeploymentParameters.ApplicationPath, commandName, DeploymentParameters.ApplicationBaseUriHint),
UseShellExecute = false,
CreateNoWindow = true
CreateNoWindow = false
};
AddEnvironmentVariablesToProcess(startInfo);