Installation
To start using SyMqtt, you only need to install the NuGet package. The library is lightweight and requires no extra configuration on your system.
Prerequisites
Section titled “Prerequisites”Before installing, make sure your project targets a compatible framework:
- Framework version: SyMqtt requires .NET 8 or higher. You can safely use it in .NET 8 or newer versions.
- Zero external dependencies: The library does not pull any third-party packages into your project. Everything it needs is packed inside, meaning you will not face secondary dependency conflicts.
Installation
Section titled “Installation”You can install the package using your preferred tool:
- Using the .NET CLI: Open your terminal in the project directory and run:
dotnet add package SyMqtt- Using Visual Studio Package Manager: Open the Package Manager Console and run:
Install-Package SyMqtt- Using the IDE GUI: Open the NuGet Package Manager in Visual Studio or Rider, search for
SyMqtt, and click Install.