|
- <?xml version="1.0"?>
- <package >
- <metadata>
- <id>MQTTnet</id>
- <version>0.0.0</version>
- <authors>The contributors of MQTTnet</authors>
- <owners>Christian Kratky</owners>
- <license type="file">LICENSE</license>
- <projectUrl>https://github.com/chkr1011/MQTTnet</projectUrl>
- <iconUrl>https://raw.githubusercontent.com/chkr1011/MQTTnet/master/Images/Logo_128x128.png</iconUrl>
- <icon>images\Logo_128x128.png</icon>
- <requireLicenseAcceptance>true</requireLicenseAcceptance>
- <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>
- <releaseNotes>
- * [Core] Added .NET 5.0 TFMs (thanks to @StefanOssendorf, @JanEggers).
- * [Core] Added support for TLS 1.3 (requires .NET Core 3.1+) (thanks to @Dvergatal).
- * [Core] Added support for _MaximumQoS_ transmit when using MQTTv5 (thanks to @nayato).
- * [Core] Aligned the format of some log messages.
- * [Client] Fixed an issue with connection state detection (thanks to @tobiasfrick).
- * [Client] Fixed an issue when receiving partial QoS 2 packets after a reconnect.
- * [Client] Added new API for raw packet inspection.
- * [ManagedClient] Removed _AutoReconnect_ since this does no longer work (BREAKING CHANGE!).
- * [RpcClient] Moved the RPC topic validation to the topic generation strategy.
- * [RcpClient] Added interface for _MqttRpcClient_.
- * [Server] Reduced async tasks count by moving dedicated keep alive tasks per connection to shared one.
- * [Server] Session takeover and keep alive timeout are now properly set in DISCONNECT packet.
- * [Server] Fixed bug in PubRel packet generation (MQTTv5 only).
- * [Server] Improved message processing performance (+ ~5%).
- * [Server] Fix wrong usage of client session items for undelivered messages.
- * [Server] Allow to respond with a reason code in PUBACK/PUBREC (thanks to @muneebmajeed).
- * [Server] Fixed topic filter comparer on edge cases, e.g. "foo/" matching "foo/#" (thanks to @dagophil).
- * [Core] Added code documentation.
-
- Git commit: $gitCommit
- </releaseNotes>
- <copyright>Copyright Christian Kratky 2016-2020</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 Xamarin Blazor</tags>
- <dependencies>
- <group targetFramework="netstandard1.3">
- <dependency id="NETStandard.Library" version="1.3.0" />
- <dependency id="System.Net.Security" version="4.3.2" />
- <dependency id="System.Net.WebSockets" version="4.3.0" />
- <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
- </group>
- <group targetFramework="netstandard2.0">
- <dependency id="NETStandard.Library" version="2.0.0" />
- <dependency id="System.Net.Security" version="4.3.2" />
- <dependency id="System.Net.WebSockets" version="4.3.0" />
- <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
- </group>
- <group targetFramework="netstandard2.1">
- <dependency id="NETStandard.Library" version="2.0.0" />
- <dependency id="System.Net.Security" version="4.3.2" />
- <dependency id="System.Net.WebSockets" version="4.3.0" />
- <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
- </group>
- <group targetFramework="netcoreapp3.1">
- <dependency id="NETStandard.Library" version="2.0.0" />
- <dependency id="System.Net.Security" version="4.3.2" />
- <dependency id="System.Net.WebSockets" version="4.3.0" />
- <dependency id="System.Net.WebSockets.Client" version="4.3.2" />
- </group>
- <group targetFramework="uap10.0">
- <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="6.2.10" />
- </group>
- </dependencies>
- </metadata>
-
- <files>
- <!-- License -->
- <file src="..\LICENSE" />
-
- <!-- Images -->
- <file src="..\Images\Logo_128x128.png" target="images\" />
-
- <!-- .NET 5.0 -->
- <file src="..\Source\MQTTnet\bin\Release\net5.0\MQTTnet.*" target="lib\net5.0\" />
-
- <!-- .NET Standard 1.3 -->
- <file src="..\Source\MQTTnet\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\" />
-
- <!-- .NET Standard 2.0 -->
- <file src="..\Source\MQTTnet\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\" />
-
- <!-- .NET Standard 2.1 -->
- <file src="..\Source\MQTTnet\bin\Release\netstandard2.1\MQTTnet.*" target="lib\netstandard2.1\" />
-
- <!-- .NET Standard 3.1 -->
- <file src="..\Source\MQTTnet\bin\Release\netcoreapp3.1\MQTTnet.*" target="lib\netcoreapp3.1\" />
-
- <!-- Universal Windows -->
- <file src="..\Source\MQTTnet\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\" />
-
- <!-- .NET Framework -->
- <file src="..\Source\MQTTnet\bin\Release\net452\MQTTnet.*" target="lib\net452\" />
-
- <!-- .NET Framework 4.6.0 will use binaries from 4.5.2. -->
- <file src="..\Source\MQTTnet\bin\Release\net461\MQTTnet.*" target="lib\net461\" />
-
- <!-- Everything above .NET Framework 4.6.1 will use the binaries from 4.6.1. -->
- </files>
- </package>
|