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

92 lines
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. <license type="file">LICENSE</license>
  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>
  14. * [Core] Added support for MQTTv5 packages.
  15. * [Core] Performance improvements.
  16. * [Core] Removed obsolete methods.
  17. * [Core] Fixed a memory leak when processing lots of messages (thanks to @tschanko)
  18. * [Core] Added more overloads for MQTT factory.
  19. * [Core] The client password is now hidden from the logs (replaced with **** if set).
  20. * [Core] Fixed a memory leak when using SSL connections (thanks to @biovoid).
  21. * [Client] Added validation of topics before publishing.
  22. * [Client] Added new MQTTv5 features to options builder.
  23. * [Client] Added uniform API across all supported MQTT versions (BREAKING CHANGE!)
  24. * [Client] The client will now avoid sending an ACK if an exception has been thrown in message handler (thanks to @ramonsmits).
  25. * [Client] Fixed issues in QoS 2 handling which leads to message loss.
  26. * [Client] Replaced all events with proper async compatible handlers (BREAKING CHANGE!).
  27. * [Client] Added more configuration values to TCP endpoint options.
  28. * [Client] Added used PacketIdentifier to publish result.
  29. * [ManagedClient] Replaced all events with proper async compatible handlers (BREAKING CHANGE!).
  30. * [ManagedClient] The log ID is now propagated to the internal client (thanks to @vbBerni).
  31. * [ManagedClient] Added validation of topics before publishing.
  32. * [ManagedClient] The internal MQTT client is now closed properly (thanks to @vbBerni).
  33. * [Server] Added support for MQTTv5 clients. The server will still return _success_ for all cases at the moment even if more granular codes are available.
  34. * [Server] Fixed issues in QoS 2 handling which leads to message loss.
  35. * [Server] Replaced all events with proper async compatible handlers (BREAKING CHANGE!).
  36. * [Server] The used logger instance is now propagated to the WebSocket server adapter.
  37. * [Server] Added the flag "IsSecureConnection" which is set to true when the connection is encrypted.
  38. * [Server] Fixed wrong will message behavior when stopping server (thanks to @JohBa)
  39. * [Server] Added validation of topics before publishing.
  40. * [Server] Added more configuration values to TCP endpoint options.
  41. * [MQTTnet Server] Added as first Alpha version of standalone cross platform MQTT server.
  42. * [Note] Due to MQTTv5 a lot of new classes were introduced. This required adding new namespaces as well. Most classes are backward compatible but new namespaces must be added.
  43. </releaseNotes>
  44. <copyright>Copyright Christian Kratky 2016-2019</copyright>
  45. <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>
  46. <dependencies>
  47. <group targetFramework="netstandard1.3">
  48. <dependency id="NETStandard.Library" version="1.3.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="netstandard2.0">
  54. <dependency id="NETStandard.Library" version="2.0.0" />
  55. <dependency id="System.Net.Security" version="4.3.2" />
  56. <dependency id="System.Net.WebSockets" version="4.3.0" />
  57. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  58. </group>
  59. <group targetFramework="uap10.0">
  60. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="6.2.8" />
  61. </group>
  62. <group targetFramework="net452">
  63. </group>
  64. <group targetFramework="net461">
  65. </group>
  66. </dependencies>
  67. </metadata>
  68. <files>
  69. <!-- License -->
  70. <file src="..\LICENSE" />
  71. <!-- .NET Standard 1.3 -->
  72. <file src="..\Source\MQTTnet\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  73. <!-- .NET Standard 2.0 -->
  74. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  75. <!-- Universal Windows -->
  76. <file src="..\Source\MQTTnet\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  77. <!-- .NET Framework -->
  78. <file src="..\Source\MQTTnet\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  79. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\net461\"/>
  80. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\net462\"/>
  81. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\net470\"/>
  82. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\net471\"/>
  83. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\net472\"/>
  84. </files>
  85. </package>