Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

84 righe
4.9 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] Added support for MQTTv5 packages.
  14. * [Core] Performance improvements (removed several exceptions).
  15. * [Core] Removed obsolete methods.
  16. * [Core] Fixed a memory leak when processing lots of messages (thanks to @tschanko)
  17. * [Core] Added more overloads for MQTT factory.
  18. * [Core] The client password is now hidden from the logs (replaced with **** if set).
  19. * [Client] Added validation of topics before publishing.
  20. * [Client] Added new MQTTv5 features to options builder.
  21. * [Client] Added uniform API across all supported MQTT versions (BREAKING CHANGE!)
  22. * [Client] The client will now avoid sending an ACK if an exception has been thrown in message handler (thanks to @ramonsmits).
  23. * [Client] Fixed issues in QoS 2 handling which leads to message loss.
  24. * [Client] Replaced all events with proper async compatible handlers (BREAKING CHANGE!).
  25. * [ManagedClient] Replaced all events with proper async compatible handlers (BREAKING CHANGE!).
  26. * [ManagedClient] The log ID is now propagated to the internal client (thanks to @vbBerni).
  27. * [ManagedClient] Added validation of topics before publishing.
  28. * [ManagedClient] The internal MQTT client is now closed properly (thanks to @vbBerni).
  29. * [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.
  30. * [Server] Fixed issues in QoS 2 handling which leads to message loss.
  31. * [Server] Replaced all events with proper async compatible handlers (BREAKING CHANGE!).
  32. * [Server] The used logger instance is now propagated to the WebSocket server adapter.
  33. * [Server] Added the flag "IsSecureConnection" which is set to true when the connection is encrypted.
  34. * [Server] Fixed wrong will message behavior when stopping server (thanks to @JohBa)
  35. * [Server] Added validation of topics before publishing.
  36. * [MQTTnet Server] Added as first Alpha version of standalone cross platform MQTT server.
  37. * [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.
  38. </releaseNotes>
  39. <copyright>Copyright Christian Kratky 2016-2019</copyright>
  40. <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>
  41. <dependencies>
  42. <group targetFramework="netstandard1.3">
  43. <dependency id="NETStandard.Library" version="1.3.0" />
  44. <dependency id="System.Net.Security" version="4.3.2" />
  45. <dependency id="System.Net.WebSockets" version="4.3.0" />
  46. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  47. </group>
  48. <group targetFramework="netstandard2.0">
  49. <dependency id="NETStandard.Library" version="2.0.0" />
  50. <dependency id="System.Net.Security" version="4.3.2" />
  51. <dependency id="System.Net.WebSockets" version="4.3.0" />
  52. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  53. </group>
  54. <group targetFramework="uap10.0">
  55. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="6.1.9" />
  56. </group>
  57. <group targetFramework="net452">
  58. </group>
  59. <group targetFramework="net461">
  60. </group>
  61. </dependencies>
  62. </metadata>
  63. <files>
  64. <!-- .NET Standard 1.3 -->
  65. <file src="..\Source\MQTTnet\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  66. <!-- .NET Standard 2.0 -->
  67. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  68. <!-- Universal Windows -->
  69. <file src="..\Source\MQTTnet\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  70. <!-- .NET Framework -->
  71. <file src="..\Source\MQTTnet\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  72. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\net461\"/>
  73. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\net462\"/>
  74. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\net470\"/>
  75. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\net471\"/>
  76. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\net472\"/>
  77. </files>
  78. </package>