From 7f5f88081b2611321f1d6b39a1a9be2f977774b2 Mon Sep 17 00:00:00 2001 From: Praburaj Date: Tue, 14 Apr 2015 17:03:18 -0700 Subject: [PATCH] Honoring the DNX_PACKAGES environment variable. --- test/DeploymentHelpers/Deployers/ApplicationDeployer.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/DeploymentHelpers/Deployers/ApplicationDeployer.cs b/test/DeploymentHelpers/Deployers/ApplicationDeployer.cs index 185dcb08d7..f8e767cb03 100644 --- a/test/DeploymentHelpers/Deployers/ApplicationDeployer.cs +++ b/test/DeploymentHelpers/Deployers/ApplicationDeployer.cs @@ -1,5 +1,4 @@ using System; -using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Text; @@ -143,7 +142,7 @@ namespace DeploymentHelpers environment["ASPNET_ENV"] = DeploymentParameters.EnvironmentName; // Work around for https://github.com/aspnet/dnx/issues/1515 - environment.Remove("DNX_PACKAGES"); + // environment.Remove("DNX_PACKAGES"); environment.Remove("DNX_DEFAULT_LIB"); foreach (var environmentVariable in DeploymentParameters.EnvironmentVariables)