We had a bug where the framework for design time runs of dotnet test was hard coded into dnxcore50. Moved some things around so that we will pack the target framework from the project context.

This commit is contained in:
Livar Cunha 2016-03-02 22:01:46 -08:00
parent 771f4ed163
commit 03b6b8ada0
4 changed files with 12 additions and 4 deletions

View file

@ -40,7 +40,7 @@ namespace Microsoft.Dotnet.Tools.Test.Tests
_commandFactoryMock.Setup(c => c.Create(
$"dotnet-{_runner}",
_testRunnerArguments,
new NuGetFramework("DNXCore", Version.Parse("5.0")),
null,
null)).Returns(_commandMock.Object).Verifiable();
}