From 9337f3e48e1d609b3d88e129a5676ec3185b2cb2 Mon Sep 17 00:00:00 2001 From: Pavel Krymets Date: Mon, 18 Apr 2016 16:28:14 -0700 Subject: [PATCH] Migrate tests, tools and samples to portable --- .../project.json | 23 ++++++++++++++----- 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/test/Microsoft.AspNetCore.JsonPatch.Test/project.json b/test/Microsoft.AspNetCore.JsonPatch.Test/project.json index 4dcf2002cf..9455e29da1 100644 --- a/test/Microsoft.AspNetCore.JsonPatch.Test/project.json +++ b/test/Microsoft.AspNetCore.JsonPatch.Test/project.json @@ -3,18 +3,23 @@ "warningsAsErrors": true }, "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1-*", "Microsoft.AspNetCore.JsonPatch": "1.0.0-*", "Microsoft.AspNetCore.Testing": "1.0.0-*", "xunit": "2.1.0" }, "testRunner": "xunit", "frameworks": { - "netstandardapp1.5": { + "netcoreapp1.0": { "dependencies": { + "Microsoft.NETCore.App": { + "version": "1.0.0-*", + "type": "platform" + }, "moq.netcore": "4.4.0-beta8", "dotnet-test-xunit": "1.0.0-dev-*", - "NETStandard.Library": "1.5.0-*", - "System.Diagnostics.Process": "4.1.0-*" + "System.Diagnostics.Process": "4.1.0-*", + "System.Diagnostics.TraceSource": "4.0.0-*" }, "imports": [ "dnxcore50", @@ -23,9 +28,15 @@ }, "net451": { "frameworkAssemblies": { - "System.Linq.Expressions": { "type": "build" }, - "System.Runtime": { "type": "build" }, - "System.Threading.Tasks": { "type": "build" } + "System.Linq.Expressions": { + "type": "build" + }, + "System.Runtime": { + "type": "build" + }, + "System.Threading.Tasks": { + "type": "build" + } }, "dependencies": { "Moq": "4.2.1312.1622",