Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

69 řádky
3.6 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).</description>
  13. <releaseNotes>
  14. * [Core] Fixed issues in MQTTv5 message encoding and decoding.
  15. * [Core] Added extension method to allow usage of _WebSocket4Net_ in clients to fix issues with AWS and Xamarin.
  16. * [Core] Fixed usage of wrong data type for passwords (string -> byte[]).
  17. * [Core] Fixed an _ObjectDisposedException_ when sending data using a WebSocket channel.
  18. * [Client] Added support for extended authentication exchange.
  19. * [Client] Exposed MQTTv5 CONNACK values to client.
  20. * [Client] Added _MqttClientSubscribeOptionsBuilder_.
  21. * [Client] The disconnected handler is now executed in a new task to prevent deadlocks when reconnecting etc. (thanks to @lizziebeans).
  22. * [Client] Converted option _DualMode_ into nullable boolean to preserve original value and avoid exceptions in IPv4 only networks (thanks to @lavaflo).
  23. * [Server] Exposed _ClientCertificateRequired_ and _CheckCertificateRevocation_ at TLS options.
  24. * [Server] Exposed client certificate at client connection validator.
  25. * [Server] The subscription interceptor now supports altering the entire topic filter.
  26. </releaseNotes>
  27. <copyright>Copyright Christian Kratky 2016-2019</copyright>
  28. <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>
  29. <dependencies>
  30. <group targetFramework="netstandard1.3">
  31. <dependency id="NETStandard.Library" version="1.3.0" />
  32. <dependency id="System.Net.Security" version="4.3.2" />
  33. <dependency id="System.Net.WebSockets" version="4.3.0" />
  34. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  35. </group>
  36. <group targetFramework="netstandard2.0">
  37. <dependency id="NETStandard.Library" version="2.0.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="uap10.0">
  43. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="6.2.8" />
  44. </group>
  45. </dependencies>
  46. </metadata>
  47. <files>
  48. <!-- License -->
  49. <file src="..\LICENSE" />
  50. <!-- .NET Standard 1.3 -->
  51. <file src="..\Source\MQTTnet\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  52. <!-- .NET Standard 2.0 -->
  53. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  54. <!-- Universal Windows -->
  55. <file src="..\Source\MQTTnet\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  56. <!-- .NET Framework -->
  57. <file src="..\Source\MQTTnet\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  58. <!-- .NET Framework 4.6.0 will use binaries from 4.5.2. -->
  59. <file src="..\Source\MQTTnet\bin\Release\net461\MQTTnet.*" target="lib\net461\"/>
  60. <!-- Everything above .NET Framework 4.6.1 will use the binaries from 4.6.1. -->
  61. </files>
  62. </package>