在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → C#.Net开发MQTT物联网需要的资料和代码汇总支持framework3.5

C#.Net开发MQTT物联网需要的资料和代码汇总支持framework3.5

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:46.64M
  • 下载次数:41
  • 浏览次数:153
  • 发布时间:2023-07-19
  • 实例类别:C#语言基础
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 相关标签: .NET MQTT NET 物联网 3.5

实例介绍

【实例简介】C#.Net开发MQTT物联网需要的资料和代码汇总支持framework3.5
物联网协议mqtt的参考资料: ...微软的即时消息通信方案: https://github.com/signalr 英国剑桥大学开发的c#即时通信控件NetworkComms.net: https://github.com/MarcFletcher/NetworkComms.Net

【实例截图】

from clipboardfrom clipboard

from clipboard

【核心代码】
文件清单
├── doNetMqttTest
│   └── MqttTest
│       ├── DATA
│       ├── MqttClientWin
│       │   ├── App.config
│       │   ├── bin
│       │   │   ├── Debug
│       │   │   │   ├── Apache.NMS.ActiveMQ.dll
│       │   │   │   ├── Apache.NMS.ActiveMQ.pdb
│       │   │   │   ├── Apache.NMS.ActiveMQ.xml
│       │   │   │   ├── Apache.NMS.dll
│       │   │   │   ├── Apache.NMS.pdb
│       │   │   │   ├── Apache.NMS.xml
│       │   │   │   ├── Microsoft.Win32.Primitives.dll
│       │   │   │   ├── MqttClientWin.exe
│       │   │   │   ├── MqttClientWin.exe.config
│       │   │   │   ├── MqttClientWin.pdb
│       │   │   │   ├── MqttClientWin.vshost.exe
│       │   │   │   ├── MqttClientWin.vshost.exe.config
│       │   │   │   ├── MqttClientWin.vshost.exe.manifest
│       │   │   │   ├── MQTTnet.Core.dll
│       │   │   │   ├── MQTTnet.dll
│       │   │   │   ├── System.AppContext.dll
│       │   │   │   ├── System.Console.dll
│       │   │   │   ├── System.Diagnostics.DiagnosticSource.dll
│       │   │   │   ├── System.Diagnostics.DiagnosticSource.xml
│       │   │   │   ├── System.Globalization.Calendars.dll
│       │   │   │   ├── System.IO.Compression.dll
│       │   │   │   ├── System.IO.Compression.ZipFile.dll
│       │   │   │   ├── System.IO.FileSystem.dll
│       │   │   │   ├── System.IO.FileSystem.Primitives.dll
│       │   │   │   ├── System.Net.Http.dll
│       │   │   │   ├── System.Net.Security.dll
│       │   │   │   ├── System.Net.Sockets.dll
│       │   │   │   ├── System.Runtime.InteropServices.RuntimeInformation.dll
│       │   │   │   ├── System.Security.Cryptography.Algorithms.dll
│       │   │   │   ├── System.Security.Cryptography.Encoding.dll
│       │   │   │   ├── System.Security.Cryptography.Primitives.dll
│       │   │   │   ├── System.Security.Cryptography.X509Certificates.dll
│       │   │   │   └── System.Xml.ReaderWriter.dll
│       │   │   └── Release
│       │   ├── FmMqttClient.cs
│       │   ├── FmMqttClient.Designer.cs
│       │   ├── FmMqttClient.resx
│       │   ├── MqttClientWin.csproj
│       │   ├── obj
│       │   │   └── Debug
│       │   │       ├── DesignTimeResolveAssemblyReferences.cache
│       │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│       │   │       ├── MqttClientWin.csprojAssemblyReference.cache
│       │   │       ├── MqttClientWin.csproj.CopyComplete
│       │   │       ├── MqttClientWin.csproj.CoreCompileInputs.cache
│       │   │       ├── MqttClientWin.csproj.FileListAbsolute.txt
│       │   │       ├── MqttClientWin.csproj.GenerateResource.Cache
│       │   │       ├── MqttClientWin.csprojResolveAssemblyReference.cache
│       │   │       ├── MqttClientWin.exe
│       │   │       ├── MqttClientWin.FmMqttClient.resources
│       │   │       ├── MqttClientWin.pdb
│       │   │       ├── MqttClientWin.Properties.Resources.resources
│       │   │       ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│       │   │       ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│       │   │       ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│       │   │       └── TempPE
│       │   │           └── Properties.Resources.Designer.cs.dll
│       │   ├── packages.config
│       │   ├── Program.cs
│       │   └── Properties
│       │       ├── AssemblyInfo.cs
│       │       ├── Resources.Designer.cs
│       │       ├── Resources.resx
│       │       ├── Settings.Designer.cs
│       │       └── Settings.settings
│       ├── MqttServerTest
│       │   ├── bin
│       │   │   └── Debug
│       │   │       └── netcoreapp2.0
│       │   │           ├── MqttServerTest.deps.json
│       │   │           ├── MqttServerTest.dll
│       │   │           ├── MqttServerTest.pdb
│       │   │           ├── MqttServerTest.runtimeconfig.dev.json
│       │   │           └── MqttServerTest.runtimeconfig.json
│       │   ├── MqttServerTest.csproj
│       │   ├── obj
│       │   │   ├── Debug
│       │   │   │   └── netcoreapp2.0
│       │   │   │       ├── MqttServerTest.AssemblyInfo.cs
│       │   │   │       ├── MqttServerTest.AssemblyInfoInputs.cache
│       │   │   │       ├── MqttServerTest.csprojAssemblyReference.cache
│       │   │   │       ├── MqttServerTest.csproj.CoreCompileInputs.cache
│       │   │   │       ├── MqttServerTest.csproj.FileListAbsolute.txt
│       │   │   │       ├── MqttServerTest.csprojResolveAssemblyReference.cache
│       │   │   │       ├── MqttServerTest.dll
│       │   │   │       └── MqttServerTest.pdb
│       │   │   ├── MqttServerTest.csproj.nuget.cache
│       │   │   ├── MqttServerTest.csproj.nuget.g.props
│       │   │   ├── MqttServerTest.csproj.nuget.g.targets
│       │   │   └── project.assets.json
│       │   └── Program.cs
│       ├── MqttTest.sln
│       └── packages
│           ├── Apache.NMS.1.7.1
│           │   ├── Apache.NMS.1.7.1.nupkg
│           │   ├── lib
│           │   │   ├── net20
│           │   │   │   ├── Apache.NMS.dll
│           │   │   │   ├── Apache.NMS.pdb
│           │   │   │   └── Apache.NMS.xml
│           │   │   ├── net20-cf
│           │   │   │   ├── Apache.NMS.dll
│           │   │   │   ├── Apache.NMS.pdb
│           │   │   │   └── Apache.NMS.xml
│           │   │   ├── net35
│           │   │   │   ├── Apache.NMS.dll
│           │   │   │   ├── Apache.NMS.pdb
│           │   │   │   └── Apache.NMS.xml
│           │   │   └── net40
│           │   │       ├── Apache.NMS.dll
│           │   │       ├── Apache.NMS.pdb
│           │   │       └── Apache.NMS.xml
│           │   ├── LICENSE.txt
│           │   └── NOTICE.txt
│           ├── Apache.NMS.ActiveMQ.1.7.2
│           │   ├── Apache.NMS.ActiveMQ.1.7.2.nupkg
│           │   ├── lib
│           │   │   ├── net20
│           │   │   │   ├── Apache.NMS.ActiveMQ.dll
│           │   │   │   ├── Apache.NMS.ActiveMQ.pdb
│           │   │   │   └── Apache.NMS.ActiveMQ.xml
│           │   │   ├── net35
│           │   │   │   ├── Apache.NMS.ActiveMQ.dll
│           │   │   │   ├── Apache.NMS.ActiveMQ.pdb
│           │   │   │   └── Apache.NMS.ActiveMQ.xml
│           │   │   └── net40
│           │   │       ├── Apache.NMS.ActiveMQ.dll
│           │   │       ├── Apache.NMS.ActiveMQ.pdb
│           │   │       └── Apache.NMS.ActiveMQ.xml
│           │   ├── LICENSE.txt
│           │   └── NOTICE.txt
│           ├── Microsoft.NETCore.Platforms.1.1.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   └── netstandard1.0
│           │   │       └── _._
│           │   ├── Microsoft.NETCore.Platforms.1.1.0.nupkg
│           │   ├── runtime.json
│           │   └── ThirdPartyNotices.txt
│           ├── Microsoft.Win32.Primitives.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── Microsoft.Win32.Primitives.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── Microsoft.Win32.Primitives.4.3.0.nupkg
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── Microsoft.Win32.Primitives.dll
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── Microsoft.Win32.Primitives.xml
│           │   │   │   ├── es
│           │   │   │   │   └── Microsoft.Win32.Primitives.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── Microsoft.Win32.Primitives.xml
│           │   │   │   ├── it
│           │   │   │   │   └── Microsoft.Win32.Primitives.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── Microsoft.Win32.Primitives.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── Microsoft.Win32.Primitives.xml
│           │   │   │   ├── Microsoft.Win32.Primitives.dll
│           │   │   │   ├── Microsoft.Win32.Primitives.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── Microsoft.Win32.Primitives.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── Microsoft.Win32.Primitives.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── Microsoft.Win32.Primitives.xml
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   └── ThirdPartyNotices.txt
│           ├── MQTTnet.2.4.0
│           │   ├── lib
│           │   │   ├── net45
│           │   │   │   ├── MQTTnet.Core.dll
│           │   │   │   └── MQTTnet.dll
│           │   │   ├── netstandard1.3
│           │   │   │   ├── MQTTnet.Core.dll
│           │   │   │   ├── MQTTnet.deps.json
│           │   │   │   └── MQTTnet.dll
│           │   │   └── uap10.0
│           │   │       ├── MQTTnet.Core.dll
│           │   │       ├── MQTTnet.dll
│           │   │       └── MQTTnet.pri
│           │   └── MQTTnet.2.4.0.nupkg
│           ├── NETStandard.Library.1.6.1
│           │   ├── dotnet_library_license.txt
│           │   ├── NETStandard.Library.1.6.1.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.AppContext.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.AppContext.dll
│           │   │   ├── net463
│           │   │   │   └── System.AppContext.dll
│           │   │   ├── netcore50
│           │   │   │   └── System.AppContext.dll
│           │   │   ├── netstandard1.6
│           │   │   │   └── System.AppContext.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.AppContext.dll
│           │   │   ├── net463
│           │   │   │   └── System.AppContext.dll
│           │   │   ├── netstandard
│           │   │   │   └── _._
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.AppContext.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.AppContext.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.AppContext.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.AppContext.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.AppContext.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.AppContext.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.AppContext.xml
│           │   │   │   ├── System.AppContext.dll
│           │   │   │   ├── System.AppContext.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.AppContext.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.AppContext.xml
│           │   │   ├── netstandard1.6
│           │   │   │   ├── de
│           │   │   │   │   └── System.AppContext.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.AppContext.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.AppContext.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.AppContext.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.AppContext.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.AppContext.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.AppContext.xml
│           │   │   │   ├── System.AppContext.dll
│           │   │   │   ├── System.AppContext.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.AppContext.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.AppContext.xml
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── runtimes
│           │   │   └── aot
│           │   │       └── lib
│           │   │           └── netcore50
│           │   │               └── System.AppContext.dll
│           │   ├── System.AppContext.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Collections.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── System.Collections.dll
│           │   │   │   ├── System.Collections.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Collections.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── System.Collections.dll
│           │   │   │   ├── System.Collections.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Collections.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   ├── System.Collections.dll
│           │   │   │   ├── System.Collections.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Collections.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Collections.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Collections.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Collections.Concurrent.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   └── System.Collections.Concurrent.dll
│           │   │   ├── netstandard1.3
│           │   │   │   └── System.Collections.Concurrent.dll
│           │   │   ├── portable-net45 win8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── System.Collections.Concurrent.dll
│           │   │   │   ├── System.Collections.Concurrent.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Collections.Concurrent.xml
│           │   │   ├── netstandard1.1
│           │   │   │   ├── de
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── System.Collections.Concurrent.dll
│           │   │   │   ├── System.Collections.Concurrent.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Collections.Concurrent.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   ├── System.Collections.Concurrent.dll
│           │   │   │   ├── System.Collections.Concurrent.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Collections.Concurrent.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Collections.Concurrent.xml
│           │   │   ├── portable-net45 win8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Collections.Concurrent.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Console.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Console.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Console.dll
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Console.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Console.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Console.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Console.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Console.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Console.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Console.xml
│           │   │   │   ├── System.Console.dll
│           │   │   │   ├── System.Console.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Console.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Console.xml
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Console.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Diagnostics.Debug.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── System.Diagnostics.Debug.dll
│           │   │   │   ├── System.Diagnostics.Debug.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Diagnostics.Debug.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── System.Diagnostics.Debug.dll
│           │   │   │   ├── System.Diagnostics.Debug.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Diagnostics.Debug.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   ├── System.Diagnostics.Debug.dll
│           │   │   │   ├── System.Diagnostics.Debug.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Diagnostics.Debug.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Diagnostics.Debug.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Diagnostics.Debug.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Diagnostics.DiagnosticSource.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── net46
│           │   │   │   ├── System.Diagnostics.DiagnosticSource.dll
│           │   │   │   └── System.Diagnostics.DiagnosticSource.xml
│           │   │   ├── netstandard1.1
│           │   │   │   ├── System.Diagnostics.DiagnosticSource.dll
│           │   │   │   └── System.Diagnostics.DiagnosticSource.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── System.Diagnostics.DiagnosticSource.dll
│           │   │   │   └── System.Diagnostics.DiagnosticSource.xml
│           │   │   └── portable-net45 win8 wpa81
│           │   │       ├── System.Diagnostics.DiagnosticSource.dll
│           │   │       └── System.Diagnostics.DiagnosticSource.xml
│           │   ├── System.Diagnostics.DiagnosticSource.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Diagnostics.Tools.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Diagnostics.Tools.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Diagnostics.Tools.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Diagnostics.Tools.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Diagnostics.Tools.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Diagnostics.Tools.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Diagnostics.Tools.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Diagnostics.Tools.xml
│           │   │   │   ├── System.Diagnostics.Tools.dll
│           │   │   │   ├── System.Diagnostics.Tools.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Diagnostics.Tools.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Diagnostics.Tools.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Diagnostics.Tools.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Diagnostics.Tools.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Diagnostics.Tools.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Diagnostics.Tools.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Diagnostics.Tools.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Diagnostics.Tools.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Diagnostics.Tools.xml
│           │   │   │   ├── System.Diagnostics.Tools.dll
│           │   │   │   ├── System.Diagnostics.Tools.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Diagnostics.Tools.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Diagnostics.Tools.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Diagnostics.Tools.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Diagnostics.Tracing.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net462
│           │   │   │   └── System.Diagnostics.Tracing.dll
│           │   │   ├── portable-net45 win8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net462
│           │   │   │   └── System.Diagnostics.Tracing.dll
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── System.Diagnostics.Tracing.dll
│           │   │   │   ├── System.Diagnostics.Tracing.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Diagnostics.Tracing.xml
│           │   │   ├── netstandard1.1
│           │   │   │   ├── de
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── System.Diagnostics.Tracing.dll
│           │   │   │   ├── System.Diagnostics.Tracing.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Diagnostics.Tracing.xml
│           │   │   ├── netstandard1.2
│           │   │   │   ├── de
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── System.Diagnostics.Tracing.dll
│           │   │   │   ├── System.Diagnostics.Tracing.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Diagnostics.Tracing.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── System.Diagnostics.Tracing.dll
│           │   │   │   ├── System.Diagnostics.Tracing.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Diagnostics.Tracing.xml
│           │   │   ├── netstandard1.5
│           │   │   │   ├── de
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   ├── System.Diagnostics.Tracing.dll
│           │   │   │   ├── System.Diagnostics.Tracing.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Diagnostics.Tracing.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Diagnostics.Tracing.xml
│           │   │   ├── portable-net45 win8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Diagnostics.Tracing.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Globalization.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── System.Globalization.dll
│           │   │   │   ├── System.Globalization.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Globalization.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── System.Globalization.dll
│           │   │   │   ├── System.Globalization.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Globalization.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   ├── System.Globalization.dll
│           │   │   │   ├── System.Globalization.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Globalization.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Globalization.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Globalization.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Globalization.Calendars.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Globalization.Calendars.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Globalization.Calendars.dll
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Globalization.Calendars.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Globalization.Calendars.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Globalization.Calendars.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Globalization.Calendars.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Globalization.Calendars.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Globalization.Calendars.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Globalization.Calendars.xml
│           │   │   │   ├── System.Globalization.Calendars.dll
│           │   │   │   ├── System.Globalization.Calendars.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Globalization.Calendars.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Globalization.Calendars.xml
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Globalization.Calendars.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.IO.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net462
│           │   │   │   └── System.IO.dll
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net462
│           │   │   │   └── System.IO.dll
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── System.IO.dll
│           │   │   │   ├── System.IO.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.IO.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.IO.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── System.IO.dll
│           │   │   │   ├── System.IO.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.IO.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.IO.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── System.IO.dll
│           │   │   │   ├── System.IO.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.IO.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.IO.xml
│           │   │   ├── netstandard1.5
│           │   │   │   ├── de
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.IO.xml
│           │   │   │   ├── System.IO.dll
│           │   │   │   ├── System.IO.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.IO.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.IO.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.IO.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.IO.Compression.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.IO.Compression.dll
│           │   │   ├── portable-net45 win8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.IO.Compression.dll
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── System.IO.Compression.dll
│           │   │   │   ├── System.IO.Compression.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.IO.Compression.xml
│           │   │   ├── netstandard1.1
│           │   │   │   ├── de
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── System.IO.Compression.dll
│           │   │   │   ├── System.IO.Compression.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.IO.Compression.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   ├── System.IO.Compression.dll
│           │   │   │   ├── System.IO.Compression.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.IO.Compression.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.IO.Compression.xml
│           │   │   ├── portable-net45 win8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── runtimes
│           │   │   ├── unix
│           │   │   │   └── lib
│           │   │   │       └── netstandard1.3
│           │   │   │           └── System.IO.Compression.dll
│           │   │   └── win
│           │   │       └── lib
│           │   │           ├── net46
│           │   │           │   └── System.IO.Compression.dll
│           │   │           └── netstandard1.3
│           │   │               └── System.IO.Compression.dll
│           │   ├── System.IO.Compression.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.IO.Compression.ZipFile.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.IO.Compression.ZipFile.dll
│           │   │   ├── netstandard1.3
│           │   │   │   └── System.IO.Compression.ZipFile.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.IO.Compression.ZipFile.dll
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.IO.Compression.ZipFile.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.IO.Compression.ZipFile.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.IO.Compression.ZipFile.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.IO.Compression.ZipFile.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.IO.Compression.ZipFile.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.IO.Compression.ZipFile.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.IO.Compression.ZipFile.xml
│           │   │   │   ├── System.IO.Compression.ZipFile.dll
│           │   │   │   ├── System.IO.Compression.ZipFile.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.IO.Compression.ZipFile.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.IO.Compression.ZipFile.xml
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.IO.Compression.ZipFile.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.IO.FileSystem.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.IO.FileSystem.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.IO.FileSystem.dll
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.IO.FileSystem.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.IO.FileSystem.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.IO.FileSystem.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.IO.FileSystem.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.IO.FileSystem.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.IO.FileSystem.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.IO.FileSystem.xml
│           │   │   │   ├── System.IO.FileSystem.dll
│           │   │   │   ├── System.IO.FileSystem.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.IO.FileSystem.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.IO.FileSystem.xml
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.IO.FileSystem.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.IO.FileSystem.Primitives.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.IO.FileSystem.Primitives.dll
│           │   │   ├── netstandard1.3
│           │   │   │   └── System.IO.FileSystem.Primitives.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.IO.FileSystem.Primitives.dll
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.IO.FileSystem.Primitives.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.IO.FileSystem.Primitives.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.IO.FileSystem.Primitives.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.IO.FileSystem.Primitives.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.IO.FileSystem.Primitives.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.IO.FileSystem.Primitives.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.IO.FileSystem.Primitives.xml
│           │   │   │   ├── System.IO.FileSystem.Primitives.dll
│           │   │   │   ├── System.IO.FileSystem.Primitives.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.IO.FileSystem.Primitives.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.IO.FileSystem.Primitives.xml
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.IO.FileSystem.Primitives.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Linq.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net463
│           │   │   │   └── System.Linq.dll
│           │   │   ├── netcore50
│           │   │   │   └── System.Linq.dll
│           │   │   ├── netstandard1.6
│           │   │   │   └── System.Linq.dll
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net463
│           │   │   │   └── System.Linq.dll
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── System.Linq.dll
│           │   │   │   ├── System.Linq.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Linq.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── System.Linq.dll
│           │   │   │   ├── System.Linq.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Linq.xml
│           │   │   ├── netstandard1.6
│           │   │   │   ├── de
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   ├── System.Linq.dll
│           │   │   │   ├── System.Linq.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Linq.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Linq.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Linq.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Linq.Expressions.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net463
│           │   │   │   └── System.Linq.Expressions.dll
│           │   │   ├── netcore50
│           │   │   │   └── System.Linq.Expressions.dll
│           │   │   ├── netstandard1.6
│           │   │   │   └── System.Linq.Expressions.dll
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net463
│           │   │   │   └── System.Linq.Expressions.dll
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── System.Linq.Expressions.dll
│           │   │   │   ├── System.Linq.Expressions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Linq.Expressions.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── System.Linq.Expressions.dll
│           │   │   │   ├── System.Linq.Expressions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Linq.Expressions.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── System.Linq.Expressions.dll
│           │   │   │   ├── System.Linq.Expressions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Linq.Expressions.xml
│           │   │   ├── netstandard1.6
│           │   │   │   ├── de
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   ├── System.Linq.Expressions.dll
│           │   │   │   ├── System.Linq.Expressions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Linq.Expressions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Linq.Expressions.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── runtimes
│           │   │   └── aot
│           │   │       └── lib
│           │   │           └── netcore50
│           │   │               └── System.Linq.Expressions.dll
│           │   ├── System.Linq.Expressions.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Net.Http.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── monoandroid10
│           │   │   │   └── _._
│           │   │   ├── monotouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Net.Http.dll
│           │   │   ├── portable-net45 win8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── Xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── monoandroid10
│           │   │   │   └── _._
│           │   │   ├── monotouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   ├── de
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── System.Net.Http.dll
│           │   │   │   ├── System.Net.Http.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Net.Http.xml
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── System.Net.Http.dll
│           │   │   │   ├── System.Net.Http.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Net.Http.xml
│           │   │   ├── netstandard1.1
│           │   │   │   ├── de
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── System.Net.Http.dll
│           │   │   │   ├── System.Net.Http.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Net.Http.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   ├── System.Net.Http.dll
│           │   │   │   ├── System.Net.Http.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Net.Http.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Net.Http.xml
│           │   │   ├── portable-net45 win8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── Xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── runtimes
│           │   │   ├── unix
│           │   │   │   └── lib
│           │   │   │       └── netstandard1.6
│           │   │   │           └── System.Net.Http.dll
│           │   │   └── win
│           │   │       └── lib
│           │   │           ├── net46
│           │   │           │   └── System.Net.Http.dll
│           │   │           ├── netcore50
│           │   │           │   └── System.Net.Http.dll
│           │   │           └── netstandard1.3
│           │   │               └── System.Net.Http.dll
│           │   ├── System.Net.Http.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Net.Primitives.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── System.Net.Primitives.dll
│           │   │   │   ├── System.Net.Primitives.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Net.Primitives.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── System.Net.Primitives.dll
│           │   │   │   ├── System.Net.Primitives.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Net.Primitives.xml
│           │   │   ├── netstandard1.1
│           │   │   │   ├── de
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── System.Net.Primitives.dll
│           │   │   │   ├── System.Net.Primitives.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Net.Primitives.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   ├── System.Net.Primitives.dll
│           │   │   │   ├── System.Net.Primitives.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Net.Primitives.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Net.Primitives.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Net.Primitives.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Net.Security.4.3.2
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Net.Security.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Net.Security.dll
│           │   │   ├── netstandard1.3
│           │   │   │   └── System.Net.Security.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── runtimes
│           │   │   ├── unix
│           │   │   │   └── lib
│           │   │   │       └── netstandard1.6
│           │   │   │           └── System.Net.Security.dll
│           │   │   ├── win
│           │   │   │   └── lib
│           │   │   │       ├── net46
│           │   │   │       │   └── System.Net.Security.dll
│           │   │   │       └── netstandard1.3
│           │   │   │           └── System.Net.Security.dll
│           │   │   └── win7
│           │   │       └── lib
│           │   │           └── netcore50
│           │   │               └── _._
│           │   ├── System.Net.Security.4.3.2.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Net.Sockets.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Net.Sockets.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Net.Sockets.dll
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Net.Sockets.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Net.Sockets.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Net.Sockets.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Net.Sockets.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Net.Sockets.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Net.Sockets.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Net.Sockets.xml
│           │   │   │   ├── System.Net.Sockets.dll
│           │   │   │   ├── System.Net.Sockets.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Net.Sockets.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Net.Sockets.xml
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Net.Sockets.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.ObjectModel.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   └── System.ObjectModel.dll
│           │   │   ├── netstandard1.3
│           │   │   │   └── System.ObjectModel.dll
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── System.ObjectModel.dll
│           │   │   │   ├── System.ObjectModel.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.ObjectModel.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── System.ObjectModel.dll
│           │   │   │   ├── System.ObjectModel.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.ObjectModel.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   ├── System.ObjectModel.dll
│           │   │   │   ├── System.ObjectModel.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.ObjectModel.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.ObjectModel.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.ObjectModel.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Reflection.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net462
│           │   │   │   └── System.Reflection.dll
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net462
│           │   │   │   └── System.Reflection.dll
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── System.Reflection.dll
│           │   │   │   ├── System.Reflection.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Reflection.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── System.Reflection.dll
│           │   │   │   ├── System.Reflection.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Reflection.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── System.Reflection.dll
│           │   │   │   ├── System.Reflection.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Reflection.xml
│           │   │   ├── netstandard1.5
│           │   │   │   ├── de
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   ├── System.Reflection.dll
│           │   │   │   ├── System.Reflection.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Reflection.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Reflection.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Reflection.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Reflection.Extensions.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Reflection.Extensions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Reflection.Extensions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Reflection.Extensions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Reflection.Extensions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Reflection.Extensions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Reflection.Extensions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Reflection.Extensions.xml
│           │   │   │   ├── System.Reflection.Extensions.dll
│           │   │   │   ├── System.Reflection.Extensions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Reflection.Extensions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Reflection.Extensions.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Reflection.Extensions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Reflection.Extensions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Reflection.Extensions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Reflection.Extensions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Reflection.Extensions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Reflection.Extensions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Reflection.Extensions.xml
│           │   │   │   ├── System.Reflection.Extensions.dll
│           │   │   │   ├── System.Reflection.Extensions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Reflection.Extensions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Reflection.Extensions.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Reflection.Extensions.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Reflection.Primitives.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Reflection.Primitives.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Reflection.Primitives.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Reflection.Primitives.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Reflection.Primitives.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Reflection.Primitives.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Reflection.Primitives.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Reflection.Primitives.xml
│           │   │   │   ├── System.Reflection.Primitives.dll
│           │   │   │   ├── System.Reflection.Primitives.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Reflection.Primitives.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Reflection.Primitives.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Reflection.Primitives.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Reflection.Primitives.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Reflection.Primitives.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Reflection.Primitives.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Reflection.Primitives.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Reflection.Primitives.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Reflection.Primitives.xml
│           │   │   │   ├── System.Reflection.Primitives.dll
│           │   │   │   ├── System.Reflection.Primitives.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Reflection.Primitives.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Reflection.Primitives.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Reflection.Primitives.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Resources.ResourceManager.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Resources.ResourceManager.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Resources.ResourceManager.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Resources.ResourceManager.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Resources.ResourceManager.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Resources.ResourceManager.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Resources.ResourceManager.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Resources.ResourceManager.xml
│           │   │   │   ├── System.Resources.ResourceManager.dll
│           │   │   │   ├── System.Resources.ResourceManager.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Resources.ResourceManager.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Resources.ResourceManager.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Resources.ResourceManager.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Resources.ResourceManager.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Resources.ResourceManager.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Resources.ResourceManager.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Resources.ResourceManager.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Resources.ResourceManager.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Resources.ResourceManager.xml
│           │   │   │   ├── System.Resources.ResourceManager.dll
│           │   │   │   ├── System.Resources.ResourceManager.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Resources.ResourceManager.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Resources.ResourceManager.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Resources.ResourceManager.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Runtime.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net462
│           │   │   │   └── System.Runtime.dll
│           │   │   ├── portable-net45 win8 wp80 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net462
│           │   │   │   └── System.Runtime.dll
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── System.Runtime.dll
│           │   │   │   ├── System.Runtime.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── System.Runtime.dll
│           │   │   │   ├── System.Runtime.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.xml
│           │   │   ├── netstandard1.2
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── System.Runtime.dll
│           │   │   │   ├── System.Runtime.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── System.Runtime.dll
│           │   │   │   ├── System.Runtime.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.xml
│           │   │   ├── netstandard1.5
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   ├── System.Runtime.dll
│           │   │   │   ├── System.Runtime.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.xml
│           │   │   ├── portable-net45 win8 wp80 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Runtime.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Runtime.Extensions.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net462
│           │   │   │   └── System.Runtime.Extensions.dll
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net462
│           │   │   │   └── System.Runtime.Extensions.dll
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── System.Runtime.Extensions.dll
│           │   │   │   ├── System.Runtime.Extensions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.Extensions.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── System.Runtime.Extensions.dll
│           │   │   │   ├── System.Runtime.Extensions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.Extensions.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── System.Runtime.Extensions.dll
│           │   │   │   ├── System.Runtime.Extensions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.Extensions.xml
│           │   │   ├── netstandard1.5
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   ├── System.Runtime.Extensions.dll
│           │   │   │   ├── System.Runtime.Extensions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.Extensions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.Extensions.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Runtime.Extensions.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Runtime.Handles.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── _._
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.Handles.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.Handles.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.Handles.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.Handles.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.Handles.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.Handles.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.Handles.xml
│           │   │   │   ├── System.Runtime.Handles.dll
│           │   │   │   ├── System.Runtime.Handles.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.Handles.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.Handles.xml
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Runtime.Handles.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Runtime.InteropServices.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net462
│           │   │   │   └── System.Runtime.InteropServices.dll
│           │   │   ├── net463
│           │   │   │   └── System.Runtime.InteropServices.dll
│           │   │   ├── portable-net45 win8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net462
│           │   │   │   └── System.Runtime.InteropServices.dll
│           │   │   ├── net463
│           │   │   │   └── System.Runtime.InteropServices.dll
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── System.Runtime.InteropServices.dll
│           │   │   │   ├── System.Runtime.InteropServices.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.InteropServices.xml
│           │   │   ├── netcoreapp1.1
│           │   │   │   └── System.Runtime.InteropServices.dll
│           │   │   ├── netstandard1.1
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── System.Runtime.InteropServices.dll
│           │   │   │   ├── System.Runtime.InteropServices.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.InteropServices.xml
│           │   │   ├── netstandard1.2
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── System.Runtime.InteropServices.dll
│           │   │   │   ├── System.Runtime.InteropServices.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.InteropServices.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── System.Runtime.InteropServices.dll
│           │   │   │   ├── System.Runtime.InteropServices.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.InteropServices.xml
│           │   │   ├── netstandard1.5
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   ├── System.Runtime.InteropServices.dll
│           │   │   │   ├── System.Runtime.InteropServices.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.InteropServices.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.InteropServices.xml
│           │   │   ├── portable-net45 win8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Runtime.InteropServices.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Runtime.InteropServices.RuntimeInformation.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── System.Runtime.InteropServices.RuntimeInformation.dll
│           │   │   ├── netstandard1.1
│           │   │   │   └── System.Runtime.InteropServices.RuntimeInformation.dll
│           │   │   ├── win8
│           │   │   │   └── System.Runtime.InteropServices.RuntimeInformation.dll
│           │   │   ├── wpa81
│           │   │   │   └── System.Runtime.InteropServices.RuntimeInformation.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── netstandard1.1
│           │   │   │   └── System.Runtime.InteropServices.RuntimeInformation.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── runtimes
│           │   │   ├── aot
│           │   │   │   └── lib
│           │   │   │       └── netcore50
│           │   │   │           └── System.Runtime.InteropServices.RuntimeInformation.dll
│           │   │   ├── unix
│           │   │   │   └── lib
│           │   │   │       └── netstandard1.1
│           │   │   │           └── System.Runtime.InteropServices.RuntimeInformation.dll
│           │   │   └── win
│           │   │       └── lib
│           │   │           ├── net45
│           │   │           │   └── System.Runtime.InteropServices.RuntimeInformation.dll
│           │   │           ├── netcore50
│           │   │           │   └── System.Runtime.InteropServices.RuntimeInformation.dll
│           │   │           └── netstandard1.1
│           │   │               └── System.Runtime.InteropServices.RuntimeInformation.dll
│           │   ├── System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Runtime.Numerics.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   └── System.Runtime.Numerics.dll
│           │   │   ├── netstandard1.3
│           │   │   │   └── System.Runtime.Numerics.dll
│           │   │   ├── portable-net45 win8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.Numerics.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.Numerics.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.Numerics.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.Numerics.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.Numerics.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.Numerics.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.Numerics.xml
│           │   │   │   ├── System.Runtime.Numerics.dll
│           │   │   │   ├── System.Runtime.Numerics.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.Numerics.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.Numerics.xml
│           │   │   ├── netstandard1.1
│           │   │   │   ├── de
│           │   │   │   │   └── System.Runtime.Numerics.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Runtime.Numerics.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Runtime.Numerics.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Runtime.Numerics.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Runtime.Numerics.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Runtime.Numerics.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Runtime.Numerics.xml
│           │   │   │   ├── System.Runtime.Numerics.dll
│           │   │   │   ├── System.Runtime.Numerics.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Runtime.Numerics.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Runtime.Numerics.xml
│           │   │   ├── portable-net45 win8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Runtime.Numerics.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Security.Cryptography.Algorithms.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Security.Cryptography.Algorithms.dll
│           │   │   ├── net461
│           │   │   │   └── System.Security.Cryptography.Algorithms.dll
│           │   │   ├── net463
│           │   │   │   └── System.Security.Cryptography.Algorithms.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Security.Cryptography.Algorithms.dll
│           │   │   ├── net461
│           │   │   │   └── System.Security.Cryptography.Algorithms.dll
│           │   │   ├── net463
│           │   │   │   └── System.Security.Cryptography.Algorithms.dll
│           │   │   ├── netstandard1.3
│           │   │   │   └── System.Security.Cryptography.Algorithms.dll
│           │   │   ├── netstandard1.4
│           │   │   │   └── System.Security.Cryptography.Algorithms.dll
│           │   │   ├── netstandard1.6
│           │   │   │   └── System.Security.Cryptography.Algorithms.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── runtimes
│           │   │   ├── osx
│           │   │   │   └── lib
│           │   │   │       └── netstandard1.6
│           │   │   │           └── System.Security.Cryptography.Algorithms.dll
│           │   │   ├── unix
│           │   │   │   └── lib
│           │   │   │       └── netstandard1.6
│           │   │   │           └── System.Security.Cryptography.Algorithms.dll
│           │   │   └── win
│           │   │       └── lib
│           │   │           ├── net46
│           │   │           │   └── System.Security.Cryptography.Algorithms.dll
│           │   │           ├── net461
│           │   │           │   └── System.Security.Cryptography.Algorithms.dll
│           │   │           ├── net463
│           │   │           │   └── System.Security.Cryptography.Algorithms.dll
│           │   │           ├── netcore50
│           │   │           │   └── System.Security.Cryptography.Algorithms.dll
│           │   │           └── netstandard1.6
│           │   │               └── System.Security.Cryptography.Algorithms.dll
│           │   ├── System.Security.Cryptography.Algorithms.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Security.Cryptography.Encoding.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Security.Cryptography.Encoding.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Security.Cryptography.Encoding.dll
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Security.Cryptography.Encoding.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Security.Cryptography.Encoding.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Security.Cryptography.Encoding.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Security.Cryptography.Encoding.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Security.Cryptography.Encoding.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Security.Cryptography.Encoding.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Security.Cryptography.Encoding.xml
│           │   │   │   ├── System.Security.Cryptography.Encoding.dll
│           │   │   │   ├── System.Security.Cryptography.Encoding.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Security.Cryptography.Encoding.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Security.Cryptography.Encoding.xml
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── runtimes
│           │   │   ├── unix
│           │   │   │   └── lib
│           │   │   │       └── netstandard1.3
│           │   │   │           └── System.Security.Cryptography.Encoding.dll
│           │   │   └── win
│           │   │       └── lib
│           │   │           ├── net46
│           │   │           │   └── System.Security.Cryptography.Encoding.dll
│           │   │           └── netstandard1.3
│           │   │               └── System.Security.Cryptography.Encoding.dll
│           │   ├── System.Security.Cryptography.Encoding.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Security.Cryptography.Primitives.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Security.Cryptography.Primitives.dll
│           │   │   ├── netstandard1.3
│           │   │   │   └── System.Security.Cryptography.Primitives.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Security.Cryptography.Primitives.dll
│           │   │   ├── netstandard1.3
│           │   │   │   └── System.Security.Cryptography.Primitives.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Security.Cryptography.Primitives.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Security.Cryptography.X509Certificates.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Security.Cryptography.X509Certificates.dll
│           │   │   ├── net461
│           │   │   │   └── System.Security.Cryptography.X509Certificates.dll
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Security.Cryptography.X509Certificates.dll
│           │   │   ├── net461
│           │   │   │   └── System.Security.Cryptography.X509Certificates.dll
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   ├── System.Security.Cryptography.X509Certificates.dll
│           │   │   │   ├── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Security.Cryptography.X509Certificates.xml
│           │   │   ├── netstandard1.4
│           │   │   │   ├── de
│           │   │   │   │   └── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   ├── System.Security.Cryptography.X509Certificates.dll
│           │   │   │   ├── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Security.Cryptography.X509Certificates.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Security.Cryptography.X509Certificates.xml
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── runtimes
│           │   │   ├── unix
│           │   │   │   └── lib
│           │   │   │       └── netstandard1.6
│           │   │   │           └── System.Security.Cryptography.X509Certificates.dll
│           │   │   └── win
│           │   │       └── lib
│           │   │           ├── net46
│           │   │           │   └── System.Security.Cryptography.X509Certificates.dll
│           │   │           ├── net461
│           │   │           │   └── System.Security.Cryptography.X509Certificates.dll
│           │   │           ├── netcore50
│           │   │           │   └── System.Security.Cryptography.X509Certificates.dll
│           │   │           └── netstandard1.6
│           │   │               └── System.Security.Cryptography.X509Certificates.dll
│           │   ├── System.Security.Cryptography.X509Certificates.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Text.Encoding.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── System.Text.Encoding.dll
│           │   │   │   ├── System.Text.Encoding.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Text.Encoding.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── System.Text.Encoding.dll
│           │   │   │   ├── System.Text.Encoding.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Text.Encoding.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   ├── System.Text.Encoding.dll
│           │   │   │   ├── System.Text.Encoding.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Text.Encoding.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Text.Encoding.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Text.Encoding.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Text.Encoding.Extensions.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── System.Text.Encoding.Extensions.dll
│           │   │   │   ├── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Text.Encoding.Extensions.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── System.Text.Encoding.Extensions.dll
│           │   │   │   ├── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Text.Encoding.Extensions.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── System.Text.Encoding.Extensions.dll
│           │   │   │   ├── System.Text.Encoding.Extensions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Text.Encoding.Extensions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Text.Encoding.Extensions.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Text.Encoding.Extensions.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Text.RegularExpressions.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net463
│           │   │   │   └── System.Text.RegularExpressions.dll
│           │   │   ├── netcore50
│           │   │   │   └── System.Text.RegularExpressions.dll
│           │   │   ├── netstandard1.6
│           │   │   │   └── System.Text.RegularExpressions.dll
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net463
│           │   │   │   └── System.Text.RegularExpressions.dll
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── System.Text.RegularExpressions.dll
│           │   │   │   ├── System.Text.RegularExpressions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Text.RegularExpressions.xml
│           │   │   ├── netcoreapp1.1
│           │   │   │   └── System.Text.RegularExpressions.dll
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── System.Text.RegularExpressions.dll
│           │   │   │   ├── System.Text.RegularExpressions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Text.RegularExpressions.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── System.Text.RegularExpressions.dll
│           │   │   │   ├── System.Text.RegularExpressions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Text.RegularExpressions.xml
│           │   │   ├── netstandard1.6
│           │   │   │   ├── de
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   ├── System.Text.RegularExpressions.dll
│           │   │   │   ├── System.Text.RegularExpressions.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Text.RegularExpressions.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Text.RegularExpressions.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Text.RegularExpressions.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Threading.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   └── System.Threading.dll
│           │   │   ├── netstandard1.3
│           │   │   │   └── System.Threading.dll
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── System.Threading.dll
│           │   │   │   ├── System.Threading.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Threading.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── System.Threading.dll
│           │   │   │   ├── System.Threading.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Threading.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   ├── System.Threading.dll
│           │   │   │   ├── System.Threading.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Threading.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Threading.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── runtimes
│           │   │   └── aot
│           │   │       └── lib
│           │   │           └── netcore50
│           │   │               └── System.Threading.dll
│           │   ├── System.Threading.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Threading.Tasks.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── System.Threading.Tasks.dll
│           │   │   │   ├── System.Threading.Tasks.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Threading.Tasks.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── System.Threading.Tasks.dll
│           │   │   │   ├── System.Threading.Tasks.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Threading.Tasks.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   ├── System.Threading.Tasks.dll
│           │   │   │   ├── System.Threading.Tasks.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Threading.Tasks.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Threading.Tasks.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Threading.Tasks.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Threading.Timer.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net451
│           │   │   │   └── _._
│           │   │   ├── portable-net451 win81 wpa81
│           │   │   │   └── _._
│           │   │   ├── win81
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net451
│           │   │   │   └── _._
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Threading.Timer.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Threading.Timer.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Threading.Timer.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Threading.Timer.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Threading.Timer.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Threading.Timer.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Threading.Timer.xml
│           │   │   │   ├── System.Threading.Timer.dll
│           │   │   │   ├── System.Threading.Timer.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Threading.Timer.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Threading.Timer.xml
│           │   │   ├── netstandard1.2
│           │   │   │   ├── de
│           │   │   │   │   └── System.Threading.Timer.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Threading.Timer.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Threading.Timer.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Threading.Timer.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Threading.Timer.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Threading.Timer.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Threading.Timer.xml
│           │   │   │   ├── System.Threading.Timer.dll
│           │   │   │   ├── System.Threading.Timer.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Threading.Timer.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Threading.Timer.xml
│           │   │   ├── portable-net451 win81 wpa81
│           │   │   │   └── _._
│           │   │   ├── win81
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Threading.Timer.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           ├── System.Xml.ReaderWriter.4.3.0
│           │   ├── dotnet_library_license.txt
│           │   ├── lib
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Xml.ReaderWriter.dll
│           │   │   ├── netcore50
│           │   │   │   └── System.Xml.ReaderWriter.dll
│           │   │   ├── netstandard1.3
│           │   │   │   └── System.Xml.ReaderWriter.dll
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── ref
│           │   │   ├── MonoAndroid10
│           │   │   │   └── _._
│           │   │   ├── MonoTouch10
│           │   │   │   └── _._
│           │   │   ├── net45
│           │   │   │   └── _._
│           │   │   ├── net46
│           │   │   │   └── System.Xml.ReaderWriter.dll
│           │   │   ├── netcore50
│           │   │   │   ├── de
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── System.Xml.ReaderWriter.dll
│           │   │   │   ├── System.Xml.ReaderWriter.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Xml.ReaderWriter.xml
│           │   │   ├── netstandard1.0
│           │   │   │   ├── de
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── System.Xml.ReaderWriter.dll
│           │   │   │   ├── System.Xml.ReaderWriter.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Xml.ReaderWriter.xml
│           │   │   ├── netstandard1.3
│           │   │   │   ├── de
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── es
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── fr
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── it
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── ja
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── ko
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── ru
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   ├── System.Xml.ReaderWriter.dll
│           │   │   │   ├── System.Xml.ReaderWriter.xml
│           │   │   │   ├── zh-hans
│           │   │   │   │   └── System.Xml.ReaderWriter.xml
│           │   │   │   └── zh-hant
│           │   │   │       └── System.Xml.ReaderWriter.xml
│           │   │   ├── portable-net45 win8 wp8 wpa81
│           │   │   │   └── _._
│           │   │   ├── win8
│           │   │   │   └── _._
│           │   │   ├── wp80
│           │   │   │   └── _._
│           │   │   ├── wpa81
│           │   │   │   └── _._
│           │   │   ├── xamarinios10
│           │   │   │   └── _._
│           │   │   ├── xamarinmac20
│           │   │   │   └── _._
│           │   │   ├── xamarintvos10
│           │   │   │   └── _._
│           │   │   └── xamarinwatchos10
│           │   │       └── _._
│           │   ├── System.Xml.ReaderWriter.4.3.0.nupkg
│           │   └── ThirdPartyNotices.txt
│           └── System.Xml.XDocument.4.3.0
│               ├── dotnet_library_license.txt
│               ├── lib
│               │   ├── MonoAndroid10
│               │   │   └── _._
│               │   ├── MonoTouch10
│               │   │   └── _._
│               │   ├── net45
│               │   │   └── _._
│               │   ├── netcore50
│               │   │   └── System.Xml.XDocument.dll
│               │   ├── netstandard1.3
│               │   │   └── System.Xml.XDocument.dll
│               │   ├── portable-net45 win8 wp8 wpa81
│               │   │   └── _._
│               │   ├── win8
│               │   │   └── _._
│               │   ├── wp80
│               │   │   └── _._
│               │   ├── wpa81
│               │   │   └── _._
│               │   ├── xamarinios10
│               │   │   └── _._
│               │   ├── xamarinmac20
│               │   │   └── _._
│               │   ├── xamarintvos10
│               │   │   └── _._
│               │   └── xamarinwatchos10
│               │       └── _._
│               ├── ref
│               │   ├── MonoAndroid10
│               │   │   └── _._
│               │   ├── MonoTouch10
│               │   │   └── _._
│               │   ├── net45
│               │   │   └── _._
│               │   ├── netcore50
│               │   │   ├── de
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── es
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── fr
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── it
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── ja
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── ko
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── ru
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── System.Xml.XDocument.dll
│               │   │   ├── System.Xml.XDocument.xml
│               │   │   ├── zh-hans
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   └── zh-hant
│               │   │       └── System.Xml.XDocument.xml
│               │   ├── netstandard1.0
│               │   │   ├── de
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── es
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── fr
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── it
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── ja
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── ko
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── ru
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── System.Xml.XDocument.dll
│               │   │   ├── System.Xml.XDocument.xml
│               │   │   ├── zh-hans
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   └── zh-hant
│               │   │       └── System.Xml.XDocument.xml
│               │   ├── netstandard1.3
│               │   │   ├── de
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── es
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── fr
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── it
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── ja
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── ko
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── ru
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   ├── System.Xml.XDocument.dll
│               │   │   ├── System.Xml.XDocument.xml
│               │   │   ├── zh-hans
│               │   │   │   └── System.Xml.XDocument.xml
│               │   │   └── zh-hant
│               │   │       └── System.Xml.XDocument.xml
│               │   ├── portable-net45 win8 wp8 wpa81
│               │   │   └── _._
│               │   ├── win8
│               │   │   └── _._
│               │   ├── wp80
│               │   │   └── _._
│               │   ├── wpa81
│               │   │   └── _._
│               │   ├── xamarinios10
│               │   │   └── _._
│               │   ├── xamarinmac20
│               │   │   └── _._
│               │   ├── xamarintvos10
│               │   │   └── _._
│               │   └── xamarinwatchos10
│               │       └── _._
│               ├── System.Xml.XDocument.4.3.0.nupkg
│               └── ThirdPartyNotices.txt
├── doNetMqttTest.rar
├── M2QTT测试
│   ├── M2QTT测试
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── M2Mqtt.NetCf35.dll
│   │   │   │   ├── M2Mqtt.NetCf35.pdb
│   │   │   │   ├── M2QTT测试.exe
│   │   │   │   ├── M2QTT测试.pdb
│   │   │   │   ├── M2QTT测试.vshost.exe
│   │   │   │   └── M2QTT测试.vshost.exe.manifest
│   │   │   └── Release
│   │   ├── FrmClient.cs
│   │   ├── FrmClient.Designer.cs
│   │   ├── FrmClient.resx
│   │   ├── M2QTT测试.csproj
│   │   ├── obj
│   │   │   └── Debug
│   │   │       ├── DesignTimeResolveAssemblyReferences.cache
│   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │       ├── M2QTT测试.csproj.FileListAbsolute.txt
│   │   │       ├── M2QTT测试.csproj.GenerateResource.Cache
│   │   │       ├── M2QTT测试.csprojResolveAssemblyReference.cache
│   │   │       ├── M2QTT测试.exe
│   │   │       ├── M2QTT测试.Form1.resources
│   │   │       ├── M2QTT测试.pdb
│   │   │       ├── M2QTT测试.Properties.Resources.resources
│   │   │       └── TempPE
│   │   ├── Program.cs
│   │   └── Properties
│   │       ├── AssemblyInfo.cs
│   │       ├── Resources.Designer.cs
│   │       ├── Resources.resx
│   │       ├── Settings.Designer.cs
│   │       └── Settings.settings
│   └── M2QTT测试.sln
├── mqtt-net
│   ├── ConsoleApplication5
│   │   ├── App.config
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── ConsoleApplication5.exe.config
│   │   │   │   ├── ConsoleApplication5.vshost.exe
│   │   │   │   ├── ConsoleApplication5.vshost.exe.config
│   │   │   │   └── ConsoleApplication5.vshost.exe.manifest
│   │   │   └── Release
│   │   │       ├── ConsoleApplication5.exe
│   │   │       ├── ConsoleApplication5.exe.config
│   │   │       ├── ConsoleApplication5.pdb
│   │   │       ├── ConsoleApplication5.vshost.exe
│   │   │       ├── ConsoleApplication5.vshost.exe.config
│   │   │       ├── ConsoleApplication5.vshost.exe.manifest
│   │   │       ├── M2Mqtt.Net.dll
│   │   │       ├── M2Mqtt.Net.pdb
│   │   │       ├── MQTTnet.Core.dll
│   │   │       └── MQTTnet.dll
│   │   ├── ConsoleApplication5.csproj
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── ConsoleApplication5.csproj.FileListAbsolute.txt
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   │   └── TempPE
│   │   │   └── Release
│   │   │       ├── ConsoleApplication5.csproj.FileListAbsolute.txt
│   │   │       ├── ConsoleApplication5.csprojResolveAssemblyReference.cache
│   │   │       ├── ConsoleApplication5.exe
│   │   │       ├── ConsoleApplication5.pdb
│   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │       ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │       ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │       ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │       └── TempPE
│   │   ├── packages.config
│   │   ├── Program.cs
│   │   └── Properties
│   │       └── AssemblyInfo.cs
│   ├── ConsoleApplication5.sln
│   ├── ConsoleApplication5.v11.suo
│   ├── packages
│   │   ├── M2Mqtt.4.3.0.0
│   │   │   ├── lib
│   │   │   │   ├── net39-cf
│   │   │   │   │   ├── DeployFileList.txt
│   │   │   │   │   ├── M2Mqtt.NetCf39.dll
│   │   │   │   │   └── M2Mqtt.NetCf39.pdb
│   │   │   │   ├── net45
│   │   │   │   │   ├── M2Mqtt.Net.dll
│   │   │   │   │   └── M2Mqtt.Net.pdb
│   │   │   │   ├── netmf42
│   │   │   │   │   ├── be
│   │   │   │   │   │   ├── M2Mqtt.NetMf.pdb
│   │   │   │   │   │   ├── M2Mqtt.NetMf.pdbx
│   │   │   │   │   │   └── M2Mqtt.NetMf.pe
│   │   │   │   │   ├── le
│   │   │   │   │   │   ├── M2Mqtt.NetMf.pdb
│   │   │   │   │   │   ├── M2Mqtt.NetMf.pdbx
│   │   │   │   │   │   └── M2Mqtt.NetMf.pe
│   │   │   │   │   ├── M2Mqtt.NetMf.dll
│   │   │   │   │   └── M2Mqtt.NetMf.pdb
│   │   │   │   ├── netmf43
│   │   │   │   │   ├── be
│   │   │   │   │   │   ├── M2Mqtt.NetMf.pdb
│   │   │   │   │   │   ├── M2Mqtt.NetMf.pdbx
│   │   │   │   │   │   └── M2Mqtt.NetMf.pe
│   │   │   │   │   ├── le
│   │   │   │   │   │   ├── M2Mqtt.NetMf.pdb
│   │   │   │   │   │   ├── M2Mqtt.NetMf.pdbx
│   │   │   │   │   │   └── M2Mqtt.NetMf.pe
│   │   │   │   │   ├── M2Mqtt.NetMf.dll
│   │   │   │   │   └── M2Mqtt.NetMf.pdb
│   │   │   │   ├── win81
│   │   │   │   │   ├── M2Mqtt.WinRT.dll
│   │   │   │   │   ├── M2Mqtt.WinRT.pdb
│   │   │   │   │   └── M2Mqtt.WinRT.pri
│   │   │   │   └── wpa81
│   │   │   │       ├── M2Mqtt.WinRT.dll
│   │   │   │       ├── M2Mqtt.WinRT.pdb
│   │   │   │       └── M2Mqtt.WinRT.pri
│   │   │   └── M2Mqtt.4.3.0.0.nupkg
│   │   └── repositories.config
│   └── 注意.txt
├── MQTTnet-master
│   └── MQTTnet-master
│       ├── appveyor.yml
│       ├── Build
│       │   ├── build.ps1
│       │   ├── codeSigningKey.pfx
│       │   ├── MQTTnet.AspNetCore.nuspec
│       │   ├── MQTTnet.Extensions.ManagedClient.nuspec
│       │   ├── MQTTnet.Extensions.Rpc.nuspec
│       │   ├── MQTTnet.Extensions.WebSocket4Net.nuspec
│       │   ├── MQTTnet.NETStandard.nuspec
│       │   ├── MQTTnet.nuspec
│       │   └── upload.ps1
│       ├── _config.yml
│       ├── Documents
│       │   └── Import_CodeSigningKey.md
│       ├── Images
│       │   ├── icon_256.png
│       │   ├── icon_512.png
│       │   ├── icon_64.png
│       │   ├── icon_det_256.png
│       │   ├── icon_det_512.png
│       │   ├── icon_det_64.png
│       │   ├── Logo_128x128.png
│       │   └── MQTT.svg
│       ├── LICENSE
│       ├── MQTTnet.noUWP.sln
│       ├── MQTTnet.sln
│       ├── MQTTnet.sln.DotSettings
│       ├── README.md
│       ├── Source
│       │   ├── MQTTnet
│       │   │   ├── Adapter
│       │   │   │   ├── IMqttChannelAdapter.cs
│       │   │   │   ├── IMqttClientAdapterFactory.cs
│       │   │   │   ├── IMqttServerAdapter.cs
│       │   │   │   ├── MqttChannelAdapter.cs
│       │   │   │   ├── MqttConnectingFailedException.cs
│       │   │   │   └── ReceivedMqttPacket.cs
│       │   │   ├── Channel
│       │   │   │   └── IMqttChannel.cs
│       │   │   ├── Client
│       │   │   │   ├── Connecting
│       │   │   │   │   ├── IMqttClientConnectedHandler.cs
│       │   │   │   │   ├── MqttClientAuthenticateResult.cs
│       │   │   │   │   ├── MqttClientConnectedEventArgs.cs
│       │   │   │   │   ├── MqttClientConnectedHandlerDelegate.cs
│       │   │   │   │   └── MqttClientConnectResultCode.cs
│       │   │   │   ├── Disconnecting
│       │   │   │   │   ├── IMqttClientDisconnectedHandler.cs
│       │   │   │   │   ├── MqttClientDisconnectedEventArgs.cs
│       │   │   │   │   ├── MqttClientDisconnectedHandlerDelegate.cs
│       │   │   │   │   ├── MqttClientDisconnectOptions.cs
│       │   │   │   │   └── MqttClientDisconnectReason.cs
│       │   │   │   ├── ExtendedAuthenticationExchange
│       │   │   │   │   ├── IMqttExtendedAuthenticationExchangeHandler.cs
│       │   │   │   │   ├── MqttExtendedAuthenticationExchangeContext.cs
│       │   │   │   │   └── MqttExtendedAuthenticationExchangeData.cs
│       │   │   │   ├── IMqttClient.cs
│       │   │   │   ├── IMqttClientFactory.cs
│       │   │   │   ├── MqttClient.cs
│       │   │   │   ├── MqttClientExtensions.cs
│       │   │   │   ├── MqttPacketIdentifierProvider.cs
│       │   │   │   ├── Options
│       │   │   │   │   ├── IMqttClientChannelOptions.cs
│       │   │   │   │   ├── IMqttClientCredentials.cs
│       │   │   │   │   ├── IMqttClientOptions.cs
│       │   │   │   │   ├── MqttClientCredentials.cs
│       │   │   │   │   ├── MqttClientOptionsBuilder.cs
│       │   │   │   │   ├── MqttClientOptionsBuilderTlsParameters.cs
│       │   │   │   │   ├── MqttClientOptionsBuilderWebSocketParameters.cs
│       │   │   │   │   ├── MqttClientOptions.cs
│       │   │   │   │   ├── MqttClientTcpOptions.cs
│       │   │   │   │   ├── MqttClientTcpOptionsExtensions.cs
│       │   │   │   │   ├── MqttClientTlsOptions.cs
│       │   │   │   │   ├── MqttClientWebSocketOptions.cs
│       │   │   │   │   └── MqttClientWebSocketProxyOptions.cs
│       │   │   │   ├── Publishing
│       │   │   │   │   ├── MqttClientPublishReasonCode.cs
│       │   │   │   │   └── MqttClientPublishResult.cs
│       │   │   │   ├── Receiving
│       │   │   │   │   ├── IMqttApplicationMessageReceivedHandler.cs
│       │   │   │   │   └── MqttApplicationMessageReceivedHandlerDelegate.cs
│       │   │   │   ├── Subscribing
│       │   │   │   │   ├── MqttClientSubscribeOptionsBuilder.cs
│       │   │   │   │   ├── MqttClientSubscribeOptions.cs
│       │   │   │   │   ├── MqttClientSubscribeResultCode.cs
│       │   │   │   │   ├── MqttClientSubscribeResult.cs
│       │   │   │   │   └── MqttClientSubscribeResultItem.cs
│       │   │   │   └── Unsubscribing
│       │   │   │       ├── MqttClientUnsubscribeOptions.cs
│       │   │   │       ├── MqttClientUnsubscribeResultCode.cs
│       │   │   │       ├── MqttClientUnsubscribeResult.cs
│       │   │   │       └── MqttClientUnsubscribeResultItem.cs
│       │   │   ├── codeSigningKey.pfx
│       │   │   ├── Diagnostics
│       │   │   │   ├── IMqttNetChildLogger.cs
│       │   │   │   ├── IMqttNetLogger.cs
│       │   │   │   ├── MqttNetChildLogger.cs
│       │   │   │   ├── MqttNetGlobalLogger.cs
│       │   │   │   ├── MqttNetLogger.cs
│       │   │   │   ├── MqttNetLogLevel.cs
│       │   │   │   ├── MqttNetLogMessage.cs
│       │   │   │   ├── MqttNetLogMessagePublishedEventArgs.cs
│       │   │   │   └── TargetFrameworkInfoProvider.cs
│       │   │   ├── Exceptions
│       │   │   │   ├── MqttCommunicationException.cs
│       │   │   │   ├── MqttCommunicationTimedOutException.cs
│       │   │   │   ├── MqttProtocolViolationException.cs
│       │   │   │   └── MqttUnexpectedDisconnectReceivedException.cs
│       │   │   ├── Formatter
│       │   │   │   ├── IMqttDataConverter.cs
│       │   │   │   ├── IMqttPacketBodyReader.cs
│       │   │   │   ├── IMqttPacketFormatter.cs
│       │   │   │   ├── IMqttPacketWriter.cs
│       │   │   │   ├── MqttFixedHeader.cs
│       │   │   │   ├── MqttPacketBodyReader.cs
│       │   │   │   ├── MqttPacketFormatterAdapter.cs
│       │   │   │   ├── MqttPacketReader.cs
│       │   │   │   ├── MqttPacketWriter.cs
│       │   │   │   ├── MqttProtocolVersion.cs
│       │   │   │   ├── ReadFixedHeaderResult.cs
│       │   │   │   ├── V3
│       │   │   │   │   ├── MqttV310DataConverter.cs
│       │   │   │   │   ├── MqttV310PacketFormatter.cs
│       │   │   │   │   └── MqttV311PacketFormatter.cs
│       │   │   │   └── V5
│       │   │   │       ├── MqttV500DataConverter.cs
│       │   │   │       ├── MqttV500PacketDecoder.cs
│       │   │   │       ├── MqttV500PacketEncoder.cs
│       │   │   │       ├── MqttV500PacketFormatter.cs
│       │   │   │       ├── MqttV500PropertiesReader.cs
│       │   │   │       └── MqttV500PropertiesWriter.cs
│       │   │   ├── IApplicationMessagePublisher.cs
│       │   │   ├── IApplicationMessageReceiver.cs
│       │   │   ├── Implementations
│       │   │   │   ├── MqttClientAdapterFactory.cs
│       │   │   │   ├── MqttTcpChannel.cs
│       │   │   │   ├── MqttTcpChannel.Uwp.cs
│       │   │   │   ├── MqttTcpServerAdapter.cs
│       │   │   │   ├── MqttTcpServerAdapter.Uwp.cs
│       │   │   │   ├── MqttTcpServerListener.cs
│       │   │   │   └── MqttWebSocketChannel.cs
│       │   │   ├── IMqttFactory.cs
│       │   │   ├── Internal
│       │   │   │   ├── ArraySegmentExtensions.cs
│       │   │   │   ├── AsyncAutoResetEvent.cs
│       │   │   │   ├── AsyncBlockingQueue.cs
│       │   │   │   ├── AsyncLock.cs
│       │   │   │   ├── AsyncQueueDequeueResult.cs
│       │   │   │   ├── BlockingQueue.cs
│       │   │   │   ├── MqttTaskTimeout.cs
│       │   │   │   ├── TaskExtensions.cs
│       │   │   │   └── TestMqttChannel.cs
│       │   │   ├── MqttApplicationMessageBuilder.cs
│       │   │   ├── MqttApplicationMessage.cs
│       │   │   ├── MqttApplicationMessageExtensions.cs
│       │   │   ├── MqttApplicationMessageReceivedEventArgs.cs
│       │   │   ├── MqttFactory.cs
│       │   │   ├── MQTTnet.csproj
│       │   │   ├── PacketDispatcher
│       │   │   │   ├── IMqttPacketAwaiter.cs
│       │   │   │   ├── MqttPacketAwaiter.cs
│       │   │   │   └── MqttPacketDispatcher.cs
│       │   │   ├── Packets
│       │   │   │   ├── IMqttPacketWithIdentifier.cs
│       │   │   │   ├── MqttAuthPacket.cs
│       │   │   │   ├── MqttAuthPacketProperties.cs
│       │   │   │   ├── MqttBasePacket.cs
│       │   │   │   ├── MqttBasePublishPacket.cs
│       │   │   │   ├── MqttConnAckPacket.cs
│       │   │   │   ├── MqttConnAckPacketProperties.cs
│       │   │   │   ├── MqttConnectPacket.cs
│       │   │   │   ├── MqttConnectPacketProperties.cs
│       │   │   │   ├── MqttDisconnectPacket.cs
│       │   │   │   ├── MqttDisconnectPacketProperties.cs
│       │   │   │   ├── MqttPingReqPacket.cs
│       │   │   │   ├── MqttPingRespPacket.cs
│       │   │   │   ├── MqttPubAckPacket.cs
│       │   │   │   ├── MqttPubAckPacketProperties.cs
│       │   │   │   ├── MqttPubCompPacket.cs
│       │   │   │   ├── MqttPubCompPacketProperties.cs
│       │   │   │   ├── MqttPublishPacket.cs
│       │   │   │   ├── MqttPublishPacketProperties.cs
│       │   │   │   ├── MqttPubRecPacket.cs
│       │   │   │   ├── MqttPubRecPacketProperties.cs
│       │   │   │   ├── MqttPubRelPacket.cs
│       │   │   │   ├── MqttPubRelPacketProperties.cs
│       │   │   │   ├── MqttSubAckPacket.cs
│       │   │   │   ├── MqttSubAckPacketProperties.cs
│       │   │   │   ├── MqttSubscribePacket.cs
│       │   │   │   ├── MqttSubscribePacketProperties.cs
│       │   │   │   ├── MqttUnsubAckPacket.cs
│       │   │   │   ├── MqttUnsubAckPacketProperties.cs
│       │   │   │   ├── MqttUnsubscribePacket.cs
│       │   │   │   ├── MqttUnsubscribePacketProperties.cs
│       │   │   │   └── MqttUserProperty.cs
│       │   │   ├── Properties
│       │   │   │   └── AssemblyInfo.cs
│       │   │   ├── Protocol
│       │   │   │   ├── MqttAuthenticateReasonCode.cs
│       │   │   │   ├── MqttConnectReasonCodeConverter.cs
│       │   │   │   ├── MqttConnectReasonCode.cs
│       │   │   │   ├── MqttConnectReturnCode.cs
│       │   │   │   ├── MqttControlPacketType.cs
│       │   │   │   ├── MqttDisconnectReasonCode.cs
│       │   │   │   ├── MqttPayloadFormatIndicator.cs
│       │   │   │   ├── MqttPropertyID.cs
│       │   │   │   ├── MqttPubAckReasonCode.cs
│       │   │   │   ├── MqttPubCompReasonCode.cs
│       │   │   │   ├── MqttPubRecReasonCode.cs
│       │   │   │   ├── MqttPubRelReasonCode.cs
│       │   │   │   ├── MqttQualityOfServiceLevel.cs
│       │   │   │   ├── MqttRetainHandling.cs
│       │   │   │   ├── MqttSubscribeReasonCode.cs
│       │   │   │   ├── MqttSubscribeReturnCode.cs
│       │   │   │   ├── MqttTopicValidator.cs
│       │   │   │   └── MqttUnsubscribeReasonCode.cs
│       │   │   ├── Server
│       │   │   │   ├── CheckSubscriptionsResult.cs
│       │   │   │   ├── IMqttClientSession.cs
│       │   │   │   ├── IMqttServerApplicationMessageInterceptor.cs
│       │   │   │   ├── IMqttServerCertificateCredentials.cs
│       │   │   │   ├── IMqttServerClientConnectedHandler.cs
│       │   │   │   ├── IMqttServerClientDisconnectedHandler.cs
│       │   │   │   ├── IMqttServerClientMessageQueueInterceptor.cs
│       │   │   │   ├── IMqttServerClientSubscribedTopicHandler.cs
│       │   │   │   ├── IMqttServerClientUnsubscribedTopicHandler.cs
│       │   │   │   ├── IMqttServerConnectionValidator.cs
│       │   │   │   ├── IMqttServer.cs
│       │   │   │   ├── IMqttServerFactory.cs
│       │   │   │   ├── IMqttServerOptions.cs
│       │   │   │   ├── IMqttServerPersistedSession.cs
│       │   │   │   ├── IMqttServerPersistedSessionsStorage.cs
│       │   │   │   ├── IMqttServerStartedHandler.cs
│       │   │   │   ├── IMqttServerStoppedHandler.cs
│       │   │   │   ├── IMqttServerStorage.cs
│       │   │   │   ├── IMqttServerSubscriptionInterceptor.cs
│       │   │   │   ├── MqttApplicationMessageInterceptorContext.cs
│       │   │   │   ├── MqttClientConnection.cs
│       │   │   │   ├── MqttClientDisconnectType.cs
│       │   │   │   ├── MqttClientKeepAliveMonitor.cs
│       │   │   │   ├── MqttClientMessageQueueInterceptorContext.cs
│       │   │   │   ├── MqttClientSessionApplicationMessagesQueue.cs
│       │   │   │   ├── MqttClientSession.cs
│       │   │   │   ├── MqttClientSessionsManager.cs
│       │   │   │   ├── MqttClientSubscribeResult.cs
│       │   │   │   ├── MqttClientSubscriptionsManager.cs
│       │   │   │   ├── MqttConnectionValidatorContext.cs
│       │   │   │   ├── MqttEnqueuedApplicationMessage.cs
│       │   │   │   ├── MqttPendingMessagesOverflowStrategy.cs
│       │   │   │   ├── MqttQueuedApplicationMessage.cs
│       │   │   │   ├── MqttRetainedMessagesManager.cs
│       │   │   │   ├── MqttServerApplicationMessageInterceptorDelegate.cs
│       │   │   │   ├── MqttServerCertificateCredentials.cs
│       │   │   │   ├── MqttServerClientConnectedEventArgs.cs
│       │   │   │   ├── MqttServerClientConnectedHandlerDelegate.cs
│       │   │   │   ├── MqttServerClientDisconnectedEventArgs.cs
│       │   │   │   ├── MqttServerClientDisconnectedHandlerDelegate.cs
│       │   │   │   ├── MqttServerClientSubscribedTopicEventArgs.cs
│       │   │   │   ├── MqttServerClientSubscribedTopicHandlerDelegate.cs
│       │   │   │   ├── MqttServerClientUnsubscribedTopicEventArgs.cs
│       │   │   │   ├── MqttServerClientUnsubscribedTopicHandlerDelegate.cs
│       │   │   │   ├── MqttServerConnectionValidatorDelegate.cs
│       │   │   │   ├── MqttServer.cs
│       │   │   │   ├── MqttServerEventDispatcher.cs
│       │   │   │   ├── MqttServerExtensions.cs
│       │   │   │   ├── MqttServerOptionsBuilder.cs
│       │   │   │   ├── MqttServerOptions.cs
│       │   │   │   ├── MqttServerStartedHandlerDelegate.cs
│       │   │   │   ├── MqttServerStoppedHandlerDelegate.cs
│       │   │   │   ├── MqttServerSubscriptionInterceptorDelegate.cs
│       │   │   │   ├── MqttServerTcpEndpointBaseOptions.cs
│       │   │   │   ├── MqttServerTcpEndpointOptions.cs
│       │   │   │   ├── MqttServerTlsTcpEndpointOptions.cs
│       │   │   │   ├── MqttSubscriptionInterceptorContext.cs
│       │   │   │   ├── MqttTopicFilterComparer.cs
│       │   │   │   ├── PrepareClientSessionResult.cs
│       │   │   │   └── Status
│       │   │   │       ├── IMqttClientStatus.cs
│       │   │   │       ├── IMqttSessionStatus.cs
│       │   │   │       ├── MqttClientStatus.cs
│       │   │   │       └── MqttSessionStatus.cs
│       │   │   ├── TopicFilterBuilder.cs
│       │   │   └── TopicFilter.cs
│       │   ├── MQTTnet.AspnetCore
│       │   │   ├── ApplicationBuilderExtensions.cs
│       │   │   ├── AspNetMqttServerOptionsBuilder.cs
│       │   │   ├── Client
│       │   │   │   ├── MqttClientConnectionContextFactory.cs
│       │   │   │   └── Tcp
│       │   │   │       ├── BufferExtensions.cs
│       │   │   │       ├── DuplexPipe.cs
│       │   │   │       ├── SocketAwaitable.cs
│       │   │   │       ├── SocketReceiver.cs
│       │   │   │       ├── SocketSender.cs
│       │   │   │       └── TcpConnection.cs
│       │   │   ├── ConnectionBuilderExtensions.cs
│       │   │   ├── MqttConnectionContext.cs
│       │   │   ├── MqttConnectionHandler.cs
│       │   │   ├── MqttHostedServer.cs
│       │   │   ├── MQTTnet.AspNetCore.csproj
│       │   │   ├── MqttWebSocketServerAdapter.cs
│       │   │   ├── ReaderExtensions.cs
│       │   │   ├── ServiceCollectionExtensions.cs
│       │   │   ├── SpanBasedMqttPacketBodyReader.cs
│       │   │   └── SpanBasedMqttPacketWriter.cs
│       │   ├── MQTTnet.Extensions.ManagedClient
│       │   │   ├── ApplicationMessageProcessedEventArgs.cs
│       │   │   ├── ApplicationMessageProcessedHandlerDelegate.cs
│       │   │   ├── ApplicationMessageSkippedEventArgs.cs
│       │   │   ├── ApplicationMessageSkippedHandlerDelegate.cs
│       │   │   ├── ConnectingFailedHandlerDelegate.cs
│       │   │   ├── IApplicationMessageProcessedHandler.cs
│       │   │   ├── IApplicationMessageSkippedHandler.cs
│       │   │   ├── IConnectingFailedHandler.cs
│       │   │   ├── IManagedMqttClient.cs
│       │   │   ├── IManagedMqttClientOptions.cs
│       │   │   ├── IManagedMqttClientStorage.cs
│       │   │   ├── ISynchronizingSubscriptionsFailedHandler.cs
│       │   │   ├── ManagedMqttApplicationMessageBuilder.cs
│       │   │   ├── ManagedMqttApplicationMessage.cs
│       │   │   ├── ManagedMqttClient.cs
│       │   │   ├── ManagedMqttClientExtensions.cs
│       │   │   ├── ManagedMqttClientOptionsBuilder.cs
│       │   │   ├── ManagedMqttClientOptions.cs
│       │   │   ├── ManagedMqttClientStorageManager.cs
│       │   │   ├── ManagedProcessFailedEventArgs.cs
│       │   │   ├── MqttFactoryExtensions.cs
│       │   │   ├── MQTTnet.Extensions.ManagedClient.csproj
│       │   │   ├── ReconnectionResult.cs
│       │   │   └── SynchronizingSubscriptionsFailedHandlerDelegate.cs
│       │   ├── MQTTnet.Extensions.Rpc
│       │   │   ├── MQTTnet.Extensions.Rpc.csproj
│       │   │   ├── MqttRpcClient.cs
│       │   │   ├── Options
│       │   │   │   ├── IMqttRpcClientOptions.cs
│       │   │   │   ├── MqttRpcClientOptionsBuilder.cs
│       │   │   │   ├── MqttRpcClientOptions.cs
│       │   │   │   ├── MqttRpcTopicPair.cs
│       │   │   │   └── TopicGeneration
│       │   │   │       ├── DefaultMqttRpcClientTopicGenerationStrategy.cs
│       │   │   │       ├── IMqttRpcClientTopicGenerationStrategy.cs
│       │   │   │       └── TopicGenerationContext.cs
│       │   │   ├── RpcAwareApplicationMessageReceivedHandler.cs
│       │   │   └── SampleCCode.c
│       │   ├── MQTTnet.Extensions.WebSocket4Net
│       │   │   ├── MqttFactoryExtensions.cs
│       │   │   ├── MQTTnet.Extensions.WebSocket4Net.csproj
│       │   │   ├── WebSocket4NetMqttChannel.cs
│       │   │   └── WebSocket4NetMqttClientAdapterFactory.cs
│       │   ├── MQTTnet.Extensions.Wrappers.WebSocket4Net
│       │   │   └── WebSocket4NetMqttClientAdapterFactory.cs
│       │   └── MQTTnet.Server
│       │       ├── appsettings.Development.json
│       │       ├── appsettings.json
│       │       ├── Configuration
│       │       │   ├── CertificateSettingsModel.cs
│       │       │   ├── MqttSettingsModel.cs
│       │       │   ├── PathHelper.cs
│       │       │   ├── RetainedApplicationMessagesModel.cs
│       │       │   ├── ScriptingSettingsModel.cs
│       │       │   ├── TcpEndpointModel.cs
│       │       │   └── WebSocketEndpointModel.cs
│       │       ├── Controllers
│       │       │   ├── ClientsController.cs
│       │       │   ├── MessagesController.cs
│       │       │   ├── RetainedApplicationMessagesController.cs
│       │       │   ├── ScriptsController.cs
│       │       │   ├── ServerController.cs
│       │       │   └── SessionsController.cs
│       │       ├── LICENSE
│       │       ├── Logging
│       │       │   ├── MqttNetChildLoggerWrapper.cs
│       │       │   └── MqttNetLoggerWrapper.cs
│       │       ├── Mqtt
│       │       │   ├── CustomMqttFactory.cs
│       │       │   ├── MqttApplicationMessageInterceptor.cs
│       │       │   ├── MqttClientConnectedHandler.cs
│       │       │   ├── MqttClientDisconnectedHandler.cs
│       │       │   ├── MqttClientSubscribedTopicHandler.cs
│       │       │   ├── MqttClientUnsubscribedTopicHandler.cs
│       │       │   ├── MqttServerConnectionValidator.cs
│       │       │   ├── MqttServerService.cs
│       │       │   ├── MqttServerStorage.cs
│       │       │   └── MqttSubscriptionInterceptor.cs
│       │       ├── MQTTnet.Server.csproj
│       │       ├── package.json
│       │       ├── Program.cs
│       │       ├── README.md
│       │       ├── Scripting
│       │       │   ├── DataSharing
│       │       │   │   └── DataSharingService.cs
│       │       │   ├── PythonConvert.cs
│       │       │   ├── PythonIOStream.cs
│       │       │   ├── PythonScriptHostService.cs
│       │       │   └── PythonScriptInstance.cs
│       │       ├── Scripts
│       │       │   ├── 00_sample.py
│       │       │   └── readme.md
│       │       └── Web
│       │           ├── authorization_handler.py
│       │           ├── BasicAuthenticationHandler.cs
│       │           ├── Extensions.cs
│       │           └── Startup.cs
│       ├── Tests
│       │   ├── MQTTnet.AspNetCore.Tests
│       │   │   ├── Mockups
│       │   │   │   ├── ConnectionContextMockup.cs
│       │   │   │   ├── DuplexPipeMockup.cs
│       │   │   │   ├── LimitedMemoryPool.cs
│       │   │   │   └── MemoryOwner.cs
│       │   │   ├── MqttConnectionContextTest.cs
│       │   │   ├── MQTTnet.AspNetCore.Tests.csproj
│       │   │   ├── MqttPacketSerializerTests.cs
│       │   │   └── ReaderExtensionsTest.cs
│       │   ├── MQTTnet.Benchmarks
│       │   │   ├── App.config
│       │   │   ├── ChannelAdapterBenchmark.cs
│       │   │   ├── Configurations
│       │   │   │   ├── AllowNonOptimized.cs
│       │   │   │   ├── BaseConfig.cs
│       │   │   │   └── RuntimeCompareConfig.cs
│       │   │   ├── LoggerBenchmark.cs
│       │   │   ├── MessageProcessingBenchmark.cs
│       │   │   ├── MessageProcessingMqttConnectionContextBenchmark.cs
│       │   │   ├── MQTTnet.Benchmarks.csproj
│       │   │   ├── MqttTcpChannelBenchmark.cs
│       │   │   ├── packages.config
│       │   │   ├── Program.cs
│       │   │   ├── SerializerBenchmark.cs
│       │   │   ├── TcpPipesBenchmark.cs
│       │   │   └── TopicFilterComparerBenchmark.cs
│       │   ├── MQTTnet.Core.Tests
│       │   │   ├── AsyncAutoResentEvent_Tests.cs
│       │   │   ├── AsyncLock_Tests.cs
│       │   │   ├── AsyncQueue_Tests.cs
│       │   │   ├── BlockingQueue_Tests.cs
│       │   │   ├── Extension_Tests.cs
│       │   │   ├── ManagedMqttClient_Tests.cs
│       │   │   ├── Mockups
│       │   │   │   ├── TestEnvironment.cs
│       │   │   │   ├── TestLogger.cs
│       │   │   │   ├── TestMqttCommunicationAdapter.cs
│       │   │   │   ├── TestMqttCommunicationAdapterFactory.cs
│       │   │   │   └── TestServerStorage.cs
│       │   │   ├── MqttApplicationMessageBuilder_Tests.cs
│       │   │   ├── MqttClient_Tests.cs
│       │   │   ├── MqttFactory_Tests.cs
│       │   │   ├── MqttKeepAliveMonitor_Tests.cs
│       │   │   ├── MQTTnet.Tests.csproj
│       │   │   ├── MqttPacketIdentifierProvider_Tests.cs
│       │   │   ├── MqttPacketReader_Tests.cs
│       │   │   ├── MqttPacketSerializer_Tests.cs
│       │   │   ├── MqttPacketWriter_Tests.cs
│       │   │   ├── MqttSubscriptionsManager_Tests.cs
│       │   │   ├── MqttTcpChannel_Tests.cs
│       │   │   ├── MqttTopicValidator_Tests.cs
│       │   │   ├── MQTTv5
│       │   │   │   ├── Client_Tests.cs
│       │   │   │   ├── Feature_Tests.cs
│       │   │   │   └── Server_Tests.cs
│       │   │   ├── Protocol_Tests.cs
│       │   │   ├── RoundtripTime_Tests.cs
│       │   │   ├── RPC_Tests.cs
│       │   │   ├── Server_Status_Tests.cs
│       │   │   ├── Server_Tests.cs
│       │   │   ├── Session_Tests.cs
│       │   │   └── TopicFilterComparer_Tests.cs
│       │   ├── MQTTnet.TestApp.AspNetCore2
│       │   │   ├── MQTTnet.TestApp.AspNetCore2.csproj
│       │   │   ├── package.json
│       │   │   ├── Program.cs
│       │   │   ├── Startup.cs
│       │   │   ├── tsconfig.json
│       │   │   └── wwwroot
│       │   │       ├── app
│       │   │       │   └── app.ts
│       │   │       └── Index.html
│       │   ├── MQTTnet.TestApp.NetCore
│       │   │   ├── ClientFlowTest.cs
│       │   │   ├── ClientTest.cs
│       │   │   ├── ManagedClientTest.cs
│       │   │   ├── MqttNetConsoleLogger.cs
│       │   │   ├── MQTTnet.TestApp.NetCore.csproj
│       │   │   ├── PerformanceTest.cs
│       │   │   ├── Program.cs
│       │   │   ├── PublicBrokerTest.cs
│       │   │   ├── ServerAndClientTest.cs
│       │   │   └── ServerTest.cs
│       │   └── MQTTnet.TestApp.UniversalWindows
│       │       ├── App.xaml
│       │       ├── App.xaml.cs
│       │       ├── Assets
│       │       │   ├── LockScreenLogo.scale-200.png
│       │       │   ├── SplashScreen.scale-200.png
│       │       │   ├── Square150x150Logo.scale-200.png
│       │       │   ├── Square44x44Logo.scale-200.png
│       │       │   ├── Square44x44Logo.targetsize-24_altform-unplated.png
│       │       │   ├── StoreLogo.png
│       │       │   └── Wide310x150Logo.scale-200.png
│       │       ├── JsonServerStorage.cs
│       │       ├── MainPage.xaml
│       │       ├── MainPage.xaml.cs
│       │       ├── MQTTnet.TestApp.UniversalWindows.csproj
│       │       ├── MQTTnet.TestApp.UniversalWindows_TemporaryKey.pfx
│       │       ├── Package.appxmanifest
│       │       └── Properties
│       │           ├── AssemblyInfo.cs
│       │           └── Default.rd.xml
│       └── UpgradeLog.htm
├── MQTTnet-master.zip
├── mqtt-net.rar
├── MQTT服务器
│   ├── MQTT服务器
│   │   ├── app.config
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── MQTTnet.Core.dll
│   │   │   │   ├── MQTTnet.dll
│   │   │   │   ├── MQTT服务器.exe
│   │   │   │   ├── MQTT服务器.exe.config
│   │   │   │   ├── MQTT服务器.pdb
│   │   │   │   ├── MQTT服务器.vshost.exe
│   │   │   │   ├── MQTT服务器.vshost.exe.config
│   │   │   │   └── MQTT服务器.vshost.exe.manifest
│   │   │   └── Release
│   │   ├── FrmServer.cs
│   │   ├── FrmServer.Designer.cs
│   │   ├── FrmServer.resx
│   │   ├── MQTT服务器.csproj
│   │   ├── obj
│   │   │   └── Debug
│   │   │       ├── build.force
│   │   │       ├── DesignTimeResolveAssemblyReferences.cache
│   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │       ├── MQTT服务器.csproj.FileListAbsolute.txt
│   │   │       ├── MQTT服务器.csproj.GenerateResource.Cache
│   │   │       ├── MQTT服务器.csprojResolveAssemblyReference.cache
│   │   │       ├── MQTT服务器.exe
│   │   │       ├── MQTT服务器.FrmServer.resources
│   │   │       ├── MQTT服务器.pdb
│   │   │       ├── MQTT服务器.Properties.Resources.resources
│   │   │       ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │       ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │       ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │       └── TempPE
│   │   │           └── Properties.Resources.Designer.cs.dll
│   │   ├── Program.cs
│   │   └── Properties
│   │       ├── AssemblyInfo.cs
│   │       ├── Resources.Designer.cs
│   │       ├── Resources.resx
│   │       ├── Settings.Designer.cs
│   │       └── Settings.settings
│   └── MQTT服务器.sln
├── paho.mqtt.m2mqtt-master
│   └── paho.mqtt.m2mqtt-master
│       ├── about.html
│       ├── bin
│       │   └── Debug
│       │       └── M2Mqtt.NetCf35
│       │           ├── M2Mqtt.NetCf35.dll
│       │           └── M2Mqtt.NetCf35.pdb
│       ├── build.cmd
│       ├── CONTRIBUTING.md
│       ├── deleteme.txt
│       ├── edl-v10
│       ├── epl-v10
│       ├── images
│       │   └── M2Mqtt_Short_Logo.png
│       ├── LICENSE
│       ├── M2Mqtt
│       │   ├── Exceptions
│       │   │   ├── MqttClientException.cs
│       │   │   ├── MqttCommunicationException.cs
│       │   │   ├── MqttConnectionException.cs
│       │   │   └── MqttTimeoutException.cs
│       │   ├── IMqttNetworkChannel.cs
│       │   ├── Internal
│       │   │   ├── InternalEvent.cs
│       │   │   ├── MsgInternalEvent.cs
│       │   │   └── MsgPublishedInternalEvent.cs
│       │   ├── M2Mqtt.Mono.csproj
│       │   ├── M2Mqtt.NetCf35.csproj
│       │   ├── M2Mqtt.NetCf35.csproj.user
│       │   ├── M2Mqtt.NetCf39.csproj
│       │   ├── M2Mqtt.Net.csproj
│       │   ├── M2Mqtt.NetMf42.csproj
│       │   ├── M2Mqtt.NetMf43.csproj
│       │   ├── M2Mqtt.WinRT.csproj
│       │   ├── Messages
│       │   │   ├── MqttMsgBase.cs
│       │   │   ├── MqttMsgConnack.cs
│       │   │   ├── MqttMsgConnect.cs
│       │   │   ├── MqttMsgConnectEventArgs.cs
│       │   │   ├── MqttMsgContext.cs
│       │   │   ├── MqttMsgDisconnect.cs
│       │   │   ├── MqttMsgPingReq.cs
│       │   │   ├── MqttMsgPingResp.cs
│       │   │   ├── MqttMsgPuback.cs
│       │   │   ├── MqttMsgPubcomp.cs
│       │   │   ├── MqttMsgPublish.cs
│       │   │   ├── MqttMsgPublishedEventArgs.cs
│       │   │   ├── MqttMsgPublishEventArgs.cs
│       │   │   ├── MqttMsgPubrec.cs
│       │   │   ├── MqttMsgPubrel.cs
│       │   │   ├── MqttMsgSuback.cs
│       │   │   ├── MqttMsgSubscribe.cs
│       │   │   ├── MqttMsgSubscribedEventArgs.cs
│       │   │   ├── MqttMsgSubscribeEventArgs.cs
│       │   │   ├── MqttMsgUnsuback.cs
│       │   │   ├── MqttMsgUnsubscribe.cs
│       │   │   ├── MqttMsgUnsubscribedEventArgs.cs
│       │   │   └── MqttMsgUnsubscribeEventArgs.cs
│       │   ├── MqttClient.cs
│       │   ├── MqttSecurity.cs
│       │   ├── MqttSettings.cs
│       │   ├── Net
│       │   │   ├── Fx.cs
│       │   │   └── MqttNetworkChannel.cs
│       │   ├── obj
│       │   │   └── Debug
│       │   │       ├── M2Mqtt.NetCf35.csproj.FileListAbsolute.txt
│       │   │       ├── M2Mqtt.NetCf35.dll
│       │   │       ├── M2Mqtt.NetCf35.pdb
│       │   │       └── TempPE
│       │   ├── Properties
│       │   │   └── AssemblyInfo.cs
│       │   ├── Session
│       │   │   ├── MqttBrokerSession.cs
│       │   │   ├── MqttClientSession.cs
│       │   │   └── MqttSession.cs
│       │   ├── Utility
│       │   │   ├── QueueExtension.cs
│       │   │   └── Trace.cs
│       │   └── WinRT
│       │       ├── Fx.cs
│       │       ├── Hashtable.cs
│       │       ├── MqttNetworkChannel.cs
│       │       └── Queue.cs
│       ├── M2Mqtt.nuspec
│       ├── M2Mqtt.sln
│       ├── M2MqttVS2008.sln
│       ├── M2MqttVS2008.suo
│       ├── notice.html
│       └── README.md
├── paho.mqtt.m2mqtt-master.zip
├── sesametech-group-MqttNetSln-master
│   └── MqttNetSln
│       ├── LICENSE
│       ├── MqttNetSln
│       │   ├── MqttNetClient
│       │   │   ├── App.config
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   ├── FrmMqttClient.cs
│       │   │   ├── FrmMqttClient.Designer.cs
│       │   │   ├── FrmMqttClient.resx
│       │   │   ├── MqttNetClient.csproj
│       │   │   ├── obj
│       │   │   │   └── Debug
│       │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│       │   │   │       ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│       │   │   │       ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│       │   │   │       ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│       │   │   │       └── TempPE
│       │   │   │           └── Properties.Resources.Designer.cs.dll
│       │   │   ├── packages.config
│       │   │   ├── Program.cs
│       │   │   └── Properties
│       │   │       ├── AssemblyInfo.cs
│       │   │       ├── Resources.Designer.cs
│       │   │       ├── Resources.resx
│       │   │       ├── Settings.Designer.cs
│       │   │       └── Settings.settings
│       │   ├── MqttNetServer
│       │   │   ├── App.config
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── MqttNetServer.exe.config
│       │   │   │       ├── MqttNetServer.vshost.exe
│       │   │   │       ├── MqttNetServer.vshost.exe.config
│       │   │   │       └── MqttNetServer.vshost.exe.manifest
│       │   │   ├── FrmMqttServer.cs
│       │   │   ├── FrmMqttServer.Designer.cs
│       │   │   ├── FrmMqttServer.resx
│       │   │   ├── MqttNetServer.csproj
│       │   │   ├── obj
│       │   │   │   └── Debug
│       │   │   │       ├── DesignTimeResolveAssemblyReferences.cache
│       │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│       │   │   │       ├── MqttNetServer.csproj.FileListAbsolute.txt
│       │   │   │       ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│       │   │   │       ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│       │   │   │       ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│       │   │   │       └── TempPE
│       │   │   │           └── Properties.Resources.Designer.cs.dll
│       │   │   ├── packages.config
│       │   │   ├── Program.cs
│       │   │   └── Properties
│       │   │       ├── AssemblyInfo.cs
│       │   │       ├── Resources.Designer.cs
│       │   │       ├── Resources.resx
│       │   │       ├── Settings.Designer.cs
│       │   │       └── Settings.settings
│       │   └── MqttNetSln.sln
│       └── README.md
├── sesametech-group-MqttNetSln-master.zip
├── 相关编译好的DLL
│   ├── M2tt
│   │   └── M2Mqtt.NetCf35.dll
│   └── MqttNet
│       ├── MQTTnet.Core.dll
│       └── MQTTnet.dll
└── 说明.txt

2376 directories, 3076 files

标签: .NET MQTT NET 物联网 3.5

实例下载地址

C#.Net开发MQTT物联网需要的资料和代码汇总支持framework3.5

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警