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.
 
 
 
 

65 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. * [Core] Converted all pending methods to use async/await.
  15. * [Core] Fixed an issue when serializing a PubRec (QoS 2) packet for MQTTv5.
  16. * [Client] Fixed an issue when checking for revoked SSL certificates (thanks to @cslutgen).
  17. * [RpcClient] Added support for custom topic generation strategies.
  18. * [Server] Refactoring of server certificate password classes (BREAKING CHANGE!).
  19. * [Server] Fixed an issue with empty server certificate passwords (thanks to @SeppPenner).
  20. * [MQTTnet.Server] Added support for certificate passwords (BREAKING CHANGE IN CONFIG!)
  21. * [MQTTnet.AspNetCore] Fixed an issue with MQTTv5 package serialization (#743, thanks to @JanEggers, @pcbing).
  22. </releaseNotes>
  23. <copyright>Copyright Christian Kratky 2016-2019</copyright>
  24. <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>
  25. <dependencies>
  26. <group targetFramework="netstandard1.3">
  27. <dependency id="NETStandard.Library" version="1.3.0" />
  28. <dependency id="System.Net.Security" version="4.3.2" />
  29. <dependency id="System.Net.WebSockets" version="4.3.0" />
  30. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  31. </group>
  32. <group targetFramework="netstandard2.0">
  33. <dependency id="NETStandard.Library" version="2.0.0" />
  34. <dependency id="System.Net.Security" version="4.3.2" />
  35. <dependency id="System.Net.WebSockets" version="4.3.0" />
  36. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  37. </group>
  38. <group targetFramework="uap10.0">
  39. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="6.2.8" />
  40. </group>
  41. </dependencies>
  42. </metadata>
  43. <files>
  44. <!-- License -->
  45. <file src="..\LICENSE" />
  46. <!-- .NET Standard 1.3 -->
  47. <file src="..\Source\MQTTnet\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  48. <!-- .NET Standard 2.0 -->
  49. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  50. <!-- Universal Windows -->
  51. <file src="..\Source\MQTTnet\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  52. <!-- .NET Framework -->
  53. <file src="..\Source\MQTTnet\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  54. <!-- .NET Framework 4.6.0 will use binaries from 4.5.2. -->
  55. <file src="..\Source\MQTTnet\bin\Release\net461\MQTTnet.*" target="lib\net461\"/>
  56. <!-- Everything above .NET Framework 4.6.1 will use the binaries from 4.6.1. -->
  57. </files>
  58. </package>