You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 2.4 kB

8 years ago
8 years ago
10 years ago
10 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
9 years ago
9 years ago
8 years ago
8 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Discord.Net v1.0.0-rc
  2. [![MyGet](https://img.shields.io/myget/discord-net/vpre/Discord.Net.svg)](https://www.myget.org/feed/Packages/discord-net)
  3. [![Build status](https://ci.appveyor.com/api/projects/status/5sb7n8a09w9clute/branch/dev?svg=true)](https://ci.appveyor.com/project/RogueException/discord-net/branch/dev)
  4. [![Discord](https://discordapp.com/api/guilds/81384788765712384/widget.png)](https://discord.gg/0SBTUU1wZTVjAMPx)
  5. An unofficial .NET API Wrapper for the Discord client (http://discordapp.com).
  6. Check out the [documentation](https://discord.foxbot.me/docs/) or join the [Discord API Chat](https://discord.gg/0SBTUU1wZTVjAMPx).
  7. ## Installation
  8. ### Stable (NuGet)
  9. Our stable builds available from NuGet through the Discord.Net metapackage:
  10. - [Discord.Net](https://www.nuget.org/packages/Discord.Net/)
  11. The individual components may also be installed from NuGet:
  12. - [Discord.Net.Rest](https://www.nuget.org/packages/Discord.Net.Rest/)
  13. - [Discord.Net.Rpc](https://www.nuget.org/packages/Discord.Net.Rpc/)
  14. - [Discord.Net.WebSocket](https://www.nuget.org/packages/Discord.Net.WebSocket/)
  15. - [Discord.Net.Commands](https://www.nuget.org/packages/Discord.Net.Commands/)
  16. The following providers are available for platforms not supporting .NET Standard 1.3:
  17. - [Discord.Net.Providers.UdpClient](https://www.nuget.org/packages/Discord.Net.Providers.UdpClient/)
  18. - [Discord.Net.Providers.WS4Net](https://www.nuget.org/packages/Discord.Net.Providers.WS4Net/)
  19. ### Unstable (MyGet)
  20. Nightly builds are available through our MyGet feed (`https://www.myget.org/F/discord-net/api/v3/index.json`).
  21. ## Compiling
  22. In order to compile Discord.Net, you require the following:
  23. ### Using Visual Studio
  24. - [Visual Studio 2017 RC](https://www.microsoft.com/net/core#windowsvs2017)
  25. - [.NET Core SDK 1.0 RC3](https://github.com/dotnet/core/blob/master/release-notes/rc3-download.md)
  26. The .NET Core and Docker (Preview) workload is required during Visual Studio installation.
  27. ### Using Command Line
  28. - [.NET Core SDK 1.0 RC3](https://github.com/dotnet/core/blob/master/release-notes/rc3-download.md)
  29. ## Known Issues
  30. ### WebSockets (Win7 and earlier)
  31. .NET Core 1.1 does not support WebSockets on Win7 and earlier. It's recommended to use the Discord.Net.Providers.WS4Net package until this is resolved.
  32. Track the issue [here](https://github.com/dotnet/corefx/issues/9503).