diff --git a/README.md b/README.md index f74ba8e07..e56886c2b 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Discord.Net itself is also in alpha so several functions may be unstable or not - Server Management (Servers, Channels, Messages, Invites) - User Moderation (Kick/Ban/Unban/Mute/Unmute/Deafen/Undeafen) - Alpha Voice Support (Outgoing only currently) -- Supports .Net 4.5, DNX 4.5.1 and DNX Core 5.0 (Windows only) +- Supports .Net 4.5 and DNX 4.5.1 ### NuGet Packages - [Discord.Net](https://www.nuget.org/packages/Discord.Net/) @@ -55,3 +55,4 @@ await client.AcceptInvite("channel-invite-code"); ### Known Issues - Due to current Discord restrictions, private messages are blocked unless both the sender and recipient are members of the same server. - Caches do not currently clean up when their entries are no longer referenced, and there is no cap to the message cache. For now, disconencting and reconnecting will clear all caches. +- DNX Core 5.0 is experiencing several network-related issues and support has been temporarily dropped. \ No newline at end of file diff --git a/src/Discord.Net.Commands/project.json b/src/Discord.Net.Commands/project.json index 49c4ed2b4..9b1c708e5 100644 --- a/src/Discord.Net.Commands/project.json +++ b/src/Discord.Net.Commands/project.json @@ -17,12 +17,6 @@ }, "frameworks": { "net45": { }, - "dnx451": { }, - "dnxcore50": { - "dependencies": { - "System.Runtime": "4.0.20", - "Microsoft.CSharp": "4.0.0" - } - } + "dnx451": { } } } diff --git a/src/Discord.Net/project.json b/src/Discord.Net/project.json index d04d7c73c..919a264e6 100644 --- a/src/Discord.Net/project.json +++ b/src/Discord.Net/project.json @@ -40,20 +40,6 @@ "frameworkAssemblies": { "System.Net.Http": "4.0.0.0" } - }, - "dnxcore50": { - "dependencies": { - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.Linq": "4.0.0", - "System.Net.Requests": "4.0.10", - "System.Net.Sockets": "4.0.10-beta-23019", - "System.Net.WebSockets.Client": "4.0.0-beta-23123", - "System.Runtime": "4.0.20", - "System.Text.RegularExpressions": "4.0.10", - "System.Net.NameResolution": "4.0.0-beta-23019" - } } } }