|
- <?xml version="1.0"?>
- <package >
- <metadata>
- <id>MQTTnet</id>
- <version>2.5.0</version>
- <authors>Christian Kratky</authors>
- <owners>Christian Kratky</owners>
- <licenseUrl>https://github.com/chkr1011/MQTTnet/blob/master/LICENSE</licenseUrl>
- <projectUrl>https://github.com/chkr1011/MQTTnet</projectUrl>
- <iconUrl>https://raw.githubusercontent.com/chkr1011/MQTTnet/master/Images/Logo_128x128.png</iconUrl>
- <requireLicenseAcceptance>false</requireLicenseAcceptance>
- <description>MQTTnet is a high performance .NET library for MQTT based communication. It provides a MQTT client and a MQTT server (broker).</description>
- <releaseNotes>* [Core] Merged the .NET Framwork and netstandard projects (Thanks to @JanEggers)
- * [Core] Migrated the trace to a non-static approach (Breaking Change!)
- * [Core] Added a builder for application messages using a fluent API
- * [Core] Introduced CI (Thanks to @JanEggers)
- * [Core] Added interfaces for publishing and receiving which applies to every client and server (Thanks to @ChristianRiedl)
- * [Client] Added a first version of a managed client which will manage the connection, subscription etc. automatically (Thanks to @JTrotta)
- * [Client] The session state response from the server is now returned in the _ConnectAsync_ method and also part of the _Connected_ event args
- * [Client] Added a _TopicFilterBuilder_ using a fluent API (Namespace Changes!)
- * [Client] Added several new options for the WebSocket channel (Thanks to @ChristianRiedl)
- * [Client] Refactored the options and added a builder using a fluent API (Breaking Change!)
- * [Client] Added more options for WebSocket connections like RequestHeaders, SubProtocol etc.
- * [Server] Added support for WebSockets via ASP.NET Core 2.0 (Thanks to @ChristianRiedl)
- * [Server] Added support for a custom application message interceptor
- * [Server] Fixed an issue with dropped connections on UWP (Thanks to @haeberle)
- </releaseNotes>
- <copyright>Copyright Christian Kratky 2016-2017</copyright>
- <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</tags>
- <dependencies>
-
- <group targetFramework="netstandard1.3">
- <dependency id="NETStandard.Library" version="1.6.1" />
- <dependency id="System.Net.Security" version="4.3.2" />
- </group>
-
- <group targetFramework="uap10.0">
- <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="5.4.0" />
- </group>
-
- </dependencies>
- </metadata>
-
- <files>
- <!-- .NET Standard 1.3 -->
- <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\netstandard1.3\MQTTnet.Core.*" target="lib\netstandard1.3\"/>
- <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
-
- <!-- Universal Windows -->
- <file src="..\Frameworks\MQTTnet.UniversalWindows\bin\Release\MQTTnet.Core.*" target="lib\uap10.0\"/>
- <file src="..\Frameworks\MQTTnet.UniversalWindows\bin\Release\MQTTnet.*" target="lib\uap10.0\"/>
-
- <!-- .NET Framework -->
- <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\net451\MQTTnet.Core.*" target="lib\net451\"/>
- <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\net451\MQTTnet.*" target="lib\net451\"/>
-
- </files>
- </package>
|