25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

MQTTnet.nuspec 4.3 KiB

7 yıl önce
7 yıl önce
7 yıl önce
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?xml version="1.0"?>
  2. <package >
  3. <metadata>
  4. <id>MQTTnet</id>
  5. <version>2.6.0</version>
  6. <authors>Christian Kratky</authors>
  7. <owners>Christian Kratky</owners>
  8. <licenseUrl>https://github.com/chkr1011/MQTTnet/blob/master/LICENSE</licenseUrl>
  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>* [Core] Merged projects (BREAKING CHANGE! But only namespace changes).
  14. * [Core] Added a strong name for the assembly.
  15. * [Core] Performance optimizations.
  16. * [Core] Fixed a logging issue when dealing with IOExceptions.
  17. * [Core] Fixed a typo in the global logger class (BREAKING CHANGE! Please find new example in Wiki).
  18. * [Core] Added support for project compilation under macOS (Thanks to @FourOnes).
  19. * [Client] The certificate for encryption is now loaded as a _X509Certificate2_ which prodives more data (Thanks to @cvellan).
  20. * [Client] Fixed an issue in _ManagedClient_ which can cause the client to stop when publishing subscriptions.
  21. * [Client] Fixed an issue in _ManagedClient_ which prevents changing the QoS of an existing subscription (BREAKING CHANGE!).
  22. * [Client] Fixed an issue in _MqttClientOptionsBuilder_ which prevents adding TLS options to the client options when calling _Build()_. (Thanks to @cvellan).
  23. * [Client] Added an overload for subscribing at both clients which reduces required code.
  24. * [Client] Added the _ClientId_ to the application message interceptor context.
  25. * [Server] The application message interceptor can now delete any received application message.
  26. * [Server] Added a ConnectionValidator context to align with other APIs (BREAKING CHANGE! Please find new example in Wiki).
  27. * [Server] Added an interface for the _MqttServerOptions_.
  28. * [Server] Added packet statistics for the connected clients.
  29. * [Server] Fixed a security issue which sends retained packages to a failed subscription.
  30. * [Server] Fixed the response (MaximumQoS) of a subscription (Thanks to @redbeans2017).
  31. * [Server] The keep alive timeouts are now checked for every client (Thanks to @RainerMueller82).
  32. </releaseNotes>
  33. <copyright>Copyright Christian Kratky 2016-2017</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.1" />
  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.1" />
  47. </group>
  48. <group targetFramework="uap10.0">
  49. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="5.4.1" />
  50. </group>
  51. <group targetFramework="net452">
  52. </group>
  53. <group targetFramework="net461">
  54. </group>
  55. </dependencies>
  56. </metadata>
  57. <files>
  58. <!-- .NET Standard 1.3 -->
  59. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  60. <!-- .NET Standard 2.0 -->
  61. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  62. <!-- Universal Windows -->
  63. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  64. <!-- .NET Framework -->
  65. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  66. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\net461\MQTTnet.*" target="lib\net461\"/>
  67. </files>
  68. </package>