diff --git a/src/Discord.Net.Commands.Net45/Discord.Net.Commands.csproj b/src/Discord.Net.Commands.Net45/Discord.Net.Commands.csproj index b1540a5e3..f05fa2e2f 100644 --- a/src/Discord.Net.Commands.Net45/Discord.Net.Commands.csproj +++ b/src/Discord.Net.Commands.Net45/Discord.Net.Commands.csproj @@ -52,7 +52,10 @@ CommandsPlugin.Events.cs - + + Shared\CollectionHelper.cs + + Shared\TaskHelper.cs diff --git a/src/Discord.Net.Commands/project.json b/src/Discord.Net.Commands/project.json index 8b8d7fbef..5e7ee79e8 100644 --- a/src/Discord.Net.Commands/project.json +++ b/src/Discord.Net.Commands/project.json @@ -1,11 +1,11 @@ { - "version": "0.7.4", + "version": "0.8.0-beta1", "description": "A Discord.Net extension adding basic command support.", "authors": [ "RogueException" ], "tags": [ "discord", "discordapp" ], "projectUrl": "https://github.com/RogueException/Discord.Net", "licenseUrl": "http://opensource.org/licenses/MIT", - "compile": ["**/*.cs", "../Discord.Net/Shared/*.cs"], + "compile": ["**/*.cs", "../Discord.Net/Helpers/Shared/*.cs"], "repository": { "type": "git", "url": "git://github.com/RogueException/Discord.Net" @@ -14,7 +14,7 @@ "warningsAsErrors": true }, "dependencies": { - "Discord.Net": "0.7.4" + "Discord.Net": "0.8.0-beta1" }, "frameworks": { "net45": { }, diff --git a/src/Discord.Net.Net45/Properties/AssemblyInfo.cs b/src/Discord.Net.Net45/Properties/AssemblyInfo.cs index 2eb34b7d3..857ea2201 100644 --- a/src/Discord.Net.Net45/Properties/AssemblyInfo.cs +++ b/src/Discord.Net.Net45/Properties/AssemblyInfo.cs @@ -13,5 +13,5 @@ using System.Runtime.InteropServices; [assembly: ComVisible(false)] [assembly: Guid("76ea00e6-ea24-41e1-acb2-639c0313fa80")] -[assembly: AssemblyVersion("0.7.3.0")] -[assembly: AssemblyFileVersion("0.7.3.0")] +[assembly: AssemblyVersion("0.8.0")] +[assembly: AssemblyFileVersion("0.8.0")] diff --git a/src/Discord.Net/project.json b/src/Discord.Net/project.json index a1f041cf4..8a2b2e1b2 100644 --- a/src/Discord.Net/project.json +++ b/src/Discord.Net/project.json @@ -1,47 +1,48 @@ -{ - "version": "0.7.4", - "description": "An unofficial .Net API wrapper for the Discord client.", - "authors": [ "RogueException" ], - "tags": [ "discord", "discordapp" ], - "projectUrl": "https://github.com/RogueException/Discord.Net", - "licenseUrl": "http://opensource.org/licenses/MIT", - "repository": { - "type": "git", - "url": "git://github.com/RogueException/Discord.Net" - }, - "compilationOptions": { - "allowUnsafe": true - }, - "configurations": { - "FullDebug": { - "compilationOptions": { - "define": [ "DEBUG", "TRACE", "TEST_RESPONSES" ] - } - } - }, - - "dependencies": { - "Newtonsoft.Json": "7.0.1" - }, - - "frameworks": { - "net45": { - "dependencies": { - "RestSharp": "105.2.3", - "WebSocketSharp": "1.0.3-rc9" - }, - "frameworkAssemblies": { - "System.Net.Http": "4.0.0.0" - } - }, - "dnx451": { - "dependencies": { - "RestSharp": "105.2.3", - "WebSocketSharp": "1.0.3-rc9" - }, - "frameworkAssemblies": { - "System.Net.Http": "4.0.0.0" - } - } - } -} +{ + "version": "0.8.0-beta1", + "description": "An unofficial .Net API wrapper for the Discord client.", + "authors": [ + "RogueException" + ], + "tags": [ + "discord", + "discordapp" + ], + "projectUrl": "https://github.com/RogueException/Discord.Net", + "licenseUrl": "http://opensource.org/licenses/MIT", + "repository": { + "type": "git", + "url": "git://github.com/RogueException/Discord.Net" + }, + "compilationOptions": { + "allowUnsafe": true + }, + "configurations": { + "FullDebug": { + "compilationOptions": { + "define": [ + "DEBUG", + "TRACE", + "TEST_RESPONSES" + ] + } + } + }, + "dependencies": { + "Newtonsoft.Json": "7.0.1", + "RestSharp": "105.2.3", + "WebSocketSharp": "1.0.3-rc9" + }, + "frameworks": { + "net45": { + "frameworkAssemblies": { + "System.Net.Http": "4.0.0.0" + } + }, + "dnx451": { + "frameworkAssemblies": { + "System.Net.Http": "4.0.0.0" + } + } + } +} \ No newline at end of file