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 2.7 KiB

5 years ago
5 years ago
5 years ago
7 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. * [Server] Moved new socket options to TCP options to avoid incompatibility with Linux hosts.
  15. </releaseNotes>
  16. <copyright>Copyright Christian Kratky 2016-2019</copyright>
  17. <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>
  18. <dependencies>
  19. <group targetFramework="netstandard1.3">
  20. <dependency id="NETStandard.Library" version="1.3.0" />
  21. <dependency id="System.Net.Security" version="4.3.2" />
  22. <dependency id="System.Net.WebSockets" version="4.3.0" />
  23. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  24. </group>
  25. <group targetFramework="netstandard2.0">
  26. <dependency id="NETStandard.Library" version="2.0.0" />
  27. <dependency id="System.Net.Security" version="4.3.2" />
  28. <dependency id="System.Net.WebSockets" version="4.3.0" />
  29. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  30. </group>
  31. <group targetFramework="uap10.0">
  32. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="6.2.8" />
  33. </group>
  34. </dependencies>
  35. </metadata>
  36. <files>
  37. <!-- License -->
  38. <file src="..\LICENSE" />
  39. <!-- .NET Standard 1.3 -->
  40. <file src="..\Source\MQTTnet\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  41. <!-- .NET Standard 2.0 -->
  42. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  43. <!-- Universal Windows -->
  44. <file src="..\Source\MQTTnet\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  45. <!-- .NET Framework -->
  46. <file src="..\Source\MQTTnet\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  47. <!-- .NET Framework 4.6.0 will use binaries from 4.5.2. -->
  48. <file src="..\Source\MQTTnet\bin\Release\net461\MQTTnet.*" target="lib\net461\"/>
  49. <!-- Everything above .NET Framework 4.6.1 will use the binaries from 4.6.1. -->
  50. </files>
  51. </package>