Remove infer-runtimes from EndToEnd tests.

This commit is contained in:
Eric Erhardt 2016-04-07 20:06:09 -05:00
parent 0eb527a7c1
commit 4c704997c9

View file

@ -15,7 +15,8 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
public override CommandResult Execute(string args="")
{
args = $"restore {args} --infer-runtimes";
args = $"restore {args}";
return base.Execute(args);
}
}