25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

79 lines
5.0 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> * [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. * [Client] A clean disconnect (via DisconnectAsync) will no longer throw an exception.
  21. * [ManagedClient] The managed client is moved to a separate nuget package.
  22. * [ManagedClient] Added an own message format with extended properties like ID (BREAKING CHANGE).
  23. * [ManagedClient] Fixed a loading issue of stored application messages (thanks to @JTrotta).
  24. * [ManagedClient] Added a new event which is fired when a synchronization of the subscriptions has failed.
  25. * [ManagedClient] Added a new event which is fired when a connection attempt has failed.
  26. * [ManagedClient] Exposed a new property which provides the count of not published messages (pending messages count).
  27. * [Server] Added support for other WebSocket sub protocol formats like mqttv-3.1.1 (thanks to @israellot).
  28. * [Server] The takeover of an existing client sessions is now treated as a _clean_ disconnect of the previous client.
  29. * [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)
  30. * [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.
  31. * [Server] Rewritten the _ConnectedClients_ API and added new features for disconnecting and Endpoint information (IP etc.).
  32. * [Server] Added settings for disabling persistent sessions and defining a max pending messages queue size per session.
  33. * [Server] Persistent sessions are disabled by default (BREAKING CHANGE!).
  34. * [Server] Added a new interceptor which is invoked before a new message is added to the client queue.
  35. * [Server] Added support for Linux servers by dividing IPv4 and IPv6 support and adding new options (BREAKING CHANGE!).
  36. * [Server] Gracefully closed connections are no longer reported as warnings.
  37. </releaseNotes>
  38. <copyright>Copyright Christian Kratky 2016-2018</copyright>
  39. <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>
  40. <dependencies>
  41. <group targetFramework="netstandard1.3">
  42. <dependency id="NETStandard.Library" version="1.3.0" />
  43. <dependency id="System.Net.Security" version="4.3.2" />
  44. <dependency id="System.Net.WebSockets" version="4.3.0" />
  45. <dependency id="System.Net.WebSockets.Client" version="4.3.1" />
  46. </group>
  47. <group targetFramework="netstandard2.0">
  48. <dependency id="NETStandard.Library" version="2.0.0" />
  49. <dependency id="System.Net.Security" version="4.3.2" />
  50. <dependency id="System.Net.WebSockets" version="4.3.0" />
  51. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  52. </group>
  53. <group targetFramework="uap10.0">
  54. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="6.1.4" />
  55. </group>
  56. <group targetFramework="net452">
  57. </group>
  58. <group targetFramework="net461">
  59. </group>
  60. </dependencies>
  61. </metadata>
  62. <files>
  63. <!-- .NET Standard 1.3 -->
  64. <file src="..\Source\MQTTnet\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  65. <!-- .NET Standard 2.0 -->
  66. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  67. <!-- Universal Windows -->
  68. <file src="..\Source\MQTTnet\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  69. <!-- .NET Framework -->
  70. <file src="..\Source\MQTTnet\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  71. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\net461\"/>
  72. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\net472\"/>
  73. </files>
  74. </package>