Pulse.Mqtt.Analyzers 2.29.0

dotnet add package Pulse.Mqtt.Analyzers --version 2.29.0
                    
NuGet\Install-Package Pulse.Mqtt.Analyzers -Version 2.29.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="Pulse.Mqtt.Analyzers" Version="2.29.0">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Pulse.Mqtt.Analyzers" Version="2.29.0" />
                    
Directory.Packages.props
<PackageReference Include="Pulse.Mqtt.Analyzers">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Pulse.Mqtt.Analyzers --version 2.29.0
                    
#r "nuget: Pulse.Mqtt.Analyzers, 2.29.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.
#:package Pulse.Mqtt.Analyzers@2.29.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Pulse.Mqtt.Analyzers&version=2.29.0
                    
Install as a Cake Addin
#tool nuget:?package=Pulse.Mqtt.Analyzers&version=2.29.0
                    
Install as a Cake Tool

Pulse.Mqtt.Analyzers

Optional C# compiler diagnostics for common Pulse MQTT usage mistakes. This package has no runtime assets and should normally be referenced privately.

Install

dotnet add package Pulse.Mqtt.Analyzers

Keep analyzer references private:

<PackageReference Include="Pulse.Mqtt.Analyzers" PrivateAssets="all" />

Diagnostics

ID Default severity What it catches
PMQ0001 Warning A Pulse MQTT async operation is called and not awaited, returned, assigned, passed, or explicitly discarded.
PMQ0002 Warning A cancellable Pulse MQTT async API omits an available in-scope CancellationToken.
PMQ0003 Warning Known async-owned MQTT resources are disposed synchronously.
PMQ0004 Warning An explicit MQTT 3.1.1 packet initializer sets a known MQTT 5-only packet property.

Example fixes

await client.PublishAsync(packet, cancellationToken);
await using var route = await client.Route("orders/{id}")
    .AtLeastOnce()
    .StreamAsync(cancellationToken);

Suppress narrowly only when the analyzer cannot see a deliberate application pattern.

Full docs: https://araxis.github.io/pulse-mqtt/guide/analyzers

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

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
2.29.0 241 7/9/2026
2.29.0-preview.219 59 7/9/2026
2.29.0-preview.218 63 7/9/2026
2.29.0-preview.217 53 7/6/2026
2.28.0 105 7/6/2026
2.28.0-preview.215 46 7/6/2026
2.28.0-preview.214 52 7/6/2026
2.28.0-preview.213 58 7/6/2026
2.28.0-preview.212 61 7/6/2026
2.28.0-preview.211 53 7/4/2026
2.28.0-preview.210 60 7/4/2026
2.28.0-preview.209 55 7/4/2026
2.28.0-preview.208 64 7/4/2026
2.27.0 100 7/4/2026
2.27.0-preview.206 51 7/4/2026
2.27.0-preview.205 62 7/4/2026
2.27.0-preview.204 72 7/3/2026
2.27.0-preview.203 54 7/3/2026
2.27.0-preview.202 61 7/3/2026
2.27.0-preview.201 53 7/3/2026
Loading failed