├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .nuget └── NuGet.config ├── .vscode ├── launch.json └── tasks.json ├── BUILDING.md ├── CONTRIBUTING.md ├── DSharpPlus.CommandsNext ├── Attributes │ ├── AliasesAttribute.cs │ ├── CheckBaseAttribute.cs │ ├── CommandAttribute.cs │ ├── CooldownAttribute.cs │ ├── DescriptionAttribute.cs │ ├── DontInjectAttribute.cs │ ├── GroupAttribute.cs │ ├── HiddenAttribute.cs │ ├── ModuleLifespanAttribute.cs │ ├── PriorityAttribute.cs │ ├── RemainingTextAttribute.cs │ ├── RequireBotPermissionsAttribute.cs │ ├── RequireDirectMessageAttribute.cs │ ├── RequireGuildAttribute.cs │ ├── RequireNsfwAttribute.cs │ ├── RequireOwnerAttribute.cs │ ├── RequirePermissionsAttribute.cs │ ├── RequirePrefixesAttribute.cs │ ├── RequireRolesAttribute.cs │ └── RequireUserPermissionsAttribute.cs ├── BaseCommandModule.cs ├── CommandsNextConfiguration.cs ├── CommandsNextEvents.cs ├── CommandsNextExtension.cs ├── CommandsNextUtilities.cs ├── Converters │ ├── ArgumentBindingResult.cs │ ├── BaseHelpFormatter.cs │ ├── DefaultHelpFormatter.cs │ ├── EntityConverters.cs │ ├── EnumConverter.cs │ ├── HelpFormatterFactory.cs │ ├── IArgumentConverter.cs │ ├── NullableConverter.cs │ ├── NumericConverters.cs │ ├── StringConverter.cs │ └── TimeConverters.cs ├── DSharpPlus.CommandsNext.csproj ├── Entities │ ├── Builders │ │ ├── CommandBuilder.cs │ │ ├── CommandGroupBuilder.cs │ │ ├── CommandModuleBuilder.cs │ │ └── CommandOverloadBuilder.cs │ ├── Command.cs │ ├── CommandArgument.cs │ ├── CommandGroup.cs │ ├── CommandHelpMessage.cs │ ├── CommandModule.cs │ ├── CommandOverload.cs │ └── CommandResult.cs ├── EventArgs │ ├── CommandContext.cs │ ├── CommandErrorEventArgs.cs │ ├── CommandEventArgs.cs │ └── CommandExecutionEventArgs.cs ├── Exceptions │ ├── ChecksFailedException.cs │ ├── CommandNotFoundException.cs │ ├── DuplicateCommandException.cs │ ├── DuplicateOverloadException.cs │ └── InvalidOverloadException.cs └── ExtensionMethods.cs ├── DSharpPlus.Interactivity ├── DSharpPlus.Interactivity.csproj ├── Enums │ ├── PaginationBehaviour.cs │ ├── PaginationDeletion.cs │ ├── PollBehaviour.cs │ └── SplitType.cs ├── EventHandling │ ├── EventWaiter.cs │ ├── Paginator.cs │ ├── Poller.cs │ ├── ReactionCollector.cs │ └── Requests │ │ ├── CollectRequest.cs │ │ ├── IPaginationRequest.cs │ │ ├── MatchRequest.cs │ │ ├── PaginationRequest.cs │ │ └── PollRequest.cs ├── Extensions │ ├── ChannelExtensions.cs │ ├── ClientExtensions.cs │ └── MessageExtensions.cs ├── InteractivityConfiguration.cs ├── InteractivityEvents.cs ├── InteractivityExtension.cs └── InteractivityResult.cs ├── DSharpPlus.Lavalink ├── DSharpPlus.Lavalink.csproj ├── DiscordClientExtensions.cs ├── Entities │ ├── LavalinkCommands.cs │ ├── LavalinkDispatch.cs │ ├── LavalinkEqualizerTypes.cs │ ├── LavalinkPayload.cs │ ├── LavalinkRouteStatus.cs │ ├── LavalinkUpdates.cs │ ├── LavalinkVoiceServerUpdate.cs │ └── LavalinkVoiceStateUpdatePayload.cs ├── Enums │ ├── LavalinkRoutePlannerType.cs │ └── LavalinkSearchType.cs ├── EventArgs │ ├── NodeDisconnectedEventArgs.cs │ ├── PlayerUpdateEventArgs.cs │ ├── StatisticsReceivedEventArgs.cs │ ├── TrackEventArgs.cs │ └── WebSocketCloseEventArgs.cs ├── LavalinkConfiguration.cs ├── LavalinkEvents.cs ├── LavalinkExtension.cs ├── LavalinkGuildConnection.cs ├── LavalinkNodeConnection.cs ├── LavalinkRestClient.cs ├── LavalinkRestEndpoints.cs ├── LavalinkTrack.cs └── LavalinkUtil.cs ├── DSharpPlus.MSTest ├── DSharpPlus.MSTest.csproj └── TestJson.cs ├── DSharpPlus.Rest ├── DSharpPlus.Rest.csproj └── DiscordRestClient.cs ├── DSharpPlus.SlashCommands ├── Attributes │ ├── ChoiceAttribute.cs │ ├── SlashCommandAttribute.cs │ ├── SlashCommandGroupAttribute.cs │ └── SlashOptionAttribute.cs ├── DSharpPlus.SlashCommands.csproj ├── Entities │ └── DiscordInteractionBuilder.cs ├── Enums │ ├── DiscordInteractionResponseType.cs │ └── InteractionFlags.cs ├── EventArgs │ ├── SlashCommandErrorEventArgs.cs │ ├── SlashCommandEventArgs.cs │ └── SlashCommandExecutedEventArgs.cs ├── Exceptions │ └── SlashCommandNotFoundException.cs ├── ExtensionMethods.cs ├── InteractionContext.cs ├── SlashCommandModule.cs └── SlashCommandsExtension.cs ├── DSharpPlus.Test ├── ADumbFile.txt ├── BeeMovie.cs ├── DSharpPlus.Test.csproj ├── PermissionInheritanceCommands.cs ├── Program.cs ├── Reply.cs ├── TestBot.cs ├── TestBotCommands.cs ├── TestBotConfig.cs ├── TestBotDynamicCommands.cs ├── TestBotEvalCommands.cs ├── TestBotHelpFormatter.cs ├── TestBotLavaCommands.cs ├── TestBotPaginator.cs └── TestBotVoiceCommands.cs ├── DSharpPlus.VoiceNext ├── AudioFormat.cs ├── Codec │ ├── Helpers.cs │ ├── Interop.cs │ ├── Opus.cs │ ├── Rtp.cs │ └── Sodium.cs ├── DSharpPlus.VoiceNext.csproj ├── DiscordClientExtensions.cs ├── Entities │ ├── AudioSender.cs │ ├── VoiceDispatch.cs │ ├── VoiceIdentifyPayload.cs │ ├── VoicePacket.cs │ ├── VoiceReadyPayload.cs │ ├── VoiceSelectProtocolPayload.cs │ ├── VoiceSelectProtocolPayloadData.cs │ ├── VoiceServerUpdatePayload.cs │ ├── VoiceSessionDescriptionPayload.cs │ ├── VoiceSpeakingPayload.cs │ ├── VoiceStateUpdatePayload.cs │ ├── VoiceUserJoinPayload.cs │ └── VoiceUserLeavePayload.cs ├── EventArgs │ ├── VoiceReceiveEventArgs.cs │ ├── VoiceUserJoinEventArgs.cs │ └── VoiceUserLeaveEventArgs.cs ├── IVoiceFilter.cs ├── RawVoicePacket.cs ├── StreamExtensions.cs ├── VoiceApplication.cs ├── VoiceNextConfiguration.cs ├── VoiceNextConnection.cs ├── VoiceNextEvents.cs ├── VoiceNextExtension.cs └── VoiceTransmitSink.cs ├── DSharpPlus.sln ├── DSharpPlus.targets ├── DSharpPlus ├── AsyncManualResetEvent.cs ├── BaseExtension.cs ├── Clients │ ├── BaseDiscordClient.cs │ ├── DiscordClient.Dispatch.cs │ ├── DiscordClient.Events.cs │ ├── DiscordClient.WebSocket.cs │ ├── DiscordClient.cs │ ├── DiscordShardedClient.Events.cs │ ├── DiscordShardedClient.cs │ └── DiscordWebhookClient.cs ├── DSharpPlus.csproj ├── DiscordConfiguration.cs ├── DiscordIntents.cs ├── Entities │ ├── Channel │ │ ├── DiscordChannel.cs │ │ ├── DiscordDmChannel.cs │ │ ├── DiscordFollowedChannel.cs │ │ ├── Message │ │ │ ├── DiscordAttachment.cs │ │ │ ├── DiscordMentions.cs │ │ │ ├── DiscordMessage.cs │ │ │ ├── DiscordMessageActivity.cs │ │ │ ├── DiscordMessageApplication.cs │ │ │ ├── DiscordMessageBuilder.cs │ │ │ ├── DiscordMessageFile.cs │ │ │ ├── DiscordMessageReference.cs │ │ │ ├── DiscordMessageSticker.cs │ │ │ ├── DiscordReaction.cs │ │ │ ├── Embed │ │ │ │ ├── DiscordEmbed.cs │ │ │ │ ├── DiscordEmbedAuthor.cs │ │ │ │ ├── DiscordEmbedBuilder.cs │ │ │ │ ├── DiscordEmbedField.cs │ │ │ │ ├── DiscordEmbedFooter.cs │ │ │ │ ├── DiscordEmbedImage.cs │ │ │ │ ├── DiscordEmbedProvider.cs │ │ │ │ ├── DiscordEmbedThumbnail.cs │ │ │ │ └── DiscordEmbedVideo.cs │ │ │ └── Mentions.cs │ │ └── Overwrite │ │ │ ├── DiscordOverwrite.cs │ │ │ └── DiscordOverwriteBuilder.cs │ ├── Color │ │ ├── DiscordColor.Colors.cs │ │ └── DiscordColor.cs │ ├── DiscordApplication.cs │ ├── DiscordAuditLogObjects.cs │ ├── DiscordConnection.cs │ ├── DiscordTeam.cs │ ├── DiscordUri.cs │ ├── Emoji │ │ ├── DiscordEmoji.EmojiUtils.cs │ │ └── DiscordEmoji.cs │ ├── Guild │ │ ├── DiscordBan.cs │ │ ├── DiscordGuild.cs │ │ ├── DiscordGuildEmbed.cs │ │ ├── DiscordGuildEmoji.cs │ │ ├── DiscordGuildMembershipScreening.cs │ │ ├── DiscordGuildMembershipScreeningField.cs │ │ ├── DiscordGuildPreview.cs │ │ ├── DiscordGuildTemplate.cs │ │ ├── DiscordGuildWelcomeScreen.cs │ │ ├── DiscordGuildWelcomeScreenChannel.cs │ │ ├── DiscordMember.cs │ │ ├── DiscordRole.cs │ │ └── Widget │ │ │ ├── DiscordWidget.cs │ │ │ ├── DiscordWidgetMember.cs │ │ │ └── DiscordWidgetSettings.cs │ ├── Integration │ │ ├── DiscordIntegration.cs │ │ └── DiscordIntegrationAccount.cs │ ├── Interaction │ │ ├── Application │ │ │ ├── DiscordApplicationCommand.cs │ │ │ ├── DiscordApplicationCommandOption.cs │ │ │ └── DiscordApplicationCommandOptionChoice.cs │ │ ├── DiscordInteraction.cs │ │ ├── DiscordInteractionData.cs │ │ ├── DiscordInteractionDataOption.cs │ │ └── DiscordInteractionResolvedCollection.cs │ ├── Invite │ │ ├── DiscordInvite.cs │ │ ├── DiscordInviteChannel.cs │ │ └── DiscordInviteGuild.cs │ ├── Optional.cs │ ├── SnowflakeObject.cs │ ├── User │ │ ├── DiscordActivity.cs │ │ ├── DiscordPresence.cs │ │ └── DiscordUser.cs │ ├── Voice │ │ ├── DiscordVoiceRegion.cs │ │ └── DiscordVoiceState.cs │ └── Webhook │ │ ├── DiscordWebhook.cs │ │ └── DiscordWebhookBuilder.cs ├── Enums │ ├── ApplicationCommandOptionType.cs │ ├── Channel │ │ ├── ChannelType.cs │ │ ├── OverwriteType.cs │ │ └── SystemChannelFlags.cs │ ├── GatewayCompressionLevel.cs │ ├── Guild │ │ ├── MembershipScreeningFieldType.cs │ │ └── PremiumTier.cs │ ├── InteractionType.cs │ ├── Message │ │ ├── MentionType.cs │ │ ├── MessageActivityType.cs │ │ ├── MessageFlags.cs │ │ └── MessageType.cs │ ├── Permission.cs │ ├── TokenType.cs │ └── User │ │ ├── PremiumType.cs │ │ ├── TargetUserType.cs │ │ └── UserFlags.cs ├── EventArgs │ ├── ApplicationCommandEventArgs.cs │ ├── Channel │ │ ├── ChannelCreateEventArgs.cs │ │ ├── ChannelDeleteEventArgs.cs │ │ ├── ChannelPinsUpdateEventArgs.cs │ │ ├── ChannelUpdateEventArgs.cs │ │ └── DMChannelDeleteEventArgs.cs │ ├── ClientErrorEventArgs.cs │ ├── DiscordEventArgs.cs │ ├── Guild │ │ ├── Ban │ │ │ ├── GuildBanAddEventArgs.cs │ │ │ └── GuildBanRemoveEventArgs.cs │ │ ├── GuildCreateEventArgs.cs │ │ ├── GuildDeleteEventArgs.cs │ │ ├── GuildDownloadCompletedEventArgs.cs │ │ ├── GuildEmojisUpdateEventArgs.cs │ │ ├── GuildIntegrationsUpdateEventArgs.cs │ │ ├── GuildUpdateEventArgs.cs │ │ ├── Member │ │ │ ├── GuildMemberAddEventArgs.cs │ │ │ ├── GuildMemberRemoveEventArgs.cs │ │ │ ├── GuildMemberUpdateEventArgs.cs │ │ │ └── GuildMembersChunkEventArgs.cs │ │ └── Role │ │ │ ├── GuildRoleCreateEventArgs.cs │ │ │ ├── GuildRoleDeleteEventArgs.cs │ │ │ └── GuildRoleUpdateEventArgs.cs │ ├── HeartBeatEventArgs.cs │ ├── InteractionCreateEventArgs.cs │ ├── Invite │ │ ├── InviteCreateEventArgs.cs │ │ └── InviteDeleteEventArgs.cs │ ├── Message │ │ ├── MessageAcknowledgeEventArgs.cs │ │ ├── MessageBulkDeleteEventArgs.cs │ │ ├── MessageCreateEventArgs.cs │ │ ├── MessageDeleteEventArgs.cs │ │ ├── MessageUpdateEventArgs.cs │ │ └── Reaction │ │ │ ├── MessageReactionAddEventArgs.cs │ │ │ ├── MessageReactionRemoveEmojiEventArgs.cs │ │ │ ├── MessageReactionRemoveEventArgs.cs │ │ │ └── MessageReactionsClearEventArgs.cs │ ├── ReadyEventArgs.cs │ ├── Socket │ │ ├── SocketDisconnectEventArgs.cs │ │ ├── SocketEventArgs.cs │ │ └── WebSocketMessageEventArgs.cs │ ├── TypingStartEventArgs.cs │ ├── UnknownEventArgs.cs │ ├── User │ │ ├── PresenceUpdateEventArgs.cs │ │ ├── UserSettingsUpdateEventArgs.cs │ │ ├── UserSpeakingEventArgs.cs │ │ └── UserUpdateEventArgs.cs │ ├── Voice │ │ ├── VoiceServerUpdateEventArgs.cs │ │ └── VoiceStateUpdateEventArgs.cs │ └── WebhooksUpdateEventArgs.cs ├── Exceptions │ ├── BadRequestException.cs │ ├── NotFoundException.cs │ ├── RateLimitException.cs │ ├── RequestSizeException.cs │ ├── ServerErrorException.cs │ └── UnauthorizedException.cs ├── Formatter.cs ├── ImageTool.cs ├── Logging │ ├── CompositeDefaultLogger.cs │ ├── DefaultLogger.cs │ ├── DefaultLoggerFactory.cs │ ├── DefaultLoggerProvider.cs │ ├── LoggerEvents.cs │ └── ShardedLoggerFactory.cs ├── Net │ ├── Abstractions │ │ ├── AuditLogAbstractions.cs │ │ ├── ClientProperties.cs │ │ ├── FollowedChannelAddPayload.cs │ │ ├── Gateway │ │ │ ├── GatewayHello.cs │ │ │ ├── GatewayIdentifyResume.cs │ │ │ ├── GatewayInfo.cs │ │ │ ├── GatewayOpCode.cs │ │ │ ├── GatewayPayload.cs │ │ │ └── GatewayRequestGuildMembers.cs │ │ ├── IOAuth2Payload.cs │ │ ├── ReadyPayload.cs │ │ ├── Rest │ │ │ ├── RestChannelPayloads.cs │ │ │ ├── RestGuildPayloads.cs │ │ │ ├── RestUserPayloads.cs │ │ │ └── RestWebhookPayloads.cs │ │ ├── ShardInfo.cs │ │ ├── StatusUpdate.cs │ │ ├── Transport │ │ │ ├── TransportActivity.cs │ │ │ ├── TransportApplication.cs │ │ │ ├── TransportMember.cs │ │ │ ├── TransportTeam.cs │ │ │ └── TransportUser.cs │ │ └── VoiceStateUpdate.cs │ ├── ConnectionEndpoint.cs │ ├── Models │ │ ├── BaseEditModel.cs │ │ ├── ChannelEditModel.cs │ │ ├── GuildEditModel.cs │ │ ├── MemberEditModel.cs │ │ ├── MembershipScreeningEditModel.cs │ │ └── RoleEditModel.cs │ ├── Rest │ │ ├── BaseRestRequest.cs │ │ ├── DiscordApiClient.cs │ │ ├── Endpoints.cs │ │ ├── IpEndpoint.cs │ │ ├── MultipartWebRequest.cs │ │ ├── RateLimitBucket.cs │ │ ├── RestClient.cs │ │ ├── RestRequest.cs │ │ ├── RestRequestMethod.cs │ │ ├── RestResponse.cs │ │ └── SessionBucket.cs │ ├── Serialization │ │ ├── DiscordJson.cs │ │ └── SnowflakeArrayAsDictionaryJsonConverter.cs │ ├── Udp │ │ ├── BaseUdpClient.cs │ │ └── DspUdpClient.cs │ └── WebSocket │ │ ├── IWebSocketClient.cs │ │ ├── PayloadDecompressor.cs │ │ ├── SocketLock.cs │ │ └── WebSocketClient.cs ├── Properties │ └── AssemblyProperties.cs ├── QueryUriBuilder.cs ├── ReadOnlyConcurrentDictionary.cs ├── ReadOnlySet.cs ├── RingBuffer.cs └── Utilities.cs ├── DiscordSharp.LICENSE ├── LICENSE ├── README.md ├── appveyor.yml ├── docs ├── .gitignore ├── api │ ├── .gitignore │ └── index.md ├── articles │ ├── audio │ │ ├── lavalink │ │ │ ├── configuration.md │ │ │ ├── music_commands.md │ │ │ └── setup.md │ │ └── voicenext │ │ │ ├── prerequisites.md │ │ │ ├── receive.md │ │ │ └── transmit.md │ ├── basics │ │ ├── bot_account.md │ │ └── first_bot.md │ ├── beyond_basics │ │ ├── events.md │ │ ├── intents.md │ │ ├── logging │ │ │ ├── default.md │ │ │ └── third_party.md │ │ ├── messagebuilder.md │ │ └── sharding.md │ ├── commands │ │ ├── argument_converters.md │ │ ├── command_attributes.md │ │ ├── command_handler.md │ │ ├── dependency_injection.md │ │ ├── help_formatter.md │ │ └── intro.md │ ├── hosting.md │ ├── interactivity.md │ ├── migration │ │ ├── 2x_to_3x.md │ │ ├── 3x_to_4x.md │ │ └── dsharp.md │ ├── misc │ │ ├── debug_symbols.md │ │ ├── nightly_builds.md │ │ └── reporting_issues.md │ ├── preamble.md │ └── toc.yml ├── build.bat ├── docfx.json ├── dsplus │ ├── ManagedReference.common.js │ ├── ManagedReference.extension.js │ ├── ManagedReference.html.primary.js │ ├── ManagedReference.html.primary.tmpl │ ├── RestApi.common.js │ ├── RestApi.extension.js │ ├── RestApi.html.primary.js │ ├── RestApi.html.primary.tmpl │ ├── common.js │ ├── conceptual.extension.js │ ├── conceptual.html.primary.js │ ├── conceptual.html.primary.tmpl │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── layout │ │ └── _master.tmpl │ ├── logo.png │ ├── logobig.png │ ├── partials │ │ ├── _affix.liquid │ │ ├── _breadcrumb.liquid │ │ ├── _footer.liquid │ │ ├── _head.liquid │ │ ├── _logo.liquid │ │ ├── _navbar.liquid │ │ ├── _scripts.liquid │ │ ├── _toc.liquid │ │ ├── affix.tmpl.partial │ │ ├── breadcrumb.tmpl.partial │ │ ├── class.header.tmpl.partial │ │ ├── class.tmpl.partial │ │ ├── classSubtitle.tmpl.partial │ │ ├── customMREFContent.tmpl.partial │ │ ├── enum.tmpl.partial │ │ ├── footer.tmpl.partial │ │ ├── head.tmpl.partial │ │ ├── li.tmpl.partial │ │ ├── logo.tmpl.partial │ │ ├── namespace.tmpl.partial │ │ ├── namespaceSubtitle.tmpl.partial │ │ ├── navbar.tmpl.partial │ │ ├── rest.child.tmpl.partial │ │ ├── rest.tmpl.partial │ │ ├── scripts.tmpl.partial │ │ ├── searchResults.tmpl.partial │ │ ├── title.tmpl.partial │ │ └── toc.tmpl.partial │ ├── plugins │ │ ├── CsQuery.dll │ │ ├── HSNXT.DocFx.CustomMemberIndexer.dll │ │ ├── LICENSE.CsQuery.txt │ │ └── LICENSE.DocFX.txt │ ├── search-stopwords.json │ ├── styles │ │ ├── docfx.css │ │ ├── docfx.js │ │ ├── docfx.vendor.css │ │ ├── docfx.vendor.js │ │ ├── lunr.min.js │ │ ├── main.css │ │ ├── main.js │ │ └── search-worker.js │ ├── toc.extension.js │ ├── toc.html.js │ ├── toc.html.tmpl │ └── token.json ├── faq.md ├── filter_config.yml ├── images │ ├── Intents.png │ ├── basics_bot_account_01.png │ ├── basics_bot_account_02.png │ ├── basics_bot_account_03.png │ ├── basics_bot_account_04.png │ ├── basics_bot_account_05.png │ ├── basics_bot_account_06.png │ ├── basics_bot_account_07.png │ ├── basics_bot_account_08.png │ ├── basics_bot_account_09.png │ ├── basics_first_bot_01.png │ ├── basics_first_bot_02.png │ ├── basics_first_bot_03.png │ ├── basics_first_bot_04.png │ ├── basics_first_bot_05.png │ ├── basics_first_bot_06.png │ ├── basics_first_bot_07.png │ ├── basics_first_bot_08.png │ ├── basics_first_bot_09.png │ ├── basics_first_bot_10.png │ ├── basics_first_bot_11.png │ ├── basics_first_bot_12.png │ ├── basics_first_bot_13.png │ ├── beyond_basics_logging_default_01.png │ ├── beyond_basics_logging_default_02.png │ ├── beyond_basics_logging_default_03.png │ ├── beyond_basics_logging_third_party_01.png │ ├── beyond_basics_logging_user_01.png │ ├── beyond_basics_logging_user_02.png │ ├── beyond_basics_logging_user_03.png │ ├── beyond_basics_logging_user_04.png │ ├── beyond_basics_logging_user_05.png │ ├── beyond_basics_logging_user_06.png │ ├── commands_argument_converters_01.png │ ├── commands_command_attributes_01.png │ ├── commands_dependency_injection_01.png │ ├── commands_help_formatter_01.png │ ├── commands_help_formatter_02.png │ ├── commands_intro_01.png │ ├── commands_intro_02.png │ ├── commands_intro_03.png │ ├── commands_intro_04.png │ ├── commands_intro_05.png │ ├── commands_intro_06.png │ ├── commands_intro_07.png │ ├── commands_intro_08.png │ ├── faq_01.png │ ├── faq_02.png │ ├── faq_03.png │ ├── interactivity_01.png │ ├── interactivity_02.png │ ├── interactivity_03.png │ ├── interactivity_04.png │ ├── interactivity_05.png │ ├── voicenext_receive_01.png │ └── voicenext_transmit_01.png ├── index.md ├── natives │ └── index.md └── toc.yml ├── logo ├── d#+.png ├── d#+.psd ├── d#+_smaller.png ├── ds+.png ├── ds+.psd ├── ds+_smaller.png ├── dsharp+.png ├── dsharp+.psd ├── dsharp+_smaller.png └── dsharpplus.png ├── oneclick-rebuild.ps1 ├── rebuild-all.ps1 ├── rebuild-docs.ps1 ├── rebuild-lib.ps1 └── rebuild-micro.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/.nuget/NuGet.config -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/AliasesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/AliasesAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/CheckBaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/CheckBaseAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/CommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/CommandAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/CooldownAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/CooldownAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/DescriptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/DescriptionAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/DontInjectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/DontInjectAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/GroupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/GroupAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/HiddenAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/HiddenAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/ModuleLifespanAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/ModuleLifespanAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/PriorityAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/PriorityAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/RemainingTextAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/RemainingTextAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/RequireBotPermissionsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/RequireBotPermissionsAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/RequireDirectMessageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/RequireDirectMessageAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/RequireGuildAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/RequireGuildAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/RequireNsfwAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/RequireNsfwAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/RequireOwnerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/RequireOwnerAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/RequirePermissionsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/RequirePermissionsAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/RequirePrefixesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/RequirePrefixesAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/RequireRolesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/RequireRolesAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Attributes/RequireUserPermissionsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Attributes/RequireUserPermissionsAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/BaseCommandModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/BaseCommandModule.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/CommandsNextConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/CommandsNextConfiguration.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/CommandsNextEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/CommandsNextEvents.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/CommandsNextExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/CommandsNextExtension.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/CommandsNextUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/CommandsNextUtilities.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Converters/ArgumentBindingResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Converters/ArgumentBindingResult.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Converters/BaseHelpFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Converters/BaseHelpFormatter.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Converters/DefaultHelpFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Converters/DefaultHelpFormatter.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Converters/EntityConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Converters/EntityConverters.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Converters/EnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Converters/EnumConverter.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Converters/HelpFormatterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Converters/HelpFormatterFactory.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Converters/IArgumentConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Converters/IArgumentConverter.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Converters/NullableConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Converters/NullableConverter.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Converters/NumericConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Converters/NumericConverters.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Converters/StringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Converters/StringConverter.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Converters/TimeConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Converters/TimeConverters.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/DSharpPlus.CommandsNext.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/DSharpPlus.CommandsNext.csproj -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Entities/Builders/CommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Entities/Builders/CommandBuilder.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Entities/Builders/CommandGroupBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Entities/Builders/CommandGroupBuilder.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Entities/Builders/CommandModuleBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Entities/Builders/CommandModuleBuilder.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Entities/Builders/CommandOverloadBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Entities/Builders/CommandOverloadBuilder.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Entities/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Entities/Command.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Entities/CommandArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Entities/CommandArgument.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Entities/CommandGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Entities/CommandGroup.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Entities/CommandHelpMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Entities/CommandHelpMessage.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Entities/CommandModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Entities/CommandModule.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Entities/CommandOverload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Entities/CommandOverload.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Entities/CommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Entities/CommandResult.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/EventArgs/CommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/EventArgs/CommandContext.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/EventArgs/CommandErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/EventArgs/CommandErrorEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/EventArgs/CommandEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/EventArgs/CommandEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/EventArgs/CommandExecutionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/EventArgs/CommandExecutionEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Exceptions/ChecksFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Exceptions/ChecksFailedException.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Exceptions/CommandNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Exceptions/CommandNotFoundException.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Exceptions/DuplicateCommandException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Exceptions/DuplicateCommandException.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Exceptions/DuplicateOverloadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Exceptions/DuplicateOverloadException.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/Exceptions/InvalidOverloadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/Exceptions/InvalidOverloadException.cs -------------------------------------------------------------------------------- /DSharpPlus.CommandsNext/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.CommandsNext/ExtensionMethods.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/DSharpPlus.Interactivity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/DSharpPlus.Interactivity.csproj -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/Enums/PaginationBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/Enums/PaginationBehaviour.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/Enums/PaginationDeletion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/Enums/PaginationDeletion.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/Enums/PollBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/Enums/PollBehaviour.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/Enums/SplitType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/Enums/SplitType.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/EventHandling/EventWaiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/EventHandling/EventWaiter.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/EventHandling/Paginator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/EventHandling/Paginator.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/EventHandling/Poller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/EventHandling/Poller.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/EventHandling/ReactionCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/EventHandling/ReactionCollector.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/EventHandling/Requests/CollectRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/EventHandling/Requests/CollectRequest.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/EventHandling/Requests/IPaginationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/EventHandling/Requests/IPaginationRequest.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/EventHandling/Requests/MatchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/EventHandling/Requests/MatchRequest.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/EventHandling/Requests/PaginationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/EventHandling/Requests/PaginationRequest.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/EventHandling/Requests/PollRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/EventHandling/Requests/PollRequest.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/Extensions/ChannelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/Extensions/ChannelExtensions.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/Extensions/ClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/Extensions/ClientExtensions.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/Extensions/MessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/Extensions/MessageExtensions.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/InteractivityConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/InteractivityConfiguration.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/InteractivityEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/InteractivityEvents.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/InteractivityExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/InteractivityExtension.cs -------------------------------------------------------------------------------- /DSharpPlus.Interactivity/InteractivityResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Interactivity/InteractivityResult.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/DSharpPlus.Lavalink.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/DSharpPlus.Lavalink.csproj -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/DiscordClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/DiscordClientExtensions.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/Entities/LavalinkCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/Entities/LavalinkCommands.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/Entities/LavalinkDispatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/Entities/LavalinkDispatch.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/Entities/LavalinkEqualizerTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/Entities/LavalinkEqualizerTypes.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/Entities/LavalinkPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/Entities/LavalinkPayload.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/Entities/LavalinkRouteStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/Entities/LavalinkRouteStatus.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/Entities/LavalinkUpdates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/Entities/LavalinkUpdates.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/Entities/LavalinkVoiceServerUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/Entities/LavalinkVoiceServerUpdate.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/Entities/LavalinkVoiceStateUpdatePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/Entities/LavalinkVoiceStateUpdatePayload.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/Enums/LavalinkRoutePlannerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/Enums/LavalinkRoutePlannerType.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/Enums/LavalinkSearchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/Enums/LavalinkSearchType.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/EventArgs/NodeDisconnectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/EventArgs/NodeDisconnectedEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/EventArgs/PlayerUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/EventArgs/PlayerUpdateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/EventArgs/StatisticsReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/EventArgs/StatisticsReceivedEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/EventArgs/TrackEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/EventArgs/TrackEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/EventArgs/WebSocketCloseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/EventArgs/WebSocketCloseEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/LavalinkConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/LavalinkConfiguration.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/LavalinkEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/LavalinkEvents.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/LavalinkExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/LavalinkExtension.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/LavalinkGuildConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/LavalinkGuildConnection.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/LavalinkNodeConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/LavalinkNodeConnection.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/LavalinkRestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/LavalinkRestClient.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/LavalinkRestEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/LavalinkRestEndpoints.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/LavalinkTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/LavalinkTrack.cs -------------------------------------------------------------------------------- /DSharpPlus.Lavalink/LavalinkUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Lavalink/LavalinkUtil.cs -------------------------------------------------------------------------------- /DSharpPlus.MSTest/DSharpPlus.MSTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.MSTest/DSharpPlus.MSTest.csproj -------------------------------------------------------------------------------- /DSharpPlus.MSTest/TestJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.MSTest/TestJson.cs -------------------------------------------------------------------------------- /DSharpPlus.Rest/DSharpPlus.Rest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Rest/DSharpPlus.Rest.csproj -------------------------------------------------------------------------------- /DSharpPlus.Rest/DiscordRestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Rest/DiscordRestClient.cs -------------------------------------------------------------------------------- /DSharpPlus.SlashCommands/Attributes/ChoiceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.SlashCommands/Attributes/ChoiceAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.SlashCommands/Attributes/SlashCommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.SlashCommands/Attributes/SlashCommandAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.SlashCommands/Attributes/SlashCommandGroupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.SlashCommands/Attributes/SlashCommandGroupAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.SlashCommands/Attributes/SlashOptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.SlashCommands/Attributes/SlashOptionAttribute.cs -------------------------------------------------------------------------------- /DSharpPlus.SlashCommands/DSharpPlus.SlashCommands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.SlashCommands/DSharpPlus.SlashCommands.csproj -------------------------------------------------------------------------------- /DSharpPlus.SlashCommands/Entities/DiscordInteractionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.SlashCommands/Entities/DiscordInteractionBuilder.cs -------------------------------------------------------------------------------- /DSharpPlus.SlashCommands/Enums/DiscordInteractionResponseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.SlashCommands/Enums/DiscordInteractionResponseType.cs -------------------------------------------------------------------------------- /DSharpPlus.SlashCommands/Enums/InteractionFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.SlashCommands/Enums/InteractionFlags.cs -------------------------------------------------------------------------------- /DSharpPlus.SlashCommands/EventArgs/SlashCommandErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.SlashCommands/EventArgs/SlashCommandErrorEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus.SlashCommands/EventArgs/SlashCommandEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.SlashCommands/EventArgs/SlashCommandEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus.SlashCommands/EventArgs/SlashCommandExecutedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.SlashCommands/EventArgs/SlashCommandExecutedEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus.SlashCommands/Exceptions/SlashCommandNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.SlashCommands/Exceptions/SlashCommandNotFoundException.cs -------------------------------------------------------------------------------- /DSharpPlus.SlashCommands/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.SlashCommands/ExtensionMethods.cs -------------------------------------------------------------------------------- /DSharpPlus.SlashCommands/InteractionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.SlashCommands/InteractionContext.cs -------------------------------------------------------------------------------- /DSharpPlus.SlashCommands/SlashCommandModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.SlashCommands/SlashCommandModule.cs -------------------------------------------------------------------------------- /DSharpPlus.SlashCommands/SlashCommandsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.SlashCommands/SlashCommandsExtension.cs -------------------------------------------------------------------------------- /DSharpPlus.Test/ADumbFile.txt: -------------------------------------------------------------------------------- 1 | some dumb file. -------------------------------------------------------------------------------- /DSharpPlus.Test/BeeMovie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Test/BeeMovie.cs -------------------------------------------------------------------------------- /DSharpPlus.Test/DSharpPlus.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Test/DSharpPlus.Test.csproj -------------------------------------------------------------------------------- /DSharpPlus.Test/PermissionInheritanceCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Test/PermissionInheritanceCommands.cs -------------------------------------------------------------------------------- /DSharpPlus.Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Test/Program.cs -------------------------------------------------------------------------------- /DSharpPlus.Test/Reply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Test/Reply.cs -------------------------------------------------------------------------------- /DSharpPlus.Test/TestBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Test/TestBot.cs -------------------------------------------------------------------------------- /DSharpPlus.Test/TestBotCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Test/TestBotCommands.cs -------------------------------------------------------------------------------- /DSharpPlus.Test/TestBotConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Test/TestBotConfig.cs -------------------------------------------------------------------------------- /DSharpPlus.Test/TestBotDynamicCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Test/TestBotDynamicCommands.cs -------------------------------------------------------------------------------- /DSharpPlus.Test/TestBotEvalCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Test/TestBotEvalCommands.cs -------------------------------------------------------------------------------- /DSharpPlus.Test/TestBotHelpFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Test/TestBotHelpFormatter.cs -------------------------------------------------------------------------------- /DSharpPlus.Test/TestBotLavaCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Test/TestBotLavaCommands.cs -------------------------------------------------------------------------------- /DSharpPlus.Test/TestBotPaginator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Test/TestBotPaginator.cs -------------------------------------------------------------------------------- /DSharpPlus.Test/TestBotVoiceCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.Test/TestBotVoiceCommands.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/AudioFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/AudioFormat.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Codec/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Codec/Helpers.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Codec/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Codec/Interop.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Codec/Opus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Codec/Opus.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Codec/Rtp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Codec/Rtp.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Codec/Sodium.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Codec/Sodium.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/DSharpPlus.VoiceNext.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/DSharpPlus.VoiceNext.csproj -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/DiscordClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/DiscordClientExtensions.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Entities/AudioSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Entities/AudioSender.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Entities/VoiceDispatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Entities/VoiceDispatch.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Entities/VoiceIdentifyPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Entities/VoiceIdentifyPayload.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Entities/VoicePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Entities/VoicePacket.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Entities/VoiceReadyPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Entities/VoiceReadyPayload.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Entities/VoiceSelectProtocolPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Entities/VoiceSelectProtocolPayload.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Entities/VoiceSelectProtocolPayloadData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Entities/VoiceSelectProtocolPayloadData.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Entities/VoiceServerUpdatePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Entities/VoiceServerUpdatePayload.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Entities/VoiceSessionDescriptionPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Entities/VoiceSessionDescriptionPayload.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Entities/VoiceSpeakingPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Entities/VoiceSpeakingPayload.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Entities/VoiceStateUpdatePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Entities/VoiceStateUpdatePayload.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Entities/VoiceUserJoinPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Entities/VoiceUserJoinPayload.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/Entities/VoiceUserLeavePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/Entities/VoiceUserLeavePayload.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/EventArgs/VoiceReceiveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/EventArgs/VoiceReceiveEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/EventArgs/VoiceUserJoinEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/EventArgs/VoiceUserJoinEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/EventArgs/VoiceUserLeaveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/EventArgs/VoiceUserLeaveEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/IVoiceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/IVoiceFilter.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/RawVoicePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/RawVoicePacket.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/StreamExtensions.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/VoiceApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/VoiceApplication.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/VoiceNextConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/VoiceNextConfiguration.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/VoiceNextConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/VoiceNextConnection.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/VoiceNextEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/VoiceNextEvents.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/VoiceNextExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/VoiceNextExtension.cs -------------------------------------------------------------------------------- /DSharpPlus.VoiceNext/VoiceTransmitSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.VoiceNext/VoiceTransmitSink.cs -------------------------------------------------------------------------------- /DSharpPlus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.sln -------------------------------------------------------------------------------- /DSharpPlus.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus.targets -------------------------------------------------------------------------------- /DSharpPlus/AsyncManualResetEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/AsyncManualResetEvent.cs -------------------------------------------------------------------------------- /DSharpPlus/BaseExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/BaseExtension.cs -------------------------------------------------------------------------------- /DSharpPlus/Clients/BaseDiscordClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Clients/BaseDiscordClient.cs -------------------------------------------------------------------------------- /DSharpPlus/Clients/DiscordClient.Dispatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Clients/DiscordClient.Dispatch.cs -------------------------------------------------------------------------------- /DSharpPlus/Clients/DiscordClient.Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Clients/DiscordClient.Events.cs -------------------------------------------------------------------------------- /DSharpPlus/Clients/DiscordClient.WebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Clients/DiscordClient.WebSocket.cs -------------------------------------------------------------------------------- /DSharpPlus/Clients/DiscordClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Clients/DiscordClient.cs -------------------------------------------------------------------------------- /DSharpPlus/Clients/DiscordShardedClient.Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Clients/DiscordShardedClient.Events.cs -------------------------------------------------------------------------------- /DSharpPlus/Clients/DiscordShardedClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Clients/DiscordShardedClient.cs -------------------------------------------------------------------------------- /DSharpPlus/Clients/DiscordWebhookClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Clients/DiscordWebhookClient.cs -------------------------------------------------------------------------------- /DSharpPlus/DSharpPlus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/DSharpPlus.csproj -------------------------------------------------------------------------------- /DSharpPlus/DiscordConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/DiscordConfiguration.cs -------------------------------------------------------------------------------- /DSharpPlus/DiscordIntents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/DiscordIntents.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/DiscordChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/DiscordChannel.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/DiscordDmChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/DiscordDmChannel.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/DiscordFollowedChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/DiscordFollowedChannel.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/DiscordAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/DiscordAttachment.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/DiscordMentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/DiscordMentions.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/DiscordMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/DiscordMessage.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/DiscordMessageActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/DiscordMessageActivity.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/DiscordMessageApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/DiscordMessageApplication.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/DiscordMessageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/DiscordMessageBuilder.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/DiscordMessageFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/DiscordMessageFile.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/DiscordMessageReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/DiscordMessageReference.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/DiscordMessageSticker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/DiscordMessageSticker.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/DiscordReaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/DiscordReaction.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbed.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbedAuthor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbedAuthor.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbedBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbedBuilder.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbedField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbedField.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbedFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbedFooter.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbedImage.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbedProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbedProvider.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbedThumbnail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbedThumbnail.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbedVideo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/Embed/DiscordEmbedVideo.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Message/Mentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Message/Mentions.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Overwrite/DiscordOverwrite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Overwrite/DiscordOverwrite.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Channel/Overwrite/DiscordOverwriteBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Channel/Overwrite/DiscordOverwriteBuilder.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Color/DiscordColor.Colors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Color/DiscordColor.Colors.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Color/DiscordColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Color/DiscordColor.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/DiscordApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/DiscordApplication.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/DiscordAuditLogObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/DiscordAuditLogObjects.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/DiscordConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/DiscordConnection.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/DiscordTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/DiscordTeam.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/DiscordUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/DiscordUri.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Emoji/DiscordEmoji.EmojiUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Emoji/DiscordEmoji.EmojiUtils.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Emoji/DiscordEmoji.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Emoji/DiscordEmoji.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Guild/DiscordBan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Guild/DiscordBan.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Guild/DiscordGuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Guild/DiscordGuild.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Guild/DiscordGuildEmbed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Guild/DiscordGuildEmbed.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Guild/DiscordGuildEmoji.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Guild/DiscordGuildEmoji.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Guild/DiscordGuildMembershipScreening.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Guild/DiscordGuildMembershipScreening.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Guild/DiscordGuildMembershipScreeningField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Guild/DiscordGuildMembershipScreeningField.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Guild/DiscordGuildPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Guild/DiscordGuildPreview.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Guild/DiscordGuildTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Guild/DiscordGuildTemplate.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Guild/DiscordGuildWelcomeScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Guild/DiscordGuildWelcomeScreen.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Guild/DiscordGuildWelcomeScreenChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Guild/DiscordGuildWelcomeScreenChannel.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Guild/DiscordMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Guild/DiscordMember.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Guild/DiscordRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Guild/DiscordRole.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Guild/Widget/DiscordWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Guild/Widget/DiscordWidget.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Guild/Widget/DiscordWidgetMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Guild/Widget/DiscordWidgetMember.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Guild/Widget/DiscordWidgetSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Guild/Widget/DiscordWidgetSettings.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Integration/DiscordIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Integration/DiscordIntegration.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Integration/DiscordIntegrationAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Integration/DiscordIntegrationAccount.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Interaction/Application/DiscordApplicationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Interaction/Application/DiscordApplicationCommand.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Interaction/Application/DiscordApplicationCommandOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Interaction/Application/DiscordApplicationCommandOption.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Interaction/Application/DiscordApplicationCommandOptionChoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Interaction/Application/DiscordApplicationCommandOptionChoice.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Interaction/DiscordInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Interaction/DiscordInteraction.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Interaction/DiscordInteractionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Interaction/DiscordInteractionData.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Interaction/DiscordInteractionDataOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Interaction/DiscordInteractionDataOption.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Interaction/DiscordInteractionResolvedCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Interaction/DiscordInteractionResolvedCollection.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Invite/DiscordInvite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Invite/DiscordInvite.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Invite/DiscordInviteChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Invite/DiscordInviteChannel.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Invite/DiscordInviteGuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Invite/DiscordInviteGuild.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Optional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Optional.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/SnowflakeObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/SnowflakeObject.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/User/DiscordActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/User/DiscordActivity.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/User/DiscordPresence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/User/DiscordPresence.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/User/DiscordUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/User/DiscordUser.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Voice/DiscordVoiceRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Voice/DiscordVoiceRegion.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Voice/DiscordVoiceState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Voice/DiscordVoiceState.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Webhook/DiscordWebhook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Webhook/DiscordWebhook.cs -------------------------------------------------------------------------------- /DSharpPlus/Entities/Webhook/DiscordWebhookBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Entities/Webhook/DiscordWebhookBuilder.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/ApplicationCommandOptionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/ApplicationCommandOptionType.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/Channel/ChannelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/Channel/ChannelType.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/Channel/OverwriteType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/Channel/OverwriteType.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/Channel/SystemChannelFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/Channel/SystemChannelFlags.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/GatewayCompressionLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/GatewayCompressionLevel.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/Guild/MembershipScreeningFieldType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/Guild/MembershipScreeningFieldType.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/Guild/PremiumTier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/Guild/PremiumTier.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/InteractionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/InteractionType.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/Message/MentionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/Message/MentionType.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/Message/MessageActivityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/Message/MessageActivityType.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/Message/MessageFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/Message/MessageFlags.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/Message/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/Message/MessageType.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/Permission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/Permission.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/TokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/TokenType.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/User/PremiumType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/User/PremiumType.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/User/TargetUserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/User/TargetUserType.cs -------------------------------------------------------------------------------- /DSharpPlus/Enums/User/UserFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Enums/User/UserFlags.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/ApplicationCommandEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/ApplicationCommandEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Channel/ChannelCreateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Channel/ChannelCreateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Channel/ChannelDeleteEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Channel/ChannelDeleteEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Channel/ChannelPinsUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Channel/ChannelPinsUpdateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Channel/ChannelUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Channel/ChannelUpdateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Channel/DMChannelDeleteEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Channel/DMChannelDeleteEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/ClientErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/ClientErrorEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/DiscordEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/DiscordEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Guild/Ban/GuildBanAddEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Guild/Ban/GuildBanAddEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Guild/Ban/GuildBanRemoveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Guild/Ban/GuildBanRemoveEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Guild/GuildCreateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Guild/GuildCreateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Guild/GuildDeleteEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Guild/GuildDeleteEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Guild/GuildDownloadCompletedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Guild/GuildDownloadCompletedEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Guild/GuildEmojisUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Guild/GuildEmojisUpdateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Guild/GuildIntegrationsUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Guild/GuildIntegrationsUpdateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Guild/GuildUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Guild/GuildUpdateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Guild/Member/GuildMemberAddEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Guild/Member/GuildMemberAddEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Guild/Member/GuildMemberRemoveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Guild/Member/GuildMemberRemoveEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Guild/Member/GuildMemberUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Guild/Member/GuildMemberUpdateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Guild/Member/GuildMembersChunkEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Guild/Member/GuildMembersChunkEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Guild/Role/GuildRoleCreateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Guild/Role/GuildRoleCreateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Guild/Role/GuildRoleDeleteEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Guild/Role/GuildRoleDeleteEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Guild/Role/GuildRoleUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Guild/Role/GuildRoleUpdateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/HeartBeatEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/HeartBeatEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/InteractionCreateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/InteractionCreateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Invite/InviteCreateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Invite/InviteCreateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Invite/InviteDeleteEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Invite/InviteDeleteEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Message/MessageAcknowledgeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Message/MessageAcknowledgeEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Message/MessageBulkDeleteEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Message/MessageBulkDeleteEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Message/MessageCreateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Message/MessageCreateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Message/MessageDeleteEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Message/MessageDeleteEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Message/MessageUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Message/MessageUpdateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Message/Reaction/MessageReactionAddEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Message/Reaction/MessageReactionAddEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Message/Reaction/MessageReactionRemoveEmojiEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Message/Reaction/MessageReactionRemoveEmojiEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Message/Reaction/MessageReactionRemoveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Message/Reaction/MessageReactionRemoveEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Message/Reaction/MessageReactionsClearEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Message/Reaction/MessageReactionsClearEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/ReadyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/ReadyEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Socket/SocketDisconnectEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Socket/SocketDisconnectEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Socket/SocketEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Socket/SocketEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Socket/WebSocketMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Socket/WebSocketMessageEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/TypingStartEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/TypingStartEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/UnknownEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/UnknownEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/User/PresenceUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/User/PresenceUpdateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/User/UserSettingsUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/User/UserSettingsUpdateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/User/UserSpeakingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/User/UserSpeakingEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/User/UserUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/User/UserUpdateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Voice/VoiceServerUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Voice/VoiceServerUpdateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/Voice/VoiceStateUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/Voice/VoiceStateUpdateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/EventArgs/WebhooksUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/EventArgs/WebhooksUpdateEventArgs.cs -------------------------------------------------------------------------------- /DSharpPlus/Exceptions/BadRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Exceptions/BadRequestException.cs -------------------------------------------------------------------------------- /DSharpPlus/Exceptions/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Exceptions/NotFoundException.cs -------------------------------------------------------------------------------- /DSharpPlus/Exceptions/RateLimitException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Exceptions/RateLimitException.cs -------------------------------------------------------------------------------- /DSharpPlus/Exceptions/RequestSizeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Exceptions/RequestSizeException.cs -------------------------------------------------------------------------------- /DSharpPlus/Exceptions/ServerErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Exceptions/ServerErrorException.cs -------------------------------------------------------------------------------- /DSharpPlus/Exceptions/UnauthorizedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Exceptions/UnauthorizedException.cs -------------------------------------------------------------------------------- /DSharpPlus/Formatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Formatter.cs -------------------------------------------------------------------------------- /DSharpPlus/ImageTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/ImageTool.cs -------------------------------------------------------------------------------- /DSharpPlus/Logging/CompositeDefaultLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Logging/CompositeDefaultLogger.cs -------------------------------------------------------------------------------- /DSharpPlus/Logging/DefaultLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Logging/DefaultLogger.cs -------------------------------------------------------------------------------- /DSharpPlus/Logging/DefaultLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Logging/DefaultLoggerFactory.cs -------------------------------------------------------------------------------- /DSharpPlus/Logging/DefaultLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Logging/DefaultLoggerProvider.cs -------------------------------------------------------------------------------- /DSharpPlus/Logging/LoggerEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Logging/LoggerEvents.cs -------------------------------------------------------------------------------- /DSharpPlus/Logging/ShardedLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Logging/ShardedLoggerFactory.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/AuditLogAbstractions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/AuditLogAbstractions.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/ClientProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/ClientProperties.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/FollowedChannelAddPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/FollowedChannelAddPayload.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/Gateway/GatewayHello.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/Gateway/GatewayHello.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/Gateway/GatewayIdentifyResume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/Gateway/GatewayIdentifyResume.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/Gateway/GatewayInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/Gateway/GatewayInfo.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/Gateway/GatewayOpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/Gateway/GatewayOpCode.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/Gateway/GatewayPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/Gateway/GatewayPayload.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/Gateway/GatewayRequestGuildMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/Gateway/GatewayRequestGuildMembers.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/IOAuth2Payload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/IOAuth2Payload.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/ReadyPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/ReadyPayload.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/Rest/RestChannelPayloads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/Rest/RestChannelPayloads.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/Rest/RestGuildPayloads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/Rest/RestGuildPayloads.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/Rest/RestUserPayloads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/Rest/RestUserPayloads.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/Rest/RestWebhookPayloads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/Rest/RestWebhookPayloads.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/ShardInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/ShardInfo.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/StatusUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/StatusUpdate.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/Transport/TransportActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/Transport/TransportActivity.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/Transport/TransportApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/Transport/TransportApplication.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/Transport/TransportMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/Transport/TransportMember.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/Transport/TransportTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/Transport/TransportTeam.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/Transport/TransportUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/Transport/TransportUser.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Abstractions/VoiceStateUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Abstractions/VoiceStateUpdate.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/ConnectionEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/ConnectionEndpoint.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Models/BaseEditModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Models/BaseEditModel.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Models/ChannelEditModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Models/ChannelEditModel.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Models/GuildEditModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Models/GuildEditModel.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Models/MemberEditModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Models/MemberEditModel.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Models/MembershipScreeningEditModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Models/MembershipScreeningEditModel.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Models/RoleEditModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Models/RoleEditModel.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Rest/BaseRestRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Rest/BaseRestRequest.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Rest/DiscordApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Rest/DiscordApiClient.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Rest/Endpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Rest/Endpoints.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Rest/IpEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Rest/IpEndpoint.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Rest/MultipartWebRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Rest/MultipartWebRequest.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Rest/RateLimitBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Rest/RateLimitBucket.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Rest/RestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Rest/RestClient.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Rest/RestRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Rest/RestRequest.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Rest/RestRequestMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Rest/RestRequestMethod.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Rest/RestResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Rest/RestResponse.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Rest/SessionBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Rest/SessionBucket.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Serialization/DiscordJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Serialization/DiscordJson.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Serialization/SnowflakeArrayAsDictionaryJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Serialization/SnowflakeArrayAsDictionaryJsonConverter.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Udp/BaseUdpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Udp/BaseUdpClient.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/Udp/DspUdpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/Udp/DspUdpClient.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/WebSocket/IWebSocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/WebSocket/IWebSocketClient.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/WebSocket/PayloadDecompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/WebSocket/PayloadDecompressor.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/WebSocket/SocketLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/WebSocket/SocketLock.cs -------------------------------------------------------------------------------- /DSharpPlus/Net/WebSocket/WebSocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Net/WebSocket/WebSocketClient.cs -------------------------------------------------------------------------------- /DSharpPlus/Properties/AssemblyProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Properties/AssemblyProperties.cs -------------------------------------------------------------------------------- /DSharpPlus/QueryUriBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/QueryUriBuilder.cs -------------------------------------------------------------------------------- /DSharpPlus/ReadOnlyConcurrentDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/ReadOnlyConcurrentDictionary.cs -------------------------------------------------------------------------------- /DSharpPlus/ReadOnlySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/ReadOnlySet.cs -------------------------------------------------------------------------------- /DSharpPlus/RingBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/RingBuffer.cs -------------------------------------------------------------------------------- /DSharpPlus/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DSharpPlus/Utilities.cs -------------------------------------------------------------------------------- /DiscordSharp.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/DiscordSharp.LICENSE -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/api/.gitignore -------------------------------------------------------------------------------- /docs/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/api/index.md -------------------------------------------------------------------------------- /docs/articles/audio/lavalink/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/audio/lavalink/configuration.md -------------------------------------------------------------------------------- /docs/articles/audio/lavalink/music_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/audio/lavalink/music_commands.md -------------------------------------------------------------------------------- /docs/articles/audio/lavalink/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/audio/lavalink/setup.md -------------------------------------------------------------------------------- /docs/articles/audio/voicenext/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/audio/voicenext/prerequisites.md -------------------------------------------------------------------------------- /docs/articles/audio/voicenext/receive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/audio/voicenext/receive.md -------------------------------------------------------------------------------- /docs/articles/audio/voicenext/transmit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/audio/voicenext/transmit.md -------------------------------------------------------------------------------- /docs/articles/basics/bot_account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/basics/bot_account.md -------------------------------------------------------------------------------- /docs/articles/basics/first_bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/basics/first_bot.md -------------------------------------------------------------------------------- /docs/articles/beyond_basics/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/beyond_basics/events.md -------------------------------------------------------------------------------- /docs/articles/beyond_basics/intents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/beyond_basics/intents.md -------------------------------------------------------------------------------- /docs/articles/beyond_basics/logging/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/beyond_basics/logging/default.md -------------------------------------------------------------------------------- /docs/articles/beyond_basics/logging/third_party.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/beyond_basics/logging/third_party.md -------------------------------------------------------------------------------- /docs/articles/beyond_basics/messagebuilder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/beyond_basics/messagebuilder.md -------------------------------------------------------------------------------- /docs/articles/beyond_basics/sharding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/beyond_basics/sharding.md -------------------------------------------------------------------------------- /docs/articles/commands/argument_converters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/commands/argument_converters.md -------------------------------------------------------------------------------- /docs/articles/commands/command_attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/commands/command_attributes.md -------------------------------------------------------------------------------- /docs/articles/commands/command_handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/commands/command_handler.md -------------------------------------------------------------------------------- /docs/articles/commands/dependency_injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/commands/dependency_injection.md -------------------------------------------------------------------------------- /docs/articles/commands/help_formatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/commands/help_formatter.md -------------------------------------------------------------------------------- /docs/articles/commands/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/commands/intro.md -------------------------------------------------------------------------------- /docs/articles/hosting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/hosting.md -------------------------------------------------------------------------------- /docs/articles/interactivity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/interactivity.md -------------------------------------------------------------------------------- /docs/articles/migration/2x_to_3x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/migration/2x_to_3x.md -------------------------------------------------------------------------------- /docs/articles/migration/3x_to_4x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/migration/3x_to_4x.md -------------------------------------------------------------------------------- /docs/articles/migration/dsharp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/migration/dsharp.md -------------------------------------------------------------------------------- /docs/articles/misc/debug_symbols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/misc/debug_symbols.md -------------------------------------------------------------------------------- /docs/articles/misc/nightly_builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/misc/nightly_builds.md -------------------------------------------------------------------------------- /docs/articles/misc/reporting_issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/misc/reporting_issues.md -------------------------------------------------------------------------------- /docs/articles/preamble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/preamble.md -------------------------------------------------------------------------------- /docs/articles/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/articles/toc.yml -------------------------------------------------------------------------------- /docs/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/build.bat -------------------------------------------------------------------------------- /docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/docfx.json -------------------------------------------------------------------------------- /docs/dsplus/ManagedReference.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/ManagedReference.common.js -------------------------------------------------------------------------------- /docs/dsplus/ManagedReference.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/ManagedReference.extension.js -------------------------------------------------------------------------------- /docs/dsplus/ManagedReference.html.primary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/ManagedReference.html.primary.js -------------------------------------------------------------------------------- /docs/dsplus/ManagedReference.html.primary.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/ManagedReference.html.primary.tmpl -------------------------------------------------------------------------------- /docs/dsplus/RestApi.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/RestApi.common.js -------------------------------------------------------------------------------- /docs/dsplus/RestApi.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/RestApi.extension.js -------------------------------------------------------------------------------- /docs/dsplus/RestApi.html.primary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/RestApi.html.primary.js -------------------------------------------------------------------------------- /docs/dsplus/RestApi.html.primary.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/RestApi.html.primary.tmpl -------------------------------------------------------------------------------- /docs/dsplus/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/common.js -------------------------------------------------------------------------------- /docs/dsplus/conceptual.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/conceptual.extension.js -------------------------------------------------------------------------------- /docs/dsplus/conceptual.html.primary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/conceptual.html.primary.js -------------------------------------------------------------------------------- /docs/dsplus/conceptual.html.primary.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/conceptual.html.primary.tmpl -------------------------------------------------------------------------------- /docs/dsplus/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/favicon.ico -------------------------------------------------------------------------------- /docs/dsplus/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/dsplus/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/dsplus/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/dsplus/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/dsplus/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/dsplus/layout/_master.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/layout/_master.tmpl -------------------------------------------------------------------------------- /docs/dsplus/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/logo.png -------------------------------------------------------------------------------- /docs/dsplus/logobig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/logobig.png -------------------------------------------------------------------------------- /docs/dsplus/partials/_affix.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/_affix.liquid -------------------------------------------------------------------------------- /docs/dsplus/partials/_breadcrumb.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/_breadcrumb.liquid -------------------------------------------------------------------------------- /docs/dsplus/partials/_footer.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/_footer.liquid -------------------------------------------------------------------------------- /docs/dsplus/partials/_head.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/_head.liquid -------------------------------------------------------------------------------- /docs/dsplus/partials/_logo.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/_logo.liquid -------------------------------------------------------------------------------- /docs/dsplus/partials/_navbar.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/_navbar.liquid -------------------------------------------------------------------------------- /docs/dsplus/partials/_scripts.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/_scripts.liquid -------------------------------------------------------------------------------- /docs/dsplus/partials/_toc.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/_toc.liquid -------------------------------------------------------------------------------- /docs/dsplus/partials/affix.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/affix.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/breadcrumb.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/breadcrumb.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/class.header.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/class.header.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/class.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/class.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/classSubtitle.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/classSubtitle.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/customMREFContent.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/customMREFContent.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/enum.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/enum.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/footer.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/footer.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/head.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/head.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/li.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/li.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/logo.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/logo.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/namespace.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/namespace.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/namespaceSubtitle.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/namespaceSubtitle.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/navbar.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/navbar.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/rest.child.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/rest.child.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/rest.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/rest.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/scripts.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/scripts.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/searchResults.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/searchResults.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/title.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/title.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/partials/toc.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/partials/toc.tmpl.partial -------------------------------------------------------------------------------- /docs/dsplus/plugins/CsQuery.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/plugins/CsQuery.dll -------------------------------------------------------------------------------- /docs/dsplus/plugins/HSNXT.DocFx.CustomMemberIndexer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/plugins/HSNXT.DocFx.CustomMemberIndexer.dll -------------------------------------------------------------------------------- /docs/dsplus/plugins/LICENSE.CsQuery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/plugins/LICENSE.CsQuery.txt -------------------------------------------------------------------------------- /docs/dsplus/plugins/LICENSE.DocFX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/plugins/LICENSE.DocFX.txt -------------------------------------------------------------------------------- /docs/dsplus/search-stopwords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/search-stopwords.json -------------------------------------------------------------------------------- /docs/dsplus/styles/docfx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/styles/docfx.css -------------------------------------------------------------------------------- /docs/dsplus/styles/docfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/styles/docfx.js -------------------------------------------------------------------------------- /docs/dsplus/styles/docfx.vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/styles/docfx.vendor.css -------------------------------------------------------------------------------- /docs/dsplus/styles/docfx.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/styles/docfx.vendor.js -------------------------------------------------------------------------------- /docs/dsplus/styles/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/styles/lunr.min.js -------------------------------------------------------------------------------- /docs/dsplus/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/styles/main.css -------------------------------------------------------------------------------- /docs/dsplus/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/styles/main.js -------------------------------------------------------------------------------- /docs/dsplus/styles/search-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/styles/search-worker.js -------------------------------------------------------------------------------- /docs/dsplus/toc.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/toc.extension.js -------------------------------------------------------------------------------- /docs/dsplus/toc.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/toc.html.js -------------------------------------------------------------------------------- /docs/dsplus/toc.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/toc.html.tmpl -------------------------------------------------------------------------------- /docs/dsplus/token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/dsplus/token.json -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/filter_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/filter_config.yml -------------------------------------------------------------------------------- /docs/images/Intents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/Intents.png -------------------------------------------------------------------------------- /docs/images/basics_bot_account_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_bot_account_01.png -------------------------------------------------------------------------------- /docs/images/basics_bot_account_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_bot_account_02.png -------------------------------------------------------------------------------- /docs/images/basics_bot_account_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_bot_account_03.png -------------------------------------------------------------------------------- /docs/images/basics_bot_account_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_bot_account_04.png -------------------------------------------------------------------------------- /docs/images/basics_bot_account_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_bot_account_05.png -------------------------------------------------------------------------------- /docs/images/basics_bot_account_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_bot_account_06.png -------------------------------------------------------------------------------- /docs/images/basics_bot_account_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_bot_account_07.png -------------------------------------------------------------------------------- /docs/images/basics_bot_account_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_bot_account_08.png -------------------------------------------------------------------------------- /docs/images/basics_bot_account_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_bot_account_09.png -------------------------------------------------------------------------------- /docs/images/basics_first_bot_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_first_bot_01.png -------------------------------------------------------------------------------- /docs/images/basics_first_bot_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_first_bot_02.png -------------------------------------------------------------------------------- /docs/images/basics_first_bot_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_first_bot_03.png -------------------------------------------------------------------------------- /docs/images/basics_first_bot_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_first_bot_04.png -------------------------------------------------------------------------------- /docs/images/basics_first_bot_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_first_bot_05.png -------------------------------------------------------------------------------- /docs/images/basics_first_bot_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_first_bot_06.png -------------------------------------------------------------------------------- /docs/images/basics_first_bot_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_first_bot_07.png -------------------------------------------------------------------------------- /docs/images/basics_first_bot_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_first_bot_08.png -------------------------------------------------------------------------------- /docs/images/basics_first_bot_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_first_bot_09.png -------------------------------------------------------------------------------- /docs/images/basics_first_bot_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_first_bot_10.png -------------------------------------------------------------------------------- /docs/images/basics_first_bot_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_first_bot_11.png -------------------------------------------------------------------------------- /docs/images/basics_first_bot_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_first_bot_12.png -------------------------------------------------------------------------------- /docs/images/basics_first_bot_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/basics_first_bot_13.png -------------------------------------------------------------------------------- /docs/images/beyond_basics_logging_default_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/beyond_basics_logging_default_01.png -------------------------------------------------------------------------------- /docs/images/beyond_basics_logging_default_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/beyond_basics_logging_default_02.png -------------------------------------------------------------------------------- /docs/images/beyond_basics_logging_default_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/beyond_basics_logging_default_03.png -------------------------------------------------------------------------------- /docs/images/beyond_basics_logging_third_party_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/beyond_basics_logging_third_party_01.png -------------------------------------------------------------------------------- /docs/images/beyond_basics_logging_user_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/beyond_basics_logging_user_01.png -------------------------------------------------------------------------------- /docs/images/beyond_basics_logging_user_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/beyond_basics_logging_user_02.png -------------------------------------------------------------------------------- /docs/images/beyond_basics_logging_user_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/beyond_basics_logging_user_03.png -------------------------------------------------------------------------------- /docs/images/beyond_basics_logging_user_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/beyond_basics_logging_user_04.png -------------------------------------------------------------------------------- /docs/images/beyond_basics_logging_user_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/beyond_basics_logging_user_05.png -------------------------------------------------------------------------------- /docs/images/beyond_basics_logging_user_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/beyond_basics_logging_user_06.png -------------------------------------------------------------------------------- /docs/images/commands_argument_converters_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/commands_argument_converters_01.png -------------------------------------------------------------------------------- /docs/images/commands_command_attributes_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/commands_command_attributes_01.png -------------------------------------------------------------------------------- /docs/images/commands_dependency_injection_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/commands_dependency_injection_01.png -------------------------------------------------------------------------------- /docs/images/commands_help_formatter_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/commands_help_formatter_01.png -------------------------------------------------------------------------------- /docs/images/commands_help_formatter_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/commands_help_formatter_02.png -------------------------------------------------------------------------------- /docs/images/commands_intro_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/commands_intro_01.png -------------------------------------------------------------------------------- /docs/images/commands_intro_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/commands_intro_02.png -------------------------------------------------------------------------------- /docs/images/commands_intro_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/commands_intro_03.png -------------------------------------------------------------------------------- /docs/images/commands_intro_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/commands_intro_04.png -------------------------------------------------------------------------------- /docs/images/commands_intro_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/commands_intro_05.png -------------------------------------------------------------------------------- /docs/images/commands_intro_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/commands_intro_06.png -------------------------------------------------------------------------------- /docs/images/commands_intro_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/commands_intro_07.png -------------------------------------------------------------------------------- /docs/images/commands_intro_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/commands_intro_08.png -------------------------------------------------------------------------------- /docs/images/faq_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/faq_01.png -------------------------------------------------------------------------------- /docs/images/faq_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/faq_02.png -------------------------------------------------------------------------------- /docs/images/faq_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/faq_03.png -------------------------------------------------------------------------------- /docs/images/interactivity_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/interactivity_01.png -------------------------------------------------------------------------------- /docs/images/interactivity_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/interactivity_02.png -------------------------------------------------------------------------------- /docs/images/interactivity_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/interactivity_03.png -------------------------------------------------------------------------------- /docs/images/interactivity_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/interactivity_04.png -------------------------------------------------------------------------------- /docs/images/interactivity_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/interactivity_05.png -------------------------------------------------------------------------------- /docs/images/voicenext_receive_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/voicenext_receive_01.png -------------------------------------------------------------------------------- /docs/images/voicenext_transmit_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/images/voicenext_transmit_01.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/natives/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/natives/index.md -------------------------------------------------------------------------------- /docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/docs/toc.yml -------------------------------------------------------------------------------- /logo/d#+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/logo/d#+.png -------------------------------------------------------------------------------- /logo/d#+.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/logo/d#+.psd -------------------------------------------------------------------------------- /logo/d#+_smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/logo/d#+_smaller.png -------------------------------------------------------------------------------- /logo/ds+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/logo/ds+.png -------------------------------------------------------------------------------- /logo/ds+.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/logo/ds+.psd -------------------------------------------------------------------------------- /logo/ds+_smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/logo/ds+_smaller.png -------------------------------------------------------------------------------- /logo/dsharp+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/logo/dsharp+.png -------------------------------------------------------------------------------- /logo/dsharp+.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/logo/dsharp+.psd -------------------------------------------------------------------------------- /logo/dsharp+_smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/logo/dsharp+_smaller.png -------------------------------------------------------------------------------- /logo/dsharpplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/logo/dsharpplus.png -------------------------------------------------------------------------------- /oneclick-rebuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/oneclick-rebuild.ps1 -------------------------------------------------------------------------------- /rebuild-all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/rebuild-all.ps1 -------------------------------------------------------------------------------- /rebuild-docs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/rebuild-docs.ps1 -------------------------------------------------------------------------------- /rebuild-lib.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/rebuild-lib.ps1 -------------------------------------------------------------------------------- /rebuild-micro.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabbageAdi/DSharpPlusSlashCommands/HEAD/rebuild-micro.ps1 --------------------------------------------------------------------------------