| @@ -52,7 +52,10 @@ | |||||
| <Compile Include="..\Discord.Net.Commands\CommandsPlugin.Events.cs"> | <Compile Include="..\Discord.Net.Commands\CommandsPlugin.Events.cs"> | ||||
| <Link>CommandsPlugin.Events.cs</Link> | <Link>CommandsPlugin.Events.cs</Link> | ||||
| </Compile> | </Compile> | ||||
| <Compile Include="..\Discord.Net\Shared\TaskHelper.cs"> | |||||
| <Compile Include="..\Discord.Net\Helpers\Shared\CollectionHelper.cs"> | |||||
| <Link>Shared\CollectionHelper.cs</Link> | |||||
| </Compile> | |||||
| <Compile Include="..\Discord.Net\Helpers\Shared\TaskHelper.cs"> | |||||
| <Link>Shared\TaskHelper.cs</Link> | <Link>Shared\TaskHelper.cs</Link> | ||||
| </Compile> | </Compile> | ||||
| <Compile Include="Properties\AssemblyInfo.cs" /> | <Compile Include="Properties\AssemblyInfo.cs" /> | ||||
| @@ -1,11 +1,11 @@ | |||||
| { | { | ||||
| "version": "0.7.4", | |||||
| "version": "0.8.0-beta1", | |||||
| "description": "A Discord.Net extension adding basic command support.", | "description": "A Discord.Net extension adding basic command support.", | ||||
| "authors": [ "RogueException" ], | "authors": [ "RogueException" ], | ||||
| "tags": [ "discord", "discordapp" ], | "tags": [ "discord", "discordapp" ], | ||||
| "projectUrl": "https://github.com/RogueException/Discord.Net", | "projectUrl": "https://github.com/RogueException/Discord.Net", | ||||
| "licenseUrl": "http://opensource.org/licenses/MIT", | "licenseUrl": "http://opensource.org/licenses/MIT", | ||||
| "compile": ["**/*.cs", "../Discord.Net/Shared/*.cs"], | |||||
| "compile": ["**/*.cs", "../Discord.Net/Helpers/Shared/*.cs"], | |||||
| "repository": { | "repository": { | ||||
| "type": "git", | "type": "git", | ||||
| "url": "git://github.com/RogueException/Discord.Net" | "url": "git://github.com/RogueException/Discord.Net" | ||||
| @@ -14,7 +14,7 @@ | |||||
| "warningsAsErrors": true | "warningsAsErrors": true | ||||
| }, | }, | ||||
| "dependencies": { | "dependencies": { | ||||
| "Discord.Net": "0.7.4" | |||||
| "Discord.Net": "0.8.0-beta1" | |||||
| }, | }, | ||||
| "frameworks": { | "frameworks": { | ||||
| "net45": { }, | "net45": { }, | ||||
| @@ -13,5 +13,5 @@ using System.Runtime.InteropServices; | |||||
| [assembly: ComVisible(false)] | [assembly: ComVisible(false)] | ||||
| [assembly: Guid("76ea00e6-ea24-41e1-acb2-639c0313fa80")] | [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")] | |||||
| @@ -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" | |||||
| } | |||||
| } | |||||
| } | |||||
| } | |||||