From 6dd1fd7dc10c829686a37b560ccc4590116cd473 Mon Sep 17 00:00:00 2001 From: Praburaj Date: Wed, 15 Apr 2015 14:36:22 -0700 Subject: [PATCH] Selfhost does not seem to like CreateNoWindow on CI. --- test/DeploymentHelpers/Deployers/SelfHostDeployer.cs | 4 +--- test/DeploymentHelpers/project.json | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) 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-*",