Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

MQTTnet.nuspec 4.7 KiB

6 år sedan
6 år sedan
6 år sedan
6 år sedan
6 år sedan
7 år sedan
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. <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] Performance optimizations.
  14. * [Core] Due to performance reasons the timestamp of log messages is now in UTC format.
  15. * [Core] Added several packet validations.
  16. * [Core] Log messages now contain the complete source path including parent components.
  17. * [Core] The adapter now has an _Endpoint_ definition as string containing remote IP and port.
  18. * [Client] Received messages are now processed completely in the worker thread without creating new Tasks.
  19. * [Client] Fixed wrong calculation for sending keep alive packets (thanks to @cstichlberger)
  20. * [Client] A clean disconnect (via DisconnectAsync) will no longer throw an exception.
  21. * [ManagedClient] The managed client is moved to a separate nuget package.
  22. * [ManagedClient] Added an own message format with extended properties like ID (BREAKING CHANGE).
  23. * [ManagedClient] Fixed a loading issue of stored application messages (thanks to @JTrotta).
  24. * [Server] Added support for other WebSocket sub protocol formats like mqttv-3.1.1 (thanks to @israellot).
  25. * [Server] The takeover of an existing client sessions is now treated as a _clean_ disconnect of the previous client.
  26. * [Server] The pending messages queue per client is now limited to 250 messages. Overflow strategy and count can be changed via options (thanks to @VladimirAkopyan)
  27. * [Server] Keep alive checking is now suspended while large packages are being received (and thus the client is connected). Keep alive checking continues after a large packet is received completely.
  28. * [Server] Rewritten the _ConnectedClients_ API and added new features for disconnecting and Endpoint information (IP etc.).
  29. * [Server] Added settings for disabling persistent sessions and defining a max pending messages queue size per session.
  30. * [Server] Persistent sessions are disabled by default (BREAKING CHANGE!).
  31. * [Server] Added a new interceptor which is invoked before a new message is added to the client queue.
  32. * [Server] Added support for Linux servers by dividing IPv4 and IPv6 support and adding new options (BREAKING CHANGE!).
  33. * [Server] Gracefully closed connections are no longer reported as warnings.
  34. </releaseNotes>
  35. <copyright>Copyright Christian Kratky 2016-2018</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</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.1" />
  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="uap10.0">
  51. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="5.4.1" />
  52. </group>
  53. <group targetFramework="net452">
  54. </group>
  55. <group targetFramework="net461">
  56. </group>
  57. </dependencies>
  58. </metadata>
  59. <files>
  60. <!-- .NET Standard 1.3 -->
  61. <file src="..\Source\MQTTnet\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  62. <!-- .NET Standard 2.0 -->
  63. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  64. <!-- Universal Windows -->
  65. <file src="..\Source\MQTTnet\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  66. <!-- .NET Framework -->
  67. <file src="..\Source\MQTTnet\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  68. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\net461\"/>
  69. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\net472\"/>
  70. </files>
  71. </package>