├── .editorconfig ├── .env ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Example-Bots.sln ├── LICENSE ├── README.md └── src ├── CommandsNext ├── ArgumentConverters │ ├── ArgumentConverters.csproj │ ├── Commands │ │ └── UlidCommand.cs │ ├── Converters │ │ └── UlidConverter.cs │ ├── Program.cs │ └── README.md ├── FakeContext │ ├── Commands │ │ ├── KickCommand.cs │ │ ├── SudoCommand.cs │ │ └── WhoAmICommand.cs │ ├── FakeContext.csproj │ ├── Program.cs │ └── README.md ├── HelloWorld │ ├── Commands │ │ ├── PingCommands.cs │ │ ├── RandomCommand.cs │ │ ├── SumCommand.cs │ │ └── TimestampCommand.cs │ ├── HelloWorld.csproj │ ├── Program.cs │ └── README.md └── HelpFormatter │ ├── Commands │ ├── PingCommands.cs │ ├── RandomCommand.cs │ ├── SumCommand.cs │ └── TimestampCommand.cs │ ├── Formatters │ └── CustomHelpFormatter.cs │ ├── HelpFormatter.csproj │ ├── Program.cs │ └── README.md └── Core ├── ApplicationCommands └── README.md ├── ComponentHandling ├── ComponentHandling.csproj ├── EventHandler.cs ├── Program.cs └── README.md ├── HelloWorld ├── HelloWorld.csproj ├── Program.cs └── README.md └── Logging ├── Logging.csproj └── Program.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | DISCORD_TOKEN=token -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | .idea* 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Example-Bots.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/Example-Bots.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/README.md -------------------------------------------------------------------------------- /src/CommandsNext/ArgumentConverters/ArgumentConverters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/ArgumentConverters/ArgumentConverters.csproj -------------------------------------------------------------------------------- /src/CommandsNext/ArgumentConverters/Commands/UlidCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/ArgumentConverters/Commands/UlidCommand.cs -------------------------------------------------------------------------------- /src/CommandsNext/ArgumentConverters/Converters/UlidConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/ArgumentConverters/Converters/UlidConverter.cs -------------------------------------------------------------------------------- /src/CommandsNext/ArgumentConverters/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/ArgumentConverters/Program.cs -------------------------------------------------------------------------------- /src/CommandsNext/ArgumentConverters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/ArgumentConverters/README.md -------------------------------------------------------------------------------- /src/CommandsNext/FakeContext/Commands/KickCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/FakeContext/Commands/KickCommand.cs -------------------------------------------------------------------------------- /src/CommandsNext/FakeContext/Commands/SudoCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/FakeContext/Commands/SudoCommand.cs -------------------------------------------------------------------------------- /src/CommandsNext/FakeContext/Commands/WhoAmICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/FakeContext/Commands/WhoAmICommand.cs -------------------------------------------------------------------------------- /src/CommandsNext/FakeContext/FakeContext.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/FakeContext/FakeContext.csproj -------------------------------------------------------------------------------- /src/CommandsNext/FakeContext/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/FakeContext/Program.cs -------------------------------------------------------------------------------- /src/CommandsNext/FakeContext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/FakeContext/README.md -------------------------------------------------------------------------------- /src/CommandsNext/HelloWorld/Commands/PingCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/HelloWorld/Commands/PingCommands.cs -------------------------------------------------------------------------------- /src/CommandsNext/HelloWorld/Commands/RandomCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/HelloWorld/Commands/RandomCommand.cs -------------------------------------------------------------------------------- /src/CommandsNext/HelloWorld/Commands/SumCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/HelloWorld/Commands/SumCommand.cs -------------------------------------------------------------------------------- /src/CommandsNext/HelloWorld/Commands/TimestampCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/HelloWorld/Commands/TimestampCommand.cs -------------------------------------------------------------------------------- /src/CommandsNext/HelloWorld/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/HelloWorld/HelloWorld.csproj -------------------------------------------------------------------------------- /src/CommandsNext/HelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/HelloWorld/Program.cs -------------------------------------------------------------------------------- /src/CommandsNext/HelloWorld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/HelloWorld/README.md -------------------------------------------------------------------------------- /src/CommandsNext/HelpFormatter/Commands/PingCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/HelpFormatter/Commands/PingCommands.cs -------------------------------------------------------------------------------- /src/CommandsNext/HelpFormatter/Commands/RandomCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/HelpFormatter/Commands/RandomCommand.cs -------------------------------------------------------------------------------- /src/CommandsNext/HelpFormatter/Commands/SumCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/HelpFormatter/Commands/SumCommand.cs -------------------------------------------------------------------------------- /src/CommandsNext/HelpFormatter/Commands/TimestampCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/HelpFormatter/Commands/TimestampCommand.cs -------------------------------------------------------------------------------- /src/CommandsNext/HelpFormatter/Formatters/CustomHelpFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/HelpFormatter/Formatters/CustomHelpFormatter.cs -------------------------------------------------------------------------------- /src/CommandsNext/HelpFormatter/HelpFormatter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/HelpFormatter/HelpFormatter.csproj -------------------------------------------------------------------------------- /src/CommandsNext/HelpFormatter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/HelpFormatter/Program.cs -------------------------------------------------------------------------------- /src/CommandsNext/HelpFormatter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/CommandsNext/HelpFormatter/README.md -------------------------------------------------------------------------------- /src/Core/ApplicationCommands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/Core/ApplicationCommands/README.md -------------------------------------------------------------------------------- /src/Core/ComponentHandling/ComponentHandling.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/Core/ComponentHandling/ComponentHandling.csproj -------------------------------------------------------------------------------- /src/Core/ComponentHandling/EventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/Core/ComponentHandling/EventHandler.cs -------------------------------------------------------------------------------- /src/Core/ComponentHandling/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/Core/ComponentHandling/Program.cs -------------------------------------------------------------------------------- /src/Core/ComponentHandling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/Core/ComponentHandling/README.md -------------------------------------------------------------------------------- /src/Core/HelloWorld/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/Core/HelloWorld/HelloWorld.csproj -------------------------------------------------------------------------------- /src/Core/HelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/Core/HelloWorld/Program.cs -------------------------------------------------------------------------------- /src/Core/HelloWorld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/Core/HelloWorld/README.md -------------------------------------------------------------------------------- /src/Core/Logging/Logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/Core/Logging/Logging.csproj -------------------------------------------------------------------------------- /src/Core/Logging/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSharpPlus/Example-Bots/HEAD/src/Core/Logging/Program.cs --------------------------------------------------------------------------------