Adding net46 to some of our libraries back, so that we can run binding-redirect tests again. We need those tests for tool and we need to keep them running.

This commit is contained in:
Livar Cunha 2016-10-15 18:34:03 -07:00
parent 7601f66328
commit 391d04c67a
10 changed files with 21 additions and 5 deletions

View file

@ -1,6 +1,7 @@
using System;
using System.IO;
using System.Linq;
using Microsoft.DotNet.PlatformAbstractions;
namespace Microsoft.DotNet.Tools.Test.Utilities
{
@ -61,7 +62,7 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
string corehostPackages = null,
string corehostDummyPackages = null)
{
var currentRid = DotnetLegacyRuntimeIdentifiers.InferLegacyRestoreRuntimeIdentifier();
var currentRid = RuntimeEnvironment.GetRuntimeIdentifier();
_artifacts = artifacts ?? Path.Combine(RepoRoot, "artifacts", currentRid);
_nugetPackages = nugetPackages ?? Path.Combine(RepoRoot, ".nuget", "packages");