Selfhost does not seem to like CreateNoWindow on CI.

This commit is contained in:
Praburaj 2015-04-15 14:36:22 -07:00
parent eac23bc1d8
commit 6dd1fd7dc1
2 changed files with 1 additions and 4 deletions

View File

@ -1,8 +1,6 @@
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Threading;
using Microsoft.Framework.Logging;
namespace DeploymentHelpers
@ -49,7 +47,7 @@ namespace DeploymentHelpers
FileName = Path.Combine(ChosenRuntimePath, "dnx.exe"),
Arguments = string.Format("\"{0}\" {1} --server.urls {2}", DeploymentParameters.ApplicationPath, commandName, DeploymentParameters.ApplicationBaseUriHint),
UseShellExecute = false,
CreateNoWindow = false
CreateNoWindow = true
};
AddEnvironmentVariablesToProcess(startInfo);

View File

@ -18,7 +18,6 @@
},
"dnxcore50": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.0-beta-*",
"System.Diagnostics.Process": "4.0.0-beta-*",
"System.IO.FileSystem": "4.0.0-*",
"System.Net.Http": "4.0.0-beta-*",