Browse Source

Merge branch 'Interactions' of https://github.com/Discord-Net-Labs/Discord.Net-Labs into Interactions

pull/1923/head
quin lynch 4 years ago
parent
commit
7aea7c2cbe
2 changed files with 12 additions and 1 deletions
  1. +11
    -0
      README.md
  2. +1
    -1
      docs/guides/commands/application-commands.md

+ 11
- 0
README.md View File

@@ -1,6 +1,17 @@
# Discord.Net Labs
[![NuGet](https://img.shields.io/nuget/vpre/Discord.Net.Labs.svg?maxAge=2592000?style=plastic)](https://www.nuget.org/packages/Discord.Net.Labs)

This repo is a custom fork of Discord.Net that introduces the newest features of discord for testing and experimenting. Nothing here is guaranteed to work but you are more than welcome to submit bugs in the issues tabs

## Known issues
Labs will not work with Playwo's [InteractivityAddon](https://github.com/Playwo/Discord.InteractivityAddon). The reason is that his package depends on the base discord.net lib, you can get around this by cloning his repo and building it with discord.net labs instead of discord.net.

## How to use
Setting up labs in your project is really simple, here's how to do it:
1) Remove Discord.Net from your project
2) Add Discord.Net Labs nuget to your project
3) Enjoy!

## Branches
### Dev
The main branch we pull off of to introduce new features into, the dev branch is the same as Discord.Nets dev branch


+ 1
- 1
docs/guides/commands/application-commands.md View File

@@ -38,7 +38,7 @@ private async Task RegisterCommands()
{
new ApplicationCommandOptionProperties()
{
Name = "Example option",
Name = "example_option",
Required = false,
Description = "Option Description",
Type = Discord.ApplicationCommandOptionType.String,


Loading…
Cancel
Save