From f5818634450e07949d33d30267dbf193d5d245f7 Mon Sep 17 00:00:00 2001 From: anurse Date: Fri, 12 Jun 2015 23:43:46 -0700 Subject: [PATCH] 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-*" + } + } } }