@@ -10,7 +10,11 @@ | |||||
<iconUrl>https://raw.githubusercontent.com/chkr1011/MQTTnet/master/Images/Logo_128x128.png</iconUrl> | <iconUrl>https://raw.githubusercontent.com/chkr1011/MQTTnet/master/Images/Logo_128x128.png</iconUrl> | ||||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | <requireLicenseAcceptance>false</requireLicenseAcceptance> | ||||
<description>MQTTnet is a .NET library for MQTT based communication. It provides a MQTT client and a MQTT server (broker).</description> | <description>MQTTnet is a .NET library for MQTT based communication. It provides a MQTT client and a MQTT server (broker).</description> | ||||
<releaseNotes>* | |||||
<releaseNotes>* [MqttServer] Added support for publishing application messages | |||||
* [Core] Fixed QoS level 2 handling | |||||
* [Core] Performance optimizations | |||||
* [MqttClient/MqttServer] Errors while handline application messages are now catched and traced | |||||
* [MqttClient/MqttServer] Added interfaces | |||||
</releaseNotes> | </releaseNotes> | ||||
<copyright>Copyright Christian Kratky 2016-2017</copyright> | <copyright>Copyright Christian Kratky 2016-2017</copyright> | ||||
<tags>MQTT MQTTClient MQTTServer MQTTBroker Broker NETStandard IoT InternetOfThings Messaging Queue Hardware</tags> | <tags>MQTT MQTTClient MQTTServer MQTTBroker Broker NETStandard IoT InternetOfThings Messaging Queue Hardware</tags> | ||||
@@ -15,10 +15,12 @@ MQTTnet is a .NET library for MQTT based communication. It provides a MQTT clien | |||||
* Rx support (via another project) | * Rx support (via another project) | ||||
* List of connected clients available (server only) | * List of connected clients available (server only) | ||||
* Extensible communication channels (i.e. In-Memory, TCP, TCP+SSL, WebSockets (not included in this project)) | * Extensible communication channels (i.e. In-Memory, TCP, TCP+SSL, WebSockets (not included in this project)) | ||||
* Server is able to publish its own messages (no loopback client required) | |||||
* Access to internal trace messages | * Access to internal trace messages | ||||
* Extensible client credential validation (server only) | * Extensible client credential validation (server only) | ||||
* Unit tested (48+ tests) | |||||
* Unit tested (50+ tests) | |||||
* Lightweight (only the low level implementation of MQTT, no overhead) | * Lightweight (only the low level implementation of MQTT, no overhead) | ||||
* Interfaces included for mocking and testing | |||||
## Supported frameworks | ## Supported frameworks | ||||
* .NET Standard 1.3+ | * .NET Standard 1.3+ | ||||