diff --git a/src/Discord.Net.Commands/project.json b/src/Discord.Net.Commands/project.json index b2521d6af..89460f592 100644 --- a/src/Discord.Net.Commands/project.json +++ b/src/Discord.Net.Commands/project.json @@ -1,5 +1,5 @@ { - "version": "0.2.0-*", + "version": "0.2.1-*", "description": "A small Discord.Net extension to make bot creation easier.", "authors": [ "RogueException" ], "tags": [ "discord", "discordapp" ], @@ -13,10 +13,11 @@ "warningsAsErrors": true }, "dependencies": { - "Discord.Net": "" + "Discord.Net": "0.4.0" }, "frameworks": { - "dotnet": { + "net45": { }, + "dnxcore50": { "dependencies": { "System.Runtime": "4.0.20", "Microsoft.CSharp": "4.0.0" diff --git a/src/Discord.Net/project.json b/src/Discord.Net/project.json index 409d5b7a8..b681febc9 100644 --- a/src/Discord.Net/project.json +++ b/src/Discord.Net/project.json @@ -1,5 +1,5 @@ { - "version": "0.4.0-*", + "version": "0.4.1-*", "description": "An unofficial .Net API wrapper for the Discord client.", "authors": [ "RogueException" ], "tags": [ "discord", "discordapp" ], @@ -12,20 +12,23 @@ "compilationOptions": { "warningsAsErrors": true }, + + "dependencies": { + "Newtonsoft.Json": "7.0.1", + "Microsoft.Net.Http": "2.2.22" + }, + "frameworks": { - "dotnet": { + "net45": { }, + "dnxcore50": { "dependencies": { "System.Collections.Concurrent": "4.0.10", - "System.IO.Compression": "4.0.0-beta-23109", - "System.Net.Requests": "4.0.10-beta-23109", - "System.Net.WebSockets.Client": "4.0.0-beta-23109", - "System.Runtime": "4.0.20", - "Microsoft.CSharp": "4.0.0", - "Newtonsoft.Json": "7.0.1" + "System.IO.Compression": "4.0.0", + "System.Linq": "4.0.0", + "System.Net.Requests": "4.0.10", + "System.Net.WebSockets.Client": "4.0.0-beta-23123", + "System.Runtime": "4.0.20" } } - }, - "dependencies": { - "Microsoft.Net.Http": "2.2.22" } }