Skip to content

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.

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.

You can install the package using your preferred tool:

  • Using the .NET CLI: Open your terminal in the project directory and run:
Terminal window
dotnet add package SyMqtt
  • Using Visual Studio Package Manager: Open the Package Manager Console and run:
Terminal window
Install-Package SyMqtt
  • Using the IDE GUI: Open the NuGet Package Manager in Visual Studio or Rider, search for SyMqtt, and click Install.