Fixed Nuget dependency errors

This commit is contained in:
Brandon Smith
2015-08-17 23:01:07 -03:00
parent 7fc940c5e8
commit 4714a6d73f
2 changed files with 18 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
{ {
"version": "0.2.0-*", "version": "0.2.1-*",
"description": "A small Discord.Net extension to make bot creation easier.", "description": "A small Discord.Net extension to make bot creation easier.",
"authors": [ "RogueException" ], "authors": [ "RogueException" ],
"tags": [ "discord", "discordapp" ], "tags": [ "discord", "discordapp" ],
@@ -13,10 +13,11 @@
"warningsAsErrors": true "warningsAsErrors": true
}, },
"dependencies": { "dependencies": {
"Discord.Net": "" "Discord.Net": "0.4.0"
}, },
"frameworks": { "frameworks": {
"dotnet": { "net45": { },
"dnxcore50": {
"dependencies": { "dependencies": {
"System.Runtime": "4.0.20", "System.Runtime": "4.0.20",
"Microsoft.CSharp": "4.0.0" "Microsoft.CSharp": "4.0.0"

View File

@@ -1,5 +1,5 @@
{ {
"version": "0.4.0-*", "version": "0.4.1-*",
"description": "An unofficial .Net API wrapper for the Discord client.", "description": "An unofficial .Net API wrapper for the Discord client.",
"authors": [ "RogueException" ], "authors": [ "RogueException" ],
"tags": [ "discord", "discordapp" ], "tags": [ "discord", "discordapp" ],
@@ -12,20 +12,23 @@
"compilationOptions": { "compilationOptions": {
"warningsAsErrors": true "warningsAsErrors": true
}, },
"dependencies": {
"Newtonsoft.Json": "7.0.1",
"Microsoft.Net.Http": "2.2.22"
},
"frameworks": { "frameworks": {
"dotnet": { "net45": { },
"dnxcore50": {
"dependencies": { "dependencies": {
"System.Collections.Concurrent": "4.0.10", "System.Collections.Concurrent": "4.0.10",
"System.IO.Compression": "4.0.0-beta-23109", "System.IO.Compression": "4.0.0",
"System.Net.Requests": "4.0.10-beta-23109", "System.Linq": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0-beta-23109", "System.Net.Requests": "4.0.10",
"System.Runtime": "4.0.20", "System.Net.WebSockets.Client": "4.0.0-beta-23123",
"Microsoft.CSharp": "4.0.0", "System.Runtime": "4.0.20"
"Newtonsoft.Json": "7.0.1"
} }
} }
},
"dependencies": {
"Microsoft.Net.Http": "2.2.22"
} }
} }