From f5818634450e07949d33d30267dbf193d5d245f7 Mon Sep 17 00:00:00 2001 From: anurse Date: Fri, 12 Jun 2015 23:43:46 -0700 Subject: [PATCH 1/2] move System.Reflection dependency to dnxcore50 in tests --- test/Microsoft.Framework.Localization.Test/project.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/test/Microsoft.Framework.Localization.Test/project.json b/test/Microsoft.Framework.Localization.Test/project.json index 363986e497..358f1452fa 100644 --- a/test/Microsoft.Framework.Localization.Test/project.json +++ b/test/Microsoft.Framework.Localization.Test/project.json @@ -2,8 +2,7 @@ "dependencies": { "xunit": "2.1.0-*", "xunit.runner.dnx": "2.1.0-*", - "Microsoft.Framework.Localization": "1.0.0-*", - "System.Reflection": "4.0.10-beta-*" + "Microsoft.Framework.Localization": "1.0.0-*" }, "commands": { @@ -12,6 +11,10 @@ "frameworks": { "dnx451": { }, - "dnxcore50": { } + "dnxcore50": { + "dependencies": { + "System.Reflection": "4.0.10-beta-*" + } + } } } From d436955e02a83831df96bb61d3ee587c497e93b7 Mon Sep 17 00:00:00 2001 From: anurse Date: Sat, 13 Jun 2015 00:12:33 -0700 Subject: [PATCH 2/2] Switch to xunit.runner.aspnet --- test/Microsoft.Framework.Localization.Test/project.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/test/Microsoft.Framework.Localization.Test/project.json b/test/Microsoft.Framework.Localization.Test/project.json index 358f1452fa..a16410ca8e 100644 --- a/test/Microsoft.Framework.Localization.Test/project.json +++ b/test/Microsoft.Framework.Localization.Test/project.json @@ -1,17 +1,16 @@ { "dependencies": { - "xunit": "2.1.0-*", - "xunit.runner.dnx": "2.1.0-*", + "xunit.runner.aspnet": "2.0.0-aspnet-*", "Microsoft.Framework.Localization": "1.0.0-*" }, "commands": { - "test": "xunit.runner.dnx" + "test": "xunit.runner.aspnet" }, "frameworks": { "dnx451": { }, - "dnxcore50": { + "dnxcore50": { "dependencies": { "System.Reflection": "4.0.10-beta-*" }