diff --git a/Ctor.Database.Migrations/Migrations/20161211072528_Logs.Designer.cs b/Ctor.Database.Migrations/Migrations/20161211072528_Logs.Designer.cs new file mode 100644 index 0000000..beffef5 --- /dev/null +++ b/Ctor.Database.Migrations/Migrations/20161211072528_Logs.Designer.cs @@ -0,0 +1,38 @@ +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Ctor.Database; + +namespace Ctor.Database.Migrations.Migrations +{ + [DbContext(typeof(Context))] + [Migration("20161211072528_Logs")] + partial class Logs + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { + modelBuilder + .HasAnnotation("ProductVersion", "1.1.0-rtm-22752"); + + modelBuilder.Entity("Ctor.Database.Log", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Conference"); + + b.Property("DateTime"); + + b.Property("Sender"); + + b.Property("Text"); + + b.HasKey("Id"); + + b.ToTable("Logs"); + }); + } + } +} diff --git a/Ctor.Database.Migrations/Migrations/20161211072528_Logs.cs b/Ctor.Database.Migrations/Migrations/20161211072528_Logs.cs new file mode 100644 index 0000000..6fc50ee --- /dev/null +++ b/Ctor.Database.Migrations/Migrations/20161211072528_Logs.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Ctor.Database.Migrations.Migrations +{ + public partial class Logs : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + + } + } +} diff --git a/Ctor.Database.Migrations/Migrations/ContextModelSnapshot.cs b/Ctor.Database.Migrations/Migrations/ContextModelSnapshot.cs new file mode 100644 index 0000000..35efa02 --- /dev/null +++ b/Ctor.Database.Migrations/Migrations/ContextModelSnapshot.cs @@ -0,0 +1,37 @@ +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Ctor.Database; + +namespace Ctor.Database.Migrations.Migrations +{ + [DbContext(typeof(Context))] + partial class ContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { + modelBuilder + .HasAnnotation("ProductVersion", "1.1.0-rtm-22752"); + + modelBuilder.Entity("Ctor.Database.Log", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Conference"); + + b.Property("DateTime"); + + b.Property("Sender"); + + b.Property("Text"); + + b.HasKey("Id"); + + b.ToTable("Logs"); + }); + } + } +} diff --git a/Ctor.Database.Migrations/project.json b/Ctor.Database.Migrations/project.json index 3f36608..506412a 100644 --- a/Ctor.Database.Migrations/project.json +++ b/Ctor.Database.Migrations/project.json @@ -4,7 +4,7 @@ "debugType": "portable" }, "dependencies": { - "Microsoft.EntityFrameworkCore.Sqlite": "1.0.0", + "Microsoft.EntityFrameworkCore.Relational": "1.1.0", "Ctor.Database": "*" }, diff --git a/Ctor.Database.Migrations/project.lock.json b/Ctor.Database.Migrations/project.lock.json index 4357f4c..ad72340 100644 --- a/Ctor.Database.Migrations/project.lock.json +++ b/Ctor.Database.Migrations/project.lock.json @@ -3,25 +3,25 @@ "version": 2, "targets": { ".NETCoreApp,Version=v1.0": { - "Microsoft.CSharp/4.0.1": { + "Microsoft.CSharp/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "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.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "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.Reflection.TypeExtensions": "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.Threading": "4.3.0" }, "compile": { "ref/netstandard1.0/Microsoft.CSharp.dll": {} @@ -30,42 +30,18 @@ "lib/netstandard1.3/Microsoft.CSharp.dll": {} } }, - "Microsoft.Data.Sqlite/1.0.0": { - "type": "package", - "dependencies": { - "SQLite": "3.12.2", - "System.AppContext": "4.1.0", - "System.Data.Common": "4.1.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "lib/netstandard1.3/Microsoft.Data.Sqlite.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.Data.Sqlite.dll": {} - } - }, - "Microsoft.EntityFrameworkCore/1.0.0": { + "Microsoft.EntityFrameworkCore/1.1.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Caching.Memory": "1.0.0", - "Microsoft.Extensions.DependencyInjection": "1.0.0", - "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.Caching.Memory": "1.1.0", + "Microsoft.Extensions.DependencyInjection": "1.1.0", + "Microsoft.Extensions.Logging": "1.1.0", + "NETStandard.Library": "1.6.1", "Remotion.Linq": "2.1.1", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.Immutable": "1.2.0", - "System.ComponentModel.Annotations": "4.1.0", + "System.Collections.Immutable": "1.3.0", + "System.ComponentModel.Annotations": "4.3.0", "System.Interactive.Async": "3.0.0", - "System.Linq.Queryable": "4.0.1", - "System.ObjectModel": "4.0.12", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0" + "System.Linq.Queryable": "4.3.0" }, "compile": { "lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {} @@ -74,14 +50,14 @@ "lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {} } }, - "Microsoft.EntityFrameworkCore.Relational/1.0.0": { + "Microsoft.EntityFrameworkCore.Relational/1.1.0": { "type": "package", "dependencies": { - "Microsoft.CSharp": "4.0.1", - "Microsoft.EntityFrameworkCore": "1.0.0", - "System.Data.Common": "4.1.0", - "System.Diagnostics.DiagnosticSource": "4.0.0", - "System.Text.RegularExpressions": "4.1.0" + "Microsoft.CSharp": "4.3.0", + "Microsoft.EntityFrameworkCore": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Data.Common": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0" }, "compile": { "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {} @@ -90,27 +66,11 @@ "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {} } }, - "Microsoft.EntityFrameworkCore.Sqlite/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Data.Sqlite": "1.0.0", - "Microsoft.EntityFrameworkCore.Relational": "1.0.0", - "System.IO.FileSystem": "4.0.1" - }, - "compile": { - "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Sqlite.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Sqlite.dll": {} - } - }, - "Microsoft.Extensions.Caching.Abstractions/1.0.0": { + "Microsoft.Extensions.Caching.Abstractions/1.1.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0", - "System.Collections": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" + "Microsoft.Extensions.Primitives": "1.1.0", + "NETStandard.Library": "1.6.1" }, "compile": { "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {} @@ -119,14 +79,13 @@ "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {} } }, - "Microsoft.Extensions.Caching.Memory/1.0.0": { + "Microsoft.Extensions.Caching.Memory/1.1.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "1.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0", - "Microsoft.Extensions.Options": "1.0.0", - "System.Linq": "4.1.0", - "System.Threading": "4.0.11" + "Microsoft.Extensions.Caching.Abstractions": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0", + "Microsoft.Extensions.Options": "1.1.0", + "NETStandard.Library": "1.6.1" }, "compile": { "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {} @@ -135,15 +94,11 @@ "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {} } }, - "Microsoft.Extensions.DependencyInjection/1.0.0": { + "Microsoft.Extensions.DependencyInjection/1.1.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0", + "NETStandard.Library": "1.6.1" }, "compile": { "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {} @@ -152,16 +107,11 @@ "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {} } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": { + "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": { "type": "package", "dependencies": { - "System.ComponentModel": "4.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1" + "NETStandard.Library": "1.6.1", + "System.ComponentModel": "4.3.0" }, "compile": { "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} @@ -170,12 +120,12 @@ "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} } }, - "Microsoft.Extensions.Logging/1.0.0": { + "Microsoft.Extensions.Logging/1.1.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0", - "System.Threading": "4.0.11" + "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": {} @@ -184,18 +134,10 @@ "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {} } }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0": { + "Microsoft.Extensions.Logging.Abstractions/1.1.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" + "NETStandard.Library": "1.6.1" }, "compile": { "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {} @@ -204,20 +146,13 @@ "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {} } }, - "Microsoft.Extensions.Options/1.0.0": { + "Microsoft.Extensions.Options/1.1.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0", - "Microsoft.Extensions.Primitives": "1.0.0", - "System.ComponentModel": "4.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0", + "Microsoft.Extensions.Primitives": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.ComponentModel": "4.3.0" }, "compile": { "lib/netstandard1.0/Microsoft.Extensions.Options.dll": {} @@ -226,11 +161,11 @@ "lib/netstandard1.0/Microsoft.Extensions.Options.dll": {} } }, - "Microsoft.Extensions.Primitives/1.0.0": { + "Microsoft.Extensions.Primitives/1.1.0": { "type": "package", "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" + "NETStandard.Library": "1.6.1", + "System.Runtime.CompilerServices.Unsafe": "4.3.0" }, "compile": { "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {} @@ -271,7 +206,7 @@ } } }, - "Microsoft.NETCore.Platforms/1.0.1": { + "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -280,7 +215,7 @@ "lib/netstandard1.0/_._": {} } }, - "Microsoft.NETCore.Targets/1.0.1": { + "Microsoft.NETCore.Targets/1.1.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -289,64 +224,64 @@ "lib/netstandard1.0/_._": {} } }, - "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": {} } }, - "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" } }, "Remotion.Linq/2.1.1": { @@ -371,11 +306,38 @@ "lib/netstandard1.0/Remotion.Linq.dll": {} } }, - "runtime.native.System/4.0.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.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/_._": {} @@ -384,11 +346,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/_._": {} @@ -397,11 +359,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/_._": {} @@ -410,11 +372,10 @@ "lib/netstandard1.0/_._": {} } }, - "runtime.native.System.Security.Cryptography/4.0.0": { + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" }, "compile": { "lib/netstandard1.0/_._": {} @@ -423,37 +384,103 @@ "lib/netstandard1.0/_._": {} } }, - "SQLite/3.12.2": { + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "dependencies": { - "SQLite.Native": "3.12.2" + "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/_._": {} } }, - "SQLite.Native/3.12.2": { + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "runtimeTargets": { - "runtimes/linux-x64/native/libsqlite3.so": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { "assetType": "native", - "rid": "linux-x64" - }, - "runtimes/osx-x64/native/libsqlite3.dylib": { + "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": "osx-x64" - }, - "runtimes/win7-x64/native/sqlite3.dll": { + "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": "win7-x64" - }, - "runtimes/win7-x86/native/sqlite3.dll": { + "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": "win7-x86" + "rid": "ubuntu.16.04-x64" } } }, - "System.AppContext/4.1.0": { + "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" + } + } + }, + "System.AppContext/4.3.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0" + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.6/System.AppContext.dll": {} @@ -462,14 +489,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/_._": {} @@ -478,30 +505,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": {} @@ -510,17 +537,17 @@ "lib/netstandard1.3/System.Collections.Concurrent.dll": {} } }, - "System.Collections.Immutable/1.2.0": { + "System.Collections.Immutable/1.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "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.Linq": "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": { "lib/netstandard1.0/System.Collections.Immutable.dll": {} @@ -529,10 +556,10 @@ "lib/netstandard1.0/System.Collections.Immutable.dll": {} } }, - "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": {} @@ -541,20 +568,20 @@ "lib/netstandard1.3/System.ComponentModel.dll": {} } }, - "System.ComponentModel.Annotations/4.1.0": { + "System.ComponentModel.Annotations/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel": "4.0.1", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11" + "System.Collections": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.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.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0" }, "compile": { "ref/netstandard1.4/System.ComponentModel.Annotations.dll": {} @@ -563,30 +590,30 @@ "lib/netstandard1.4/System.ComponentModel.Annotations.dll": {} } }, - "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.Data.Common/4.1.0": { + "System.Data.Common/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "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.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading.Tasks": "4.0.11" + "System.Collections": "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.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" }, "compile": { "ref/netstandard1.2/System.Data.Common.dll": {} @@ -595,25 +622,25 @@ "lib/netstandard1.2/System.Data.Common.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": {} @@ -622,46 +649,45 @@ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} } }, - "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": {} } }, - "System.Dynamic.Runtime/4.0.11": { + "System.Dynamic.Runtime/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "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.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.Linq": "4.3.0", + "System.Linq.Expressions": "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.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.3/System.Dynamic.Runtime.dll": {} @@ -670,38 +696,38 @@ "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} } }, - "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/_._": {} @@ -736,36 +762,37 @@ "lib/netstandard1.0/System.Interactive.Async.dll": {} } }, - "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": {} @@ -781,18 +808,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": {} @@ -801,26 +828,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": {} @@ -829,14 +856,14 @@ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} } }, - "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": {} @@ -845,26 +872,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": {} @@ -873,17 +900,17 @@ "lib/netstandard1.6/System.Linq.Expressions.dll": {} } }, - "System.Linq.Queryable/4.0.1": { + "System.Linq.Queryable/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.0/System.Linq.Queryable.dll": {} @@ -891,36 +918,36 @@ "runtime": { "lib/netstandard1.3/System.Linq.Queryable.dll": {} } - }, - "System.Net.Http/4.1.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" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "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": {} @@ -936,13 +963,13 @@ } } }, - "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": {} @@ -979,15 +1006,15 @@ } } }, - "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": {} @@ -1008,14 +1035,14 @@ "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} } }, - "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": {} @@ -1024,27 +1051,27 @@ "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": {} } }, - "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": {} @@ -1053,12 +1080,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": {} @@ -1067,13 +1094,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/_._": {} @@ -1082,34 +1109,34 @@ "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": {} } }, - "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": {} @@ -1118,79 +1145,94 @@ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} } }, - "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.CompilerServices.Unsafe/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": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "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", @@ -1216,13 +1258,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": {} @@ -1231,27 +1273,32 @@ "lib/netstandard1.3/System.Runtime.Numerics.dll": {} } }, - "System.Security.Cryptography.Algorithms/4.2.0": { + "System.Security.Cryptography.Algorithms/4.3.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" + "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" @@ -1262,20 +1309,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/_._": {} @@ -1291,22 +1338,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/_._": {} @@ -1322,21 +1369,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": {} @@ -1352,22 +1399,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/_._": {} @@ -1382,16 +1429,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": {} @@ -1400,34 +1447,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": {} @@ -1443,38 +1490,38 @@ } } }, - "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": {} } }, - "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": {} @@ -1483,11 +1530,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": {} @@ -1496,23 +1543,23 @@ "lib/netstandard1.3/System.Threading.dll": {} } }, - "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": {} } }, - "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/_._": {} @@ -1565,35 +1612,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": {} @@ -1602,21 +1649,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": {} @@ -1629,19 +1676,19 @@ "type": "project", "framework": ".NETCoreApp,Version=v1.0", "dependencies": { - "Microsoft.EntityFrameworkCore.Sqlite": "1.0.0", + "Microsoft.EntityFrameworkCore": "1.0.0", "Microsoft.FSharp.Core.netcore": "1.0.0-alpha-160629" } } } }, "libraries": { - "Microsoft.CSharp/4.0.1": { - "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", + "Microsoft.CSharp/4.3.0": { + "sha512": "sBI3DTyl3ggrjB/yuFo+CS5G+AZAI83HaO9i24yDw5MnxibLc0YkEf5laBXxzG/OaaWq2hr1JvDxTUPLUjDxJg==", "type": "package", - "path": "Microsoft.CSharp/4.0.1", + "path": "Microsoft.CSharp/4.3.0", "files": [ - "Microsoft.CSharp.4.0.1.nupkg.sha512", + "Microsoft.CSharp.4.3.0.nupkg.sha512", "Microsoft.CSharp.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1693,25 +1740,12 @@ "ref/xamarinwatchos10/_._" ] }, - "Microsoft.Data.Sqlite/1.0.0": { - "sha512": "dezlCGK9zVrPNfoX1SL50GmWDdRQNcV1SBy3wuCn/a0g7Gc26PyvlA4BKapjnCK5N8LSQ2+1PdW2imiRr+YvxA==", - "type": "package", - "path": "Microsoft.Data.Sqlite/1.0.0", - "files": [ - "Microsoft.Data.Sqlite.1.0.0.nupkg.sha512", - "Microsoft.Data.Sqlite.nuspec", - "lib/net451/Microsoft.Data.Sqlite.dll", - "lib/net451/Microsoft.Data.Sqlite.xml", - "lib/netstandard1.3/Microsoft.Data.Sqlite.dll", - "lib/netstandard1.3/Microsoft.Data.Sqlite.xml" - ] - }, - "Microsoft.EntityFrameworkCore/1.0.0": { - "sha512": "Vqg/v0cXRQZQH0gY3VHHqt0Bt5WZEkDReVpI1sNYKHVbVtnMYFKPp5SiNygosUJYrJk1rSGb8UVkplDNNUkEgg==", + "Microsoft.EntityFrameworkCore/1.1.0": { + "sha512": "S00vr6pLeoCMbm1PsXNZIceCAA/TUX83W3f2PcLFLGrx2QnGo5aqhtYjHvBhOVKJXZmt52EKEdORoTZVZ/swww==", "type": "package", - "path": "Microsoft.EntityFrameworkCore/1.0.0", + "path": "Microsoft.EntityFrameworkCore/1.1.0", "files": [ - "Microsoft.EntityFrameworkCore.1.0.0.nupkg.sha512", + "Microsoft.EntityFrameworkCore.1.1.0.nupkg.sha512", "Microsoft.EntityFrameworkCore.nuspec", "lib/net451/Microsoft.EntityFrameworkCore.dll", "lib/net451/Microsoft.EntityFrameworkCore.xml", @@ -1719,12 +1753,12 @@ "lib/netstandard1.3/Microsoft.EntityFrameworkCore.xml" ] }, - "Microsoft.EntityFrameworkCore.Relational/1.0.0": { - "sha512": "LGBab+7o0eq4C3YtvkAxK8W7Ia57eO0Ue0viQgt0STptQ2bUpLzV7q5LfbNl475rt6yTWa/vDQlYVaI64fwqdw==", + "Microsoft.EntityFrameworkCore.Relational/1.1.0": { + "sha512": "5LkSh1GHK/ZbI/2N6YxyofFKaAVe5/RBN38G6UQzOQVgfJxzucpJVyZt1mGHBkJ4yTlr4WQS9Wr3Ppa5X0opbw==", "type": "package", - "path": "Microsoft.EntityFrameworkCore.Relational/1.0.0", + "path": "Microsoft.EntityFrameworkCore.Relational/1.1.0", "files": [ - "Microsoft.EntityFrameworkCore.Relational.1.0.0.nupkg.sha512", + "Microsoft.EntityFrameworkCore.Relational.1.1.0.nupkg.sha512", "Microsoft.EntityFrameworkCore.Relational.nuspec", "lib/net451/Microsoft.EntityFrameworkCore.Relational.dll", "lib/net451/Microsoft.EntityFrameworkCore.Relational.xml", @@ -1732,36 +1766,23 @@ "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.xml" ] }, - "Microsoft.EntityFrameworkCore.Sqlite/1.0.0": { - "sha512": "GF5xfn90zVKbnCdNrjeH4j1IaAQ7FsHCWkTrdUKISzrPxG3LIizJaU2iu8YMfNhMYd5N1Y7R7SxF2dBh+5A+Ew==", - "type": "package", - "path": "Microsoft.EntityFrameworkCore.Sqlite/1.0.0", - "files": [ - "Microsoft.EntityFrameworkCore.Sqlite.1.0.0.nupkg.sha512", - "Microsoft.EntityFrameworkCore.Sqlite.nuspec", - "lib/net451/Microsoft.EntityFrameworkCore.Sqlite.dll", - "lib/net451/Microsoft.EntityFrameworkCore.Sqlite.xml", - "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Sqlite.dll", - "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Sqlite.xml" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/1.0.0": { - "sha512": "IxlFDVOchL6tdR05bk7EiJvMtvZrVkZXBhkbXqc3GxOHOrHFGcN+92WoWFPeBpdpy8ot/Px5ZdXzt7k+2n1Bdg==", + "Microsoft.Extensions.Caching.Abstractions/1.1.0": { + "sha512": "uMbUDz/lNoO9LGc+DSjKMLWJk+y4qX6syDRcmQC0w6LSQzizkRqmo5Y8jO0ePtZRjF2lSGgO5URt4YgB6STDBQ==", "type": "package", - "path": "Microsoft.Extensions.Caching.Abstractions/1.0.0", + "path": "Microsoft.Extensions.Caching.Abstractions/1.1.0", "files": [ - "Microsoft.Extensions.Caching.Abstractions.1.0.0.nupkg.sha512", + "Microsoft.Extensions.Caching.Abstractions.1.1.0.nupkg.sha512", "Microsoft.Extensions.Caching.Abstractions.nuspec", "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll", "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.xml" ] }, - "Microsoft.Extensions.Caching.Memory/1.0.0": { - "sha512": "6+7zTufCnZ+tfrUo7RbIRR3LB0BxwOwxfXuo0IbLyIvgoToGpWuz5wYEDfCYNOvpig9tY8FA0I1uRHYmITMXMQ==", + "Microsoft.Extensions.Caching.Memory/1.1.0": { + "sha512": "ihFzFRKf/LrXHIvn0wDDt6oLxaAjsCPfrIzV9CLrTURD7qT+HujJ0TaRfC91e6tB8OAgkzY4AsHRBNq8KzrQQQ==", "type": "package", - "path": "Microsoft.Extensions.Caching.Memory/1.0.0", + "path": "Microsoft.Extensions.Caching.Memory/1.1.0", "files": [ - "Microsoft.Extensions.Caching.Memory.1.0.0.nupkg.sha512", + "Microsoft.Extensions.Caching.Memory.1.1.0.nupkg.sha512", "Microsoft.Extensions.Caching.Memory.nuspec", "lib/net451/Microsoft.Extensions.Caching.Memory.dll", "lib/net451/Microsoft.Extensions.Caching.Memory.xml", @@ -1769,67 +1790,67 @@ "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.xml" ] }, - "Microsoft.Extensions.DependencyInjection/1.0.0": { - "sha512": "zdtkiZNV6LB8xtpmfyUjP/9N9ZCL/ydQ+0bfjun38fbrk+MDEm9M2yeLzRdq+OIt5xExw/KU04wFaVwJ1bhQPg==", + "Microsoft.Extensions.DependencyInjection/1.1.0": { + "sha512": "meG2tsLdHT0SROqxGBiY8A6XUKlwsQVj1N9cyrS+ZJd1MKhoSaw54KuSH6PmpCB/K/ifkR7o9yVVVamu9XZyeg==", "type": "package", - "path": "Microsoft.Extensions.DependencyInjection/1.0.0", + "path": "Microsoft.Extensions.DependencyInjection/1.1.0", "files": [ - "Microsoft.Extensions.DependencyInjection.1.0.0.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.1.1.0.nupkg.sha512", "Microsoft.Extensions.DependencyInjection.nuspec", "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll", "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.xml" ] }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": { - "sha512": "+XwaNo3o9RhLQhUnnOBCaukeRi1X9yYc0Fzye9RlErSflKZdw0VgHtn6rvKo0FTionsW0x8QVULhKH+nkqVjQA==", + "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": { + "sha512": "2luhjVaWZd8Wmr2KUJcLNAN+iZgezTyfamLG6Lo5FVYY1LYaS7UFOmNtApHGVIytWWtuXSk4ea0t2Vx0HgF5fg==", "type": "package", - "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0", + "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0", "files": [ - "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0.nupkg.sha512", + "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.0.0": { - "sha512": "0mDuASVrd/nMeBYIJSK+9lT3TSmWxUXP/ipVB1pF1ApMN5fqGCckPTNwmOfT4Z9wPkXGnhbwFTGrxZvbzTWxOg==", + "Microsoft.Extensions.Logging/1.1.0": { + "sha512": "IbNogJJE3NRtc5/DAtKEkhXaUQK9N7I6A5G2+ZfyBzWMvAgLKSimESpNMp+gnzUYsW3YbHkeT8jLk9m/3vGY5A==", "type": "package", - "path": "Microsoft.Extensions.Logging/1.0.0", + "path": "Microsoft.Extensions.Logging/1.1.0", "files": [ - "Microsoft.Extensions.Logging.1.0.0.nupkg.sha512", + "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.0.0": { - "sha512": "wHT6oY50q36mAXBRKtFaB7u07WxKC5u2M8fi3PqHOOnHyUo9gD0u1TlCNR8UObHQxKMYwqlgI8TLcErpt29n8A==", + "Microsoft.Extensions.Logging.Abstractions/1.1.0": { + "sha512": "5zDtM0Dal+pwDIj49PPq9Y8SYu6z70v55VDx70rOuquLTlaCIdv9uItkcp9c1FH/ASNdfANVnh1cTwd85dyE+Q==", "type": "package", - "path": "Microsoft.Extensions.Logging.Abstractions/1.0.0", + "path": "Microsoft.Extensions.Logging.Abstractions/1.1.0", "files": [ - "Microsoft.Extensions.Logging.Abstractions.1.0.0.nupkg.sha512", + "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.Extensions.Options/1.0.0": { - "sha512": "SdP3yPKF++JTkoa91pBDiE70uQkR/gdXWzOnMPbSj+eOqY1vgY+b8RVl+gh7TrJ2wlCK2QqnQtvCQlPPZRK36w==", + "Microsoft.Extensions.Options/1.1.0": { + "sha512": "NZlEcVm+SPPeNAkYuwiZdqnMrs/Lne/cDAWiBal1EL//m/KjDgOC6jKg5m9rt/cvqb7Obql5e0JtkNmdP1fGQA==", "type": "package", - "path": "Microsoft.Extensions.Options/1.0.0", + "path": "Microsoft.Extensions.Options/1.1.0", "files": [ - "Microsoft.Extensions.Options.1.0.0.nupkg.sha512", + "Microsoft.Extensions.Options.1.1.0.nupkg.sha512", "Microsoft.Extensions.Options.nuspec", "lib/netstandard1.0/Microsoft.Extensions.Options.dll", "lib/netstandard1.0/Microsoft.Extensions.Options.xml" ] }, - "Microsoft.Extensions.Primitives/1.0.0": { - "sha512": "3q2vzfKEDjL6JFkRpk5SFA3zarYsO6+ZYgoucNImrUMzDn0mFbEOL5p9oPoWiypwypbJVVjWTf557bXZ0YFLig==", + "Microsoft.Extensions.Primitives/1.1.0": { + "sha512": "GhQG5CBUR9/czBLTblt1giKBkfvHVDeppWd6KIgPyexrspECqzzSW5IXe0STTTs2NlUp9vIFwjSWG8O9c74R9g==", "type": "package", - "path": "Microsoft.Extensions.Primitives/1.0.0", + "path": "Microsoft.Extensions.Primitives/1.1.0", "files": [ - "Microsoft.Extensions.Primitives.1.0.0.nupkg.sha512", + "Microsoft.Extensions.Primitives.1.1.0.nupkg.sha512", "Microsoft.Extensions.Primitives.nuspec", "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll", "lib/netstandard1.0/Microsoft.Extensions.Primitives.xml" @@ -1852,12 +1873,12 @@ "runtimes/any/native/FSharp.Core.sigdata" ] }, - "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", @@ -1865,12 +1886,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", @@ -1878,12 +1899,12 @@ "runtime.json" ] }, - "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", @@ -1914,12 +1935,12 @@ "ref/xamarinwatchos10/_._" ] }, - "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" @@ -1944,83 +1965,204 @@ "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml" ] }, - "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" ] }, - "runtime.native.System.Security.Cryptography/4.0.0": { - "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", + "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/4.0.0", + "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.4.0.0.nupkg.sha512", - "runtime.native.System.Security.Cryptography.nuspec" + "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" ] }, - "SQLite/3.12.2": { - "sha512": "XYNQJt2eFqGluWP+fDaiNrV1v3kA+VsU2ygUjLx7zqzhIZKlAjSYMZLldmbGNnlNC5rKR+0LTrN0IA9dZkDyFw==", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "SD1Q+eXmFF0zJ0KALy8/+DBlJdCMa8NzOBniGowTgM33V0v5yGB+vaztZn0TkuXob9zU+4EhXemiGE2rVVsC5w==", "type": "package", - "path": "SQLite/3.12.2", + "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0", "files": [ - "SQLite.3.12.2.nupkg.sha512", - "SQLite.nuspec" + "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" ] }, - "SQLite.Native/3.12.2": { - "sha512": "/5BdEFTaCziE6K5OG0bjSUhPo+LRmFcmyriFWEZNSuHaiqSp69sVngTb/Yo8mH6JykMA79BFdCBLMW+2E3pnuA==", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "vKMEd7CD1iKiNRoic6etc4aNSGHqT252klpAlHmsONxJRPWdRByKU01fHo5gmAt9d8sSGqT5scqv8uH9vxIsfw==", "type": "package", - "path": "SQLite.Native/3.12.2", + "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0", "files": [ - "SQLite.Native.3.12.2.nupkg.sha512", - "SQLite.Native.nuspec", - "build/net45/SQLite.Native.props", - "runtimes/linux-x64/native/libsqlite3.so", - "runtimes/osx-x64/native/libsqlite3.dylib", - "runtimes/win7-x64/native/sqlite3.dll", - "runtimes/win7-x86/native/sqlite3.dll" + "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" ] }, - "System.AppContext/4.1.0": { - "sha512": "3/+vRzNSoYCw5LyLlpCkWga0FLUBng0uvHA5YUoeQk3/HuJfDu9rPJ7od0IeCX2m+XAow7E5Yf0i92nctpkxTA==", + "System.AppContext/4.3.0": { + "sha512": "G4s3Ltj3DFR/gGeqVM3ReTY8GMicaKQQbWg5gZeAnvG7foUcZ9RrcROsuq3XjVO5c64UzQi4h3DenvCXDd47Aw==", "type": "package", - "path": "System.AppContext/4.1.0", + "path": "System.AppContext/4.3.0", "files": [ - "System.AppContext.4.1.0.nupkg.sha512", + "System.AppContext.4.3.0.nupkg.sha512", "System.AppContext.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2068,12 +2210,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", @@ -2081,12 +2223,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", @@ -2147,12 +2289,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", @@ -2213,12 +2355,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Collections.Immutable/1.2.0": { - "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==", + "System.Collections.Immutable/1.3.0": { + "sha512": "YkniUueWPQHqfbvFCUDoPgMqMcUmQsiyhC+FHm1kLnPglqBOAwt1TvR5siAGXeoB6zfc8C0dHXSYJy90XrRgsQ==", "type": "package", - "path": "System.Collections.Immutable/1.2.0", + "path": "System.Collections.Immutable/1.3.0", "files": [ - "System.Collections.Immutable.1.2.0.nupkg.sha512", + "System.Collections.Immutable.1.3.0.nupkg.sha512", "System.Collections.Immutable.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2228,12 +2370,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", @@ -2285,12 +2427,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.ComponentModel.Annotations/4.1.0": { - "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==", + "System.ComponentModel.Annotations/4.3.0": { + "sha512": "P7ywqA2vu5kqY/fspz7cM1CWVo6i7b7PG1FaXJDbEobMrDtKSrLWXXAEpF8jhhbd+8BRmqhqV2NIU5clg3CIeQ==", "type": "package", - "path": "System.ComponentModel.Annotations/4.1.0", + "path": "System.ComponentModel.Annotations/4.3.0", "files": [ - "System.ComponentModel.Annotations.4.1.0.nupkg.sha512", + "System.ComponentModel.Annotations.4.3.0.nupkg.sha512", "System.ComponentModel.Annotations.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2362,12 +2504,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", @@ -2398,12 +2540,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Data.Common/4.1.0": { - "sha512": "epU8jeTe7aE7RqGHq9rZ8b0Q4Ah7DgubzHQblgZMSqgW1saW868WmooSyC5ywf8upLBkcVLDu93W9GPWUYsU2Q==", + "System.Data.Common/4.3.0": { + "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", "type": "package", - "path": "System.Data.Common/4.1.0", + "path": "System.Data.Common/4.3.0", "files": [ - "System.Data.Common.4.1.0.nupkg.sha512", + "System.Data.Common.4.3.0.nupkg.sha512", "System.Data.Common.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2447,12 +2589,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", @@ -2513,12 +2655,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", @@ -2532,12 +2674,12 @@ "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml" ] }, - "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", @@ -2587,12 +2729,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", @@ -2675,12 +2817,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Dynamic.Runtime/4.0.11": { - "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", + "System.Dynamic.Runtime/4.3.0": { + "sha512": "0szYugWlr5YyjX2Grjjm3Z4Mawwc0T3tPuvJW7JLWn2hZ2EYf/2Qu3zijGvZU2J9lZ/Kfo2rHRZFbSgaAUtlQg==", "type": "package", - "path": "System.Dynamic.Runtime/4.0.11", + "path": "System.Dynamic.Runtime/4.3.0", "files": [ - "System.Dynamic.Runtime.4.0.11.nupkg.sha512", + "System.Dynamic.Runtime.4.3.0.nupkg.sha512", "System.Dynamic.Runtime.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2744,12 +2886,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", @@ -2810,12 +2952,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", @@ -2846,12 +2988,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", @@ -2898,12 +3040,12 @@ "lib/netstandard1.0/System.Interactive.Async.xml" ] }, - "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", @@ -2977,12 +3119,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", @@ -3046,12 +3188,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", @@ -3083,12 +3225,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", @@ -3119,12 +3261,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", @@ -3156,12 +3298,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", @@ -3226,12 +3368,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", @@ -3308,12 +3450,12 @@ "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll" ] }, - "System.Linq.Queryable/4.0.1": { - "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", + "System.Linq.Queryable/4.3.0": { + "sha512": "10dCQimeTjrRX3MzCn8432l4AhLDmgnD6uGWJskr10zWhLb6RwOO8Th0NvO75Q31KDiQIy9dVIBMY/OkxOfX3g==", "type": "package", - "path": "System.Linq.Queryable/4.0.1", + "path": "System.Linq.Queryable/4.3.0", "files": [ - "System.Linq.Queryable.4.0.1.nupkg.sha512", + "System.Linq.Queryable.4.3.0.nupkg.sha512", "System.Linq.Queryable.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3365,12 +3507,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", @@ -3445,12 +3587,12 @@ "runtimes/win/lib/netstandard1.3/System.Net.Http.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", @@ -3603,12 +3745,12 @@ "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll" ] }, - "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", @@ -3676,12 +3818,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", @@ -3744,12 +3886,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", @@ -3823,20 +3965,24 @@ "ref/xamarinwatchos10/_._" ] }, - "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", @@ -3853,20 +3999,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", @@ -3881,23 +4035,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", @@ -3912,15 +4078,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", @@ -3970,12 +4140,12 @@ "ref/xamarinwatchos10/_._" ] }, - "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", @@ -4025,12 +4195,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", @@ -4077,12 +4247,12 @@ "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.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", @@ -4132,12 +4302,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", @@ -4222,12 +4392,25 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.Extensions/4.1.0": { - "sha512": "jlSY4klY8cGtHiRRagg2HHSsJnpr2aWoPHPl61aJzKbV48z/tkLvMu0seJ2r06BzDqF7iPIkBjHJHHtXsiJ3OA==", + "System.Runtime.CompilerServices.Unsafe/4.3.0": { + "sha512": "rcnXA1U9W3QUtMSGoyoNHH6w4V5Rxa/EKXmzpORUYlDAlDB34hIQoU57ATXl8xHa83VvzRm6PcElEizgUd7U5w==", + "type": "package", + "path": "System.Runtime.CompilerServices.Unsafe/4.3.0", + "files": [ + "System.Runtime.CompilerServices.Unsafe.4.3.0.nupkg.sha512", + "System.Runtime.CompilerServices.Unsafe.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml" + ] + }, + "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", @@ -4301,12 +4484,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", @@ -4337,12 +4520,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", @@ -4350,6 +4533,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/_._", @@ -4361,6 +4545,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", @@ -4372,6 +4557,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", @@ -4425,18 +4611,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/_._", @@ -4481,12 +4668,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", @@ -4536,12 +4723,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", @@ -4566,6 +4753,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", @@ -4574,12 +4762,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", @@ -4600,12 +4788,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", @@ -4630,12 +4818,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", @@ -4669,12 +4857,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", @@ -4683,12 +4871,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", @@ -4710,12 +4898,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", @@ -4764,12 +4952,12 @@ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.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", @@ -4830,12 +5018,12 @@ "ref/xamarinwatchos10/_._" ] }, - "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", @@ -4896,12 +5084,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", @@ -4934,6 +5122,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", @@ -4977,12 +5166,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", @@ -5046,12 +5235,12 @@ "runtimes/aot/lib/netcore50/System.Threading.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", @@ -5112,12 +5301,12 @@ "ref/xamarinwatchos10/_._" ] }, - "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", @@ -5258,12 +5447,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", @@ -5311,18 +5500,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/_._", @@ -5336,6 +5526,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", @@ -5379,12 +5570,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", @@ -5455,7 +5646,7 @@ "projectFileDependencyGroups": { "": [ "Ctor.Database", - "Microsoft.EntityFrameworkCore.Sqlite >= 1.0.0" + "Microsoft.EntityFrameworkCore.Relational >= 1.1.0" ], ".NETCoreApp,Version=v1.0": [] }, diff --git a/Ctor.Database/Context.fs b/Ctor.Database/Context.fs index b827b10..e6cc6b7 100644 --- a/Ctor.Database/Context.fs +++ b/Ctor.Database/Context.fs @@ -1,23 +1,8 @@ namespace Ctor.Database -open System - open Microsoft.EntityFrameworkCore -open System.Collections.Generic - -type Log() = - member val Id = 0L with get, set - member val Conference : string = null with get, set - member val Sender : string = null with get, set - member val DateTime = Unchecked.defaultof with get, set - member val Text : string = null with get, set -type Context() = - inherit DbContext() +type Context(options: DbContextOptions) = + inherit DbContext(options) member val Logs : DbSet = null with get, set - - override __.OnConfiguring(optionsBuilder : DbContextOptionsBuilder) : unit = - ignore <| optionsBuilder.UseSqlite( - "Filename=./database.db", - (fun b -> ignore <| b.MigrationsAssembly("Ctor.Database.Migrations"))) diff --git a/Ctor.Database/Log.fs b/Ctor.Database/Log.fs new file mode 100644 index 0000000..dd5965f --- /dev/null +++ b/Ctor.Database/Log.fs @@ -0,0 +1,10 @@ +namespace Ctor.Database + +open System + +type Log() = + member val Id = 0L with get, set + member val Conference : string = null with get, set + member val Sender : string = null with get, set + member val DateTime = Unchecked.defaultof with get, set + member val Text : string = null with get, set diff --git a/Ctor.Database/project.json b/Ctor.Database/project.json index 7a5685c..8f21783 100644 --- a/Ctor.Database/project.json +++ b/Ctor.Database/project.json @@ -5,6 +5,7 @@ "compilerName": "fsc", "compile": { "includeFiles": [ + "Log.fs", "Context.fs" ] }, @@ -14,7 +15,7 @@ "netcoreapp1.0": {} }, "dependencies": { - "Microsoft.EntityFrameworkCore.Sqlite": "1.0.0", + "Microsoft.EntityFrameworkCore": "1.0.0", "Microsoft.FSharp.Core.netcore": "1.0.0-alpha-160629" }, "tools": { diff --git a/Ctor.Database/project.lock.json b/Ctor.Database/project.lock.json index 0bf6b6f..32f654f 100644 --- a/Ctor.Database/project.lock.json +++ b/Ctor.Database/project.lock.json @@ -3,54 +3,6 @@ "version": 2, "targets": { ".NETCoreApp,Version=v1.0": { - "Microsoft.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "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.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.0/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Data.Sqlite/1.0.0": { - "type": "package", - "dependencies": { - "SQLite": "3.12.2", - "System.AppContext": "4.1.0", - "System.Data.Common": "4.1.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "lib/netstandard1.3/Microsoft.Data.Sqlite.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.Data.Sqlite.dll": {} - } - }, "Microsoft.EntityFrameworkCore/1.0.0": { "type": "package", "dependencies": { @@ -74,36 +26,6 @@ "lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {} } }, - "Microsoft.EntityFrameworkCore.Relational/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "Microsoft.EntityFrameworkCore": "1.0.0", - "System.Data.Common": "4.1.0", - "System.Diagnostics.DiagnosticSource": "4.0.0", - "System.Text.RegularExpressions": "4.1.0" - }, - "compile": { - "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Sqlite/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Data.Sqlite": "1.0.0", - "Microsoft.EntityFrameworkCore.Relational": "1.0.0", - "System.IO.FileSystem": "4.0.1" - }, - "compile": { - "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Sqlite.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Sqlite.dll": {} - } - }, "Microsoft.Extensions.Caching.Abstractions/1.0.0": { "type": "package", "dependencies": { @@ -423,33 +345,6 @@ "lib/netstandard1.0/_._": {} } }, - "SQLite/3.12.2": { - "type": "package", - "dependencies": { - "SQLite.Native": "3.12.2" - } - }, - "SQLite.Native/3.12.2": { - "type": "package", - "runtimeTargets": { - "runtimes/linux-x64/native/libsqlite3.so": { - "assetType": "native", - "rid": "linux-x64" - }, - "runtimes/osx-x64/native/libsqlite3.dylib": { - "assetType": "native", - "rid": "osx-x64" - }, - "runtimes/win7-x64/native/sqlite3.dll": { - "assetType": "native", - "rid": "win7-x64" - }, - "runtimes/win7-x86/native/sqlite3.dll": { - "assetType": "native", - "rid": "win7-x86" - } - } - }, "System.AppContext/4.1.0": { "type": "package", "dependencies": { @@ -576,25 +471,6 @@ "ref/netstandard1.3/System.Console.dll": {} } }, - "System.Data.Common/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "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.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.2/System.Data.Common.dll": {} - }, - "runtime": { - "lib/netstandard1.2/System.Data.Common.dll": {} - } - }, "System.Diagnostics.Debug/4.0.11": { "type": "package", "dependencies": { @@ -616,7 +492,7 @@ "System.Threading": "4.0.11" }, "compile": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + "lib/netstandard1.3/_._": {} }, "runtime": { "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} @@ -644,32 +520,6 @@ "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} } }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "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.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" - }, - "compile": { - "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} - } - }, "System.Globalization/4.0.11": { "type": "package", "dependencies": { @@ -1628,76 +1478,6 @@ } }, "libraries": { - "Microsoft.CSharp/4.0.1": { - "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", - "type": "package", - "path": "Microsoft.CSharp/4.0.1", - "files": [ - "Microsoft.CSharp.4.0.1.nupkg.sha512", - "Microsoft.CSharp.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/netstandard1.3/Microsoft.CSharp.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/Microsoft.CSharp.dll", - "ref/netcore50/Microsoft.CSharp.xml", - "ref/netcore50/de/Microsoft.CSharp.xml", - "ref/netcore50/es/Microsoft.CSharp.xml", - "ref/netcore50/fr/Microsoft.CSharp.xml", - "ref/netcore50/it/Microsoft.CSharp.xml", - "ref/netcore50/ja/Microsoft.CSharp.xml", - "ref/netcore50/ko/Microsoft.CSharp.xml", - "ref/netcore50/ru/Microsoft.CSharp.xml", - "ref/netcore50/zh-hans/Microsoft.CSharp.xml", - "ref/netcore50/zh-hant/Microsoft.CSharp.xml", - "ref/netstandard1.0/Microsoft.CSharp.dll", - "ref/netstandard1.0/Microsoft.CSharp.xml", - "ref/netstandard1.0/de/Microsoft.CSharp.xml", - "ref/netstandard1.0/es/Microsoft.CSharp.xml", - "ref/netstandard1.0/fr/Microsoft.CSharp.xml", - "ref/netstandard1.0/it/Microsoft.CSharp.xml", - "ref/netstandard1.0/ja/Microsoft.CSharp.xml", - "ref/netstandard1.0/ko/Microsoft.CSharp.xml", - "ref/netstandard1.0/ru/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "Microsoft.Data.Sqlite/1.0.0": { - "sha512": "dezlCGK9zVrPNfoX1SL50GmWDdRQNcV1SBy3wuCn/a0g7Gc26PyvlA4BKapjnCK5N8LSQ2+1PdW2imiRr+YvxA==", - "type": "package", - "path": "Microsoft.Data.Sqlite/1.0.0", - "files": [ - "Microsoft.Data.Sqlite.1.0.0.nupkg.sha512", - "Microsoft.Data.Sqlite.nuspec", - "lib/net451/Microsoft.Data.Sqlite.dll", - "lib/net451/Microsoft.Data.Sqlite.xml", - "lib/netstandard1.3/Microsoft.Data.Sqlite.dll", - "lib/netstandard1.3/Microsoft.Data.Sqlite.xml" - ] - }, "Microsoft.EntityFrameworkCore/1.0.0": { "sha512": "Vqg/v0cXRQZQH0gY3VHHqt0Bt5WZEkDReVpI1sNYKHVbVtnMYFKPp5SiNygosUJYrJk1rSGb8UVkplDNNUkEgg==", "type": "package", @@ -1711,32 +1491,6 @@ "lib/netstandard1.3/Microsoft.EntityFrameworkCore.xml" ] }, - "Microsoft.EntityFrameworkCore.Relational/1.0.0": { - "sha512": "LGBab+7o0eq4C3YtvkAxK8W7Ia57eO0Ue0viQgt0STptQ2bUpLzV7q5LfbNl475rt6yTWa/vDQlYVaI64fwqdw==", - "type": "package", - "path": "Microsoft.EntityFrameworkCore.Relational/1.0.0", - "files": [ - "Microsoft.EntityFrameworkCore.Relational.1.0.0.nupkg.sha512", - "Microsoft.EntityFrameworkCore.Relational.nuspec", - "lib/net451/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/net451/Microsoft.EntityFrameworkCore.Relational.xml", - "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.xml" - ] - }, - "Microsoft.EntityFrameworkCore.Sqlite/1.0.0": { - "sha512": "GF5xfn90zVKbnCdNrjeH4j1IaAQ7FsHCWkTrdUKISzrPxG3LIizJaU2iu8YMfNhMYd5N1Y7R7SxF2dBh+5A+Ew==", - "type": "package", - "path": "Microsoft.EntityFrameworkCore.Sqlite/1.0.0", - "files": [ - "Microsoft.EntityFrameworkCore.Sqlite.1.0.0.nupkg.sha512", - "Microsoft.EntityFrameworkCore.Sqlite.nuspec", - "lib/net451/Microsoft.EntityFrameworkCore.Sqlite.dll", - "lib/net451/Microsoft.EntityFrameworkCore.Sqlite.xml", - "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Sqlite.dll", - "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Sqlite.xml" - ] - }, "Microsoft.Extensions.Caching.Abstractions/1.0.0": { "sha512": "IxlFDVOchL6tdR05bk7EiJvMtvZrVkZXBhkbXqc3GxOHOrHFGcN+92WoWFPeBpdpy8ot/Px5ZdXzt7k+2n1Bdg==", "type": "package", @@ -1984,29 +1738,6 @@ "runtime.native.System.Security.Cryptography.nuspec" ] }, - "SQLite/3.12.2": { - "sha512": "XYNQJt2eFqGluWP+fDaiNrV1v3kA+VsU2ygUjLx7zqzhIZKlAjSYMZLldmbGNnlNC5rKR+0LTrN0IA9dZkDyFw==", - "type": "package", - "path": "SQLite/3.12.2", - "files": [ - "SQLite.3.12.2.nupkg.sha512", - "SQLite.nuspec" - ] - }, - "SQLite.Native/3.12.2": { - "sha512": "/5BdEFTaCziE6K5OG0bjSUhPo+LRmFcmyriFWEZNSuHaiqSp69sVngTb/Yo8mH6JykMA79BFdCBLMW+2E3pnuA==", - "type": "package", - "path": "SQLite.Native/3.12.2", - "files": [ - "SQLite.Native.3.12.2.nupkg.sha512", - "SQLite.Native.nuspec", - "build/net45/SQLite.Native.props", - "runtimes/linux-x64/native/libsqlite3.so", - "runtimes/osx-x64/native/libsqlite3.dylib", - "runtimes/win7-x64/native/sqlite3.dll", - "runtimes/win7-x86/native/sqlite3.dll" - ] - }, "System.AppContext/4.1.0": { "sha512": "3/+vRzNSoYCw5LyLlpCkWga0FLUBng0uvHA5YUoeQk3/HuJfDu9rPJ7od0IeCX2m+XAow7E5Yf0i92nctpkxTA==", "type": "package", @@ -2390,55 +2121,6 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Data.Common/4.1.0": { - "sha512": "epU8jeTe7aE7RqGHq9rZ8b0Q4Ah7DgubzHQblgZMSqgW1saW868WmooSyC5ywf8upLBkcVLDu93W9GPWUYsU2Q==", - "type": "package", - "path": "System.Data.Common/4.1.0", - "files": [ - "System.Data.Common.4.1.0.nupkg.sha512", - "System.Data.Common.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net451/System.Data.Common.dll", - "lib/netstandard1.2/System.Data.Common.dll", - "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net451/System.Data.Common.dll", - "ref/netstandard1.2/System.Data.Common.dll", - "ref/netstandard1.2/System.Data.Common.xml", - "ref/netstandard1.2/de/System.Data.Common.xml", - "ref/netstandard1.2/es/System.Data.Common.xml", - "ref/netstandard1.2/fr/System.Data.Common.xml", - "ref/netstandard1.2/it/System.Data.Common.xml", - "ref/netstandard1.2/ja/System.Data.Common.xml", - "ref/netstandard1.2/ko/System.Data.Common.xml", - "ref/netstandard1.2/ru/System.Data.Common.xml", - "ref/netstandard1.2/zh-hans/System.Data.Common.xml", - "ref/netstandard1.2/zh-hant/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", - "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, "System.Diagnostics.Debug/4.0.11": { "sha512": "rDVtSkhDUDSvQHZOtax1X7YI3cYRfNa1mojeqZrX5+SHUrbfySkZxakQFZ/tuNfXjQ+LBOt+ITcVzkHxrjALOw==", "type": "package", @@ -2667,75 +2349,6 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Dynamic.Runtime/4.0.11": { - "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", - "type": "package", - "path": "System.Dynamic.Runtime/4.0.11", - "files": [ - "System.Dynamic.Runtime.4.0.11.nupkg.sha512", - "System.Dynamic.Runtime.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/netstandard1.3/System.Dynamic.Runtime.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Dynamic.Runtime.dll", - "ref/netcore50/System.Dynamic.Runtime.xml", - "ref/netcore50/de/System.Dynamic.Runtime.xml", - "ref/netcore50/es/System.Dynamic.Runtime.xml", - "ref/netcore50/fr/System.Dynamic.Runtime.xml", - "ref/netcore50/it/System.Dynamic.Runtime.xml", - "ref/netcore50/ja/System.Dynamic.Runtime.xml", - "ref/netcore50/ko/System.Dynamic.Runtime.xml", - "ref/netcore50/ru/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/System.Dynamic.Runtime.dll", - "ref/netstandard1.0/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/System.Dynamic.Runtime.dll", - "ref/netstandard1.3/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll" - ] - }, "System.Globalization/4.0.11": { "sha512": "LkCG7HFBQuGlanBOhSGZtyld6lU7YBz5VNdQjuJydGuNWG5TAlaRJgo24kfW6gAwNMG41Y8r6NB7QYxRmPux4g==", "type": "package", @@ -5442,7 +5055,7 @@ }, "projectFileDependencyGroups": { "": [ - "Microsoft.EntityFrameworkCore.Sqlite >= 1.0.0", + "Microsoft.EntityFrameworkCore >= 1.0.0", "Microsoft.FSharp.Core.netcore >= 1.0.0-alpha-160629" ], ".NETCoreApp,Version=v1.0": [] diff --git a/Ctor.Server/Backend/Startup.fs b/Ctor.Server/Backend/Startup.fs index 644c6d6..fa6002f 100644 --- a/Ctor.Server/Backend/Startup.fs +++ b/Ctor.Server/Backend/Startup.fs @@ -2,6 +2,7 @@ namespace Codingteam.Site open Microsoft.AspNetCore.Builder open Microsoft.AspNetCore.Hosting +open Microsoft.EntityFrameworkCore open Microsoft.Extensions.Configuration open Microsoft.Extensions.DependencyInjection open Microsoft.Extensions.Logging @@ -16,19 +17,27 @@ type Startup(env : IHostingEnvironment) = reloadOnChange = true).Build() member __.Configure(app : IApplicationBuilder, loggerFactory : ILoggerFactory) : unit = - loggerFactory.AddConsole(configuration.GetSection "Logging") |> ignore - loggerFactory.AddDebug() |> ignore + let migrateDb() = + use context = app.ApplicationServices.GetService() + ignore <| context.Database.EnsureCreated() + context.Database.Migrate() - app.UseStaticFiles() |> ignore + ignore <| loggerFactory.AddConsole(configuration.GetSection "Logging") + .AddDebug() - app.UseMvc (fun routes -> - routes.MapRoute("default", "{controller=Home}/{action=Index}") - |> ignore) - |> ignore + ignore <| app.UseStaticFiles() + .UseMvc (fun routes -> + ignore <| routes.MapRoute("default", "{controller=Home}/{action=Index}")) + + migrateDb() member __.ConfigureServices(services : IServiceCollection) : unit = - ignore <| services.AddOptions() - ignore <| services.Configure(configuration.GetSection "CtorSettings") - ignore <| services.AddDbContext() + let configureDb (db : DbContextOptionsBuilder) = + ignore <| db.UseSqlite( + configuration.GetConnectionString("Ctor.Database"), + fun b -> ignore <| b.MigrationsAssembly("Ctor.Database.Migrations")) - ignore <| services.AddMvc() + ignore <| services.AddOptions() + .Configure(configuration.GetSection "CtorSettings") + .AddDbContext(configureDb) + .AddMvc() diff --git a/Ctor.Server/appsettings.json b/Ctor.Server/appsettings.json index d1d5692..17e4134 100644 --- a/Ctor.Server/appsettings.json +++ b/Ctor.Server/appsettings.json @@ -1,4 +1,7 @@ { + "ConnectionStrings": { + "Ctor.Database": "Filename=./Database.db" + }, "CtorSettings": { "LogUrlPrefix": "https://codingteam.org.ru/_logs/codingteam%40conference.jabber.ru", "LogTimeZoneOffset": 4 diff --git a/Ctor.Server/project.json b/Ctor.Server/project.json index 62436ad..67696a6 100644 --- a/Ctor.Server/project.json +++ b/Ctor.Server/project.json @@ -25,6 +25,7 @@ "version": "1.1.0", "type": "build" }, + "Microsoft.EntityFrameworkCore.Sqlite": "1.0.0", "Microsoft.Extensions.Configuration.Json": "1.0.0", "Microsoft.Extensions.Logging.Console": "1.0.0", "Microsoft.Extensions.Logging.Debug": "1.0.0", @@ -36,6 +37,7 @@ "version": "1.0.1" }, + "Ctor.Database": "*", "Ctor.Database.Migrations": "*" }, "tools": { diff --git a/Ctor.Server/project.lock.json b/Ctor.Server/project.lock.json index 79b8a99..c5dc8fb 100644 --- a/Ctor.Server/project.lock.json +++ b/Ctor.Server/project.lock.json @@ -3699,7 +3699,7 @@ "type": "project", "framework": ".NETCoreApp,Version=v1.0", "dependencies": { - "Microsoft.EntityFrameworkCore.Sqlite": "1.0.0", + "Microsoft.EntityFrameworkCore": "1.0.0", "Microsoft.FSharp.Core.netcore": "1.0.0-alpha-160629" } }, @@ -3708,7 +3708,7 @@ "framework": ".NETCoreApp,Version=v1.0", "dependencies": { "Ctor.Database": "1.0.0", - "Microsoft.EntityFrameworkCore.Sqlite": "1.0.0" + "Microsoft.EntityFrameworkCore.Relational": "1.1.0" } } } @@ -9899,11 +9899,13 @@ }, "projectFileDependencyGroups": { "": [ + "Ctor.Database", "Ctor.Database.Migrations", "Microsoft.AspNetCore.Mvc >= 1.0.1", "Microsoft.AspNetCore.Server.Kestrel >= 1.0.1", "Microsoft.AspNetCore.StaticFiles >= 1.0.0", "Microsoft.EntityFrameworkCore.Design >= 1.1.0", + "Microsoft.EntityFrameworkCore.Sqlite >= 1.0.0", "Microsoft.Extensions.Configuration.Json >= 1.0.0", "Microsoft.Extensions.Logging.Console >= 1.0.0", "Microsoft.Extensions.Logging.Debug >= 1.0.0", diff --git a/docs/migrations.md b/docs/migrations.md index ad52cfb..9f079ed 100644 --- a/docs/migrations.md +++ b/docs/migrations.md @@ -1,7 +1,5 @@ -How to add a database migration -=============================== +How to manage database migrations +================================= -```console -$ cd Ctor.Database.Migrations -$ dotnet ef --startup-project ../Ctor.Server migrations add MigrationName -``` +Migration management with EF Core and F# is a bit tricky; that's why there're a +pair of scripts to manage the migrations in the `scripts` directory. diff --git a/tools/Add-Migration.ps1 b/tools/Add-Migration.ps1 new file mode 100644 index 0000000..494738e --- /dev/null +++ b/tools/Add-Migration.ps1 @@ -0,0 +1,12 @@ +param ( + [string] $MigrationName +) + +$ErrorActionPreference = 'Stop' + +Push-Location "$PSScriptRoot/../Ctor.Database.Migrations" +try { + dotnet ef --startup-project ../Ctor.Server migrations add $MigrationName +} finally { + Pop-Location +} diff --git a/tools/Remove-Migration.ps1 b/tools/Remove-Migration.ps1 new file mode 100644 index 0000000..71601fe --- /dev/null +++ b/tools/Remove-Migration.ps1 @@ -0,0 +1,8 @@ +$ErrorActionPreference = 'Stop' + +Push-Location "$PSScriptRoot/../Ctor.Database.Migrations" +try { + dotnet ef --startup-project ../Ctor.Server migrations remove +} finally { + Pop-Location +}