From b8e1c92bbacbe386d56372ff742faaf185b8991d Mon Sep 17 00:00:00 2001 From: Friedrich von Never Date: Mon, 12 Dec 2016 22:51:29 +0700 Subject: [PATCH] #27: add simple XMPP logger --- Ctor.Xmpp/Program.fs | 6 - Ctor.Xmpp/Robot.fs | 41 + Ctor.Xmpp/SharpXmppHelper.fs | 17 + Ctor.Xmpp/project.json | 7 +- Ctor.Xmpp/project.lock.json | 1886 +++++++++++++++++++++------------- 5 files changed, 1228 insertions(+), 729 deletions(-) delete mode 100644 Ctor.Xmpp/Program.fs create mode 100644 Ctor.Xmpp/Robot.fs create mode 100644 Ctor.Xmpp/SharpXmppHelper.fs diff --git a/Ctor.Xmpp/Program.fs b/Ctor.Xmpp/Program.fs deleted file mode 100644 index 462e16c..0000000 --- a/Ctor.Xmpp/Program.fs +++ /dev/null @@ -1,6 +0,0 @@ -module Ctor.Xmpp.Program - -[] -let main _ = - printfn "Hello World" - 0 diff --git a/Ctor.Xmpp/Robot.fs b/Ctor.Xmpp/Robot.fs new file mode 100644 index 0000000..4331312 --- /dev/null +++ b/Ctor.Xmpp/Robot.fs @@ -0,0 +1,41 @@ +namespace Ctor.Xmpp + +open System +open System.Threading + +open Microsoft.Extensions.Logging +open SharpXMPP +open SharpXMPP.XMPP + +type Robot(loggerFactory: ILoggerFactory, + login: string, + password: string, + roomJid: string, + nickname: string) = + let logger = loggerFactory.CreateLogger() + let connection = new XmppClient(JID(login), password) + + let connectionFailedHandler = XmppConnection.ConnectionFailedHandler(fun s e -> + logger.LogError(e.ToString()) + Thread.Sleep(TimeSpan.FromSeconds(30.0)) // TODO[Friedrich]: Configurable timeout. + ()) + + let signedInHandler = XmppConnection.SignedInHandler(fun s e -> + logger.LogInformation("Connecting to " + roomJid) + SharpXmppHelper.joinRoom connection roomJid nickname) + + let messageHandler = XmppConnection.MessageHandler(fun s e -> + logger.LogInformation("<-" + e.ToString())) + + let elementHandler = XmppConnection.ElementHandler(fun s e -> + let arrow = if e.IsInput then "<-" else "->" + logger.LogInformation(arrow + " " + e.ToString())) + + do + connection.add_ConnectionFailed(connectionFailedHandler) + connection.add_SignedIn(signedInHandler) + connection.add_Message(messageHandler) + connection.add_Element(elementHandler) + + interface IDisposable with + member __.Dispose() = connection.Close() diff --git a/Ctor.Xmpp/SharpXmppHelper.fs b/Ctor.Xmpp/SharpXmppHelper.fs new file mode 100644 index 0000000..c06e159 --- /dev/null +++ b/Ctor.Xmpp/SharpXmppHelper.fs @@ -0,0 +1,17 @@ +module Ctor.Xmpp.SharpXmppHelper + +open System.Xml.Linq + +open SharpXMPP +open SharpXMPP.XMPP.Client.MUC.Bookmarks.Elements + +let private bookmark (roomJid: string) (nickname: string): BookmarkedConference = + let room = BookmarkedConference() + room.SetAttributeValue(XName.Get("jid"), roomJid) + let nickElement = XElement(XName.Get("storage:bookmarks"), "nick", Value = nickname) + room.Add(nickElement) + room + +let joinRoom (client: XmppClient) (roomJid: string) (nickname: string): unit = + let room = bookmark roomJid nickname + client.BookmarkManager.Join(room) diff --git a/Ctor.Xmpp/project.json b/Ctor.Xmpp/project.json index dc8ddcd..e2242b8 100644 --- a/Ctor.Xmpp/project.json +++ b/Ctor.Xmpp/project.json @@ -5,7 +5,8 @@ "compilerName": "fsc", "compile": { "includeFiles": [ - "Program.fs" + "SharpXmppHelper.fs", + "Robot.fs" ] }, "preserveCompilationContext": true @@ -14,11 +15,13 @@ "netcoreapp1.0": {} }, "dependencies": { + "Microsoft.Extensions.Logging": "1.1.0", + "Microsoft.FSharp.Core.netcore": "1.0.0-alpha-160629", "Microsoft.NETCore.App": { "type": "platform", "version": "1.0.1" }, - "Microsoft.FSharp.Core.netcore": "1.0.0-alpha-160629" + "SharpXMPP.Shared": "0.0.1-pre01" }, "tools": { "dotnet-compile-fsc": "1.0.0-preview2-*" diff --git a/Ctor.Xmpp/project.lock.json b/Ctor.Xmpp/project.lock.json index 2b96363..0f8f697 100644 --- a/Ctor.Xmpp/project.lock.json +++ b/Ctor.Xmpp/project.lock.json @@ -119,6 +119,45 @@ "lib/netstandard1.3/_._": {} } }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.ComponentModel": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0", + "Microsoft.Extensions.Logging.Abstractions": "1.1.0", + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.1.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, "Microsoft.FSharp.Core.netcore/1.0.0-alpha-160629": { "type": "package", "dependencies": { @@ -221,7 +260,7 @@ "Microsoft.NETCore.Jit/1.0.4": { "type": "package" }, - "Microsoft.NETCore.Platforms/1.0.1": { + "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -237,7 +276,7 @@ "Microsoft.NETCore.Windows.ApiSets": "1.0.1" } }, - "Microsoft.NETCore.Targets/1.0.1": { + "Microsoft.NETCore.Targets/1.1.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -276,12 +315,12 @@ "lib/netstandard1.3/_._": {} } }, - "Microsoft.Win32.Primitives/4.0.1": { + "Microsoft.Win32.Primitives/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} @@ -309,60 +348,87 @@ } } }, - "NETStandard.Library/1.6.0": { + "NETStandard.Library/1.6.1": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Console": "4.0.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.IO.Compression.ZipFile": "4.0.1", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.Sockets": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } } }, - "runtime.native.System/4.0.0": { + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" }, "compile": { "lib/netstandard1.0/_._": {} @@ -371,11 +437,11 @@ "lib/netstandard1.0/_._": {} } }, - "runtime.native.System.IO.Compression/4.1.0": { + "runtime.native.System.IO.Compression/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" }, "compile": { "lib/netstandard1.0/_._": {} @@ -384,11 +450,11 @@ "lib/netstandard1.0/_._": {} } }, - "runtime.native.System.Net.Http/4.0.1": { + "runtime.native.System.Net.Http/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" }, "compile": { "lib/netstandard1.0/_._": {} @@ -423,10 +489,129 @@ "lib/netstandard1.0/_._": {} } }, - "System.AppContext/4.1.0": { + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0" + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "SharpXMPP.Shared/0.0.1-pre01": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Net.NameResolution": "4.0.0", + "System.Net.Security": "4.0.0" + }, + "compile": { + "lib/netstandard1.6/SharpXMPP.Shared.dll": {} + }, + "runtime": { + "lib/netstandard1.6/SharpXMPP.Shared.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.6/System.AppContext.dll": {} @@ -435,14 +620,14 @@ "lib/netstandard1.6/System.AppContext.dll": {} } }, - "System.Buffers/4.0.0": { + "System.Buffers/4.3.0": { "type": "package", "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" }, "compile": { "lib/netstandard1.1/System.Buffers.dll": {} @@ -451,30 +636,30 @@ "lib/netstandard1.1/System.Buffers.dll": {} } }, - "System.Collections/4.0.11": { + "System.Collections/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Collections.dll": {} } }, - "System.Collections.Concurrent/4.0.12": { + "System.Collections.Concurrent/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Collections.Concurrent.dll": {} @@ -502,16 +687,16 @@ "lib/netstandard1.0/_._": {} } }, - "System.ComponentModel/4.0.1": { + "System.ComponentModel/4.3.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0" + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.0/System.ComponentModel.dll": {} }, "runtime": { - "lib/netstandard1.3/_._": {} + "lib/netstandard1.3/System.ComponentModel.dll": {} } }, "System.ComponentModel.Annotations/4.1.0": { @@ -536,38 +721,38 @@ "lib/netstandard1.4/_._": {} } }, - "System.Console/4.0.0": { + "System.Console/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Console.dll": {} } }, - "System.Diagnostics.Debug/4.0.11": { + "System.Diagnostics.Debug/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} } }, - "System.Diagnostics.DiagnosticSource/4.0.0": { + "System.Diagnostics.DiagnosticSource/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" }, "compile": { "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} @@ -651,23 +836,23 @@ "lib/netstandard1.3/_._": {} } }, - "System.Diagnostics.Tools/4.0.1": { + "System.Diagnostics.Tools/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} } }, - "System.Diagnostics.Tracing/4.1.0": { + "System.Diagnostics.Tracing/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} @@ -699,38 +884,38 @@ "lib/netstandard1.3/_._": {} } }, - "System.Globalization/4.0.11": { + "System.Globalization/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Globalization.dll": {} } }, - "System.Globalization.Calendars/4.0.1": { + "System.Globalization.Calendars/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Globalization.Calendars.dll": {} } }, - "System.Globalization.Extensions/4.0.1": { + "System.Globalization.Extensions/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Globalization.Extensions.dll": {} @@ -746,36 +931,37 @@ } } }, - "System.IO/4.1.0": { + "System.IO/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" }, "compile": { "ref/netstandard1.5/System.IO.dll": {} } }, - "System.IO.Compression/4.1.0": { + "System.IO.Compression/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.native.System": "4.0.0", - "runtime.native.System.IO.Compression": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" }, "compile": { "ref/netstandard1.3/System.IO.Compression.dll": {} @@ -791,18 +977,18 @@ } } }, - "System.IO.Compression.ZipFile/4.0.1": { + "System.IO.Compression.ZipFile/4.3.0": { "type": "package", "dependencies": { - "System.Buffers": "4.0.0", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11" + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" }, "compile": { "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} @@ -811,26 +997,26 @@ "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} } }, - "System.IO.FileSystem/4.0.1": { + "System.IO.FileSystem/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" }, "compile": { "ref/netstandard1.3/System.IO.FileSystem.dll": {} } }, - "System.IO.FileSystem.Primitives/4.0.1": { + "System.IO.FileSystem.Primitives/4.3.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0" + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} @@ -914,14 +1100,14 @@ "lib/netstandard1.3/_._": {} } }, - "System.Linq/4.1.0": { + "System.Linq/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" }, "compile": { "ref/netstandard1.6/System.Linq.dll": {} @@ -930,26 +1116,26 @@ "lib/netstandard1.6/System.Linq.dll": {} } }, - "System.Linq.Expressions/4.1.0": { + "System.Linq.Expressions/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" }, "compile": { "ref/netstandard1.6/System.Linq.Expressions.dll": {} @@ -998,35 +1184,35 @@ "lib/netstandard1.3/System.Linq.Queryable.dll": {} } }, - "System.Net.Http/4.1.0": { + "System.Net.Http/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.DiagnosticSource": "4.0.0", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.OpenSsl": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.native.System": "4.0.0", - "runtime.native.System.Net.Http": "4.0.1", - "runtime.native.System.Security.Cryptography": "4.0.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Net.Http.dll": {} @@ -1064,19 +1250,23 @@ "ref/netstandard1.3/System.Net.NameResolution.dll": {} }, "runtimeTargets": { - "runtimes/win/lib/netstandard1.3/_._": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": { "assetType": "runtime", "rid": "win" } } }, - "System.Net.Primitives/4.0.11": { + "System.Net.Primitives/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Net.Primitives.dll": {} @@ -1149,21 +1339,25 @@ "ref/netstandard1.3/System.Net.Security.dll": {} }, "runtimeTargets": { - "runtimes/win/lib/netstandard1.3/_._": { + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": { "assetType": "runtime", "rid": "win" } } }, - "System.Net.Sockets/4.1.0": { + "System.Net.Sockets/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Net.Sockets.dll": {} @@ -1199,14 +1393,14 @@ "lib/netstandard1.0/_._": {} } }, - "System.ObjectModel/4.0.12": { + "System.ObjectModel/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" }, "compile": { "ref/netstandard1.3/System.ObjectModel.dll": {} @@ -1215,14 +1409,14 @@ "lib/netstandard1.3/System.ObjectModel.dll": {} } }, - "System.Reflection/4.1.0": { + "System.Reflection/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.5/System.Reflection.dll": {} @@ -1249,14 +1443,14 @@ "lib/netstandard1.3/_._": {} } }, - "System.Reflection.Emit/4.0.1": { + "System.Reflection.Emit/4.3.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.1/System.Reflection.Emit.dll": {} @@ -1265,12 +1459,12 @@ "lib/netstandard1.3/System.Reflection.Emit.dll": {} } }, - "System.Reflection.Emit.ILGeneration/4.0.1": { + "System.Reflection.Emit.ILGeneration/4.3.0": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} @@ -1279,13 +1473,13 @@ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} } }, - "System.Reflection.Emit.Lightweight/4.0.1": { + "System.Reflection.Emit.Lightweight/4.3.0": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.0/_._": {} @@ -1294,13 +1488,13 @@ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} } }, - "System.Reflection.Extensions/4.0.1": { + "System.Reflection.Extensions/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.0/System.Reflection.Extensions.dll": {} @@ -1332,22 +1526,22 @@ "lib/netstandard1.1/_._": {} } }, - "System.Reflection.Primitives/4.0.1": { + "System.Reflection.Primitives/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.0/System.Reflection.Primitives.dll": {} } }, - "System.Reflection.TypeExtensions/4.1.0": { + "System.Reflection.TypeExtensions/4.3.0": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} @@ -1372,79 +1566,82 @@ "lib/netstandard1.0/_._": {} } }, - "System.Resources.ResourceManager/4.0.1": { + "System.Resources.ResourceManager/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} } }, - "System.Runtime/4.1.0": { + "System.Runtime/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" }, "compile": { "ref/netstandard1.5/System.Runtime.dll": {} } }, - "System.Runtime.Extensions/4.1.0": { + "System.Runtime.Extensions/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.5/System.Runtime.Extensions.dll": {} } }, - "System.Runtime.Handles/4.0.1": { + "System.Runtime.Handles/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Runtime.Handles.dll": {} } }, - "System.Runtime.InteropServices/4.1.0": { + "System.Runtime.InteropServices/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" }, "compile": { "ref/netstandard1.5/System.Runtime.InteropServices.dll": {} } }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "runtime.native.System": "4.0.0" + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" }, "compile": { "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, "runtimeTargets": { "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { "assetType": "runtime", @@ -1470,13 +1667,13 @@ "lib/netstandard1.5/System.Runtime.Loader.dll": {} } }, - "System.Runtime.Numerics/4.0.1": { + "System.Runtime.Numerics/4.3.0": { "type": "package", "dependencies": { - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" }, "compile": { "ref/netstandard1.1/System.Runtime.Numerics.dll": {} @@ -1500,30 +1697,35 @@ "ref/netstandard1.3/_._": {} }, "runtime": { - "lib/netstandard1.3/_._": {} + "lib/netstandard1.3/System.Security.Claims.dll": {} } - }, - "System.Security.Cryptography.Algorithms/4.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" }, "compile": { "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} }, "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { "assetType": "runtime", "rid": "unix" @@ -1534,20 +1736,20 @@ } } }, - "System.Security.Cryptography.Cng/4.2.0": { + "System.Security.Cryptography.Cng/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11" + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" }, "compile": { "ref/netstandard1.6/_._": {} @@ -1563,22 +1765,22 @@ } } }, - "System.Security.Cryptography.Csp/4.0.0": { + "System.Security.Cryptography.Csp/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" }, "compile": { "ref/netstandard1.3/_._": {} @@ -1594,21 +1796,21 @@ } } }, - "System.Security.Cryptography.Encoding/4.0.0": { + "System.Security.Cryptography.Encoding/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "runtime.native.System.Security.Cryptography": "4.0.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} @@ -1624,22 +1826,22 @@ } } }, - "System.Security.Cryptography.OpenSsl/4.0.0": { + "System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "runtime.native.System.Security.Cryptography": "4.0.0" + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" }, "compile": { "ref/netstandard1.6/_._": {} @@ -1654,16 +1856,16 @@ } } }, - "System.Security.Cryptography.Primitives/4.0.0": { + "System.Security.Cryptography.Primitives/4.3.0": { "type": "package", "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} @@ -1672,34 +1874,34 @@ "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} } }, - "System.Security.Cryptography.X509Certificates/4.1.0": { + "System.Security.Cryptography.X509Certificates/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Cng": "4.2.0", - "System.Security.Cryptography.Csp": "4.0.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.OpenSsl": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "runtime.native.System": "4.0.0", - "runtime.native.System.Net.Http": "4.0.1", - "runtime.native.System.Security.Cryptography": "4.0.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" }, "compile": { "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} @@ -1724,7 +1926,7 @@ "ref/netstandard1.0/System.Security.Principal.dll": {} }, "runtime": { - "lib/netstandard1.0/_._": {} + "lib/netstandard1.0/System.Security.Principal.dll": {} } }, "System.Security.Principal.Windows/4.0.0": { @@ -1749,18 +1951,22 @@ "ref/netstandard1.3/_._": {} }, "runtimeTargets": { - "runtimes/win/lib/netstandard1.3/_._": { + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": { "assetType": "runtime", "rid": "win" } } }, - "System.Text.Encoding/4.0.11": { + "System.Text.Encoding/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Text.Encoding.dll": {} @@ -1792,27 +1998,27 @@ } } }, - "System.Text.Encoding.Extensions/4.0.11": { + "System.Text.Encoding.Extensions/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} } }, - "System.Text.RegularExpressions/4.1.0": { + "System.Text.RegularExpressions/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" }, "compile": { "ref/netstandard1.6/System.Text.RegularExpressions.dll": {} @@ -1821,11 +2027,11 @@ "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} } }, - "System.Threading/4.0.11": { + "System.Threading/4.3.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Threading.dll": {} @@ -1852,12 +2058,12 @@ } } }, - "System.Threading.Tasks/4.0.11": { + "System.Threading.Tasks/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Threading.Tasks.dll": {} @@ -1885,12 +2091,12 @@ "lib/netstandard1.1/_._": {} } }, - "System.Threading.Tasks.Extensions/4.0.0": { + "System.Threading.Tasks.Extensions/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" }, "compile": { "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} @@ -1943,35 +2149,35 @@ "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} } }, - "System.Threading.Timer/4.0.1": { + "System.Threading.Timer/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.2/System.Threading.Timer.dll": {} } }, - "System.Xml.ReaderWriter/4.0.11": { + "System.Xml.ReaderWriter/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Extensions": "4.0.0" + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} @@ -1980,21 +2186,21 @@ "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} } }, - "System.Xml.XDocument/4.0.11": { + "System.Xml.XDocument/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Xml.XDocument.dll": {} @@ -2206,6 +2412,39 @@ "ref/xamarinwatchos10/_._" ] }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": { + "sha512": "2luhjVaWZd8Wmr2KUJcLNAN+iZgezTyfamLG6Lo5FVYY1LYaS7UFOmNtApHGVIytWWtuXSk4ea0t2Vx0HgF5fg==", + "type": "package", + "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0", + "files": [ + "Microsoft.Extensions.DependencyInjection.Abstractions.1.1.0.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec", + "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml" + ] + }, + "Microsoft.Extensions.Logging/1.1.0": { + "sha512": "IbNogJJE3NRtc5/DAtKEkhXaUQK9N7I6A5G2+ZfyBzWMvAgLKSimESpNMp+gnzUYsW3YbHkeT8jLk9m/3vGY5A==", + "type": "package", + "path": "Microsoft.Extensions.Logging/1.1.0", + "files": [ + "Microsoft.Extensions.Logging.1.1.0.nupkg.sha512", + "Microsoft.Extensions.Logging.nuspec", + "lib/netstandard1.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard1.1/Microsoft.Extensions.Logging.xml" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/1.1.0": { + "sha512": "5zDtM0Dal+pwDIj49PPq9Y8SYu6z70v55VDx70rOuquLTlaCIdv9uItkcp9c1FH/ASNdfANVnh1cTwd85dyE+Q==", + "type": "package", + "path": "Microsoft.Extensions.Logging.Abstractions/1.1.0", + "files": [ + "Microsoft.Extensions.Logging.Abstractions.1.1.0.nupkg.sha512", + "Microsoft.Extensions.Logging.Abstractions.nuspec", + "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.xml" + ] + }, "Microsoft.FSharp.Core.netcore/1.0.0-alpha-160629": { "sha512": "T4n8//0DBC9JWuZ6HY5eErgLg16bPXo+q49UX4m+MrDIMP7LScUfS3otExI0/Un4Ibs+OjQ6PB7mnM8rHcy13w==", "type": "package", @@ -2283,12 +2522,12 @@ "runtime.json" ] }, - "Microsoft.NETCore.Platforms/1.0.1": { - "sha512": "sydG89+iYUpbCVynvG51SHp0VzcTQanP4KC2i4X/fZcy9PtEY8roXXcy9gTvQ7moND+wRa8U1I2j6FPsAtIMjg==", + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "DWbulFFAetq+bulDygxZkZFW3j6KGvxzAciw4WdX0XfA7X8vR7C0ZDUNwzYe9DochtNamay3kyzxyjycL9jcTA==", "type": "package", - "path": "Microsoft.NETCore.Platforms/1.0.1", + "path": "Microsoft.NETCore.Platforms/1.1.0", "files": [ - "Microsoft.NETCore.Platforms.1.0.1.nupkg.sha512", + "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512", "Microsoft.NETCore.Platforms.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2308,12 +2547,12 @@ "runtime.json" ] }, - "Microsoft.NETCore.Targets/1.0.1": { - "sha512": "QPV0YAR5SmkMXTyFV0SM3yhEIeRw5VoWMgrKFJ88Zl32UAKo/XHAOSADG6cnfcKJ4tbfIvxEg3hcxlt0XU61LA==", + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "CQ3ob6XoErKiXYea0wKqpDGzJ5puaXa9oKQ32vNGaVzNLt8Aq/i6MuLb00U8eXcw0+fQ+c6fifpE4/nU275+Ng==", "type": "package", - "path": "Microsoft.NETCore.Targets/1.0.1", + "path": "Microsoft.NETCore.Targets/1.1.0", "files": [ - "Microsoft.NETCore.Targets.1.0.1.nupkg.sha512", + "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512", "Microsoft.NETCore.Targets.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2376,12 +2615,12 @@ "ref/wpa81/_._" ] }, - "Microsoft.Win32.Primitives/4.0.1": { - "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "rc8isorjVeP0yryKOr34e7sKcQEsWgPTvXimHMp/64tcO0FIqsu8QbAG8MtPcn/MG01bgyASGvUFjt4y2hCgJQ==", "type": "package", - "path": "Microsoft.Win32.Primitives/4.0.1", + "path": "Microsoft.Win32.Primitives/4.3.0", "files": [ - "Microsoft.Win32.Primitives.4.0.1.nupkg.sha512", + "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512", "Microsoft.Win32.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2440,50 +2679,86 @@ "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll" ] }, - "NETStandard.Library/1.6.0": { - "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==", + "NETStandard.Library/1.6.1": { + "sha512": "qdQmqaj88FUoxV4XtWA5xNJIQUl5tgf4TIcaD3Q9GxhZ8hJaBS3R0pLXMxTRwyRnfEyTEQGGxw+uvlPrxqjeJQ==", "type": "package", - "path": "NETStandard.Library/1.6.0", + "path": "NETStandard.Library/1.6.1", "files": [ - "NETStandard.Library.1.6.0.nupkg.sha512", + "NETStandard.Library.1.6.1.nupkg.sha512", "NETStandard.Library.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt" ] }, - "runtime.native.System/4.0.0": { - "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "3sixqoKBi9kOyAP7vZfZH84Xx3Jswld3jXcqISlBG86QrykWdq5bzSxspwv9i2ekbdSbwDLwWDrldQaTHrKyaw==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "EeoamZKeF0dICrUuMk4xUZrMhRWprN152OIo3vhsVh4Hpp1nw22+/TTdxGQMrbXL3uq10b3io/fKZ23sDMe+3Q==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "xHqiIacY9INTJ2K1x3+SUDY74Bz8F6lP1oFuTsunltz+ctZOA+rzpFWJXDG3O1oFuPoX0r2weFpyBHdBJlbl1Q==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "h3j7XF+GbYQcJ8rdRKrDZB6MZQUpWHS3282bJv7lPwa5NIvVCZmrpyFXHCToS+tBKRIgX0opecMfMHsxB1+5kQ==", "type": "package", - "path": "runtime.native.System/4.0.0", + "path": "runtime.native.System/4.3.0", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/netstandard1.0/_._", - "runtime.native.System.4.0.0.nupkg.sha512", + "runtime.native.System.4.3.0.nupkg.sha512", "runtime.native.System.nuspec" ] }, - "runtime.native.System.IO.Compression/4.1.0": { - "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==", + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "2ExsIJU9iHKIFlT36K1A1W26VibNedk0Yz0Q6UFBcxWxmdfdM6RQeAuGvmmhjy5KeOeFGnHJ73ZBs6FhiwfJGw==", "type": "package", - "path": "runtime.native.System.IO.Compression/4.1.0", + "path": "runtime.native.System.IO.Compression/4.3.0", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/netstandard1.0/_._", - "runtime.native.System.IO.Compression.4.1.0.nupkg.sha512", + "runtime.native.System.IO.Compression.4.3.0.nupkg.sha512", "runtime.native.System.IO.Compression.nuspec" ] }, - "runtime.native.System.Net.Http/4.0.1": { - "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==", + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "eXrxxAtWZoSer7m6e92vpvdhiLGHJEpY7JFQSy4Kor4RSyUKiq5p0nlvWxx0XHO7BEv7WT3TrzsF5UHJJGiV6Q==", "type": "package", - "path": "runtime.native.System.Net.Http/4.0.1", + "path": "runtime.native.System.Net.Http/4.3.0", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/netstandard1.0/_._", - "runtime.native.System.Net.Http.4.0.1.nupkg.sha512", + "runtime.native.System.Net.Http.4.3.0.nupkg.sha512", "runtime.native.System.Net.Http.nuspec" ] }, @@ -2511,12 +2786,143 @@ "runtime.native.System.Security.Cryptography.nuspec" ] }, - "System.AppContext/4.1.0": { - "sha512": "3/+vRzNSoYCw5LyLlpCkWga0FLUBng0uvHA5YUoeQk3/HuJfDu9rPJ7od0IeCX2m+XAow7E5Yf0i92nctpkxTA==", + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "xl3VzfUbF8DkDLU1v+Dyjtvg9F95WMPofAJWzOXT346zwbPD8yvICjX3zkJu7N1pmYLW3bCV1TTyC823O4KJlg==", + "type": "package", + "path": "runtime.native.System.Security.Cryptography.Apple/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512", + "runtime.native.System.Security.Cryptography.Apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "o8mbYnCk6l5Mt4b3dKd7w4FFHdGO2etEaO3MztTcFVn5CcAJImJb6+qi5dFUNgyUgXJgdjCMP/EtJxEnViC6Vw==", + "type": "package", + "path": "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512", + "runtime.native.System.Security.Cryptography.OpenSsl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "4zgBMw0Xpl0aFJNqVmOnrWGor6/wff8XWKKqtB3wJcK8lkMz1CKi8Qdmy6/2RLekReH1+DgRUDGuufldqCbzyw==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "O/uFvAhIXjUzuPRQRDMSQOVumtFN9sAAaavyqkedisZ5FQoTuj8HltqpWPF5g7YS9jU0u4ez8d6HLSN2KDteZw==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "luRcFC4+0/HjxJA6rk0e2uR0a1y/Y5ETvKZeOaLw5piWUuoqFguq0CkdJkuQgLf00Pip/w+/eMsnNzjK+ZaWoA==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "rbnT8t8yXnmReXi5a6PT/LBYdwRNd77yuc3iCKNp9WvK+jhSDA/O4blJ3s85i1td9NgPqq/jwFSrP8NCKfTD1g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "4bNebcXIzRVMpq+2Vap9wzJFJP9uigQLx6YQ3UwRcnDXYa4mBpEGY6VnYTfiFbErd24ntuQqkIckd8TBHGRI5Q==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "JmtIralxYZ8/P5OimvN8SsYR4EgrHLGhgVjtxsxKe/51gTkfwRgCYkDCW06UOMBfi6FLBVQoEiJdxnbEgSfGHA==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "SD1Q+eXmFF0zJ0KALy8/+DBlJdCMa8NzOBniGowTgM33V0v5yGB+vaztZn0TkuXob9zU+4EhXemiGE2rVVsC5w==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "vKMEd7CD1iKiNRoic6etc4aNSGHqT252klpAlHmsONxJRPWdRByKU01fHo5gmAt9d8sSGqT5scqv8uH9vxIsfw==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "SharpXMPP.Shared/0.0.1-pre01": { + "sha512": "U9FgqwytA463NvtIoklucDVUbflVXgd3UjOeyzaPj3Uw4tb7+crQxtW8drVWT1dd7h/aq5SchWEwEIiRM0Bdsw==", "type": "package", - "path": "System.AppContext/4.1.0", + "path": "SharpXMPP.Shared/0.0.1-pre01", "files": [ - "System.AppContext.4.1.0.nupkg.sha512", + "SharpXMPP.Shared.0.0.1-pre01.nupkg.sha512", + "SharpXMPP.Shared.nuspec", + "lib/net451/SharpXMPP.Shared.dll", + "lib/netstandard1.6/SharpXMPP.Shared.dll" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "G4s3Ltj3DFR/gGeqVM3ReTY8GMicaKQQbWg5gZeAnvG7foUcZ9RrcROsuq3XjVO5c64UzQi4h3DenvCXDd47Aw==", + "type": "package", + "path": "System.AppContext/4.3.0", + "files": [ + "System.AppContext.4.3.0.nupkg.sha512", "System.AppContext.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2564,12 +2970,12 @@ "runtimes/aot/lib/netcore50/System.AppContext.dll" ] }, - "System.Buffers/4.0.0": { - "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==", + "System.Buffers/4.3.0": { + "sha512": "3y5oR8bMlgLbqQuBEuF8iuDyX4LUEclsfs2bfdU9t6ZY7EDAdY5hJcC+eAKx/vqjEUkALm2dgQcbcPBw5zffEw==", "type": "package", - "path": "System.Buffers/4.0.0", + "path": "System.Buffers/4.3.0", "files": [ - "System.Buffers.4.0.0.nupkg.sha512", + "System.Buffers.4.3.0.nupkg.sha512", "System.Buffers.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2577,12 +2983,12 @@ "lib/netstandard1.1/System.Buffers.dll" ] }, - "System.Collections/4.0.11": { - "sha512": "mOwUJB3Ma3AlEEKY08o0vp7gNpgD74h3lzjMCsp4fHeljJ71Czu5bY759CdC3soFlBBxPKLY3y3vDB6a7iEEBA==", + "System.Collections/4.3.0": { + "sha512": "rCOZLpJc18d/gNau4F7NFkqWeSy4W0ia7Kd+86CGWyeKIGNay10CcT4jrZlQnfafaIz0bOkXo6iHH1k1vN9Ztg==", "type": "package", - "path": "System.Collections/4.0.11", + "path": "System.Collections/4.3.0", "files": [ - "System.Collections.4.0.11.nupkg.sha512", + "System.Collections.4.3.0.nupkg.sha512", "System.Collections.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2643,12 +3049,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Collections.Concurrent/4.0.12": { - "sha512": "snXQ7fzFE/FT7/5efOk+0SqNh9/6Q/69y4mVLG/gByO/TcZw/k0dGSxfY6S5ZydflWjMUJklvdP4ou/fZEjVfg==", + "System.Collections.Concurrent/4.3.0": { + "sha512": "oq4JEmLWHjSVU2W/upi9Dh4tIwo4BFas26JznKicdgAGhroafs3Oq36ZOVqnzfxYeEM1h+/BHkUONM1wZtkibg==", "type": "package", - "path": "System.Collections.Concurrent/4.0.12", + "path": "System.Collections.Concurrent/4.3.0", "files": [ - "System.Collections.Concurrent.4.0.12.nupkg.sha512", + "System.Collections.Concurrent.4.3.0.nupkg.sha512", "System.Collections.Concurrent.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2724,12 +3130,12 @@ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml" ] }, - "System.ComponentModel/4.0.1": { - "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", + "System.ComponentModel/4.3.0": { + "sha512": "marWdQO6m3heIBr9DbATX1VTh/+7fsMaVBekjnQ2WPBFVgci2cOwsseH463Xg4/I9LxszMG7BshxvAwhgjP6UA==", "type": "package", - "path": "System.ComponentModel/4.0.1", + "path": "System.ComponentModel/4.3.0", "files": [ - "System.ComponentModel.4.0.1.nupkg.sha512", + "System.ComponentModel.4.3.0.nupkg.sha512", "System.ComponentModel.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2858,12 +3264,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Console/4.0.0": { - "sha512": "kBBX8M9e8Ab1Ui/t/2xVnOZACxOeo8gmQO8Z+lqcWJMVwo9wcXe1uG5oMzzLQbGevVIBJwW18QoSMebKSQdm6Q==", + "System.Console/4.3.0": { + "sha512": "8XCtc2n1yjxZWwfKHw4YQZNHsfEp55elbo/ULK2rlcwwtK7hG0PuRweHqaElM5uo+wnlE6Odn2AauO5Rtc/aqw==", "type": "package", - "path": "System.Console/4.0.0", + "path": "System.Console/4.3.0", "files": [ - "System.Console.4.0.0.nupkg.sha512", + "System.Console.4.3.0.nupkg.sha512", "System.Console.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2894,12 +3300,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Diagnostics.Debug/4.0.11": { - "sha512": "rDVtSkhDUDSvQHZOtax1X7YI3cYRfNa1mojeqZrX5+SHUrbfySkZxakQFZ/tuNfXjQ+LBOt+ITcVzkHxrjALOw==", + "System.Diagnostics.Debug/4.3.0": { + "sha512": "PUk5fCPtf+FnjFVKx3wBkLHIGNwCaA5L4Q3IB6BgGF+MnY+gWHDbNJoYAPwdb1+LiTHwOIb0hrl0u5anKWWlTA==", "type": "package", - "path": "System.Diagnostics.Debug/4.0.11", + "path": "System.Diagnostics.Debug/4.3.0", "files": [ - "System.Diagnostics.Debug.4.0.11.nupkg.sha512", + "System.Diagnostics.Debug.4.3.0.nupkg.sha512", "System.Diagnostics.Debug.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2960,12 +3366,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Diagnostics.DiagnosticSource/4.0.0": { - "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==", + "System.Diagnostics.DiagnosticSource/4.3.0": { + "sha512": "+ET9IzykVj5SEmoymjofLo5NmzFfq/GbAusgBmcw9GGvlS7OVpfK2jQGx2wYbj5ICKjmNZoRx7ZZy+5Oi+VKxw==", "type": "package", - "path": "System.Diagnostics.DiagnosticSource/4.0.0", + "path": "System.Diagnostics.DiagnosticSource/4.3.0", "files": [ - "System.Diagnostics.DiagnosticSource.4.0.0.nupkg.sha512", + "System.Diagnostics.DiagnosticSource.4.3.0.nupkg.sha512", "System.Diagnostics.DiagnosticSource.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3112,12 +3518,12 @@ "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll" ] }, - "System.Diagnostics.Tools/4.0.1": { - "sha512": "Bt0RznSUn34XZsIUQfAIjzJWw31DtD3Oh3kzuVw+MQvKF3o8ElXekartM77jVDPBWvpJNwzmgd3OydL1+DNoGQ==", + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UsOEd1olYlgeembalEDqKdYd8H3UewY8MXk1ATXxm9LZIAZKJ64NaZ6vYKhU6x7H9N7TU0h2S6XXYPHNTezM5w==", "type": "package", - "path": "System.Diagnostics.Tools/4.0.1", + "path": "System.Diagnostics.Tools/4.3.0", "files": [ - "System.Diagnostics.Tools.4.0.1.nupkg.sha512", + "System.Diagnostics.Tools.4.3.0.nupkg.sha512", "System.Diagnostics.Tools.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3167,12 +3573,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Diagnostics.Tracing/4.1.0": { - "sha512": "6qjVqLlGgtit7K1mj9co+MMGrx7uCJ9be/wP/w0mFKNabbhC1OiZjRZrkhzcpBy3oxYWMOF17jyZD/pF44N78w==", + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "/n/E6ZvP9FacY3pzQQ2YGJRrM457A2YGw2pfqzmrVONozAaJrcFQ0XkG0hGXRXP5R9n07gCr1ps16UNFfEGXfQ==", "type": "package", - "path": "System.Diagnostics.Tracing/4.1.0", + "path": "System.Diagnostics.Tracing/4.3.0", "files": [ - "System.Diagnostics.Tracing.4.1.0.nupkg.sha512", + "System.Diagnostics.Tracing.4.3.0.nupkg.sha512", "System.Diagnostics.Tracing.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3324,12 +3730,12 @@ "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll" ] }, - "System.Globalization/4.0.11": { - "sha512": "LkCG7HFBQuGlanBOhSGZtyld6lU7YBz5VNdQjuJydGuNWG5TAlaRJgo24kfW6gAwNMG41Y8r6NB7QYxRmPux4g==", + "System.Globalization/4.3.0": { + "sha512": "WzFympxr2c1fQRaVNtN/0tMkJZPSVmnxLPaUZok3zqN6jzlleFog7EAY1JaJULtokCF4E4KkF0E9Q0j2cAEPUg==", "type": "package", - "path": "System.Globalization/4.0.11", + "path": "System.Globalization/4.3.0", "files": [ - "System.Globalization.4.0.11.nupkg.sha512", + "System.Globalization.4.3.0.nupkg.sha512", "System.Globalization.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3390,12 +3796,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Globalization.Calendars/4.0.1": { - "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", + "System.Globalization.Calendars/4.3.0": { + "sha512": "sajZhr9Q7+BKclNrtqiaGQXoLIXjzYhF1rbf3sdHbXrK3naQ0M+TAugDNoJoInkP52hYiaLMFCAd6rZIPagg/g==", "type": "package", - "path": "System.Globalization.Calendars/4.0.1", + "path": "System.Globalization.Calendars/4.3.0", "files": [ - "System.Globalization.Calendars.4.0.1.nupkg.sha512", + "System.Globalization.Calendars.4.3.0.nupkg.sha512", "System.Globalization.Calendars.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3426,12 +3832,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Globalization.Extensions/4.0.1": { - "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", + "System.Globalization.Extensions/4.3.0": { + "sha512": "57+jlvRkoucI4mq5gij5GyiU7PfKtY4qE9mPFdk3QxXRc5Mrp4+vHP242xsiFAJ1c3I4abDsbVRrME94Tqf7Og==", "type": "package", - "path": "System.Globalization.Extensions/4.0.1", + "path": "System.Globalization.Extensions/4.3.0", "files": [ - "System.Globalization.Extensions.4.0.1.nupkg.sha512", + "System.Globalization.Extensions.4.3.0.nupkg.sha512", "System.Globalization.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3465,12 +3871,12 @@ "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll" ] }, - "System.IO/4.1.0": { - "sha512": "+pNYDRcZHM28hRca6NVz5zif6XDzood4bdSo76DaTn6Qv78WBE4Yfe75l/Tq89oRElvm9WCuYLt1gxRb1aE/6Q==", + "System.IO/4.3.0": { + "sha512": "XhdS9wttWbi/GT2ZYIlYgNjfnerRxsjslTvWXJtPdVdQ6+iJ839w3P+VIvI83+7iNi8tA+44KWzGMx2XwO7b9g==", "type": "package", - "path": "System.IO/4.1.0", + "path": "System.IO/4.3.0", "files": [ - "System.IO.4.1.0.nupkg.sha512", + "System.IO.4.3.0.nupkg.sha512", "System.IO.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3544,12 +3950,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.IO.Compression/4.1.0": { - "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==", + "System.IO.Compression/4.3.0": { + "sha512": "FzIjIMsUCYhVeHl1RZzcn/EGXAN1BdXqgkV2JwqSFO5a00UH2HobYphVmblLQoZIi9wMP/ZL/2X2HPqDI6JPEQ==", "type": "package", - "path": "System.IO.Compression/4.1.0", + "path": "System.IO.Compression/4.3.0", "files": [ - "System.IO.Compression.4.1.0.nupkg.sha512", + "System.IO.Compression.4.3.0.nupkg.sha512", "System.IO.Compression.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3613,12 +4019,12 @@ "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll" ] }, - "System.IO.Compression.ZipFile/4.0.1": { - "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==", + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "NHtF6k/pdXC4VJneIRoFHvtNoq9k9EWHTWRrLZ9EjCfRTxmteGEjdQ9RDzxnct+m7js0u/Gq52iU4gTpIobP/w==", "type": "package", - "path": "System.IO.Compression.ZipFile/4.0.1", + "path": "System.IO.Compression.ZipFile/4.3.0", "files": [ - "System.IO.Compression.ZipFile.4.0.1.nupkg.sha512", + "System.IO.Compression.ZipFile.4.3.0.nupkg.sha512", "System.IO.Compression.ZipFile.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3650,12 +4056,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.IO.FileSystem/4.0.1": { - "sha512": "iS3QMPCa97wqBJRRqu3gu9tcLps+S5hHDPhhjrWcwBJkRCpxzWux9iG0iWNXkU5zCa3fjX+3IGBVgDEP1f2L6g==", + "System.IO.FileSystem/4.3.0": { + "sha512": "l2AcuRjSvCU54g/YY5cnE3EHQkoNyuqO2g+6xjbWSzMCIBV4yDpi1DMqeWmUo1Nys9rr1HMlXKxiLZKGzXoFWQ==", "type": "package", - "path": "System.IO.FileSystem/4.0.1", + "path": "System.IO.FileSystem/4.3.0", "files": [ - "System.IO.FileSystem.4.0.1.nupkg.sha512", + "System.IO.FileSystem.4.3.0.nupkg.sha512", "System.IO.FileSystem.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3686,12 +4092,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.IO.FileSystem.Primitives/4.0.1": { - "sha512": "vMDyzKSdrItO14HVykO9qx3M922X+GmeiNqndZE5No7N38e3OrN/mp3QnnF3Rzxz+X0XOoN8vM6UOcu26j5kKw==", + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "SbPf9xI+cTyV/KD+6hz/Z/I+2tZGTc4W7aQBvl1Bs53co6Fklh5QJJ26gqV3zKhsMiBfn1Z+Fd1jTMw4QgUl5w==", "type": "package", - "path": "System.IO.FileSystem.Primitives/4.0.1", + "path": "System.IO.FileSystem.Primitives/4.3.0", "files": [ - "System.IO.FileSystem.Primitives.4.0.1.nupkg.sha512", + "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512", "System.IO.FileSystem.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3841,12 +4247,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Linq/4.1.0": { - "sha512": "oKtR68Od/liZ/c7iyaDbptjqTPs9MrOjrHZITYFGJ6Bow72cAiljLsjpAQgkrvnD3Qq1NTtTmFUdWHblrMRvKQ==", + "System.Linq/4.3.0": { + "sha512": "VaUurgNtL2CjOiDSvM3sRCWvmgZ+1f6IybcmK8PqBJ1Vl7v9FUAcEJtZuppkdy77qiL4FlBMSY7TX9TlXYceFw==", "type": "package", - "path": "System.Linq/4.1.0", + "path": "System.Linq/4.3.0", "files": [ - "System.Linq.4.1.0.nupkg.sha512", + "System.Linq.4.3.0.nupkg.sha512", "System.Linq.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3911,12 +4317,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Linq.Expressions/4.1.0": { - "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", + "System.Linq.Expressions/4.3.0": { + "sha512": "aZ6TBBDtvJYx9JjEsR8+CGHK1QmSWynWv92kXB9cRPkjxcpAQ8Qm0T+oAyareD2ys7QF8DUcLjcmX/LclxqM5A==", "type": "package", - "path": "System.Linq.Expressions/4.1.0", + "path": "System.Linq.Expressions/4.3.0", "files": [ - "System.Linq.Expressions.4.1.0.nupkg.sha512", + "System.Linq.Expressions.4.3.0.nupkg.sha512", "System.Linq.Expressions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4105,12 +4511,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Net.Http/4.1.0": { - "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==", + "System.Net.Http/4.3.0": { + "sha512": "9Hb52IamC4Sz5z915A4vyZFqwZQmE7dxVLbAnAozqHusVz/C74AdbU1dbcZHP0K2uiwoSJ3ZwRjlfh1Q1NrhqA==", "type": "package", - "path": "System.Net.Http/4.1.0", + "path": "System.Net.Http/4.3.0", "files": [ - "System.Net.Http.4.1.0.nupkg.sha512", + "System.Net.Http.4.3.0.nupkg.sha512", "System.Net.Http.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4225,12 +4631,12 @@ "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll" ] }, - "System.Net.Primitives/4.0.11": { - "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", + "System.Net.Primitives/4.3.0": { + "sha512": "vveqlxcaytBv0EWYk81+i46PF4lnZfRCJDx8zo7rE3skMa/mKvJhBPlt9wri2o//KYsgk8BxWRR5g0lVKUx/5w==", "type": "package", - "path": "System.Net.Primitives/4.0.11", + "path": "System.Net.Primitives/4.3.0", "files": [ - "System.Net.Primitives.4.0.11.nupkg.sha512", + "System.Net.Primitives.4.3.0.nupkg.sha512", "System.Net.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4423,12 +4829,12 @@ "runtimes/win7/lib/netcore50/_._" ] }, - "System.Net.Sockets/4.1.0": { - "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", + "System.Net.Sockets/4.3.0": { + "sha512": "jdHbuHxwuGvYdGyHc177JrTcQ6gGWjA5195lP71jDKwlPjmDMH/509BYrPLgE0t8npJYuAD/eAH+NdZc/TEbbw==", "type": "package", - "path": "System.Net.Sockets/4.1.0", + "path": "System.Net.Sockets/4.3.0", "files": [ - "System.Net.Sockets.4.1.0.nupkg.sha512", + "System.Net.Sockets.4.3.0.nupkg.sha512", "System.Net.Sockets.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4529,12 +4935,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.ObjectModel/4.0.12": { - "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", + "System.ObjectModel/4.3.0": { + "sha512": "VEcq402WK8YTmJzFkdq6PxADt08CrABxK4rFgtJMj2bkdBpNRt6WNSojVqLZ8UQyWw8azwUtR6Hvasjbma3RGA==", "type": "package", - "path": "System.ObjectModel/4.0.12", + "path": "System.ObjectModel/4.3.0", "files": [ - "System.ObjectModel.4.0.12.nupkg.sha512", + "System.ObjectModel.4.3.0.nupkg.sha512", "System.ObjectModel.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4597,12 +5003,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Reflection/4.1.0": { - "sha512": "dw7YrI0MajNe+ZRRS1Xn2GlnjRkxqR/fz09XyEBK07AhH+B3izSfgwKzJA6RrnhtSaCs/7LPD3AfD0zSpVXU1g==", + "System.Reflection/4.3.0": { + "sha512": "mdvVzeUJ7NhlHhtteaSziavdBCJEQScm3MadbCezgiacbjFcyIFSBczyXF50HzrdkCupE9fynDoZnL5GNgtGvQ==", "type": "package", - "path": "System.Reflection/4.1.0", + "path": "System.Reflection/4.3.0", "files": [ - "System.Reflection.4.1.0.nupkg.sha512", + "System.Reflection.4.3.0.nupkg.sha512", "System.Reflection.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4712,20 +5118,24 @@ "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll" ] }, - "System.Reflection.Emit/4.0.1": { - "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", + "System.Reflection.Emit/4.3.0": { + "sha512": "rH5x7tV8ypxp3eOPxCS5AULKZ3a/iKLdzrYB17LPj5YcBkf16qtxtLYoX/agevaBNM2wl2Nyf89V52MYaQvxlg==", "type": "package", - "path": "System.Reflection.Emit/4.0.1", + "path": "System.Reflection.Emit/4.3.0", "files": [ - "System.Reflection.Emit.4.0.1.nupkg.sha512", + "System.Reflection.Emit.4.3.0.nupkg.sha512", "System.Reflection.Emit.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", "lib/net45/_._", "lib/netcore50/System.Reflection.Emit.dll", "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", "ref/MonoAndroid10/_._", "ref/net45/_._", "ref/netstandard1.1/System.Reflection.Emit.dll", @@ -4742,20 +5152,28 @@ "ref/xamarinmac20/_._" ] }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "E+AHcpSVxI7bdjQsx7fJAHiGFfoeiUry/VZvrLc/bC8sYTMelwtpFZUZ0SCgjKgXXvMI0jWl4VAaf9/6b01PQg==", "type": "package", - "path": "System.Reflection.Emit.ILGeneration/4.0.1", + "path": "System.Reflection.Emit.ILGeneration/4.3.0", "files": [ - "System.Reflection.Emit.ILGeneration.4.0.1.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512", "System.Reflection.Emit.ILGeneration.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", "lib/net45/_._", "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", "lib/portable-net45+wp8/_._", "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", "ref/net45/_._", "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", @@ -4770,23 +5188,35 @@ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", "ref/portable-net45+wp8/_._", "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", "runtimes/aot/lib/netcore50/_._" ] }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "qlpWokwnwgXZ6Oue1K2ex5PLqRsmvjXSxH5u4VyyJlnL3qCraudqYTyFd9L/CJSJ4LSn+rmFNmIrQuVUP9GB9A==", "type": "package", - "path": "System.Reflection.Emit.Lightweight/4.0.1", + "path": "System.Reflection.Emit.Lightweight/4.3.0", "files": [ - "System.Reflection.Emit.Lightweight.4.0.1.nupkg.sha512", + "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512", "System.Reflection.Emit.Lightweight.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", "lib/net45/_._", "lib/netcore50/System.Reflection.Emit.Lightweight.dll", "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", "lib/portable-net45+wp8/_._", "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", "ref/net45/_._", "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", @@ -4801,15 +5231,19 @@ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", "ref/portable-net45+wp8/_._", "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", "runtimes/aot/lib/netcore50/_._" ] }, - "System.Reflection.Extensions/4.0.1": { - "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", + "System.Reflection.Extensions/4.3.0": { + "sha512": "HX49JTqmynK4St+0GH+Y0pPkHGxYuEONI178lNGYoySHO+KY+qI259jiKe+t0w56NNbWiTz/uBGlHk+u2wk10A==", "type": "package", - "path": "System.Reflection.Extensions/4.0.1", + "path": "System.Reflection.Extensions/4.3.0", "files": [ - "System.Reflection.Extensions.4.0.1.nupkg.sha512", + "System.Reflection.Extensions.4.3.0.nupkg.sha512", "System.Reflection.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4874,12 +5308,12 @@ "lib/portable-net45+win8/System.Reflection.Metadata.xml" ] }, - "System.Reflection.Primitives/4.0.1": { - "sha512": "5IFUGad1vtNNdApkIfKBAdcBvPwfqyamMo+xdpHe2H4+RXRW9Rd/tTpDKKT5gT4v7TpAn+14y0phujl2V9UdLQ==", + "System.Reflection.Primitives/4.3.0": { + "sha512": "9o9W25G2I/PFBWIB8+LedSy9iPQVI4rnTcgAWu4wbknx8wjjjzyzckyCkFPRuHMrD0LR++6Hlj1DSlelpbgdnA==", "type": "package", - "path": "System.Reflection.Primitives/4.0.1", + "path": "System.Reflection.Primitives/4.3.0", "files": [ - "System.Reflection.Primitives.4.0.1.nupkg.sha512", + "System.Reflection.Primitives.4.3.0.nupkg.sha512", "System.Reflection.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4929,12 +5363,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Reflection.TypeExtensions/4.1.0": { - "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "NFgfgZVr8/9xki3eAwyEWS8ga9oe8foCvYGJ+kLvSiM7EoqIYvCT9UxGrxPhD+bjCeKNSJr4p3MAf+LjizRS2A==", "type": "package", - "path": "System.Reflection.TypeExtensions/4.1.0", + "path": "System.Reflection.TypeExtensions/4.3.0", "files": [ - "System.Reflection.TypeExtensions.4.1.0.nupkg.sha512", + "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512", "System.Reflection.TypeExtensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4993,12 +5427,12 @@ "lib/netstandard1.0/System.Resources.Reader.dll" ] }, - "System.Resources.ResourceManager/4.0.1": { - "sha512": "T1BGWXhUcByJdilqrNzt5YJAvgsrtxt+/tMKnqtq5QtcGwz7ConX84DjvCKp7gYWiA52PhVMCagIuAMb9hPlOg==", + "System.Resources.ResourceManager/4.3.0": { + "sha512": "a29bYkZDrtQWR/9WR0H2sAd/CZEl1HhB9xM34GpSBVF0qOMyVXqdg+a949RQp52upV6K+M2Zvy8rstB4vAhKzA==", "type": "package", - "path": "System.Resources.ResourceManager/4.0.1", + "path": "System.Resources.ResourceManager/4.3.0", "files": [ - "System.Resources.ResourceManager.4.0.1.nupkg.sha512", + "System.Resources.ResourceManager.4.3.0.nupkg.sha512", "System.Resources.ResourceManager.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5048,12 +5482,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime/4.1.0": { - "sha512": "RkrnuB82Q7j0u7sS5cxBzJZxa2SQltkerAP2WXm+U0CI/vqXJr1KvwL+kPf4ISgX93onxTLn6sfPdUGw2JrO7g==", + "System.Runtime/4.3.0": { + "sha512": "xfNHL+X3G9AqfHHhOnJbLkC7bxn08z0wAui/27U+QEIW/pmLw/bitqKhcFEJv0dB8izk2kOFFHztitBqMDP8NQ==", "type": "package", - "path": "System.Runtime/4.1.0", + "path": "System.Runtime/4.3.0", "files": [ - "System.Runtime.4.1.0.nupkg.sha512", + "System.Runtime.4.3.0.nupkg.sha512", "System.Runtime.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5138,12 +5572,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.Extensions/4.1.0": { - "sha512": "jlSY4klY8cGtHiRRagg2HHSsJnpr2aWoPHPl61aJzKbV48z/tkLvMu0seJ2r06BzDqF7iPIkBjHJHHtXsiJ3OA==", + "System.Runtime.Extensions/4.3.0": { + "sha512": "2XCjgjo2yjwnsCVDatp79x+TSDUJ6oqCUHcyjX4nyExiIedZTs4bMX/cpDljnshfeWNVfL97ceFQ4UqIyXz5VA==", "type": "package", - "path": "System.Runtime.Extensions/4.1.0", + "path": "System.Runtime.Extensions/4.3.0", "files": [ - "System.Runtime.Extensions.4.1.0.nupkg.sha512", + "System.Runtime.Extensions.4.3.0.nupkg.sha512", "System.Runtime.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5217,12 +5651,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.Handles/4.0.1": { - "sha512": "TnUy9El5e9JMPdfwz1sMR9rths26DCDlig8VYu6OFdWHm5hfi3kpcBohpYM/XALBMf90U1t9ySNvQdau7yv+hg==", + "System.Runtime.Handles/4.3.0": { + "sha512": "OyzC0QhPPnaginixeHBPxUbBNMDBSw9i2yUSjGclTdj1u1PIr2c6/rh7ljykorDmeLgE+HsUWdNP2RN3r0R//A==", "type": "package", - "path": "System.Runtime.Handles/4.0.1", + "path": "System.Runtime.Handles/4.3.0", "files": [ - "System.Runtime.Handles.4.0.1.nupkg.sha512", + "System.Runtime.Handles.4.3.0.nupkg.sha512", "System.Runtime.Handles.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5253,12 +5687,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.InteropServices/4.1.0": { - "sha512": "P0zArATDpFWWzgSatIeF1QwK6Bda99qfzi3BbsY+73KwybcUI6/mP2GzSweFaC+s/SYQhx4kVa3nZ8lA8cIQtg==", + "System.Runtime.InteropServices/4.3.0": { + "sha512": "FKfOqCtK4lis50U4IzkXEF7ActzX4ezA8o4QAmt+1l8an8TcbSGJWBp+Fnc5CLo4GASRAkDAyxZ2fGZ4B0VaIg==", "type": "package", - "path": "System.Runtime.InteropServices/4.1.0", + "path": "System.Runtime.InteropServices/4.3.0", "files": [ - "System.Runtime.InteropServices.4.1.0.nupkg.sha512", + "System.Runtime.InteropServices.4.3.0.nupkg.sha512", "System.Runtime.InteropServices.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5266,6 +5700,7 @@ "lib/MonoTouch10/_._", "lib/net45/_._", "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", "lib/portable-net45+win8+wpa81/_._", "lib/win8/_._", "lib/wpa81/_._", @@ -5277,6 +5712,7 @@ "ref/MonoTouch10/_._", "ref/net45/_._", "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", "ref/netcore50/System.Runtime.InteropServices.dll", "ref/netcore50/System.Runtime.InteropServices.xml", "ref/netcore50/de/System.Runtime.InteropServices.xml", @@ -5288,6 +5724,7 @@ "ref/netcore50/ru/System.Runtime.InteropServices.xml", "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", "ref/netstandard1.1/System.Runtime.InteropServices.dll", "ref/netstandard1.1/System.Runtime.InteropServices.xml", "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", @@ -5341,18 +5778,19 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { - "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "fk87yZNK5W3a1siDiW9Vs61EvKDkfAlWu4fBOoEDX0TbFiiMJWkHUpqnm7efUyHGgU/eM8yN+Tt2GGyee58CUg==", "type": "package", - "path": "System.Runtime.InteropServices.RuntimeInformation/4.0.0", + "path": "System.Runtime.InteropServices.RuntimeInformation/4.3.0", "files": [ - "System.Runtime.InteropServices.RuntimeInformation.4.0.0.nupkg.sha512", + "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512", "System.Runtime.InteropServices.RuntimeInformation.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", "lib/xamarinios10/_._", @@ -5397,12 +5835,12 @@ "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml" ] }, - "System.Runtime.Numerics/4.0.1": { - "sha512": "zVNtSKvEI+Jpo80+Y4hL/UGlC6Ie7VXDlLOLtwRNxXj6LblDkTNHHX3EoHztpS+w2uFjHIWuDcW5i9SEWtOBKw==", + "System.Runtime.Numerics/4.3.0": { + "sha512": "Uwe+H7PAC1DTb+0IVv4ABYKfEXvrx5+WUxLKqpaqoF0qeu2Z/vs5ICtkBX8MqyR+D0HIp3mdGCqwBFOM2brYiQ==", "type": "package", - "path": "System.Runtime.Numerics/4.0.1", + "path": "System.Runtime.Numerics/4.3.0", "files": [ - "System.Runtime.Numerics.4.0.1.nupkg.sha512", + "System.Runtime.Numerics.4.3.0.nupkg.sha512", "System.Runtime.Numerics.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5489,12 +5927,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Security.Cryptography.Algorithms/4.2.0": { - "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "4G/3EnFACUP63k0y1AT9pF+jA1sHHnaZVpUP0kY+eUczcly8JhxpoHtG7k3mK/3f/PrpUNoS6F5raQ14HfeUnQ==", "type": "package", - "path": "System.Security.Cryptography.Algorithms/4.2.0", + "path": "System.Security.Cryptography.Algorithms/4.3.0", "files": [ - "System.Security.Cryptography.Algorithms.4.2.0.nupkg.sha512", + "System.Security.Cryptography.Algorithms.4.3.0.nupkg.sha512", "System.Security.Cryptography.Algorithms.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5519,6 +5957,7 @@ "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", @@ -5527,12 +5966,12 @@ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll" ] }, - "System.Security.Cryptography.Cng/4.2.0": { - "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==", + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "EK917e8ngvJcbLqP38D0sE2PTUv6F0uRp0Pa8Mo4fBZrglNBAdkGDvKvcD15Q0MXB6xlwi9F/94LOjYq1LkctA==", "type": "package", - "path": "System.Security.Cryptography.Cng/4.2.0", + "path": "System.Security.Cryptography.Cng/4.3.0", "files": [ - "System.Security.Cryptography.Cng.4.2.0.nupkg.sha512", + "System.Security.Cryptography.Cng.4.3.0.nupkg.sha512", "System.Security.Cryptography.Cng.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5553,12 +5992,12 @@ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll" ] }, - "System.Security.Cryptography.Csp/4.0.0": { - "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==", + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "9XrCnY0gBLa1DDPuN47/tWznfDnV3C9HkF698b+v8K0rLRO04f5EkGTJ8voyBECkwrvV5hu5SsIy1PJYDRjXrw==", "type": "package", - "path": "System.Security.Cryptography.Csp/4.0.0", + "path": "System.Security.Cryptography.Csp/4.3.0", "files": [ - "System.Security.Cryptography.Csp.4.0.0.nupkg.sha512", + "System.Security.Cryptography.Csp.4.3.0.nupkg.sha512", "System.Security.Cryptography.Csp.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5583,12 +6022,12 @@ "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll" ] }, - "System.Security.Cryptography.Encoding/4.0.0": { - "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "n+xmivj4PwzcxPTVLE/3G3q+sAnzzB8Hz/Z0cYpXMvCCm4MtumgisUW8VSwVpCB5emlHcBYTI2mVKBsbbJa1Mw==", "type": "package", - "path": "System.Security.Cryptography.Encoding/4.0.0", + "path": "System.Security.Cryptography.Encoding/4.3.0", "files": [ - "System.Security.Cryptography.Encoding.4.0.0.nupkg.sha512", + "System.Security.Cryptography.Encoding.4.3.0.nupkg.sha512", "System.Security.Cryptography.Encoding.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5622,12 +6061,12 @@ "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll" ] }, - "System.Security.Cryptography.OpenSsl/4.0.0": { - "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==", + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KFBS8k58+YwvbsmyzIaFv/bM7g7RezQui2bUCckyveLSWStpetqTGo5170E8gJrq76uf0rlMd+3y0h2F2ukgvw==", "type": "package", - "path": "System.Security.Cryptography.OpenSsl/4.0.0", + "path": "System.Security.Cryptography.OpenSsl/4.3.0", "files": [ - "System.Security.Cryptography.OpenSsl.4.0.0.nupkg.sha512", + "System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512", "System.Security.Cryptography.OpenSsl.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5636,12 +6075,12 @@ "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll" ] }, - "System.Security.Cryptography.Primitives/4.0.0": { - "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "kwMTrBWfjALV0v8+mhTTes5spdQUnpWB0hEb9nUzJpuFZIqINgds16mT0MrU6Pxjh5qqAvYIjXEeiUdVB7w63g==", "type": "package", - "path": "System.Security.Cryptography.Primitives/4.0.0", + "path": "System.Security.Cryptography.Primitives/4.3.0", "files": [ - "System.Security.Cryptography.Primitives.4.0.0.nupkg.sha512", + "System.Security.Cryptography.Primitives.4.3.0.nupkg.sha512", "System.Security.Cryptography.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5663,12 +6102,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Security.Cryptography.X509Certificates/4.1.0": { - "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "yYsv6fJYBHGspUwIsl0CyirxNhYmQiD89Dg6LDnZUoJQWN8DzTkr93tOLChgFUn1nOXbYNX+qy0RdU/D+rwAAA==", "type": "package", - "path": "System.Security.Cryptography.X509Certificates/4.1.0", + "path": "System.Security.Cryptography.X509Certificates/4.3.0", "files": [ - "System.Security.Cryptography.X509Certificates.4.1.0.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.4.3.0.nupkg.sha512", "System.Security.Cryptography.X509Certificates.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5801,12 +6240,12 @@ "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll" ] }, - "System.Text.Encoding/4.0.11": { - "sha512": "PDfrIn1xfAjoZNpvGj8qF2AQU7QVvPk7J03+mHiKUVsEfQLSOYPYUzLp9OQGevdMsE1IGrgN/MuumiZqFdIQZw==", + "System.Text.Encoding/4.3.0": { + "sha512": "bzj/211+uM6xRSzci5OVofddQCqV7dvmns4qji4+ouE4KqKOjGbb3+mQ3lRouoouks3XeUf28MwBCKZgl5XZYA==", "type": "package", - "path": "System.Text.Encoding/4.0.11", + "path": "System.Text.Encoding/4.3.0", "files": [ - "System.Text.Encoding.4.0.11.nupkg.sha512", + "System.Text.Encoding.4.3.0.nupkg.sha512", "System.Text.Encoding.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5904,12 +6343,12 @@ "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll" ] }, - "System.Text.Encoding.Extensions/4.0.11": { - "sha512": "/pb+/7+20zngK2DLcoPeri8ddZG/oUZpbuG9c63us91frCRCmb5pOJAO+FjhyPfvoqjwCFc7ZMECLuLgZRn3ww==", + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "og8qaZv9iO5MZBtJlqlz3YEwV4UCdJbr2UIIIIqFAjaEZf6IAwyNtoPKGMHV5ae5K5dt5/5zgWmeuadD5tS3YA==", "type": "package", - "path": "System.Text.Encoding.Extensions/4.0.11", + "path": "System.Text.Encoding.Extensions/4.3.0", "files": [ - "System.Text.Encoding.Extensions.4.0.11.nupkg.sha512", + "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512", "System.Text.Encoding.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5970,12 +6409,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Text.RegularExpressions/4.1.0": { - "sha512": "u5rIX5nmgh2uzArZpPzrjW1Yp1/rU5AVkJPvnSn7+dwS+DY10tJeylE/crlAx+xbh4X4aCTf2/PTBSA2C/D6Pg==", + "System.Text.RegularExpressions/4.3.0": { + "sha512": "IhJXyLpX6JmlFbP+NkcQQnyXJsdZYvTPzcRkt/3Ytc1791waGvkRobwjCNpGtD7QUz5GShnG4ZRzJcCdi1ovWA==", "type": "package", - "path": "System.Text.RegularExpressions/4.1.0", + "path": "System.Text.RegularExpressions/4.3.0", "files": [ - "System.Text.RegularExpressions.4.1.0.nupkg.sha512", + "System.Text.RegularExpressions.4.3.0.nupkg.sha512", "System.Text.RegularExpressions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6008,6 +6447,7 @@ "ref/netcore50/ru/System.Text.RegularExpressions.xml", "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", "ref/netstandard1.0/System.Text.RegularExpressions.dll", "ref/netstandard1.0/System.Text.RegularExpressions.xml", "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", @@ -6051,12 +6491,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Threading/4.0.11": { - "sha512": "a2QaSduMfEemio4k32ZMXHz6AC9/RQa2ATWSFdJmdDsYRW+W02wWcWS36G5khMPq24CQB9QkdcQNQ3XyGw6aqQ==", + "System.Threading/4.3.0": { + "sha512": "c+kzIviwmUIEOdHjI0Mz4JWVP+zuZqA+zYUY6ClBz8oVpnO1LK/1Z2OBHq6AvzC0x1tKkCFmxZ18DTIkIzJLcw==", "type": "package", - "path": "System.Threading/4.0.11", + "path": "System.Threading/4.3.0", "files": [ - "System.Threading.4.0.11.nupkg.sha512", + "System.Threading.4.3.0.nupkg.sha512", "System.Threading.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6148,12 +6588,12 @@ "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll" ] }, - "System.Threading.Tasks/4.0.11": { - "sha512": "/b15g870ElL12GgpLGd1ggdvCYUz5QGrsKptGEfANu/8bOtMPmORFfrEPnRk1NzQRyTM0+agGo1CBmcW3evtQA==", + "System.Threading.Tasks/4.3.0": { + "sha512": "KSMX2h1dWHva7fa6pIEc3Qygf1aegejO6gKJPmBx0ZHbqrv46i/LoSVGHLRa7krEgnlmBCzQJk7vHiCTVkFOMQ==", "type": "package", - "path": "System.Threading.Tasks/4.0.11", + "path": "System.Threading.Tasks/4.3.0", "files": [ - "System.Threading.Tasks.4.0.11.nupkg.sha512", + "System.Threading.Tasks.4.3.0.nupkg.sha512", "System.Threading.Tasks.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6229,12 +6669,12 @@ "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll" ] }, - "System.Threading.Tasks.Extensions/4.0.0": { - "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==", + "System.Threading.Tasks.Extensions/4.3.0": { + "sha512": "4xZbT2leB+XZgSl2sXUPlr5CiqcnIcBgI6b6tzax3oALBLEn3EMD8U3irKXOI8cWTllATSSxFKxCAs21kJ2+gA==", "type": "package", - "path": "System.Threading.Tasks.Extensions/4.0.0", + "path": "System.Threading.Tasks.Extensions/4.3.0", "files": [ - "System.Threading.Tasks.Extensions.4.0.0.nupkg.sha512", + "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512", "System.Threading.Tasks.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6375,12 +6815,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Threading.Timer/4.0.1": { - "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", + "System.Threading.Timer/4.3.0": { + "sha512": "c8kJQzMIGwFT2QEbJm4rZ887LNNNBZ96Nfz5nKfepTG/69DoTC8CULQHkm69ZWbofM4VISCyJDEXC5+lM0Qenw==", "type": "package", - "path": "System.Threading.Timer/4.0.1", + "path": "System.Threading.Timer/4.3.0", "files": [ - "System.Threading.Timer.4.0.1.nupkg.sha512", + "System.Threading.Timer.4.3.0.nupkg.sha512", "System.Threading.Timer.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6428,18 +6868,19 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Xml.ReaderWriter/4.0.11": { - "sha512": "RXndSfHgP8llLQ/dV0UGVPrVw3qxI/Hhik/T2KB4Hp6NzEdrpSirxdIyBIN3w9qQjH2UWmLf2sFwXxbJBDxVMA==", + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "WN20JRrkyCZX6VbvOyWG++wtZMdZfVSC5NdulunuwaRhHTZrNSXKxmhFyE/6kyrsHtcguGYwdWQZRJgQzuCaeQ==", "type": "package", - "path": "System.Xml.ReaderWriter/4.0.11", + "path": "System.Xml.ReaderWriter/4.3.0", "files": [ - "System.Xml.ReaderWriter.4.0.11.nupkg.sha512", + "System.Xml.ReaderWriter.4.3.0.nupkg.sha512", "System.Xml.ReaderWriter.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", "lib/netcore50/System.Xml.ReaderWriter.dll", "lib/netstandard1.3/System.Xml.ReaderWriter.dll", "lib/portable-net45+win8+wp8+wpa81/_._", @@ -6453,6 +6894,7 @@ "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", "ref/netcore50/System.Xml.ReaderWriter.dll", "ref/netcore50/System.Xml.ReaderWriter.xml", "ref/netcore50/de/System.Xml.ReaderWriter.xml", @@ -6496,12 +6938,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Xml.XDocument/4.0.11": { - "sha512": "6cKKoc6oMCbuAQqSUBTTNZnTEK8YK0wgWeRaU6OEKdmPYnG8hUO+k9TGdsV6jnzdC+cNyJKNgOjRzicno0KHOA==", + "System.Xml.XDocument/4.3.0": { + "sha512": "+/cdV91Hkzek3hwMM2BoJfCxYZr7089Hg9/VJaxWM5Tmk4NerbipbHXO1Tac4expiuRdns54yt7OccTU70qNyw==", "type": "package", - "path": "System.Xml.XDocument/4.0.11", + "path": "System.Xml.XDocument/4.3.0", "files": [ - "System.Xml.XDocument.4.0.11.nupkg.sha512", + "System.Xml.XDocument.4.3.0.nupkg.sha512", "System.Xml.XDocument.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6678,8 +7120,10 @@ }, "projectFileDependencyGroups": { "": [ + "Microsoft.Extensions.Logging >= 1.1.0", "Microsoft.FSharp.Core.netcore >= 1.0.0-alpha-160629", - "Microsoft.NETCore.App >= 1.0.1" + "Microsoft.NETCore.App >= 1.0.1", + "SharpXMPP.Shared >= 0.0.1-pre01" ], ".NETCoreApp,Version=v1.0": [] },