|
12345678910111213141516171819202122232425262728293031323334353637383940 |
- # Discord.Net
- [](https://www.nuget.org/packages/Discord.Net)
- [](https://www.myget.org/feed/Packages/discord-net)
- [](https://ci.appveyor.com/project/RogueException/discord-net/branch/dev)
- [](https://discord.gg/jkrBmQR)
-
- An unofficial .NET API Wrapper for the Discord client (http://discordapp.com).
-
- Check out the [documentation](https://discord.foxbot.me/docs/) or join the [Discord API Chat](https://discord.gg/jkrBmQR).
-
- ## Installation
- ### Stable (NuGet)
- Our stable builds available from NuGet through the Discord.Net metapackage:
- - [Discord.Net](https://www.nuget.org/packages/Discord.Net/)
-
- The individual components may also be installed from NuGet:
- - [Discord.Net.Commands](https://www.nuget.org/packages/Discord.Net.Commands/)
- - [Discord.Net.Rest](https://www.nuget.org/packages/Discord.Net.Rest/)
- - [Discord.Net.WebSocket](https://www.nuget.org/packages/Discord.Net.WebSocket/)
- - [Discord.Net.Webhook](https://www.nuget.org/packages/Discord.Net.Webhook/)
-
- ### Unstable (MyGet)
- Nightly builds are available through our MyGet feed (`https://www.myget.org/F/discord-net/api/v3/index.json`).
-
- ## Compiling
- In order to compile Discord.Net, you require the following:
-
- ### Using Visual Studio
- - [Visual Studio 2017](https://www.microsoft.com/net/core#windowsvs2017)
- - [.NET Core SDK](https://www.microsoft.com/net/download/core)
-
- The .NET Core workload must be selected during Visual Studio installation.
-
- ### Using Command Line
- - [.NET Core SDK](https://www.microsoft.com/net/download/core)
-
- ## Known Issues
-
- ### WebSockets (Win7 and earlier)
- .NET Core 1.1 does not support WebSockets on Win7 and earlier. This issue has been fixed since the release of .NET Core 2.1; it is recommended to target .NET Core 2.1 or above if you wish to run your bot on legacy platforms.
|