Honoring the DNX_PACKAGES environment variable.
This commit is contained in:
parent
607ba4aef0
commit
7f5f88081b
|
|
@ -1,5 +1,4 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
@ -143,7 +142,7 @@ namespace DeploymentHelpers
|
||||||
environment["ASPNET_ENV"] = DeploymentParameters.EnvironmentName;
|
environment["ASPNET_ENV"] = DeploymentParameters.EnvironmentName;
|
||||||
|
|
||||||
// Work around for https://github.com/aspnet/dnx/issues/1515
|
// Work around for https://github.com/aspnet/dnx/issues/1515
|
||||||
environment.Remove("DNX_PACKAGES");
|
// environment.Remove("DNX_PACKAGES");
|
||||||
environment.Remove("DNX_DEFAULT_LIB");
|
environment.Remove("DNX_DEFAULT_LIB");
|
||||||
|
|
||||||
foreach (var environmentVariable in DeploymentParameters.EnvironmentVariables)
|
foreach (var environmentVariable in DeploymentParameters.EnvironmentVariables)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue