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

hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?xml version="1.0"?>
  2. <package >
  3. <metadata>
  4. <id>MQTTnet</id>
  5. <version>2.5.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 the platform specific projects (Thanks to @JanEggers)
  14. * [Core] Migrated the trace to a non-static approach (Breaking Change!)
  15. * [Core] Added a builder for application messages using a fluent API
  16. * [Core] Introduced CI and DI (Thanks to @JanEggers)
  17. * [Core] Added interfaces for publishing and receiving which applies to every client and server (Thanks to @ChristianRiedl)
  18. * [Core] Fixed an issue when reading from closed streams
  19. * [Client] Added a first version of a managed client which will manage the connection, subscription etc. automatically (Thanks to @JTrotta)
  20. * [Client] The session state response from the server is now returned in the _ConnectAsync_ method and also part of the _Connected_ event args
  21. * [Client] Added a _TopicFilterBuilder_ using a fluent API (Namespace Changes!)
  22. * [Client] Added several new options for the WebSocket channel (Thanks to @ChristianRiedl)
  23. * [Client] Refactored the options and added a builder using a fluent API (Breaking Change!)
  24. * [Client] Added more options for WebSocket connections like RequestHeaders, SubProtocol etc.
  25. * [Server] Added support for WebSockets via ASP.NET Core 2.0 (additional nuget) (Thanks to @ChristianRiedl, @JanEggers)
  26. * [Server] Added support for a custom application message interceptor
  27. * [Server] Fixed an issue with dropped connections on UWP (Thanks to @haeberle)
  28. * [Server] Added support for a custom subscription interceptor which allows denying of subscriptions and closing the connection
  29. </releaseNotes>
  30. <copyright>Copyright Christian Kratky 2016-2017</copyright>
  31. <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>
  32. <dependencies>
  33. <group targetFramework="netstandard1.3">
  34. <dependency id="NETStandard.Library" version="1.6.1" />
  35. <dependency id="Microsoft.Extensions.DependencyInjection" version="1.1.1" />
  36. <dependency id="Microsoft.Extensions.Logging" version="1.1.2" />
  37. <dependency id="Microsoft.Extensions.Options" version="1.1.2" />
  38. <dependency id="System.Net.Security" version="4.3.2" />
  39. <dependency id="System.Net.WebSockets" version="4.3.0" />
  40. <dependency id="System.Net.WebSockets.Client" version="4.3.1" />
  41. <dependency id="System.Threading.Thread" version="4.3.0" />
  42. </group>
  43. <group targetFramework="uap10.0">
  44. <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="5.4.0" />
  45. <dependency id="Microsoft.Extensions.DependencyInjection" version="1.1.1" />
  46. <dependency id="Microsoft.Extensions.Logging" version="1.1.2" />
  47. <dependency id="Microsoft.Extensions.Options" version="1.1.2" />
  48. </group>
  49. <group targetFramework="net451">
  50. <dependency id="Microsoft.Extensions.DependencyInjection" version="1.1.1" />
  51. <dependency id="Microsoft.Extensions.Logging" version="1.1.2" />
  52. <dependency id="Microsoft.Extensions.Options" version="1.1.2" />
  53. </group>
  54. </dependencies>
  55. </metadata>
  56. <files>
  57. <!-- .NET Standard 1.3 -->
  58. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\netstandard1.3\MQTTnet.Core.*" target="lib\netstandard1.3\"/>
  59. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
  60. <!-- Universal Windows -->
  61. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\uap10.0\MQTTnet.Core.*" target="lib\uap10.0\"/>
  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.Core.*" target="lib\net452\"/>
  65. <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
  66. </files>
  67. </package>