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.4 KiB

6 år sedan
6 år sedan
6 år sedan
6 år sedan
6 år sedan
7 år sedan
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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] Added a new interceptor which is invoked before a new message is added to the client queue.
  31. </releaseNotes>
  32. <copyright>Copyright Christian Kratky 2016-2018</copyright>
  33. <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>
  34. <dependencies>
  35. <group targetFramework="netstandard1.3">
  36. <dependency id="NETStandard.Library" version="1.3.0" />
  37. <dependency id="System.Net.Security" version="4.3.2" />
  38. <dependency id="System.Net.WebSockets" version="4.3.0" />
  39. <dependency id="System.Net.WebSockets.Client" version="4.3.1" />
  40. </group>
  41. <group targetFramework="netstandard2.0">
  42. <dependency id="NETStandard.Library" version="2.0.0" />
  43. <dependency id="System.Net.Security" version="4.3.2" />
  44. <dependency id="System.Net.WebSockets" version="4.3.0" />
  45. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  46. </group>
  47. <group targetFramework="uap10.0">
  48. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="5.4.1" />
  49. </group>
  50. <group targetFramework="net452">
  51. </group>
  52. <group targetFramework="net461">
  53. </group>
  54. </dependencies>
  55. </metadata>
  56. <files>
  57. <!-- .NET Standard 1.3 -->
  58. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  59. <!-- .NET Standard 2.0 -->
  60. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  61. <!-- Universal Windows -->
  62. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  63. <!-- .NET Framework -->
  64. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  65. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\net461\MQTTnet.*" target="lib\net461\"/>
  66. </files>
  67. </package>