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.
 
 
 
 

103 lines
5.1 KiB

  1. <?xml version="1.0"?>
  2. <package >
  3. <metadata>
  4. <id>MQTTnet</id>
  5. <version>0.0.0</version>
  6. <authors>The contributors of MQTTnet</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. <icon>images\Logo_128x128.png</icon>
  12. <requireLicenseAcceptance>true</requireLicenseAcceptance>
  13. <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>
  14. <releaseNotes>
  15. * [Core] Added .NET 5.0 TFMs (thanks to @StefanOssendorf, @JanEggers).
  16. * [Core] Added support for TLS 1.3 (requires .NET Core 3.1+) (thanks to @Dvergatal).
  17. * [Core] Added support for _MaximumQoS_ transmit when using MQTTv5 (thanks to @nayato).
  18. * [Core] Aligned the format of some log messages.
  19. * [Client] Fixed an issue with connection state detection (thanks to @tobiasfrick).
  20. * [Client] Fixed an issue when receiving partial QoS 2 packets after a reconnect.
  21. * [Client] Added new API for raw packet inspection.
  22. * [ManagedClient] Removed _AutoReconnect_ since this does no longer work (BREAKING CHANGE!).
  23. * [RpcClient] Moved the RPC topic validation to the topic generation strategy.
  24. * [RcpClient] Added interface for _MqttRpcClient_.
  25. * [Server] Reduced async tasks count by moving dedicated keep alive tasks per connection to shared one.
  26. * [Server] Session takeover and keep alive timeout are now properly set in DISCONNECT packet.
  27. * [Server] Fixed bug in PubRel packet generation (MQTTv5 only).
  28. * [Server] Improved message processing performance (+ ~5%).
  29. * [Server] Fix wrong usage of client session items for undelivered messages.
  30. * [Server] Allow to respond with a reason code in PUBACK/PUBREC (thanks to @muneebmajeed).
  31. * [Server] Fixed topic filter comparer on edge cases, e.g. "foo/" matching "foo/#" (thanks to @dagophil).
  32. * [Core] Added code documentation.
  33. Git commit: $gitCommit
  34. </releaseNotes>
  35. <copyright>Copyright Christian Kratky 2016-2020</copyright>
  36. <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 Blazor</tags>
  37. <dependencies>
  38. <group targetFramework="netstandard1.3">
  39. <dependency id="NETStandard.Library" version="1.3.0" />
  40. <dependency id="System.Net.Security" version="4.3.2" />
  41. <dependency id="System.Net.WebSockets" version="4.3.0" />
  42. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  43. </group>
  44. <group targetFramework="netstandard2.0">
  45. <dependency id="NETStandard.Library" version="2.0.0" />
  46. <dependency id="System.Net.Security" version="4.3.2" />
  47. <dependency id="System.Net.WebSockets" version="4.3.0" />
  48. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  49. </group>
  50. <group targetFramework="netstandard2.1">
  51. <dependency id="NETStandard.Library" version="2.0.0" />
  52. <dependency id="System.Net.Security" version="4.3.2" />
  53. <dependency id="System.Net.WebSockets" version="4.3.0" />
  54. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  55. </group>
  56. <group targetFramework="netcoreapp3.1">
  57. <dependency id="NETStandard.Library" version="2.0.0" />
  58. <dependency id="System.Net.Security" version="4.3.2" />
  59. <dependency id="System.Net.WebSockets" version="4.3.0" />
  60. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  61. </group>
  62. <group targetFramework="uap10.0">
  63. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="6.2.10" />
  64. </group>
  65. </dependencies>
  66. </metadata>
  67. <files>
  68. <!-- License -->
  69. <file src="..\LICENSE" />
  70. <!-- Images -->
  71. <file src="..\Images\Logo_128x128.png" target="images\" />
  72. <!-- .NET 5.0 -->
  73. <file src="..\Source\MQTTnet\bin\Release\net5.0\MQTTnet.*" target="lib\net5.0\" />
  74. <!-- .NET Standard 1.3 -->
  75. <file src="..\Source\MQTTnet\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\" />
  76. <!-- .NET Standard 2.0 -->
  77. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\" />
  78. <!-- .NET Standard 2.1 -->
  79. <file src="..\Source\MQTTnet\bin\Release\netstandard2.1\MQTTnet.*" target="lib\netstandard2.1\" />
  80. <!-- .NET Standard 3.1 -->
  81. <file src="..\Source\MQTTnet\bin\Release\netcoreapp3.1\MQTTnet.*" target="lib\netcoreapp3.1\" />
  82. <!-- Universal Windows -->
  83. <file src="..\Source\MQTTnet\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\" />
  84. <!-- .NET Framework -->
  85. <file src="..\Source\MQTTnet\bin\Release\net452\MQTTnet.*" target="lib\net452\" />
  86. <!-- .NET Framework 4.6.0 will use binaries from 4.5.2. -->
  87. <file src="..\Source\MQTTnet\bin\Release\net461\MQTTnet.*" target="lib\net461\" />
  88. <!-- Everything above .NET Framework 4.6.1 will use the binaries from 4.6.1. -->
  89. </files>
  90. </package>