No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

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