diff --git a/test/DeploymentHelpers/Deployers/SelfHostDeployer.cs b/test/DeploymentHelpers/Deployers/SelfHostDeployer.cs index db2a33b090..2142189633 100644 --- a/test/DeploymentHelpers/Deployers/SelfHostDeployer.cs +++ b/test/DeploymentHelpers/Deployers/SelfHostDeployer.cs @@ -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); diff --git a/test/DeploymentHelpers/project.json b/test/DeploymentHelpers/project.json index 3c4612fae9..65d08aa059 100644 --- a/test/DeploymentHelpers/project.json +++ b/test/DeploymentHelpers/project.json @@ -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-*",