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,
|
FileName = dnuPath,
|
||||||
Arguments = parameters,
|
Arguments = parameters,
|
||||||
UseShellExecute = false,
|
UseShellExecute = false,
|
||||||
CreateNoWindow = true
|
CreateNoWindow = false
|
||||||
};
|
};
|
||||||
|
|
||||||
var hostProcess = Process.Start(startInfo);
|
var hostProcess = Process.Start(startInfo);
|
||||||
|
|
|
||||||
|
|
@ -58,7 +58,7 @@ namespace Microsoft.AspNet.Server.Testing
|
||||||
FileName = dnxPath,
|
FileName = dnxPath,
|
||||||
Arguments = string.Format("\"{0}\" {1} --server.urls {2}", DeploymentParameters.ApplicationPath, commandName, DeploymentParameters.ApplicationBaseUriHint),
|
Arguments = string.Format("\"{0}\" {1} --server.urls {2}", DeploymentParameters.ApplicationPath, commandName, DeploymentParameters.ApplicationBaseUriHint),
|
||||||
UseShellExecute = false,
|
UseShellExecute = false,
|
||||||
CreateNoWindow = true
|
CreateNoWindow = false
|
||||||
};
|
};
|
||||||
|
|
||||||
AddEnvironmentVariablesToProcess(startInfo);
|
AddEnvironmentVariablesToProcess(startInfo);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue