Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- <?xml version="1.0"?>
- <package >
- <metadata>
- <id>MQTTnet</id>
- <version>2.6.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 projects (BREAKING CHANGE! But only namespace changes).
- * [Core] Added a strong name for the assembly.
- * [Core] Performance optimizations.
- * [Core] Fixed a logging issue when dealing with IOExceptions.
- * [Core] Fixed a typo in the global logger class (BREAKING CHANGE! Please find new example in Wiki).
- * [Core] Added support for project compilation under macOS (Thanks to @FourOnes).
- * [Client] The certificate for encryption is now loaded as a _X509Certificate2_ which prodives more data (Thanks to @cvellan).
- * [Client] Fixed an issue in _ManagedClient_ which can cause the client to stop when publishing subscriptions.
- * [Client] Fixed an issue in _ManagedClient_ which prevents changing the QoS of an existing subscription (BREAKING CHANGE!).
- * [Client] Fixed an issue in _MqttClientOptionsBuilder_ which prevents adding TLS options to the client options when calling _Build()_. (Thanks to @cvellan).
- * [Client] Added an overload for subscribing at both clients which reduces required code.
- * [Client] Added the _ClientId_ to the application message interceptor context.
- * [Server] The application message interceptor can now delete any received application message.
- * [Server] Added a ConnectionValidator context to align with other APIs (BREAKING CHANGE! Please find new example in Wiki).
- * [Server] Added an interface for the _MqttServerOptions_.
- * [Server] Added packet statistics for the connected clients.
- * [Server] Fixed a security issue which sends retained packages to a failed subscription.
- * [Server] Fixed the response (MaximumQoS) of a subscription (Thanks to @redbeans2017).
- * [Server] The keep alive timeouts are now checked for every client (Thanks to @RainerMueller82).
- </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 Xamarin</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.1" />
- </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.1" />
- </group>
-
- <group targetFramework="uap10.0">
- <dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="5.4.1" />
- </group>
-
- <group targetFramework="net452">
- </group>
-
- <group targetFramework="net461">
- </group>
-
- </dependencies>
- </metadata>
-
- <files>
-
- <!-- .NET Standard 1.3 -->
- <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\netstandard1.3\MQTTnet.*" target="lib\netstandard1.3\"/>
-
- <!-- .NET Standard 2.0 -->
- <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\netstandard2.0\MQTTnet.*" target="lib\netstandard2.0\"/>
-
- <!-- Universal Windows -->
- <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\uap10.0\MQTTnet.*" target="lib\uap10.0\"/>
-
- <!-- .NET Framework -->
- <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\net452\MQTTnet.*" target="lib\net452\"/>
-
- <file src="..\Frameworks\MQTTnet.Netstandard\bin\Release\net461\MQTTnet.*" target="lib\net461\"/>
-
- </files>
- </package>
|