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.
 
 
 
 

82 regels
5.2 KiB

  1. <?xml version="1.0"?>
  2. <package >
  3. <metadata>
  4. <id>MQTTnet</id>
  5. <version>0.0.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> ** MQTTnet is now available at Open Collective for donations (https://opencollective.com/mqttnet). **
  14. * [Core] Performance optimizations.
  15. * [Core] Due to performance reasons the timestamp of log messages is now in UTC format.
  16. * [Core] Added several packet validations.
  17. * [Core] Log messages now contain the complete source path including parent components.
  18. * [Core] The adapter now has an _Endpoint_ definition as string containing remote IP and port.
  19. * [Client] Received messages are now processed completely in the worker thread without creating new Tasks.
  20. * [Client] Fixed wrong calculation for sending keep alive packets (thanks to @cstichlberger)
  21. * [Client] A clean disconnect (via DisconnectAsync) will no longer throw an exception.
  22. * [Client] Added new overloads for quick message publishing.
  23. * [ManagedClient] The managed client is moved to a separate nuget package.
  24. * [ManagedClient] Added an own message format with extended properties like ID (BREAKING CHANGE).
  25. * [ManagedClient] Fixed a loading issue of stored application messages (thanks to @JTrotta).
  26. * [ManagedClient] Added a new event which is fired when a synchronization of the subscriptions has failed.
  27. * [ManagedClient] Added a new event which is fired when a connection attempt has failed.
  28. * [ManagedClient] Exposed a new property which provides the count of not published messages (pending messages count).
  29. * [Server] Added support for other WebSocket sub protocol formats like mqttv-3.1.1 (thanks to @israellot).
  30. * [Server] The takeover of an existing client sessions is now treated as a _clean_ disconnect of the previous client.
  31. * [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)
  32. * [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.
  33. * [Server] Rewritten the _ConnectedClients_ API and added new features for disconnecting and Endpoint information (IP etc.).
  34. * [Server] Added settings for disabling persistent sessions and defining a max pending messages queue size per session.
  35. * [Server] Persistent sessions are disabled by default (BREAKING CHANGE!).
  36. * [Server] Added a new interceptor which is invoked before a new message is added to the client queue.
  37. * [Server] Added support for Linux servers by dividing IPv4 and IPv6 support and adding new options (BREAKING CHANGE!).
  38. * [Server] Gracefully closed connections are no longer reported as warnings.
  39. * [Server] Added new overloads for initializing the ASP.NET Core integration.
  40. </releaseNotes>
  41. <copyright>Copyright Christian Kratky 2016-2018</copyright>
  42. <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>
  43. <dependencies>
  44. <group targetFramework="netstandard1.3">
  45. <dependency id="NETStandard.Library" version="1.3.0" />
  46. <dependency id="System.Net.Security" version="4.3.2" />
  47. <dependency id="System.Net.WebSockets" version="4.3.0" />
  48. <dependency id="System.Net.WebSockets.Client" version="4.3.1" />
  49. </group>
  50. <group targetFramework="netstandard2.0">
  51. <dependency id="NETStandard.Library" version="2.0.0" />
  52. <dependency id="System.Net.Security" version="4.3.2" />
  53. <dependency id="System.Net.WebSockets" version="4.3.0" />
  54. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  55. </group>
  56. <group targetFramework="uap10.0">
  57. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="6.1.4" />
  58. </group>
  59. <group targetFramework="net452">
  60. </group>
  61. <group targetFramework="net461">
  62. </group>
  63. </dependencies>
  64. </metadata>
  65. <files>
  66. <!-- .NET Standard 1.3 -->
  67. <file src="..\Source\MQTTnet\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  68. <!-- .NET Standard 2.0 -->
  69. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  70. <!-- Universal Windows -->
  71. <file src="..\Source\MQTTnet\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  72. <!-- .NET Framework -->
  73. <file src="..\Source\MQTTnet\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  74. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\net461\"/>
  75. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\net472\"/>
  76. </files>
  77. </package>