@@ -17,6 +17,8 @@ The individual components may also be installed from NuGet: | |||||
- [Discord.Net.Rpc](https://www.nuget.org/packages/Discord.Net.Rpc/) | - [Discord.Net.Rpc](https://www.nuget.org/packages/Discord.Net.Rpc/) | ||||
- [Discord.Net.WebSocket](https://www.nuget.org/packages/Discord.Net.WebSocket/) | - [Discord.Net.WebSocket](https://www.nuget.org/packages/Discord.Net.WebSocket/) | ||||
- [Discord.Net.Commands](https://www.nuget.org/packages/Discord.Net.Commands/) | - [Discord.Net.Commands](https://www.nuget.org/packages/Discord.Net.Commands/) | ||||
The following providers are available for platforms not supporting .NET Standard 1.3: | |||||
- [Discord.Net.Providers.UdpClient](https://www.nuget.org/packages/Discord.Net.Providers.UdpClient/) | - [Discord.Net.Providers.UdpClient](https://www.nuget.org/packages/Discord.Net.Providers.UdpClient/) | ||||
- [Discord.Net.Providers.WS4Net](https://www.nuget.org/packages/Discord.Net.Providers.WS4Net/) | - [Discord.Net.Providers.WS4Net](https://www.nuget.org/packages/Discord.Net.Providers.WS4Net/) | ||||
@@ -1,7 +1,7 @@ | |||||
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||||
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||||
<PropertyGroup> | <PropertyGroup> | ||||
<Description>A Discord.Net extension adding support for bot commands.</Description> | <Description>A Discord.Net extension adding support for bot commands.</Description> | ||||
<VersionPrefix>1.0.0-beta2</VersionPrefix> | |||||
<VersionPrefix>1.0.0-rc</VersionPrefix> | |||||
<TargetFrameworks>netstandard1.1;netstandard1.3</TargetFrameworks> | <TargetFrameworks>netstandard1.1;netstandard1.3</TargetFrameworks> | ||||
<AssemblyName>Discord.Net.Commands</AssemblyName> | <AssemblyName>Discord.Net.Commands</AssemblyName> | ||||
<PackageTags>discord;discordapp</PackageTags> | <PackageTags>discord;discordapp</PackageTags> | ||||
@@ -1,7 +1,7 @@ | |||||
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||||
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||||
<PropertyGroup> | <PropertyGroup> | ||||
<Description>A .Net API wrapper and bot framework for Discord.</Description> | <Description>A .Net API wrapper and bot framework for Discord.</Description> | ||||
<VersionPrefix>1.0.0-beta2</VersionPrefix> | |||||
<VersionPrefix>1.0.0-rc</VersionPrefix> | |||||
<TargetFrameworks>netstandard1.1;netstandard1.3</TargetFrameworks> | <TargetFrameworks>netstandard1.1;netstandard1.3</TargetFrameworks> | ||||
<AssemblyName>Discord.Net.Core</AssemblyName> | <AssemblyName>Discord.Net.Core</AssemblyName> | ||||
<PackageTags>discord;discordapp</PackageTags> | <PackageTags>discord;discordapp</PackageTags> | ||||
@@ -26,9 +26,6 @@ | |||||
}, | }, | ||||
"dependencies": { | "dependencies": { | ||||
"Discord.Net.API": { | |||||
"target": "project" | |||||
}, | |||||
"Newtonsoft.Json": "9.0.1", | "Newtonsoft.Json": "9.0.1", | ||||
"System.Collections.Concurrent": "4.3.0", | "System.Collections.Concurrent": "4.3.0", | ||||
"System.Collections.Immutable": "1.3.0", | "System.Collections.Immutable": "1.3.0", | ||||
@@ -1,7 +1,7 @@ | |||||
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | <Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||||
<PropertyGroup> | <PropertyGroup> | ||||
<Description>An optional UDP client provider for Discord.Net using System.Net.UdpClient</Description> | <Description>An optional UDP client provider for Discord.Net using System.Net.UdpClient</Description> | ||||
<VersionPrefix>1.0.0-beta2</VersionPrefix> | |||||
<VersionPrefix>1.0.0-rc</VersionPrefix> | |||||
<TargetFrameworks>net45</TargetFrameworks> | <TargetFrameworks>net45</TargetFrameworks> | ||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||||
<AssemblyName>Discord.Net.Providers.UDPClient</AssemblyName> | <AssemblyName>Discord.Net.Providers.UDPClient</AssemblyName> | ||||
@@ -1,7 +1,7 @@ | |||||
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | <Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||||
<PropertyGroup> | <PropertyGroup> | ||||
<Description>An optional WebSocket client provider for Discord.Net using WebSocket4Net</Description> | <Description>An optional WebSocket client provider for Discord.Net using WebSocket4Net</Description> | ||||
<VersionPrefix>1.0.0-beta2</VersionPrefix> | |||||
<VersionPrefix>1.0.0-rc</VersionPrefix> | |||||
<TargetFrameworks>net45</TargetFrameworks> | <TargetFrameworks>net45</TargetFrameworks> | ||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||||
<AssemblyName>Discord.Net.Providers.WS4Net</AssemblyName> | <AssemblyName>Discord.Net.Providers.WS4Net</AssemblyName> | ||||
@@ -1,7 +1,7 @@ | |||||
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | <Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||||
<PropertyGroup> | <PropertyGroup> | ||||
<Description>A core Discord.Net library containing the REST client and models.</Description> | <Description>A core Discord.Net library containing the REST client and models.</Description> | ||||
<VersionPrefix>1.0.0-beta2</VersionPrefix> | |||||
<VersionPrefix>1.0.0-rc</VersionPrefix> | |||||
<TargetFrameworks>netstandard1.1;netstandard1.3</TargetFrameworks> | <TargetFrameworks>netstandard1.1;netstandard1.3</TargetFrameworks> | ||||
<AssemblyName>Discord.Net.Rest</AssemblyName> | <AssemblyName>Discord.Net.Rest</AssemblyName> | ||||
<PackageTags>discord;discordapp</PackageTags> | <PackageTags>discord;discordapp</PackageTags> | ||||
@@ -1,7 +1,7 @@ | |||||
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | <Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||||
<PropertyGroup> | <PropertyGroup> | ||||
<Description>A core Discord.Net library containing the RPC client and models.</Description> | <Description>A core Discord.Net library containing the RPC client and models.</Description> | ||||
<VersionPrefix>1.0.0-beta2</VersionPrefix> | |||||
<VersionPrefix>1.0.0-rc</VersionPrefix> | |||||
<TargetFrameworks>netstandard1.1;netstandard1.3</TargetFrameworks> | <TargetFrameworks>netstandard1.1;netstandard1.3</TargetFrameworks> | ||||
<AssemblyName>Discord.Net.Rpc</AssemblyName> | <AssemblyName>Discord.Net.Rpc</AssemblyName> | ||||
<PackageTags>discord;discordapp</PackageTags> | <PackageTags>discord;discordapp</PackageTags> | ||||
@@ -1,7 +1,7 @@ | |||||
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||||
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||||
<PropertyGroup> | <PropertyGroup> | ||||
<Description>A core Discord.Net library containing the WebSocket client and models.</Description> | <Description>A core Discord.Net library containing the WebSocket client and models.</Description> | ||||
<VersionPrefix>1.0.0-beta2</VersionPrefix> | |||||
<VersionPrefix>1.0.0-rc</VersionPrefix> | |||||
<TargetFrameworks>netstandard1.1;netstandard1.3</TargetFrameworks> | <TargetFrameworks>netstandard1.1;netstandard1.3</TargetFrameworks> | ||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||||
<AssemblyName>Discord.Net.WebSocket</AssemblyName> | <AssemblyName>Discord.Net.WebSocket</AssemblyName> | ||||
@@ -1,7 +1,7 @@ | |||||
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | <Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||||
<PropertyGroup> | <PropertyGroup> | ||||
<Description>An aynchronous API wrapper for Discord. This metapackage includes all of the optional Discord.Net components.</Description> | <Description>An aynchronous API wrapper for Discord. This metapackage includes all of the optional Discord.Net components.</Description> | ||||
<VersionPrefix>1.0.0-beta2</VersionPrefix> | |||||
<VersionPrefix>1.0.0-rc</VersionPrefix> | |||||
<TargetFrameworks>netstandard1.1;netstandard1.3</TargetFrameworks> | <TargetFrameworks>netstandard1.1;netstandard1.3</TargetFrameworks> | ||||
<AssemblyName>Discord.Net</AssemblyName> | <AssemblyName>Discord.Net</AssemblyName> | ||||
<PackageTags>discord;discordapp</PackageTags> | <PackageTags>discord;discordapp</PackageTags> | ||||
@@ -22,8 +22,4 @@ | |||||
<ProjectReference Include="..\Discord.Net.Rpc\Discord.Net.Rpc.csproj" /> | <ProjectReference Include="..\Discord.Net.Rpc\Discord.Net.Rpc.csproj" /> | ||||
<ProjectReference Include="..\Discord.Net.Commands\Discord.Net.Commands.csproj" /> | <ProjectReference Include="..\Discord.Net.Commands\Discord.Net.Commands.csproj" /> | ||||
</ItemGroup> | </ItemGroup> | ||||
<ItemGroup Condition="'$(TargetFramework)'=='netstandard1.1'"> | |||||
<ProjectReference Include="..\Discord.Net.Providers.UdpClient\Discord.Net.Providers.UdpClient.csproj" /> | |||||
<ProjectReference Include="..\Discord.Net.Providers.WS4Net\Discord.Net.Providers.WS4Net.csproj" /> | |||||
</ItemGroup> | |||||
</Project> | </Project> |