Add more logging while starting dnx.exe or dnu.cmd
This commit is contained in:
parent
0e9f876d4e
commit
78e9ef2782
|
|
@ -86,7 +86,7 @@ namespace Microsoft.AspNet.Server.Testing
|
|||
FileName = dnuPath,
|
||||
Arguments = parameters,
|
||||
UseShellExecute = false,
|
||||
CreateNoWindow = true
|
||||
CreateNoWindow = false
|
||||
};
|
||||
|
||||
var hostProcess = Process.Start(startInfo);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue