From be4a27d3918e049b42b4ecfff5778a68d231d620 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Sun, 25 Oct 2015 10:53:04 -0400 Subject: [PATCH 1/2] target dotnet --- src/LinqRb/project.json | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/src/LinqRb/project.json b/src/LinqRb/project.json index 83c192b..65a9f4f 100644 --- a/src/LinqRb/project.json +++ b/src/LinqRb/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.1-*", + "version": "1.0.1-beta1", "description": "Add additional Linq extensions familiar to ruby ppl", "authors": [ "Tommy Parnell" ], "tags": [ "Linq" ], @@ -7,19 +7,6 @@ "licenseUrl": "", "frameworks": { - "dnx451": { }, - "dnx452": { }, - "dnx45": { }, - "dnx46": { }, - "dnx40": { }, - "dnxcore50": { - "dependencies": { - "System.Collections": "4.0.11-beta-*", - "System.Linq": "4.0.1-beta-*", - "System.Runtime": "4.0.21-beta-*", - "System.Threading": "4.0.11-beta-*" - } - }, "dotnet": { "dependencies": { "System.Collections": "4.0.11-beta-*", From aa9e0bb830753949e2c02c48283b8dce45300e25 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Sun, 25 Oct 2015 14:55:20 -0400 Subject: [PATCH 2/2] fix targets --- src/LinqRb.UnitTests/project.json | 15 +++++++-------- src/LinqRb/project.json | 19 ++++++++++++++++--- 2 files changed, 23 insertions(+), 11 deletions(-) diff --git a/src/LinqRb.UnitTests/project.json b/src/LinqRb.UnitTests/project.json index 275047c..0f5bd05 100644 --- a/src/LinqRb.UnitTests/project.json +++ b/src/LinqRb.UnitTests/project.json @@ -14,15 +14,14 @@ "test": "xunit.runner.dnx" }, "frameworks": { - "dnx451": { }, "dnxcore50": { - "dependencies": { - "Microsoft.CSharp": "4.0.1-beta-23409", - "System.Collections": "4.0.11-beta-23409", - "System.Linq": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-beta-23409", - "System.Threading": "4.0.11-beta-23409" - } + + }, + "dnx50": { + + }, + "dnx451": { + } } } \ No newline at end of file diff --git a/src/LinqRb/project.json b/src/LinqRb/project.json index 65a9f4f..af124f9 100644 --- a/src/LinqRb/project.json +++ b/src/LinqRb/project.json @@ -1,19 +1,32 @@ { - "version": "1.0.1-beta1", + "version": "1.1.0", "description": "Add additional Linq extensions familiar to ruby ppl", "authors": [ "Tommy Parnell" ], "tags": [ "Linq" ], "projectUrl": "https://github.com/tparnell8/LinqRb", "licenseUrl": "", - "frameworks": { - "dotnet": { + "dnx50": { + }, + "dnxcore50": { "dependencies": { "System.Collections": "4.0.11-beta-*", "System.Linq": "4.0.1-beta-*", "System.Runtime": "4.0.21-beta-*", "System.Threading": "4.0.11-beta-*" } + }, + "dnx40": { + }, + "net40": { + }, + "net45": { + }, + "net451": { + }, + "net452": { + }, + "net46": { } } } \ No newline at end of file