You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MQTTnet.nuspec 3.4 KiB

5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
7 vuotta sitten
5 vuotta sitten
7 vuotta sitten
5 vuotta sitten
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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] Nuget packages with symbols are now also published to improve debugging.
  15. * [Core] Improve task handling (thanks to @mwinterb)
  16. * [ManagedClient] Fix a race condition in the message storage (thanks to @PaulFake).
  17. * [Server] Added items dictionary to client session in order to share data across interceptors as along as the session exists.
  18. * [Server] Exposed CONNECT packet properties in Application Message and Subscription interceptor.
  19. * [Server] Fixed: Sending Large packets with AspnetCore based connection throws System.ArgumentException.
  20. * [Server] Fixed wrong usage of socket option _NoDelay_.
  21. * [Server] Added remote certificate validation callback (thanks to @rudacs).
  22. * [Server] Add support for certificate passwords (thanks to @cslutgen).
  23. * [MQTTnet.Server] Added REST API for publishing basic messages.
  24. </releaseNotes>
  25. <copyright>Copyright Christian Kratky 2016-2019</copyright>
  26. <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>
  27. <dependencies>
  28. <group targetFramework="netstandard1.3">
  29. <dependency id="NETStandard.Library" version="1.3.0" />
  30. <dependency id="System.Net.Security" version="4.3.2" />
  31. <dependency id="System.Net.WebSockets" version="4.3.0" />
  32. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  33. </group>
  34. <group targetFramework="netstandard2.0">
  35. <dependency id="NETStandard.Library" version="2.0.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="uap10.0">
  41. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="6.2.8" />
  42. </group>
  43. </dependencies>
  44. </metadata>
  45. <files>
  46. <!-- License -->
  47. <file src="..\LICENSE" />
  48. <!-- .NET Standard 1.3 -->
  49. <file src="..\Source\MQTTnet\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  50. <!-- .NET Standard 2.0 -->
  51. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  52. <!-- Universal Windows -->
  53. <file src="..\Source\MQTTnet\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  54. <!-- .NET Framework -->
  55. <file src="..\Source\MQTTnet\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  56. <!-- .NET Framework 4.6.0 will use binaries from 4.5.2. -->
  57. <file src="..\Source\MQTTnet\bin\Release\net461\MQTTnet.*" target="lib\net461\"/>
  58. <!-- Everything above .NET Framework 4.6.1 will use the binaries from 4.6.1. -->
  59. </files>
  60. </package>