0.8.0-beta1

This commit is contained in:
RogueException
2015-10-18 08:45:00 -03:00
parent a0b1237d33
commit a844fa9bf3
4 changed files with 57 additions and 53 deletions

View File

@@ -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" />

View File

@@ -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": { },

View File

@@ -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: AssemblyVersion("0.8.0")]
[assembly: AssemblyFileVersion("0.7.3.0")] [assembly: AssemblyFileVersion("0.8.0")]

View File

@@ -1,47 +1,48 @@
{ {
"version": "0.7.4", "version": "0.8.0-beta1",
"description": "An unofficial .Net API wrapper for the Discord client.", "description": "An unofficial .Net API wrapper for the Discord client.",
"authors": [ "RogueException" ], "authors": [
"tags": [ "discord", "discordapp" ], "RogueException"
"projectUrl": "https://github.com/RogueException/Discord.Net", ],
"licenseUrl": "http://opensource.org/licenses/MIT", "tags": [
"repository": { "discord",
"type": "git", "discordapp"
"url": "git://github.com/RogueException/Discord.Net" ],
}, "projectUrl": "https://github.com/RogueException/Discord.Net",
"compilationOptions": { "licenseUrl": "http://opensource.org/licenses/MIT",
"allowUnsafe": true "repository": {
}, "type": "git",
"configurations": { "url": "git://github.com/RogueException/Discord.Net"
"FullDebug": { },
"compilationOptions": { "compilationOptions": {
"define": [ "DEBUG", "TRACE", "TEST_RESPONSES" ] "allowUnsafe": true
} },
} "configurations": {
}, "FullDebug": {
"compilationOptions": {
"dependencies": { "define": [
"Newtonsoft.Json": "7.0.1" "DEBUG",
}, "TRACE",
"TEST_RESPONSES"
"frameworks": { ]
"net45": { }
"dependencies": { }
"RestSharp": "105.2.3", },
"WebSocketSharp": "1.0.3-rc9" "dependencies": {
}, "Newtonsoft.Json": "7.0.1",
"frameworkAssemblies": { "RestSharp": "105.2.3",
"System.Net.Http": "4.0.0.0" "WebSocketSharp": "1.0.3-rc9"
} },
}, "frameworks": {
"dnx451": { "net45": {
"dependencies": { "frameworkAssemblies": {
"RestSharp": "105.2.3", "System.Net.Http": "4.0.0.0"
"WebSocketSharp": "1.0.3-rc9" }
}, },
"frameworkAssemblies": { "dnx451": {
"System.Net.Http": "4.0.0.0" "frameworkAssemblies": {
} "System.Net.Http": "4.0.0.0"
} }
} }
} }
}