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.
 
 
 
 

76 lines
4.1 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. * [All] Due to a merge issue not all changes are included in 3.0.8. All these changes are now included in this version.
  15. * [Core] Updated all nuget references.
  16. * [Core] Added MqttApplicationMessage.GetUserProperty() convenience method (thanks to @PMExtra).
  17. * [LowLevelMqttClient] Added low level MQTT client in order to provide more flexibility when using the MQTT protocol. This client requires detailed knowledge about the MQTT protocol.
  18. * [Client] Improve connection stability (thanks to @jltjohanlindqvist).
  19. * [Client] Support WithConnectionUri to configure client (thanks to @PMExtra).
  20. * [ManagedClient] Added builder class for MqttClientUnsubscribeOptions (thanks to @dominikviererbe).
  21. * [ManagedClient] Added support for persisted sessions (thansk to @PMExtra).
  22. * [ManagedClient] Fixed a memory leak (thanks to @zawodskoj).
  23. * [ManagedClient] Improved internal subscription management (#569, thanks to @cstichlberger).
  24. * [ManagedClient] Refactored log messages (thanks to @cstichlberger).
  25. * [Server] Added support for assigned client IDs (MQTTv5 only) (thanks to @bcrosnier).
  26. * [Server] Added interceptor for unsubscriptions.
  27. * [Server] Removed exceptions when user properties are set with MQTT protocol version 3.1
  28. * [Server] Added custom session items to the client status.
  29. * [Server] Added option to check whether the server is already started properly or not.
  30. * [MQTTnet.AspNetCore] improved compatibility with AspNetCore 3.1
  31. * [MQTTnet.Server] Added interceptor for unsubscriptions.
  32. </releaseNotes>
  33. <copyright>Copyright Christian Kratky 2016-2020</copyright>
  34. <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>
  35. <dependencies>
  36. <group targetFramework="netstandard1.3">
  37. <dependency id="NETStandard.Library" version="1.3.0" />
  38. <dependency id="System.Net.Security" version="4.3.2" />
  39. <dependency id="System.Net.WebSockets" version="4.3.0" />
  40. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  41. </group>
  42. <group targetFramework="netstandard2.0">
  43. <dependency id="NETStandard.Library" version="2.0.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="uap10.0">
  49. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="6.2.10" />
  50. </group>
  51. </dependencies>
  52. </metadata>
  53. <files>
  54. <!-- License -->
  55. <file src="..\LICENSE" />
  56. <!-- .NET Standard 1.3 -->
  57. <file src="..\Source\MQTTnet\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  58. <!-- .NET Standard 2.0 -->
  59. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  60. <!-- Universal Windows -->
  61. <file src="..\Source\MQTTnet\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  62. <!-- .NET Framework -->
  63. <file src="..\Source\MQTTnet\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  64. <!-- .NET Framework 4.6.0 will use binaries from 4.5.2. -->
  65. <file src="..\Source\MQTTnet\bin\Release\net461\MQTTnet.*" target="lib\net461\"/>
  66. <!-- Everything above .NET Framework 4.6.1 will use the binaries from 4.6.1. -->
  67. </files>
  68. </package>