From 6ef4e68ced04077f96cb0edf32e4f95f7151bec3 Mon Sep 17 00:00:00 2001 From: "N. Taylor Mullen" Date: Tue, 1 Mar 2016 13:38:23 -0800 Subject: [PATCH] Transition to netstandard. - dotnet5.X => netstandard1.y (where y = x-1). - DNXCore50 => netstandardapp1.5. - Applied the same changes to ifdefs. --- src/Microsoft.AspNetCore.Session/project.json | 13 +++++++++---- .../Microsoft.AspNetCore.Session.Tests/project.json | 7 +++++-- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/src/Microsoft.AspNetCore.Session/project.json b/src/Microsoft.AspNetCore.Session/project.json index 11f4b7001e..e88498c841 100644 --- a/src/Microsoft.AspNetCore.Session/project.json +++ b/src/Microsoft.AspNetCore.Session/project.json @@ -15,15 +15,20 @@ "allowUnsafe": true, "warningsAsErrors": true, "keyFile": "../../tools/Key.snk", - "nowarn": [ "CS1591" ], + "nowarn": [ + "CS1591" + ], "xmlDoc": true }, "frameworks": { "net451": {}, - "dotnet5.4": { + "netstandard1.3": { "dependencies": { "System.Security.Cryptography.Algorithms": "4.0.0-*" - } + }, + "imports": [ + "dotnet5.4" + ] } } -} +} \ No newline at end of file diff --git a/test/Microsoft.AspNetCore.Session.Tests/project.json b/test/Microsoft.AspNetCore.Session.Tests/project.json index 7cb18b919e..d83b23776f 100644 --- a/test/Microsoft.AspNetCore.Session.Tests/project.json +++ b/test/Microsoft.AspNetCore.Session.Tests/project.json @@ -9,12 +9,15 @@ }, "testRunner": "xunit", "frameworks": { - "dnxcore50": { + "netstandardapp1.5": { "dependencies": { "dotnet-test-xunit": "1.0.0-dev-*", "Microsoft.NETCore.Platforms": "1.0.1-*" }, - "imports": "portable-net451+win8" + "imports": [ + "dnxcore50", + "portable-net451+win8" + ] }, "net451": { "frameworkAssemblies": {