No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

MQTTnet.nuspec 3.1 KiB

hace 5 años
hace 5 años
hace 5 años
hace 5 años
hace 5 años
hace 7 años
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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] Added items dictionary to client session in order to share data across interceptors as along as the session exists.
  15. * [Server] Exposed CONNECT packet properties in Application Message and Subscription interceptor.
  16. * [Server] Fixed: Sending Large packets with AspnetCore based connection throws System.ArgumentException.
  17. * [Server] Fixed wrong usage of socket option _NoDelay_.
  18. * [MQTTnet.Server] Added REST API for publishing basic messages.
  19. </releaseNotes>
  20. <copyright>Copyright Christian Kratky 2016-2019</copyright>
  21. <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>
  22. <dependencies>
  23. <group targetFramework="netstandard1.3">
  24. <dependency id="NETStandard.Library" version="1.3.0" />
  25. <dependency id="System.Net.Security" version="4.3.2" />
  26. <dependency id="System.Net.WebSockets" version="4.3.0" />
  27. <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
  28. </group>
  29. <group targetFramework="netstandard2.0">
  30. <dependency id="NETStandard.Library" version="2.0.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.2" />
  34. </group>
  35. <group targetFramework="uap10.0">
  36. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="6.2.8" />
  37. </group>
  38. </dependencies>
  39. </metadata>
  40. <files>
  41. <!-- License -->
  42. <file src="..\LICENSE" />
  43. <!-- .NET Standard 1.3 -->
  44. <file src="..\Source\MQTTnet\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  45. <!-- .NET Standard 2.0 -->
  46. <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
  47. <!-- Universal Windows -->
  48. <file src="..\Source\MQTTnet\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
  49. <!-- .NET Framework -->
  50. <file src="..\Source\MQTTnet\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  51. <!-- .NET Framework 4.6.0 will use binaries from 4.5.2. -->
  52. <file src="..\Source\MQTTnet\bin\Release\net461\MQTTnet.*" target="lib\net461\"/>
  53. <!-- Everything above .NET Framework 4.6.1 will use the binaries from 4.6.1. -->
  54. </files>
  55. </package>