From 55ea680d50ae75753644282505fb0cead88bfe85 Mon Sep 17 00:00:00 2001 From: Dmitry Turin Date: Mon, 1 Feb 2016 23:03:55 +0200 Subject: [PATCH] Fix dependencies and also target net45 --- NModbus4.Serial/project.json | 28 +++++++--------------------- NModbus4/project.json | 18 +++++++++--------- 2 files changed, 16 insertions(+), 30 deletions(-) diff --git a/NModbus4.Serial/project.json b/NModbus4.Serial/project.json index 9e64f24..29ec3b5 100644 --- a/NModbus4.Serial/project.json +++ b/NModbus4.Serial/project.json @@ -1,30 +1,16 @@ { - "version": "1.0.0-*", + "version": "1.0.0-alpha1", "description": "NModbus4.Serial Class Library", - "authors": [ "turin" ], - "tags": [ "" ], - "projectUrl": "", - "licenseUrl": "", + "authors": [ "Dmitry Turin" ], + "tags": [ "modbus", "nmodbus", "serial", "master", "slave" ], + "projectUrl": "https://github.com/NModbus4/NModbus4", + "licenseUrl": "http://opensource.org/licenses/MIT", "dependencies": { - "NModbus4": { "target": "project" } + "NModbus4": "3.0.0-*" }, "frameworks": { - "net461": { - "dependencies": { - "System.Runtime": "4.0.21-*", - "System.Diagnostics.Debug": "4.0.10", - "Microsoft.CSharp": "4.0.1-*" - }, - "frameworkAssemblies": { - "mscorlib": "4.0.0.0", - "System": "4.0.0.0", - "System.Core": "4.0.0.0", - "System.Diagnostics.Debug": "4.0.10.0", - "System.Runtime": "4.0.20.0", - "Microsoft.CSharp": "4.0.0.0" - } - } + "net45": { } } } diff --git a/NModbus4/project.json b/NModbus4/project.json index acc4e9e..7cebe0d 100644 --- a/NModbus4/project.json +++ b/NModbus4/project.json @@ -7,17 +7,17 @@ "licenseUrl": "http://opensource.org/licenses/MIT", "frameworks": { + "net45": {}, "dotnet5.5": { "dependencies": { - "Microsoft.CSharp": "4.0.1-*", - "System.Collections": "4.0.11-*", - "System.Collections.Concurrent": "4.0.11-*", - "System.Linq": "4.0.1-*", - "System.IO": "4.0.11-*", - "System.Runtime": "4.0.21-*", - "System.Threading.Tasks": "4.0.11-*", - "System.Net.Sockets": "4.1.0-*", - "System.Diagnostics.Tools": "4.0.1-*", + "System.Collections": "4.0.11-beta-23516", + "System.Collections.Concurrent": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.IO": "4.0.11-beta-23516", + "System.Runtime": "4.0.21-beta-23516", + "System.Threading.Tasks": "4.0.11-beta-23516", + "System.Net.Sockets": "4.1.0-beta-23516", + "System.Diagnostics.Tools": "4.0.1-beta-23516", "System.Diagnostics.Debug": "4.0.10" } }