From 5f44e8540d1679794d4f537f030c146e9202af26 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Mon, 23 Nov 2015 11:31:50 -0800 Subject: [PATCH] Ensure Microsoft.AspNet.DataProtection.Test.Shared can compile in dnxcore50 --- .../project.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/Microsoft.AspNet.DataProtection.Test.Shared/project.json b/test/Microsoft.AspNet.DataProtection.Test.Shared/project.json index 70fcad2714..33e2b1875f 100644 --- a/test/Microsoft.AspNet.DataProtection.Test.Shared/project.json +++ b/test/Microsoft.AspNet.DataProtection.Test.Shared/project.json @@ -1,7 +1,11 @@ { "frameworks": { "dnx451": { }, - "dnxcore50": { } + "dnxcore50": { + "dependencies": { + "System.Runtime": "4.0.21-*" + } + } }, "shared": "**/*.cs" }