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

7 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. * [Client] Fixed an issue in _ManagedClient_ which can cause the client to stop when publishing subscriptions.
  19. * [Server] The application message interceptor can now delete any received application message.
  20. * [Server] Added a ConnectionValidator context to align with other APIs (BREAKING CHANGE! Please find new example in Wiki).
  21. * [Server] Added an interface for the _MqttServerOptions_.
  22. * [Server] Added packet statistics for the connected clients.
  23. * [Server] Fixed a security issue which sends retained packages to a failed subscription.
  24. * [Server] Fixed the response (MaximumQoS) of a subscription (Thanks to @redbeans2017).
  25. </releaseNotes>
  26. <copyright>Copyright Christian Kratky 2016-2017</copyright>
  27. <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>
  28. <dependencies>
  29. <group targetFramework="netstandard1.3">
  30. <dependency id="NETStandard.Library" version="1.3.0" />
  31. <dependency id="System.Net.Security" version="4.3.2" />
  32. <dependency id="System.Net.WebSockets" version="4.3.0" />
  33. <dependency id="System.Net.WebSockets.Client" version="4.3.1" />
  34. </group>
  35. <group targetFramework="netstandard2.0">
  36. <dependency id="NETStandard.Library" version="2.0.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="uap10.0">
  42. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="5.4.1" />
  43. </group>
  44. <group targetFramework="net452">
  45. </group>
  46. <group targetFramework="net461">
  47. </group>
  48. </dependencies>
  49. </metadata>
  50. <files>
  51. <!-- .NET Standard 1.3 -->
  52. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  53. <!-- .NET Standard 2.0 -->
  54. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  55. <!-- Universal Windows -->
  56. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  57. <!-- .NET Framework -->
  58. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  59. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\net461\MQTTnet.*" target="lib\net461\"/>
  60. </files>
  61. </package>