Selfhost does not seem to like CreateNoWindow on CI.
This commit is contained in:
parent
eac23bc1d8
commit
6dd1fd7dc1
|
|
@ -1,8 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
using System.ComponentModel;
|
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Threading;
|
|
||||||
using Microsoft.Framework.Logging;
|
using Microsoft.Framework.Logging;
|
||||||
|
|
||||||
namespace DeploymentHelpers
|
namespace DeploymentHelpers
|
||||||
|
|
@ -49,7 +47,7 @@ namespace DeploymentHelpers
|
||||||
FileName = Path.Combine(ChosenRuntimePath, "dnx.exe"),
|
FileName = Path.Combine(ChosenRuntimePath, "dnx.exe"),
|
||||||
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 = false
|
CreateNoWindow = true
|
||||||
};
|
};
|
||||||
|
|
||||||
AddEnvironmentVariablesToProcess(startInfo);
|
AddEnvironmentVariablesToProcess(startInfo);
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
},
|
},
|
||||||
"dnxcore50": {
|
"dnxcore50": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.Win32.Primitives": "4.0.0-beta-*",
|
|
||||||
"System.Diagnostics.Process": "4.0.0-beta-*",
|
"System.Diagnostics.Process": "4.0.0-beta-*",
|
||||||
"System.IO.FileSystem": "4.0.0-*",
|
"System.IO.FileSystem": "4.0.0-*",
|
||||||
"System.Net.Http": "4.0.0-beta-*",
|
"System.Net.Http": "4.0.0-beta-*",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue