Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

73 linhas
4.0 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] 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. * [Core] Performance optimizations.
  19. * [Client] Added support for extended authentication exchange.
  20. * [Client] Exposed MQTTv5 CONNACK values to client.
  21. * [Client] Added _MqttClientSubscribeOptionsBuilder_.
  22. * [Client] The disconnected handler is now executed in a new task to prevent deadlocks when reconnecting etc. (thanks to @lizziebeans).
  23. * [Client] Converted option _DualMode_ into nullable boolean to preserve original value and avoid exceptions in IPv4 only networks (thanks to @lavaflo).
  24. * [Server] Exposed _ClientCertificateRequired_ and _CheckCertificateRevocation_ at TLS options.
  25. * [Server] Exposed client certificate at client connection validator.
  26. * [Server] The subscription interceptor now supports altering the entire topic filter.
  27. * [Server] Exposed more properties to the connection validator context.
  28. * [MQTTnet.Server] Added authentication support via Python script file.
  29. * [MQTTnet.Server] Migrated the result of connection validations to _ReasonCode_ (MQTTv5) instead of _ReturnCode_ (MQTTv3 only) (BREAKING CHANGE!).
  30. </releaseNotes>
  31. <copyright>Copyright Christian Kratky 2016-2019</copyright>
  32. <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>
  33. <dependencies>
  34. <group targetFramework="netstandard1.3">
  35. <dependency id="NETStandard.Library" version="1.3.0" />
  36. <dependency id="System.Net.Security" version="4.3.2" />
  37. <dependency id="System.Net.WebSockets" version="4.3.0" />
  38. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  39. </group>
  40. <group targetFramework="netstandard2.0">
  41. <dependency id="NETStandard.Library" version="2.0.0" />
  42. <dependency id="System.Net.Security" version="4.3.2" />
  43. <dependency id="System.Net.WebSockets" version="4.3.0" />
  44. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  45. </group>
  46. <group targetFramework="uap10.0">
  47. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="6.2.8" />
  48. </group>
  49. </dependencies>
  50. </metadata>
  51. <files>
  52. <!-- License -->
  53. <file src="..\LICENSE" />
  54. <!-- .NET Standard 1.3 -->
  55. <file src="..\Source\MQTTnet\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  56. <!-- .NET Standard 2.0 -->
  57. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  58. <!-- Universal Windows -->
  59. <file src="..\Source\MQTTnet\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  60. <!-- .NET Framework -->
  61. <file src="..\Source\MQTTnet\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  62. <!-- .NET Framework 4.6.0 will use binaries from 4.5.2. -->
  63. <file src="..\Source\MQTTnet\bin\Release\net461\MQTTnet.*" target="lib\net461\"/>
  64. <!-- Everything above .NET Framework 4.6.1 will use the binaries from 4.6.1. -->
  65. </files>
  66. </package>