You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

68 lines
4.1 KiB

  1. <?xml version="1.0"?>
  2. <package >
  3. <metadata>
  4. <id>MQTTnet</id>
  5. <version>2.8.0</version>
  6. <authors>Christian Kratky</authors>
  7. <owners>Christian Kratky</owners>
  8. <licenseUrl>https://github.com/chkr1011/MQTTnet/blob/master/LICENSE</licenseUrl>
  9. <projectUrl>https://github.com/chkr1011/MQTTnet</projectUrl>
  10. <iconUrl>https://raw.githubusercontent.com/chkr1011/MQTTnet/master/Images/Logo_128x128.png</iconUrl>
  11. <requireLicenseAcceptance>false</requireLicenseAcceptance>
  12. <description>MQTTnet is a high performance .NET library for MQTT based communication. It provides a MQTT client and a MQTT server (broker).</description>
  13. <releaseNotes> * [Core] Performance optimizations.
  14. * [Core] Due to performance reasons the timestamp of log messages is now in UTC format.
  15. * [Core] Added several packet validations.
  16. * [Core] Log messages now contain the complete source path including parent components.
  17. * [Core] The adapter now has an _Endpoint_ definition as string containing remote IP and port.
  18. * [Client] Received messages are now processed completely in the worker thread without creating new Tasks.
  19. * [Client] Fixed wrong calculation for sending keep alive packets (thanks to @cstichlberger)
  20. * [ManagedClient] Fixed a loading issue of stored application messages (thanks to @JTrotta).
  21. * [Server] Added support for other WebSocket sub protocol formats like mqttv-3.1.1 (thanks to @israellot).
  22. * [Server] The takeover of an existing client sessions is now treated as a _clean_ disconnect of the previous client.
  23. * [Server] The pending messages queue per client is now limited to 250 messages. Overflow strategy and count can be changed via options (thanks to @VladimirAkopyan)
  24. * [Server] Keep alive checking is now suspended while large packages are being received (and thus the client is connected). Keep alive checking continues after a large packet is received completely.
  25. * [Server] Rewritten the _ConnectedClients_ API and added new features for disconnecting and Endpoint information (IP etc.).
  26. * [Server] Added settings for disabling persistent sessions and defining a max pending messages queue size per session.
  27. * [Server] Added a new interceptor which is invoked before a new message is added to the client queue.
  28. </releaseNotes>
  29. <copyright>Copyright Christian Kratky 2016-2018</copyright>
  30. <tags>MQTT Message Queue Telemetry Transport MQTTClient MQTTServer Server MQTTBroker Broker NETStandard IoT InternetOfThings Messaging Hardware Arduino Sensor Actuator M2M ESP Smart Home Cities Automation Xamarin</tags>
  31. <dependencies>
  32. <group targetFramework="netstandard1.3">
  33. <dependency id="NETStandard.Library" version="1.3.0" />
  34. <dependency id="System.Net.Security" version="4.3.2" />
  35. <dependency id="System.Net.WebSockets" version="4.3.0" />
  36. <dependency id="System.Net.WebSockets.Client" version="4.3.1" />
  37. </group>
  38. <group targetFramework="netstandard2.0">
  39. <dependency id="NETStandard.Library" version="2.0.0" />
  40. <dependency id="System.Net.Security" version="4.3.2" />
  41. <dependency id="System.Net.WebSockets" version="4.3.0" />
  42. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  43. </group>
  44. <group targetFramework="uap10.0">
  45. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="5.4.1" />
  46. </group>
  47. <group targetFramework="net452">
  48. </group>
  49. <group targetFramework="net461">
  50. </group>
  51. </dependencies>
  52. </metadata>
  53. <files>
  54. <!-- .NET Standard 1.3 -->
  55. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  56. <!-- .NET Standard 2.0 -->
  57. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  58. <!-- Universal Windows -->
  59. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  60. <!-- .NET Framework -->
  61. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  62. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\net461\MQTTnet.*" target="lib\net461\"/>
  63. </files>
  64. </package>