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.
 
 
 
 

67 lines
3.3 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) and supports v3.1.0, v3.1.1 and v5.0.0 of the MQTT protocol.</description>
  13. <releaseNotes>
  14. * [ManagedClient] Added builder class for MqttClientUnsubscribeOptions (thanks to @dominikviererbe).
  15. * [ManagedClient] Added support for persisted sessions (thansk to @PMExtra).
  16. * [Client] Improve connection stability (thanks to @jltjohanlindqvist).
  17. * [ManagedClient] Fixed a memory leak (thanks to @zawodskoj).
  18. * [ManagedClient] Improved internal subscription management (#569, thanks to @cstichlberger).
  19. * [ManagedClient] Refactored log messages (thanks to @cstichlberger).
  20. * [Server] Added support for assigned client IDs (MQTTv5 only) (thanks to @bcrosnier).
  21. * [Server] Added interceptor for unsubscriptions.
  22. * [MQTTnet.Server] Added interceptor for unsubscriptions.
  23. </releaseNotes>
  24. <copyright>Copyright Christian Kratky 2016-2019</copyright>
  25. <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>
  26. <dependencies>
  27. <group targetFramework="netstandard1.3">
  28. <dependency id="NETStandard.Library" version="1.3.0" />
  29. <dependency id="System.Net.Security" version="4.3.2" />
  30. <dependency id="System.Net.WebSockets" version="4.3.0" />
  31. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  32. </group>
  33. <group targetFramework="netstandard2.0">
  34. <dependency id="NETStandard.Library" version="2.0.0" />
  35. <dependency id="System.Net.Security" version="4.3.2" />
  36. <dependency id="System.Net.WebSockets" version="4.3.0" />
  37. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  38. </group>
  39. <group targetFramework="uap10.0">
  40. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="6.2.8" />
  41. </group>
  42. </dependencies>
  43. </metadata>
  44. <files>
  45. <!-- License -->
  46. <file src="..\LICENSE" />
  47. <!-- .NET Standard 1.3 -->
  48. <file src="..\Source\MQTTnet\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  49. <!-- .NET Standard 2.0 -->
  50. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  51. <!-- Universal Windows -->
  52. <file src="..\Source\MQTTnet\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  53. <!-- .NET Framework -->
  54. <file src="..\Source\MQTTnet\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  55. <!-- .NET Framework 4.6.0 will use binaries from 4.5.2. -->
  56. <file src="..\Source\MQTTnet\bin\Release\net461\MQTTnet.*" target="lib\net461\"/>
  57. <!-- Everything above .NET Framework 4.6.1 will use the binaries from 4.6.1. -->
  58. </files>
  59. </package>