Guilded.Commands 0.9.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Guilded.Commands --version 0.9.0
NuGet\Install-Package Guilded.Commands -Version 0.9.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Guilded.Commands" Version="0.9.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Guilded.Commands --version 0.9.0
#r "nuget: Guilded.Commands, 0.9.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Guilded.Commands as a Cake Addin
#addin nuget:?package=Guilded.Commands&version=0.9.0

// Install Guilded.Commands as a Cake Tool
#tool nuget:?package=Guilded.Commands&version=0.9.0

<div align="center">

Banner

🟡 Guilded.NET

</div>

Guilded.NET is a free and open-source unofficial API framework/library for Guilded written on .NET platform. It allows creating bots, webhooks and interacting any other way with Guilded API.

Version Version

📥 Installing

Guilded.NET is available as a package on NuGet (or FuGet).

You can run this command to add Guilded.NET to an existing .NET project:

dotnet add package Guilded

Otherwise, you can install Guilded.NET templates and create new Guilded.NET projects:

dotnet new -i Guilded.Templates
dotnet new guilded.bot

⚙️ Using Guilded.NET

You can check out Guilded.NET's guide to get started on your bot. If you want to see everything that Guilded.NET offers, check out reference page.

It is recommended to use .NET 5 or above for Guilded.NET. While Guilded.NET supports .NET Core 3.0 or similar for now, this will change in the kind-of-late future.

📙 Example

Here's a quick example of Guilded.NET bot with !ping command:

// Program.cs
using System.Reactive.Linq;
using Guilded;

string auth   = "your_bots_auth_token",
       prefix = "!";

await using var client = new GuildedBotClient(auth);

client.Prepared
      .Subscribe(me =>
          Console.WriteLine("The bot is prepared!\nLogged in as \"{0}\" with the ID \"{1}\"", me.Name, me.Id)
      );

// Wait for !ping messages
client.MessageCreated
    .Where(msgCreated => msgCreated.Content == prefix + "ping")
    .Subscribe(async msgCreated =>
        await msgCreated.ReplyAsync("Pong!")
    );

await client.ConnectAsync();

// Don't close the program when the bot connects; not recommended to put code after this
await Task.Delay(-1);

(The showcased code uses enabled implicit usings option)

⁉️ Support

If you need help related to Guilded.NET, you can check out these places:

✅ Goals

Our goal is to provide a library or a framework that is consistent and fast, while also maintaining friendliness towards the bot developers. API library that does not bite bot developer's hand allows bot developers to focus more on their code, have fun in what they are doing and have easier time creating their bots. Consistency helps code be more predictable, easier to rewrite and waste less time. As such, these 3 points are our main goals while maintaining Guilded.NET.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.7.1 153 1/10/2024
1.7.0 121 1/3/2024
1.6.0 192 7/1/2023
1.5.1 178 4/11/2023
1.5.0 185 4/1/2023
1.3.0 281 12/22/2022
1.2.0 299 11/24/2022
1.1.5 296 11/16/2022
1.1.4 303 11/9/2022
1.1.3 319 11/4/2022
1.1.2 334 10/31/2022
1.1.1 338 10/30/2022
1.1.0 339 10/29/2022
1.0.2 407 9/16/2022
1.0.1 440 9/13/2022
1.0.0 437 9/13/2022
0.10.0 393 8/26/2022
0.9.3 369 8/7/2022
0.9.2 398 7/31/2022
0.9.1 383 7/25/2022
0.9.0 379 7/21/2022
0.8.6 400 6/24/2022
0.8.5 375 6/23/2022
0.8.4 382 6/12/2022
0.8.2 379 6/4/2022
0.8.1 378 6/3/2022
0.8.0 387 5/16/2022