From b1d519b01264067632d08423c9cf092259ea45a3 Mon Sep 17 00:00:00 2001 From: Dmitry Popov Date: Tue, 28 Jun 2016 13:52:30 +0300 Subject: [PATCH] Dependencies upgraded to 1.0.0 RTM --- README.md | 65 +- global.json | 2 +- sample/RecurrentTasks.Sample/project.json | 30 +- .../RecurrentTasks.Sample/project.lock.json | 5254 +++++++++-------- src/RecurrentTasks/project.json | 12 +- src/RecurrentTasks/project.lock.json | 783 +-- test/RecurrentTasks.Tests/project.json | 16 +- test/RecurrentTasks.Tests/project.lock.json | 4127 ++++++------- 8 files changed, 5311 insertions(+), 4978 deletions(-) diff --git a/README.md b/README.md index c5a6f2d..3aba37e 100644 --- a/README.md +++ b/README.md @@ -6,55 +6,60 @@ Each task is a separate `Task`, which sleeps in background for a while, wakes up Ideal, when you don't need to run many/heavy tasks and don't want to use "big" solutions with persistence and other bells and whistles. -Written for **ASP.NET vNext** (ASP.NET 5, ASP.NET Core 1). +Written for **ASP.NET Core** (ASP.NET 5, ASP.NET vNext). ## Main features -* Start and Stop you task at any time; +* Start and Stop your task at any time; * First run (after Start) is delayed at random value (10-30 sec, customizable) to prevent app freeze during statup; * Run "immediately" (without waiting for next scheduled time); * Change run interval while running; * `RunStatus` property (extendable) contains: - * last/next run times; - * last run result (success / exception); - * last success run time; - * last exception; - * total failed runs counter. + * last/next run times; + * last run result (success / exception); + * last success run time; + * last exception; + * total failed runs counter. ## Usage ### 1. Create new task class - public class MyFirstTask : TaskBase +```csharp +public class MyFirstTask : TaskBase +{ + public MyFirstTask(ILoggerFactory loggerFactory, IServiceScopeFactory serviceScopeFactory) + : base(loggerFactory, TimeSpan.FromMinutes(5), serviceScopeFactory) { - public MyFirstTask(ILoggerFactory loggerFactory, IServiceScopeFactory serviceScopeFactory) - : base(loggerFactory, TimeSpan.FromMinutes(5), serviceScopeFactory) - { - // Nothing - } + // Nothing + } - protected override void Run(IServiceProvider serviceProvider, TaskRunStatus runStatus) - { + protected override void Run(IServiceProvider serviceProvider, TaskRunStatus runStatus) + { // Place your code here - } } +} +``` ### 2. Register and start your task in `Startup.cs` - public void ConfigureServices(IServiceCollection services) - { - ... - services.AddSingleton(); - ... - } + +```csharp +public void ConfigureServices(IServiceCollection services) +{ + ... + services.AddSingleton(); + ... +} - public void Configure(IApplicationBuilder app, ...) - { - ... - app.ApplicationServices.GetRequiredService().Start(); - ... - } - +public void Configure(IApplicationBuilder app, ...) +{ + ... + app.ApplicationServices.GetRequiredService().Start(); + ... +} +``` + And viola! Your task will run every 5 minutes (second param when calling :base constructor). Until you application alive, of course. @@ -72,6 +77,8 @@ Target [framework/platform moniker](https://github.com/dotnet/corefx/blob/master ## Version history +* 2.3.0 (June 28, 2016) + * Dependencies upgraded to 1.0.0 RTM * 2.2.0 (May 24, 2016) * New `AfterRunFail` event with `Exception` info * 2.1.0 (May 17, 2016) diff --git a/global.json b/global.json index b51e28b..e793049 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "projects": [ "src", "test" ], "sdk": { - "version": "1.0.0-preview1-002702" + "version": "1.0.0-preview2-003121" } } diff --git a/sample/RecurrentTasks.Sample/project.json b/sample/RecurrentTasks.Sample/project.json index fc05941..23fe87a 100644 --- a/sample/RecurrentTasks.Sample/project.json +++ b/sample/RecurrentTasks.Sample/project.json @@ -3,41 +3,33 @@ "dependencies": { "Microsoft.NETCore.App": { - "version": "1.0.0-rc2-3002702", + "version": "1.0.0", "type": "platform" }, - "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0", + "Microsoft.AspNetCore.Server.Kestrel": "1.0.0", + "Microsoft.AspNetCore.Mvc": "1.0.0", "Microsoft.AspNetCore.Razor.Tools": { - "version": "1.0.0-preview1-final", + "version": "1.0.0-preview2-final", "type": "build" }, - "Microsoft.Extensions.Configuration": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final", + "Microsoft.Extensions.Configuration": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.Logging.Console": "1.0.0", "RecurrentTasks": "*" }, "tools": { "Microsoft.AspNetCore.Razor.Tools": { - "version": "1.0.0-preview1-final", - "imports": "portable-net45+win8+dnxcore50" + "version": "1.0.0-preview2-final" }, "Microsoft.AspNetCore.Server.IISIntegration.Tools": { - "version": "1.0.0-preview1-final", - "imports": "portable-net45+win8+dnxcore50" + "version": "1.0.0-preview2-final" } }, "frameworks": { - "netcoreapp1.0": { - "imports": [ - "dotnet5.6", - "dnxcore50", - "portable-net45+win8" - ] - } + "netcoreapp1.0": {} }, "buildOptions": { "emitEntryPoint": true, diff --git a/sample/RecurrentTasks.Sample/project.lock.json b/sample/RecurrentTasks.Sample/project.lock.json index fc03840..ef9e2d4 100644 --- a/sample/RecurrentTasks.Sample/project.lock.json +++ b/sample/RecurrentTasks.Sample/project.lock.json @@ -3,13 +3,24 @@ "version": 2, "targets": { ".NETCoreApp,Version=v1.0": { - "Libuv/1.9.0-rc2-20901": { + "Libuv/1.9.0": { "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1" + }, "runtimeTargets": { "runtimes/debian-x64/native/libuv.so": { "assetType": "native", "rid": "debian-x64" }, + "runtimes/fedora-x64/native/libuv.so": { + "assetType": "native", + "rid": "fedora-x64" + }, + "runtimes/opensuse-x64/native/libuv.so": { + "assetType": "native", + "rid": "opensuse-x64" + }, "runtimes/osx/native/libuv.dylib": { "assetType": "native", "rid": "osx" @@ -32,13 +43,13 @@ } } }, - "Microsoft.AspNetCore.Antiforgery/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Antiforgery/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.DataProtection": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Http.Abstractions": "1.0.0-rc2-final", - "Microsoft.AspNetCore.WebUtilities": "1.0.0-rc2-final", - "Microsoft.Extensions.ObjectPool": "1.0.0-rc2-final" + "Microsoft.AspNetCore.DataProtection": "1.0.0", + "Microsoft.AspNetCore.Http.Abstractions": "1.0.0", + "Microsoft.AspNetCore.WebUtilities": "1.0.0", + "Microsoft.Extensions.ObjectPool": "1.0.0" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {} @@ -47,12 +58,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {} } }, - "Microsoft.AspNetCore.Authorization/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Authorization/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Options": "1.0.0-rc2-final", - "System.Security.Claims": "4.0.1-rc2-24027" + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "Microsoft.Extensions.Options": "1.0.0", + "System.Security.Claims": "4.0.1" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {} @@ -61,13 +72,13 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {} } }, - "Microsoft.AspNetCore.Cors/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Cors/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "1.0.0-rc2-final", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Options": "1.0.0-rc2-final" + "Microsoft.AspNetCore.Http.Extensions": "1.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0", + "Microsoft.Extensions.Options": "1.0.0" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {} @@ -76,15 +87,15 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {} } }, - "Microsoft.AspNetCore.Cryptography.Internal/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": { "type": "package", "dependencies": { - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Threading": "4.0.11" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {} @@ -93,22 +104,22 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {} } }, - "Microsoft.AspNetCore.DataProtection/1.0.0-rc2-final": { + "Microsoft.AspNetCore.DataProtection/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0-rc2-final", - "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Options": "1.0.0-rc2-final", - "Microsoft.Win32.Registry": "4.0.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Security.Claims": "4.0.1-rc2-24027", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc2-24027", - "System.Security.Principal.Windows": "4.0.0-rc2-24027", - "System.Xml.XDocument": "4.0.11-rc2-24027" + "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "Microsoft.Extensions.Options": "1.0.0", + "Microsoft.Win32.Registry": "4.0.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Security.Claims": "4.0.1", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal.Windows": "4.0.0", + "System.Xml.XDocument": "4.0.11" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {} @@ -117,13 +128,13 @@ "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {} } }, - "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0-rc2-final": { + "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": { "type": "package", "dependencies": { - "System.ComponentModel": "4.0.1-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027" + "System.ComponentModel": "4.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime.Extensions": "4.1.0" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} @@ -132,10 +143,10 @@ "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} } }, - "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": { "type": "package", "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-24027" + "System.Resources.ResourceManager": "4.0.1" }, "compile": { "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} @@ -144,23 +155,26 @@ "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} } }, - "Microsoft.AspNetCore.Hosting/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Hosting/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Http": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Http.Extensions": "1.0.0-rc2-final", - "Microsoft.Extensions.Configuration": "1.0.0-rc2-final", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-final", - "Microsoft.Extensions.FileProviders.Physical": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging": "1.0.0-rc2-final", - "Microsoft.Extensions.Options": "1.0.0-rc2-final", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final", - "System.Console": "4.0.0-rc2-24027", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-24027", - "System.Diagnostics.StackTrace": "4.0.1-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027" + "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0", + "Microsoft.AspNetCore.Http": "1.0.0", + "Microsoft.AspNetCore.Http.Extensions": "1.0.0", + "Microsoft.Extensions.Configuration": "1.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.FileProviders.Physical": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.Options": "1.0.0", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "System.Console": "4.0.0", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.StackTrace": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll": {} @@ -169,15 +183,15 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll": {} } }, - "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Http.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final" + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0", + "Microsoft.AspNetCore.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} @@ -186,11 +200,11 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} } }, - "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Http.Features": "1.0.0-rc2-final", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-final" + "Microsoft.AspNetCore.Http.Features": "1.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} @@ -199,12 +213,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} } }, - "Microsoft.AspNetCore.Html.Abstractions/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Html.Abstractions/1.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Text.Encodings.Web": "4.0.0-rc2-24027" + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Text.Encodings.Web": "4.0.0" }, "compile": { "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {} @@ -213,16 +227,16 @@ "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {} } }, - "Microsoft.AspNetCore.Http/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Http/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "1.0.0-rc2-final", - "Microsoft.AspNetCore.WebUtilities": "1.0.0-rc2-final", - "Microsoft.Extensions.ObjectPool": "1.0.0-rc2-final", - "Microsoft.Extensions.Options": "1.0.0-rc2-final", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-final", - "System.Buffers": "4.0.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.AspNetCore.Http.Abstractions": "1.0.0", + "Microsoft.AspNetCore.WebUtilities": "1.0.0", + "Microsoft.Extensions.ObjectPool": "1.0.0", + "Microsoft.Extensions.Options": "1.0.0", + "Microsoft.Net.Http.Headers": "1.0.0", + "System.Buffers": "4.0.0", + "System.Threading": "4.0.11" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {} @@ -231,15 +245,15 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {} } }, - "Microsoft.AspNetCore.Http.Abstractions/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Http.Abstractions/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Http.Features": "1.0.0-rc2-final", - "System.Globalization.Extensions": "4.0.1-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Text.Encodings.Web": "4.0.0-rc2-24027" + "Microsoft.AspNetCore.Http.Features": "1.0.0", + "System.Globalization.Extensions": "4.0.1", + "System.Linq.Expressions": "4.1.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encodings.Web": "4.0.0" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {} @@ -248,14 +262,14 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {} } }, - "Microsoft.AspNetCore.Http.Extensions/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Http.Extensions/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0-rc2-final", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-final", - "System.Buffers": "4.0.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027" + "Microsoft.AspNetCore.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0", + "Microsoft.Net.Http.Headers": "1.0.0", + "System.Buffers": "4.0.0", + "System.IO.FileSystem": "4.0.1" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {} @@ -264,19 +278,19 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {} } }, - "Microsoft.AspNetCore.Http.Features/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Http.Features/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-final", - "System.Collections": "4.0.11-rc2-24027", - "System.ComponentModel": "4.0.1-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.Net.WebSockets": "4.0.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Security.Claims": "4.0.1-rc2-24027", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc2-24027", - "System.Security.Principal": "4.0.1-rc2-24027" + "Microsoft.Extensions.Primitives": "1.0.0", + "System.Collections": "4.0.11", + "System.ComponentModel": "4.0.1", + "System.Linq": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebSockets": "4.0.0", + "System.Runtime.Extensions": "4.1.0", + "System.Security.Claims": "4.0.1", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {} @@ -285,12 +299,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {} } }, - "Microsoft.AspNetCore.HttpOverrides/1.0.0-rc2-final": { + "Microsoft.AspNetCore.HttpOverrides/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Options": "1.0.0-rc2-final" + "Microsoft.AspNetCore.Http.Extensions": "1.0.0", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "Microsoft.Extensions.Options": "1.0.0" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll": {} @@ -299,21 +313,21 @@ "lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll": {} } }, - "Microsoft.AspNetCore.JsonPatch/1.0.0-rc2-final": { + "Microsoft.AspNetCore.JsonPatch/1.0.0": { "type": "package", "dependencies": { - "Microsoft.CSharp": "4.0.1-rc2-24027", - "Newtonsoft.Json": "8.0.3", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.ComponentModel.TypeConverter": "4.0.1-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027", - "System.Text.Encoding.Extensions": "4.0.11-rc2-24027" + "Microsoft.CSharp": "4.0.1", + "Newtonsoft.Json": "9.0.1", + "System.Collections.Concurrent": "4.0.12", + "System.ComponentModel.TypeConverter": "4.1.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "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.Serialization.Primitives": "4.1.1", + "System.Text.Encoding.Extensions": "4.0.11" }, "compile": { "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {} @@ -322,13 +336,13 @@ "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {} } }, - "Microsoft.AspNetCore.Localization/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Localization/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "1.0.0-rc2-final", - "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0-rc2-final", - "Microsoft.Extensions.Localization.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Options": "1.0.0-rc2-final" + "Microsoft.AspNetCore.Http.Extensions": "1.0.0", + "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0", + "Microsoft.Extensions.Localization.Abstractions": "1.0.0", + "Microsoft.Extensions.Options": "1.0.0" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {} @@ -337,36 +351,36 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {} } }, - "Microsoft.AspNetCore.Mvc/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Mvc/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Mvc.Cors": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Mvc.Localization": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Mvc.Razor": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.0-rc2-final", - "Microsoft.Extensions.Caching.Memory": "1.0.0-rc2-final", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-final" + "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.0", + "Microsoft.AspNetCore.Mvc.Cors": "1.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.0", + "Microsoft.AspNetCore.Mvc.Localization": "1.0.0", + "Microsoft.AspNetCore.Mvc.Razor": "1.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.0", + "Microsoft.Extensions.Caching.Memory": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0" }, "compile": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {} } }, - "Microsoft.AspNetCore.Mvc.Abstractions/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Mvc.Abstractions/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0-rc2-final", - "Microsoft.CSharp": "4.0.1-rc2-24027", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-final", - "System.ComponentModel.TypeConverter": "4.0.1-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Text.Encoding.Extensions": "4.0.11-rc2-24027" + "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0", + "Microsoft.CSharp": "4.0.1", + "Microsoft.Net.Http.Headers": "1.0.0", + "System.ComponentModel.TypeConverter": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Text.Encoding.Extensions": "4.0.11" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} @@ -375,179 +389,177 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} } }, - "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Mvc.Core": "1.0.0-rc2-final" + "Microsoft.AspNetCore.Mvc.Core": "1.0.0" }, "compile": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} } }, - "Microsoft.AspNetCore.Mvc.Core/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Mvc.Core/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Authorization": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Http": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Routing": "1.0.0-rc2-final", - "Microsoft.Extensions.DependencyModel": "1.0.0-rc2-final", - "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final", - "System.Buffers": "4.0.0-rc2-24027", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027" + "Microsoft.AspNetCore.Authorization": "1.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0", + "Microsoft.AspNetCore.Http": "1.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.0", + "Microsoft.AspNetCore.Routing": "1.0.0", + "Microsoft.Extensions.DependencyModel": "1.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "System.Buffers": "4.0.0", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Text.Encoding": "4.0.11" }, "compile": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Core.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Core.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {} } }, - "Microsoft.AspNetCore.Mvc.Cors/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Mvc.Cors/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Cors": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Mvc.Core": "1.0.0-rc2-final" + "Microsoft.AspNetCore.Cors": "1.0.0", + "Microsoft.AspNetCore.Mvc.Core": "1.0.0" }, "compile": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Cors.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Cors.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {} } }, - "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Mvc.Core": "1.0.0-rc2-final", - "Microsoft.Extensions.Localization": "1.0.0-rc2-final", - "System.ComponentModel.Annotations": "4.1.0-rc2-24027" + "Microsoft.AspNetCore.Mvc.Core": "1.0.0", + "Microsoft.Extensions.Localization": "1.0.0", + "System.ComponentModel.Annotations": "4.1.0" }, "compile": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} } }, - "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Mvc.Core": "1.0.0-rc2-final" + "Microsoft.AspNetCore.JsonPatch": "1.0.0", + "Microsoft.AspNetCore.Mvc.Core": "1.0.0" }, "compile": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} } }, - "Microsoft.AspNetCore.Mvc.Localization/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Mvc.Localization/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Localization": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Mvc.Razor": "1.0.0-rc2-final", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-final", - "Microsoft.Extensions.Localization": "1.0.0-rc2-final" + "Microsoft.AspNetCore.Localization": "1.0.0", + "Microsoft.AspNetCore.Mvc.Razor": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Localization": "1.0.0" }, "compile": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Localization.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Localization.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {} } }, - "Microsoft.AspNetCore.Mvc.Razor/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Mvc.Razor/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.0-rc2-final", - "Microsoft.CodeAnalysis.CSharp": "1.3.0-beta1-20160429-01", - "Microsoft.Extensions.FileProviders.Composite": "1.0.0-rc2-final", - "System.Runtime.Loader": "4.0.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading.Tasks.Parallel": "4.0.1-rc2-24027" + "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.0", + "Microsoft.CodeAnalysis.CSharp": "1.3.0", + "Microsoft.Extensions.FileProviders.Composite": "1.0.0", + "System.Runtime.Loader": "4.0.0", + "System.Text.Encoding": "4.0.11" }, "compile": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Razor.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Razor.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {} } }, - "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Razor.Runtime": "1.0.0-rc2-final", - "Microsoft.Extensions.Caching.Memory": "1.0.0-rc2-final", - "Microsoft.Extensions.FileProviders.Physical": "1.0.0-rc2-final", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.ComponentModel.TypeConverter": "4.0.1-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Text.Encoding.Extensions": "4.0.11-rc2-24027" + "Microsoft.AspNetCore.Razor.Runtime": "1.0.0", + "Microsoft.Extensions.Caching.Memory": "1.0.0", + "Microsoft.Extensions.FileProviders.Physical": "1.0.0", + "System.Collections.Concurrent": "4.0.12", + "System.ComponentModel.TypeConverter": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Text.Encoding.Extensions": "4.0.11" }, "compile": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {} } }, - "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Mvc.Razor": "1.0.0-rc2-final", - "Microsoft.Extensions.Caching.Memory": "1.0.0-rc2-final", - "Microsoft.Extensions.FileSystemGlobbing": "1.0.0-rc2-final", - "Microsoft.Extensions.Primitives": "1.0.0-rc2-final" + "Microsoft.AspNetCore.Mvc.Razor": "1.0.0", + "Microsoft.Extensions.Caching.Memory": "1.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "1.0.0", + "Microsoft.Extensions.Primitives": "1.0.0" }, "compile": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} } }, - "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Antiforgery": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Html.Abstractions": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Mvc.Core": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.0-rc2-final", - "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-final", - "Newtonsoft.Json": "8.0.3", - "System.Buffers": "4.0.0-rc2-24027", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027" + "Microsoft.AspNetCore.Antiforgery": "1.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0", + "Microsoft.AspNetCore.Html.Abstractions": "1.0.0", + "Microsoft.AspNetCore.Mvc.Core": "1.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.0", + "Microsoft.Extensions.WebEncoders": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "System.Buffers": "4.0.0", + "System.Runtime.Serialization.Primitives": "4.1.1" }, "compile": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} } }, - "Microsoft.AspNetCore.Razor/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Razor/1.0.0": { "type": "package", "dependencies": { - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Thread": "4.0.0-rc2-24027" + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime.Extensions": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Threading": "4.0.11", + "System.Threading.Thread": "4.0.0" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {} @@ -556,17 +568,18 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {} } }, - "Microsoft.AspNetCore.Razor.Runtime/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Razor.Runtime/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Html.Abstractions": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Razor": "1.0.0-rc2-final", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Text.RegularExpressions": "4.0.12-rc2-24027", - "System.Xml.XDocument": "4.0.11-rc2-24027" + "Microsoft.AspNetCore.Html.Abstractions": "1.0.0", + "Microsoft.AspNetCore.Razor": "1.0.0", + "System.Collections.Concurrent": "4.0.12", + "System.IO.FileSystem": "4.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Xml.XDocument": "4.0.11" }, "compile": { "lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {} @@ -575,17 +588,18 @@ "lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {} } }, - "Microsoft.AspNetCore.Razor.Tools/1.0.0-preview1-final": { + "Microsoft.AspNetCore.Razor.Tools/1.0.0-preview2-final": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Razor.Runtime": "1.0.0-rc2-final", - "Microsoft.DotNet.Cli.Utils": "1.0.0-preview1-002702", - "Microsoft.Extensions.CommandLineUtils": "1.0.0-rc2-final", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final", - "Microsoft.NETCore.App": "1.0.0-rc2-3002702", - "Newtonsoft.Json": "8.0.3", - "System.Diagnostics.Process": "4.1.0-rc2-24027", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027" + "Microsoft.AspNetCore.Razor.Runtime": "1.0.0", + "Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121", + "Microsoft.DotNet.ProjectModel.Loader": "1.0.0-preview2-003121", + "Microsoft.Extensions.CommandLineUtils": "1.0.0", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "Microsoft.NETCore.App": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "System.Diagnostics.Process": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1" }, "compile": { "lib/netcoreapp1.0/dotnet-razor-tooling.dll": {} @@ -594,16 +608,16 @@ "lib/netcoreapp1.0/dotnet-razor-tooling.dll": {} } }, - "Microsoft.AspNetCore.Routing/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Routing/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.ObjectPool": "1.0.0-rc2-final", - "Microsoft.Extensions.Options": "1.0.0-rc2-final", - "System.Collections": "4.0.11-rc2-24027", - "System.Text.RegularExpressions": "4.0.12-rc2-24027" + "Microsoft.AspNetCore.Http.Extensions": "1.0.0", + "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "Microsoft.Extensions.ObjectPool": "1.0.0", + "Microsoft.Extensions.Options": "1.0.0", + "System.Collections": "4.0.11", + "System.Text.RegularExpressions": "4.1.0" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {} @@ -612,13 +626,13 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {} } }, - "Microsoft.AspNetCore.Routing.Abstractions/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "1.0.0-rc2-final", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "Microsoft.AspNetCore.Http.Abstractions": "1.0.0", + "System.Collections.Concurrent": "4.0.12", + "System.Reflection.Extensions": "4.0.1", + "System.Threading.Tasks": "4.0.11" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {} @@ -627,16 +641,16 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {} } }, - "Microsoft.AspNetCore.Server.IISIntegration/1.0.0-rc2-final": { + "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Hosting": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Http": "1.0.0-rc2-final", - "Microsoft.AspNetCore.Http.Extensions": "1.0.0-rc2-final", - "Microsoft.AspNetCore.HttpOverrides": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Options": "1.0.0-rc2-final", - "System.Security.Principal.Windows": "4.0.0-rc2-24027" + "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0", + "Microsoft.AspNetCore.Http": "1.0.0", + "Microsoft.AspNetCore.Http.Extensions": "1.0.0", + "Microsoft.AspNetCore.HttpOverrides": "1.0.0", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "Microsoft.Extensions.Options": "1.0.0", + "System.Security.Principal.Windows": "4.0.0" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll": {} @@ -645,30 +659,30 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll": {} } }, - "Microsoft.AspNetCore.Server.Kestrel/1.0.0-rc2-final": { - "type": "package", - "dependencies": { - "Libuv": "1.9.0-rc2-20901", - "Microsoft.AspNetCore.Hosting": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final", - "System.Buffers": "4.0.0-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.Numerics.Vectors": "4.1.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "System.Threading.Tasks.Extensions": "4.0.0-rc2-24027", - "System.Threading.Thread": "4.0.0-rc2-24027", - "System.Threading.ThreadPool": "4.0.10-rc2-24027", - "System.Threading.Timer": "4.0.1-rc2-24027" + "Microsoft.AspNetCore.Server.Kestrel/1.0.0": { + "type": "package", + "dependencies": { + "Libuv": "1.9.0", + "Microsoft.AspNetCore.Hosting": "1.0.0", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "System.Buffers": "4.0.0", + "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.Net.Primitives": "4.0.11", + "System.Numerics.Vectors": "4.1.1", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10", + "System.Threading.Timer": "4.0.1" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll": {} @@ -677,15 +691,15 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll": {} } }, - "Microsoft.AspNetCore.WebUtilities/1.0.0-rc2-final": { + "Microsoft.AspNetCore.WebUtilities/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-final", - "System.Buffers": "4.0.0-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.Text.Encodings.Web": "4.0.0-rc2-24027" + "Microsoft.Extensions.Primitives": "1.0.0", + "System.Buffers": "4.0.0", + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Text.Encodings.Web": "4.0.0" }, "compile": { "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {} @@ -697,48 +711,48 @@ "Microsoft.CodeAnalysis.Analyzers/1.1.0": { "type": "package" }, - "Microsoft.CodeAnalysis.Common/1.3.0-beta1-20160429-01": { + "Microsoft.CodeAnalysis.Common/1.3.0": { "type": "package", "dependencies": { "Microsoft.CodeAnalysis.Analyzers": "1.1.0", - "System.AppContext": "4.1.0-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Collections.Immutable": "1.2.0-rc2-24027", - "System.Console": "4.0.0-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.FileVersionInfo": "4.0.0-rc2-24027", - "System.Diagnostics.StackTrace": "4.0.1-rc2-24027", - "System.Diagnostics.Tools": "4.0.1-rc2-24027", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Metadata": "1.3.0-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Runtime.Numerics": "4.0.1-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-24027", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Text.Encoding.CodePages": "4.0.1-rc2-24027", - "System.Text.Encoding.Extensions": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "System.Threading.Tasks.Parallel": "4.0.1-rc2-24027", - "System.Threading.Thread": "4.0.0-rc2-24027", - "System.Xml.ReaderWriter": "4.0.11-rc2-24027", - "System.Xml.XDocument": "4.0.11-rc2-24027", - "System.Xml.XPath.XDocument": "4.0.1-rc2-24027", - "System.Xml.XmlDocument": "4.0.1-rc2-24027" + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.Immutable": "1.2.0", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.FileVersionInfo": "4.0.0", + "System.Diagnostics.StackTrace": "4.0.1", + "System.Diagnostics.Tools": "4.0.1", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "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.Reflection": "4.1.0", + "System.Reflection.Metadata": "1.3.0", + "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.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.CodePages": "4.0.1", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Thread": "4.0.0", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11", + "System.Xml.XPath.XDocument": "4.0.1", + "System.Xml.XmlDocument": "4.0.1" }, "compile": { "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {} @@ -747,10 +761,10 @@ "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {} } }, - "Microsoft.CodeAnalysis.CSharp/1.3.0-beta1-20160429-01": { + "Microsoft.CodeAnalysis.CSharp/1.3.0": { "type": "package", "dependencies": { - "Microsoft.CodeAnalysis.Common": "[1.3.0-beta1-20160429-01]" + "Microsoft.CodeAnalysis.Common": "[1.3.0]" }, "compile": { "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {} @@ -759,10 +773,10 @@ "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {} } }, - "Microsoft.CodeAnalysis.VisualBasic/1.3.0-beta1-20160429-01": { + "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { "type": "package", "dependencies": { - "Microsoft.CodeAnalysis.Common": "1.3.0-beta1-20160429-01" + "Microsoft.CodeAnalysis.Common": "1.3.0" }, "compile": { "lib/netstandard1.3/_._": {} @@ -771,25 +785,25 @@ "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": {} } }, - "Microsoft.CSharp/4.0.1-rc2-24027": { + "Microsoft.CSharp/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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": {} @@ -798,34 +812,34 @@ "lib/netstandard1.3/Microsoft.CSharp.dll": {} } }, - "Microsoft.DotNet.Cli.Utils/1.0.0-preview1-002702": { + "Microsoft.DotNet.Cli.Utils/1.0.0-preview2-003121": { "type": "package", "dependencies": { - "Microsoft.DotNet.ProjectModel": "1.0.0-rc2-002702", - "NuGet.Frameworks": "3.5.0-beta-final", - "NuGet.Packaging": "3.5.0-beta-final", - "NuGet.ProjectModel": "3.5.0-beta-final", - "NuGet.Versioning": "3.5.0-beta-final", - "System.Diagnostics.Process": "4.1.0-rc2-24027" + "Microsoft.DotNet.ProjectModel": "1.0.0-rc3-003121", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Packaging": "3.5.0-beta2-1484", + "NuGet.ProjectModel": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484", + "System.Diagnostics.Process": "4.1.0" }, "compile": { - "lib/netstandard1.5/Microsoft.DotNet.Cli.Utils.dll": {} + "lib/netstandard1.6/Microsoft.DotNet.Cli.Utils.dll": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.DotNet.Cli.Utils.dll": {} + "lib/netstandard1.6/Microsoft.DotNet.Cli.Utils.dll": {} } }, - "Microsoft.DotNet.InternalAbstractions/1.0.0-rc2-002702": { + "Microsoft.DotNet.InternalAbstractions/1.0.0": { "type": "package", "dependencies": { - "System.AppContext": "4.1.0-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-24027" + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" }, "compile": { "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {} @@ -834,36 +848,49 @@ "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {} } }, - "Microsoft.DotNet.ProjectModel/1.0.0-rc2-002702": { + "Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "Microsoft.Extensions.DependencyModel": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "NuGet.Packaging": "3.5.0-beta2-1484", + "NuGet.RuntimeModel": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime.Loader": "4.0.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Threading.Thread": "4.0.0", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll": {} + } + }, + "Microsoft.DotNet.ProjectModel.Loader/1.0.0-preview2-003121": { "type": "package", "dependencies": { - "Microsoft.CSharp": "4.0.1-rc2-24027", - "Microsoft.Extensions.DependencyModel": "1.0.0-rc2-002702", - "Newtonsoft.Json": "7.0.1", - "NuGet.Packaging": "3.5.0-beta-final", - "NuGet.RuntimeModel": "3.5.0-beta-final", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.Reflection.Metadata": "1.3.0-rc2-24027", - "System.Runtime.Loader": "4.0.0-rc2-24027", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Threading.Thread": "4.0.0-rc2-24027", - "System.Xml.XDocument": "4.0.11-rc2-24027" + "Microsoft.DotNet.ProjectModel": "1.0.0-rc3-003121", + "System.Runtime.Loader": "4.0.0" }, "compile": { - "lib/netstandard1.5/Microsoft.DotNet.ProjectModel.dll": {} + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.Loader.dll": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.DotNet.ProjectModel.dll": {} + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.Loader.dll": {} } }, - "Microsoft.Extensions.Caching.Abstractions/1.0.0-rc2-final": { + "Microsoft.Extensions.Caching.Abstractions/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-final", - "System.Collections": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "Microsoft.Extensions.Primitives": "1.0.0", + "System.Collections": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" }, "compile": { "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {} @@ -872,14 +899,14 @@ "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {} } }, - "Microsoft.Extensions.Caching.Memory/1.0.0-rc2-final": { + "Microsoft.Extensions.Caching.Memory/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Options": "1.0.0-rc2-final", - "System.Linq": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {} @@ -888,14 +915,14 @@ "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {} } }, - "Microsoft.Extensions.CommandLineUtils/1.0.0-rc2-final": { + "Microsoft.Extensions.CommandLineUtils/1.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Console": "4.0.0-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027" + "System.Collections": "4.0.11", + "System.Console": "4.0.0", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1" }, "compile": { "lib/netstandard1.3/Microsoft.Extensions.CommandLineUtils.dll": {} @@ -904,17 +931,17 @@ "lib/netstandard1.3/Microsoft.Extensions.CommandLineUtils.dll": {} } }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-final": { + "Microsoft.Extensions.Configuration/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-final", - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" }, "compile": { "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {} @@ -923,11 +950,11 @@ "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {} } }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-final": { + "Microsoft.Extensions.Configuration.Abstractions/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-final", - "System.Linq": "4.1.0-rc2-24027" + "Microsoft.Extensions.Primitives": "1.0.0", + "System.Linq": "4.1.0" }, "compile": { "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} @@ -936,15 +963,27 @@ "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} } }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-final": { + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "Microsoft.Extensions.Configuration": "1.0.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.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" }, "compile": { "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {} @@ -953,16 +992,16 @@ "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {} } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-final": { + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": { "type": "package", "dependencies": { - "System.ComponentModel": "4.0.1-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027" + "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" }, "compile": { "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} @@ -971,28 +1010,28 @@ "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} } }, - "Microsoft.Extensions.DependencyModel/1.0.0-rc2-final": { + "Microsoft.Extensions.DependencyModel/1.0.0": { "type": "package", "dependencies": { - "Microsoft.DotNet.InternalAbstractions": "1.0.0-rc2-002702", - "Newtonsoft.Json": "7.0.1", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027" + "Microsoft.DotNet.InternalAbstractions": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Linq": "4.1.0" }, "compile": { - "lib/netstandard1.5/Microsoft.Extensions.DependencyModel.dll": {} + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.Extensions.DependencyModel.dll": {} + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} } }, - "Microsoft.Extensions.FileProviders.Abstractions/1.0.0-rc2-final": { + "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-final", - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027" + "Microsoft.Extensions.Primitives": "1.0.0", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1" }, "compile": { "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} @@ -1001,10 +1040,10 @@ "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} } }, - "Microsoft.Extensions.FileProviders.Composite/1.0.0-rc2-final": { + "Microsoft.Extensions.FileProviders.Composite/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0-rc2-final" + "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0" }, "compile": { "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {} @@ -1013,16 +1052,16 @@ "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {} } }, - "Microsoft.Extensions.FileProviders.Physical/1.0.0-rc2-final": { + "Microsoft.Extensions.FileProviders.Physical/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.FileSystemGlobbing": "1.0.0-rc2-final", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Watcher": "4.0.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "1.0.0", + "System.Collections.Concurrent": "4.0.12", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Watcher": "4.0.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" }, "compile": { "lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {} @@ -1031,14 +1070,14 @@ "lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {} } }, - "Microsoft.Extensions.FileSystemGlobbing/1.0.0-rc2-final": { + "Microsoft.Extensions.FileSystemGlobbing/1.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027" + "System.Collections": "4.0.11", + "System.IO.FileSystem": "4.0.1", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime.Extensions": "4.1.0" }, "compile": { "lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {} @@ -1047,12 +1086,12 @@ "lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {} } }, - "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0-rc2-final": { + "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": { "type": "package", "dependencies": { - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027" + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1" }, "compile": { "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {} @@ -1061,15 +1100,15 @@ "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {} } }, - "Microsoft.Extensions.Localization/1.0.0-rc2-final": { + "Microsoft.Extensions.Localization/1.0.0": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Localization.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Options": "1.0.0-rc2-final", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Resources.Reader": "4.0.0-rc2-24027" + "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0", + "Microsoft.Extensions.Localization.Abstractions": "1.0.0", + "Microsoft.Extensions.Options": "1.0.0", + "System.Collections.Concurrent": "4.0.12", + "System.Resources.Reader": "4.0.0" }, "compile": { "lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {} @@ -1078,12 +1117,12 @@ "lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {} } }, - "Microsoft.Extensions.Localization.Abstractions/1.0.0-rc2-final": { + "Microsoft.Extensions.Localization.Abstractions/1.0.0": { "type": "package", "dependencies": { - "Microsoft.CSharp": "4.0.1-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027" + "Microsoft.CSharp": "4.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1" }, "compile": { "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {} @@ -1092,12 +1131,12 @@ "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {} } }, - "Microsoft.Extensions.Logging/1.0.0-rc2-final": { + "Microsoft.Extensions.Logging/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "System.Threading": "4.0.11" }, "compile": { "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {} @@ -1106,17 +1145,18 @@ "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {} } }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-final": { + "Microsoft.Extensions.Logging.Abstractions/1.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027" + "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" }, "compile": { "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {} @@ -1125,14 +1165,14 @@ "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {} } }, - "Microsoft.Extensions.Logging.Console/1.0.0-rc2-final": { + "Microsoft.Extensions.Logging.Console/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final", - "System.Console": "4.0.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "System.Console": "4.0.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Threading": "4.0.11" }, "compile": { "lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {} @@ -1141,13 +1181,13 @@ "lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {} } }, - "Microsoft.Extensions.ObjectPool/1.0.0-rc2-final": { + "Microsoft.Extensions.ObjectPool/1.0.0": { "type": "package", "dependencies": { - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" }, "compile": { "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {} @@ -1156,20 +1196,20 @@ "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {} } }, - "Microsoft.Extensions.Options/1.0.0-rc2-final": { + "Microsoft.Extensions.Options/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Primitives": "1.0.0-rc2-final", - "System.ComponentModel": "4.0.1-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { "lib/netstandard1.0/Microsoft.Extensions.Options.dll": {} @@ -1178,20 +1218,15 @@ "lib/netstandard1.0/Microsoft.Extensions.Options.dll": {} } }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-final": { + "Microsoft.Extensions.PlatformAbstractions/1.0.0": { "type": "package", "dependencies": { - "System.AppContext": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "System.AppContext": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime.Extensions": "4.1.0" }, "compile": { "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {} @@ -1200,11 +1235,11 @@ "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {} } }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-final": { + "Microsoft.Extensions.Primitives/1.0.0": { "type": "package", "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" }, "compile": { "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {} @@ -1213,12 +1248,12 @@ "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {} } }, - "Microsoft.Extensions.WebEncoders/1.0.0-rc2-final": { + "Microsoft.Extensions.WebEncoders/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Options": "1.0.0-rc2-final", - "System.Text.Encodings.Web": "4.0.0-rc2-24027" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0", + "Microsoft.Extensions.Options": "1.0.0", + "System.Text.Encodings.Web": "4.0.0" }, "compile": { "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {} @@ -1227,17 +1262,17 @@ "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {} } }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-final": { + "Microsoft.Net.Http.Headers/1.0.0": { "type": "package", "dependencies": { - "System.Buffers": "4.0.0-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Contracts": "4.0.1-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027" + "System.Buffers": "4.0.0", + "System.Collections": "4.0.11", + "System.Diagnostics.Contracts": "4.0.1", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11" }, "compile": { "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {} @@ -1246,112 +1281,123 @@ "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {} } }, - "Microsoft.NETCore.App/1.0.0-rc2-3002702": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1-rc2-24027", - "Microsoft.CodeAnalysis.CSharp": "1.3.0-beta1-20160429-01", - "Microsoft.CodeAnalysis.VisualBasic": "1.3.0-beta1-20160429-01", - "Microsoft.NETCore.DotNetHostPolicy": "1.0.1-rc2-002702-00", - "Microsoft.VisualBasic": "10.0.1-rc2-24027", - "NETStandard.Library": "1.5.0-rc2-24027", - "System.Buffers": "4.0.0-rc2-24027", - "System.Collections.Immutable": "1.2.0-rc2-24027", - "System.ComponentModel": "4.0.1-rc2-24027", - "System.ComponentModel.Annotations": "4.1.0-rc2-24027", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-24027", - "System.Diagnostics.Process": "4.1.0-rc2-24027", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.Globalization.Extensions": "4.0.1-rc2-24027", - "System.IO.FileSystem.Watcher": "4.0.0-rc2-24027", - "System.IO.MemoryMappedFiles": "4.0.0-rc2-24027", - "System.IO.UnmanagedMemoryStream": "4.0.1-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.Linq.Parallel": "4.0.1-rc2-24027", - "System.Linq.Queryable": "4.0.1-rc2-24027", - "System.Net.NameResolution": "4.0.0-rc2-24027", - "System.Net.Requests": "4.0.11-rc2-24027", - "System.Net.Security": "4.0.0-rc2-24027", - "System.Net.WebHeaderCollection": "4.0.1-rc2-24027", - "System.Numerics.Vectors": "4.1.1-rc2-24027", - "System.Reflection.DispatchProxy": "4.0.1-rc2-24027", - "System.Reflection.Metadata": "1.3.0-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Resources.Reader": "4.0.0-rc2-24027", - "System.Runtime.Loader": "4.0.0-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc2-24027", - "System.Threading.Tasks.Dataflow": "4.6.0-rc2-24027", - "System.Threading.Tasks.Extensions": "4.0.0-rc2-24027", - "System.Threading.Tasks.Parallel": "4.0.1-rc2-24027", - "System.Threading.Thread": "4.0.0-rc2-24027", - "System.Threading.ThreadPool": "4.0.10-rc2-24027" - } - }, - "Microsoft.NETCore.DotNetHost/1.0.1-rc2-002702-00": { + "Microsoft.NETCore.App/1.0.0": { + "type": "package", + "dependencies": { + "Libuv": "1.9.0", + "Microsoft.CSharp": "4.0.1", + "Microsoft.CodeAnalysis.CSharp": "1.3.0", + "Microsoft.CodeAnalysis.VisualBasic": "1.3.0", + "Microsoft.NETCore.DotNetHostPolicy": "1.0.1", + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2", + "Microsoft.VisualBasic": "10.0.1", + "NETStandard.Library": "1.6.0", + "System.Buffers": "4.0.0", + "System.Collections.Immutable": "1.2.0", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Annotations": "4.1.0", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Process": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO.FileSystem.Watcher": "4.0.0", + "System.IO.MemoryMappedFiles": "4.0.0", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Parallel": "4.0.1", + "System.Linq.Queryable": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Requests": "4.0.11", + "System.Net.Security": "4.0.0", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Numerics.Vectors": "4.1.1", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.Reader": "4.0.0", + "System.Runtime.Loader": "4.0.0", + "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.Threading.Tasks.Dataflow": "4.6.0", + "System.Threading.Tasks.Extensions": "4.0.0", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10" + }, + "compile": { + "lib/netcoreapp1.0/_._": {} + }, + "runtime": { + "lib/netcoreapp1.0/_._": {} + } + }, + "Microsoft.NETCore.DotNetHost/1.0.1": { "type": "package" }, - "Microsoft.NETCore.DotNetHostPolicy/1.0.1-rc2-002702-00": { + "Microsoft.NETCore.DotNetHostPolicy/1.0.1": { "type": "package", "dependencies": { - "Microsoft.NETCore.DotNetHostResolver": "1.0.1-rc2-002702" + "Microsoft.NETCore.DotNetHostResolver": "1.0.1" } }, - "Microsoft.NETCore.DotNetHostResolver/1.0.1-rc2-002702-00": { + "Microsoft.NETCore.DotNetHostResolver/1.0.1": { "type": "package", "dependencies": { - "Microsoft.NETCore.DotNetHost": "1.0.1-rc2-002702" + "Microsoft.NETCore.DotNetHost": "1.0.1" } }, - "Microsoft.NETCore.Platforms/1.0.1-rc2-24027": { + "Microsoft.NETCore.Jit/1.0.2": { + "type": "package" + }, + "Microsoft.NETCore.Platforms/1.0.1": { "type": "package", - "dependencies": { - "Microsoft.NETCore.Targets": "1.0.1-rc2-24027" + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} } }, - "Microsoft.NETCore.Runtime/1.0.2-rc2-24027": { + "Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { "type": "package", "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2-rc2-24027", - "Microsoft.NETCore.Runtime.Native": "1.0.2-rc2-24027" + "Microsoft.NETCore.Jit": "1.0.2", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1" } }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.2-rc2-24027": { + "Microsoft.NETCore.Targets/1.0.1": { "type": "package", - "dependencies": { - "Microsoft.NETCore.Windows.ApiSets": "1.0.1-rc2-24027" + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} } }, - "Microsoft.NETCore.Runtime.Native/1.0.2-rc2-24027": { - "type": "package" - }, - "Microsoft.NETCore.Targets/1.0.1-rc2-24027": { - "type": "package" - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1-rc2-24027": { + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { "type": "package" }, - "Microsoft.VisualBasic/10.0.1-rc2-24027": { + "Microsoft.VisualBasic/10.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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.1/Microsoft.VisualBasic.dll": {} @@ -1360,25 +1406,28 @@ "lib/netstandard1.3/Microsoft.VisualBasic.dll": {} } }, - "Microsoft.Win32.Primitives/4.0.1-rc2-24027": { + "Microsoft.Win32.Primitives/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} } }, - "Microsoft.Win32.Registry/4.0.0-rc2-24027": { + "Microsoft.Win32.Registry/4.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "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.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0" }, "compile": { "ref/netstandard1.3/Microsoft.Win32.Registry.dll": {} @@ -1394,67 +1443,95 @@ } } }, - "NETStandard.Library/1.5.0-rc2-24027": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc2-24027", - "Microsoft.NETCore.Runtime": "1.0.2-rc2-24027", - "Microsoft.Win32.Primitives": "4.0.1-rc2-24027", - "System.AppContext": "4.1.0-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Console": "4.0.0-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tools": "4.0.1-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Globalization.Calendars": "4.0.1-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.Compression": "4.1.0-rc2-24027", - "System.IO.Compression.ZipFile": "4.0.1-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Net.Http": "4.0.1-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.Net.Sockets": "4.1.0-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-24027", - "System.Runtime.Numerics": "4.0.1-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Text.Encoding.Extensions": "4.0.11-rc2-24027", - "System.Text.RegularExpressions": "4.0.12-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "System.Threading.Timer": "4.0.1-rc2-24027", - "System.Xml.ReaderWriter": "4.0.11-rc2-24027", - "System.Xml.XDocument": "4.0.11-rc2-24027" - } - }, - "Newtonsoft.Json/8.0.3": { - "type": "package", - "compile": { - "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} - } - }, - "NuGet.Common/3.5.0-beta-final": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", - "System.Diagnostics.Process": "4.1.0-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Threading.Thread": "4.0.0-rc2-24027" + "NETStandard.Library/1.6.0": { + "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" + } + }, + "Newtonsoft.Json/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "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.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "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.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} + } + }, + "NuGet.Common/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Diagnostics.Process": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Threading.Thread": "4.0.0" }, "compile": { "lib/netstandard1.3/NuGet.Common.dll": {} @@ -1463,12 +1540,12 @@ "lib/netstandard1.3/NuGet.Common.dll": {} } }, - "NuGet.Configuration/3.5.0-beta-final": { + "NuGet.Configuration/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", - "NuGet.Common": "3.5.0-beta-final", - "System.Xml.XDocument": "4.0.11-rc2-24027" + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "System.Xml.XDocument": "4.0.11" }, "compile": { "lib/netstandard1.3/NuGet.Configuration.dll": {} @@ -1477,15 +1554,15 @@ "lib/netstandard1.3/NuGet.Configuration.dll": {} } }, - "NuGet.DependencyResolver.Core/3.5.0-beta-final": { + "NuGet.DependencyResolver.Core/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", - "NuGet.Frameworks": "3.5.0-beta-final", - "NuGet.LibraryModel": "3.5.0-beta-final", - "NuGet.Protocol.Core.v3": "3.5.0-beta-final", - "NuGet.Repositories": "3.5.0-beta-final", - "NuGet.RuntimeModel": "3.5.0-beta-final" + "NETStandard.Library": "1.6.0", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.LibraryModel": "3.5.0-beta2-1484", + "NuGet.Protocol.Core.v3": "3.5.0-beta2-1484", + "NuGet.Repositories": "3.5.0-beta2-1484", + "NuGet.RuntimeModel": "3.5.0-beta2-1484" }, "compile": { "lib/netstandard1.3/NuGet.DependencyResolver.Core.dll": {} @@ -1494,11 +1571,10 @@ "lib/netstandard1.3/NuGet.DependencyResolver.Core.dll": {} } }, - "NuGet.Frameworks/3.5.0-beta-final": { + "NuGet.Frameworks/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", - "NuGet.Versioning": "3.5.0-beta-final" + "NETStandard.Library": "1.6.0" }, "compile": { "lib/netstandard1.3/NuGet.Frameworks.dll": {} @@ -1507,12 +1583,12 @@ "lib/netstandard1.3/NuGet.Frameworks.dll": {} } }, - "NuGet.LibraryModel/3.5.0-beta-final": { + "NuGet.LibraryModel/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", - "NuGet.Frameworks": "3.5.0-beta-final", - "NuGet.Versioning": "3.5.0-beta-final" + "NETStandard.Library": "1.6.0", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484" }, "compile": { "lib/netstandard1.3/NuGet.LibraryModel.dll": {} @@ -1521,13 +1597,13 @@ "lib/netstandard1.3/NuGet.LibraryModel.dll": {} } }, - "NuGet.Packaging/3.5.0-beta-final": { + "NuGet.Packaging/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", - "NuGet.Common": "3.5.0-beta-final", - "NuGet.Packaging.Core": "3.5.0-beta-final", - "System.IO.Compression": "4.1.0-rc2-24027" + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging.Core": "3.5.0-beta2-1484", + "System.IO.Compression": "4.1.0" }, "compile": { "lib/netstandard1.3/NuGet.Packaging.dll": {} @@ -1536,12 +1612,13 @@ "lib/netstandard1.3/NuGet.Packaging.dll": {} } }, - "NuGet.Packaging.Core/3.5.0-beta-final": { + "NuGet.Packaging.Core/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", - "NuGet.Packaging.Core.Types": "3.5.0-beta-final", - "System.Xml.XDocument": "4.0.11-rc2-24027" + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging.Core.Types": "3.5.0-beta2-1484", + "System.Xml.XDocument": "4.0.11" }, "compile": { "lib/netstandard1.3/NuGet.Packaging.Core.dll": {} @@ -1550,11 +1627,12 @@ "lib/netstandard1.3/NuGet.Packaging.Core.dll": {} } }, - "NuGet.Packaging.Core.Types/3.5.0-beta-final": { + "NuGet.Packaging.Core.Types/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", - "NuGet.Frameworks": "3.5.0-beta-final" + "NETStandard.Library": "1.6.0", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484" }, "compile": { "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {} @@ -1563,14 +1641,14 @@ "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {} } }, - "NuGet.ProjectModel/3.5.0-beta-final": { + "NuGet.ProjectModel/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", + "NETStandard.Library": "1.6.0", "Newtonsoft.Json": "6.0.4", - "NuGet.DependencyResolver.Core": "3.5.0-beta-final", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.Threading.Thread": "4.0.0-rc2-24027" + "NuGet.DependencyResolver.Core": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.Threading.Thread": "4.0.0" }, "compile": { "lib/netstandard1.3/NuGet.ProjectModel.dll": {} @@ -1579,14 +1657,14 @@ "lib/netstandard1.3/NuGet.ProjectModel.dll": {} } }, - "NuGet.Protocol.Core.Types/3.5.0-beta-final": { + "NuGet.Protocol.Core.Types/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", - "NuGet.Common": "3.5.0-beta-final", - "NuGet.Configuration": "3.5.0-beta-final", - "NuGet.Packaging": "3.5.0-beta-final", - "System.Net.Http": "4.0.1-rc2-24027" + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Configuration": "3.5.0-beta2-1484", + "NuGet.Packaging": "3.5.0-beta2-1484", + "System.Net.Http": "4.1.0" }, "compile": { "lib/netstandard1.3/NuGet.Protocol.Core.Types.dll": {} @@ -1595,15 +1673,15 @@ "lib/netstandard1.3/NuGet.Protocol.Core.Types.dll": {} } }, - "NuGet.Protocol.Core.v3/3.5.0-beta-final": { + "NuGet.Protocol.Core.v3/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", + "NETStandard.Library": "1.6.0", "Newtonsoft.Json": "6.0.4", - "NuGet.Common": "3.5.0-beta-final", - "NuGet.Packaging": "3.5.0-beta-final", - "NuGet.Protocol.Core.Types": "3.5.0-beta-final", - "System.Dynamic.Runtime": "4.0.11-rc2-24027" + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging": "3.5.0-beta2-1484", + "NuGet.Protocol.Core.Types": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11" }, "compile": { "lib/netstandard1.3/NuGet.Protocol.Core.v3.dll": {} @@ -1612,11 +1690,11 @@ "lib/netstandard1.3/NuGet.Protocol.Core.v3.dll": {} } }, - "NuGet.Repositories/3.5.0-beta-final": { + "NuGet.Repositories/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", - "NuGet.Packaging": "3.5.0-beta-final" + "NETStandard.Library": "1.6.0", + "NuGet.Packaging": "3.5.0-beta2-1484" }, "compile": { "lib/netstandard1.3/NuGet.Repositories.dll": {} @@ -1625,15 +1703,15 @@ "lib/netstandard1.3/NuGet.Repositories.dll": {} } }, - "NuGet.RuntimeModel/3.5.0-beta-final": { + "NuGet.RuntimeModel/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", + "NETStandard.Library": "1.6.0", "Newtonsoft.Json": "6.0.4", - "NuGet.Frameworks": "3.5.0-beta-final", - "NuGet.Versioning": "3.5.0-beta-final", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027" + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.ObjectModel": "4.0.12" }, "compile": { "lib/netstandard1.3/NuGet.RuntimeModel.dll": {} @@ -1642,10 +1720,10 @@ "lib/netstandard1.3/NuGet.RuntimeModel.dll": {} } }, - "NuGet.Versioning/3.5.0-beta-final": { + "NuGet.Versioning/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027" + "NETStandard.Library": "1.6.0" }, "compile": { "lib/netstandard1.0/NuGet.Versioning.dll": {} @@ -1654,38 +1732,91 @@ "lib/netstandard1.0/NuGet.Versioning.dll": {} } }, - "runtime.native.System/4.0.0-rc2-24027": { - "type": "package" + "runtime.native.System/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } }, - "runtime.native.System.IO.Compression/4.1.0-rc2-24027": { - "type": "package" + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } }, - "runtime.native.System.Net.Http/4.0.1-rc2-24027": { - "type": "package" + "runtime.native.System.Net.Http/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } }, - "runtime.native.System.Net.Security/4.0.1-rc2-24027": { - "type": "package" + "runtime.native.System.Net.Security/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } }, - "runtime.native.System.Security.Cryptography/4.0.0-rc2-24027": { - "type": "package" + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } }, - "System.AppContext/4.1.0-rc2-24027": { + "System.AppContext/4.1.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "System.Runtime": "4.1.0" }, "compile": { - "ref/netstandard1.5/System.AppContext.dll": {} + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} } }, - "System.Buffers/4.0.0-rc2-24027": { + "System.Buffers/4.0.0": { "type": "package", "dependencies": { - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { "lib/netstandard1.1/System.Buffers.dll": {} @@ -1694,31 +1825,30 @@ "lib/netstandard1.1/System.Buffers.dll": {} } }, - "System.Collections/4.0.11-rc2-24027": { + "System.Collections/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Collections.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Collections.Concurrent/4.0.12-rc2-24027": { + "System.Collections.Concurrent/4.0.12": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Collections.Concurrent.dll": {} @@ -1727,17 +1857,17 @@ "lib/netstandard1.3/System.Collections.Concurrent.dll": {} } }, - "System.Collections.Immutable/1.2.0-rc2-24027": { + "System.Collections.Immutable/1.2.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { "lib/netstandard1.0/System.Collections.Immutable.dll": {} @@ -1746,33 +1876,33 @@ "lib/netstandard1.0/System.Collections.Immutable.dll": {} } }, - "System.Collections.NonGeneric/4.0.1-rc2-24027": { + "System.Collections.NonGeneric/4.0.1": { "type": "package", "dependencies": { - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "System.Diagnostics.Debug": "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" }, "compile": { - "ref/netstandard1.3/_._": {} + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} } }, - "System.Collections.Specialized/4.0.1-rc2-24027": { + "System.Collections.Specialized/4.0.1": { "type": "package", "dependencies": { - "System.Collections.NonGeneric": "4.0.1-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Globalization.Extensions": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "System.Collections.NonGeneric": "4.0.1", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "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/_._": {} @@ -1781,10 +1911,10 @@ "lib/netstandard1.3/System.Collections.Specialized.dll": {} } }, - "System.ComponentModel/4.0.1-rc2-24027": { + "System.ComponentModel/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/System.ComponentModel.dll": {} @@ -1793,20 +1923,20 @@ "lib/netstandard1.3/System.ComponentModel.dll": {} } }, - "System.ComponentModel.Annotations/4.1.0-rc2-24027": { + "System.ComponentModel.Annotations/4.1.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.ComponentModel": "4.0.1-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Text.RegularExpressions": "4.0.12-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.4/System.ComponentModel.Annotations.dll": {} @@ -1815,11 +1945,12 @@ "lib/netstandard1.4/System.ComponentModel.Annotations.dll": {} } }, - "System.ComponentModel.Primitives/4.0.1-rc2-24027": { + "System.ComponentModel.Primitives/4.1.0": { "type": "package", "dependencies": { - "System.ComponentModel": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "System.ComponentModel": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} @@ -1828,43 +1959,49 @@ "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} } }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-24027": { + "System.ComponentModel.TypeConverter/4.1.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.ComponentModel": "4.0.1-rc2-24027", - "System.ComponentModel.Primitives": "4.0.1-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "System.Collections": "4.0.11", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Primitives": "4.1.0", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "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.Threading": "4.0.11" }, "compile": { - "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll": {} + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} }, "runtime": { - "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll": {} + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} } }, - "System.Console/4.0.0-rc2-24027": { + "System.Console/4.0.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Console.dll": {} } }, - "System.Diagnostics.Contracts/4.0.1-rc2-24027": { + "System.Diagnostics.Contracts/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/System.Diagnostics.Contracts.dll": {} @@ -1873,26 +2010,25 @@ "lib/netstandard1.0/System.Diagnostics.Contracts.dll": {} } }, - "System.Diagnostics.Debug/4.0.11-rc2-24027": { + "System.Diagnostics.Debug/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Diagnostics.DiagnosticSource/4.0.0-rc2-24027": { + "System.Diagnostics.DiagnosticSource/4.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} @@ -1901,17 +2037,18 @@ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} } }, - "System.Diagnostics.FileVersionInfo/4.0.0-rc2-24027": { + "System.Diagnostics.FileVersionInfo/4.0.0": { "type": "package", "dependencies": { - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Reflection.Metadata": "1.3.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" }, "compile": { "ref/netstandard1.3/_._": {} @@ -1921,34 +2058,36 @@ "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": { + "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.Diagnostics.Process/4.1.0-rc2-24027": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1-rc2-24027", - "Microsoft.Win32.Registry": "4.0.0-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Text.Encoding.Extensions": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "System.Threading.Thread": "4.0.0-rc2-24027", - "System.Threading.ThreadPool": "4.0.10-rc2-24027" + "System.Diagnostics.Process/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "Microsoft.Win32.Registry": "4.0.0", + "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.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0" }, "compile": { "ref/netstandard1.4/System.Diagnostics.Process.dll": {} @@ -1958,21 +2097,25 @@ "assetType": "runtime", "rid": "linux" }, - "runtimes/osx.10.10/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { "assetType": "runtime", - "rid": "osx.10.10" + "rid": "osx" }, - "runtimes/win7/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.Diagnostics.StackTrace/4.0.1-rc2-24027": { + "System.Diagnostics.StackTrace/4.0.1": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "System.Collections.Immutable": "1.2.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} @@ -1981,48 +2124,46 @@ "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} } }, - "System.Diagnostics.Tools/4.0.1-rc2-24027": { + "System.Diagnostics.Tools/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Diagnostics.Tracing/4.1.0-rc2-24027": { + "System.Diagnostics.Tracing/4.1.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/_._": {} } }, - "System.Dynamic.Runtime/4.0.11-rc2-24027": { + "System.Dynamic.Runtime/4.0.11": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Emit": "4.0.1-rc2-24027", - "System.Reflection.Emit.ILGeneration": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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": {} @@ -2031,36 +2172,38 @@ "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} } }, - "System.Globalization/4.0.11-rc2-24027": { + "System.Globalization/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Globalization.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Globalization.Calendars/4.0.1-rc2-24027": { + "System.Globalization.Calendars/4.0.1": { "type": "package", "dependencies": { - "System.Globalization": "4.0.11-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Globalization.Calendars.dll": {} } }, - "System.Globalization.Extensions/4.0.1-rc2-24027": { + "System.Globalization.Extensions/4.0.1": { "type": "package", "dependencies": { - "System.Globalization": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Globalization.Extensions.dll": {} @@ -2070,71 +2213,69 @@ "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.IO/4.1.0-rc2-24027": { + "System.IO/4.1.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.5/System.IO.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.IO.Compression/4.1.0-rc2-24027": { + "System.IO.Compression/4.1.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "runtime.native.System.IO.Compression": "4.1.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.IO.Compression.dll": {} }, - "runtime": { - "lib/portable-net45+win8+wpa81/_._": {} - }, "runtimeTargets": { "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.3/System.IO.Compression.dll": { + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.IO.Compression.ZipFile/4.0.1-rc2-24027": { + "System.IO.Compression.ZipFile/4.0.1": { "type": "package", "dependencies": { - "System.Buffers": "4.0.0-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.Compression": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} @@ -2143,24 +2284,26 @@ "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} } }, - "System.IO.FileSystem/4.0.1-rc2-24027": { + "System.IO.FileSystem/4.0.1": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.IO.FileSystem.dll": {} } }, - "System.IO.FileSystem.Primitives/4.0.1-rc2-24027": { + "System.IO.FileSystem.Primitives/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} @@ -2169,24 +2312,25 @@ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} } }, - "System.IO.FileSystem.Watcher/4.0.0-rc2-24027": { + "System.IO.FileSystem.Watcher/4.0.0": { "type": "package", "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Overlapped": "4.0.1-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "System.Threading.Thread": "4.0.0-rc2-24027", - "runtime.native.System": "4.0.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "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.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "runtime.native.System": "4.0.0" }, "compile": { "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {} @@ -2200,26 +2344,28 @@ "assetType": "runtime", "rid": "osx" }, - "runtimes/win7/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": { + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.IO.MemoryMappedFiles/4.0.0-rc2-24027": { + "System.IO.MemoryMappedFiles/4.0.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.IO.UnmanagedMemoryStream": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.IO.UnmanagedMemoryStream": "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.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" }, "compile": { "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {} @@ -2229,22 +2375,22 @@ "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": { + "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.IO.UnmanagedMemoryStream/4.0.1-rc2-24027": { + "System.IO.UnmanagedMemoryStream/4.0.1": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" }, "compile": { "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} @@ -2253,63 +2399,63 @@ "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} } }, - "System.Linq/4.1.0-rc2-24027": { + "System.Linq/4.1.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027" + "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" }, "compile": { - "ref/netstandard1.5/System.Linq.dll": {} + "ref/netstandard1.6/System.Linq.dll": {} }, "runtime": { - "lib/netstandard1.5/System.Linq.dll": {} + "lib/netstandard1.6/System.Linq.dll": {} } }, - "System.Linq.Expressions/4.0.11-rc2-24027": { + "System.Linq.Expressions/4.1.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Emit": "4.0.1-rc2-24027", - "System.Reflection.Emit.ILGeneration": "4.0.1-rc2-24027", - "System.Reflection.Emit.Lightweight": "4.0.1-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { - "ref/netstandard1.3/System.Linq.Expressions.dll": {} + "ref/netstandard1.6/System.Linq.Expressions.dll": {} }, "runtime": { - "lib/netstandard1.3/System.Linq.Expressions.dll": {} + "lib/netstandard1.6/System.Linq.Expressions.dll": {} } }, - "System.Linq.Parallel/4.0.1-rc2-24027": { + "System.Linq.Parallel/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "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.Threading.Tasks": "4.0.11" }, "compile": { "ref/netstandard1.1/System.Linq.Parallel.dll": {} @@ -2318,17 +2464,17 @@ "lib/netstandard1.3/System.Linq.Parallel.dll": {} } }, - "System.Linq.Queryable/4.0.1-rc2-24027": { + "System.Linq.Queryable/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.0/System.Linq.Queryable.dll": {} @@ -2337,62 +2483,67 @@ "lib/netstandard1.3/System.Linq.Queryable.dll": {} } }, - "System.Net.Http/4.0.1-rc2-24027": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-24027", - "System.Security.Cryptography.OpenSsl": "4.0.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "runtime.native.System": "4.0.0-rc2-24027", - "runtime.native.System.Net.Http": "4.0.1-rc2-24027", - "runtime.native.System.Security.Cryptography": "4.0.0-rc2-24027" - }, - "compile": { - "ref/netstandard1.1/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netstandard1.4/System.Net.Http.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" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} }, "runtimeTargets": { - "runtimes/win7/lib/netstandard1.3/System.Net.Http.dll": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" } } }, - "System.Net.NameResolution/4.0.0-rc2-24027": { + "System.Net.NameResolution/4.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Principal.Windows": "4.0.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "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.Principal.Windows": "4.0.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" }, "compile": { "ref/netstandard1.3/System.Net.NameResolution.dll": {} @@ -2402,121 +2553,122 @@ "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.3/System.Net.NameResolution.dll": { + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.Net.Primitives/4.0.11-rc2-24027": { + "System.Net.Primitives/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" }, "compile": { "ref/netstandard1.3/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Net.Requests/4.0.11-rc2-24027": { + "System.Net.Requests/4.0.11": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Net.Http": "4.0.1-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.Net.WebHeaderCollection": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" }, "compile": { "ref/netstandard1.3/System.Net.Requests.dll": {} }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} - }, "runtimeTargets": { "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": { "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.3/System.Net.Requests.dll": { + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.Net.Security/4.0.0-rc2-24027": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Globalization.Extensions": "4.0.1-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Claims": "4.0.1-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-24027", - "System.Security.Cryptography.OpenSsl": "4.0.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc2-24027", - "System.Security.Principal": "4.0.1-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "System.Threading.ThreadPool": "4.0.10-rc2-24027", - "runtime.native.System.Net.Security": "4.0.1-rc2-24027" + "System.Net.Security/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "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.Claims": "4.0.1", + "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.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Security": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" }, "compile": { "ref/netstandard1.3/System.Net.Security.dll": {} }, "runtimeTargets": { - "runtimes/unix/lib/netstandard1.4/System.Net.Security.dll": { + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": { "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.3/System.Net.Security.dll": { + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.Net.Sockets/4.1.0-rc2-24027": { + "System.Net.Sockets/4.1.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Net.Sockets.dll": {} } }, - "System.Net.WebHeaderCollection/4.0.1-rc2-24027": { + "System.Net.WebHeaderCollection/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Specialized": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027" + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} @@ -2525,13 +2677,13 @@ "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} } }, - "System.Net.WebSockets/4.0.0-rc2-24027": { + "System.Net.WebSockets/4.0.0": { "type": "package", "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "Microsoft.Win32.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" }, "compile": { "ref/netstandard1.3/System.Net.WebSockets.dll": {} @@ -2540,29 +2692,29 @@ "lib/netstandard1.3/System.Net.WebSockets.dll": {} } }, - "System.Numerics.Vectors/4.1.1-rc2-24027": { + "System.Numerics.Vectors/4.1.1": { "type": "package", "dependencies": { - "System.Globalization": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027" + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" }, "compile": { - "ref/netstandard1.1/System.Numerics.Vectors.dll": {} + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} }, "runtime": { - "lib/netstandard1.3/System.Numerics.Vectors.dll": {} + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} } }, - "System.ObjectModel/4.0.12-rc2-24027": { + "System.ObjectModel/4.0.12": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.ObjectModel.dll": {} @@ -2571,33 +2723,32 @@ "lib/netstandard1.3/System.ObjectModel.dll": {} } }, - "System.Reflection/4.1.0-rc2-24027": { + "System.Reflection/4.1.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.5/System.Reflection.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Reflection.DispatchProxy/4.0.1-rc2-24027": { + "System.Reflection.DispatchProxy/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Emit": "4.0.1-rc2-24027", - "System.Reflection.Emit.ILGeneration": "4.0.1-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "System.Collections": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" }, "compile": { "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} @@ -2606,14 +2757,14 @@ "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} } }, - "System.Reflection.Emit/4.0.1-rc2-24027": { + "System.Reflection.Emit/4.0.1": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Emit.ILGeneration": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.1/_._": {} @@ -2622,12 +2773,12 @@ "lib/netstandard1.3/System.Reflection.Emit.dll": {} } }, - "System.Reflection.Emit.ILGeneration/4.0.1-rc2-24027": { + "System.Reflection.Emit.ILGeneration/4.0.1": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/_._": {} @@ -2636,13 +2787,13 @@ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} } }, - "System.Reflection.Emit.Lightweight/4.0.1-rc2-24027": { + "System.Reflection.Emit.Lightweight/4.0.1": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Emit.ILGeneration": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/_._": {} @@ -2651,37 +2802,36 @@ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} } }, - "System.Reflection.Extensions/4.0.1-rc2-24027": { + "System.Reflection.Extensions/4.0.1": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Reflection.Metadata/1.3.0-rc2-24027": { + "System.Reflection.Metadata/1.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Immutable": "1.2.0-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Text.Encoding.Extensions": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "System.Collections": "4.0.11", + "System.Collections.Immutable": "1.2.0", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "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.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11" }, "compile": { "lib/netstandard1.1/System.Reflection.Metadata.dll": {} @@ -2690,23 +2840,22 @@ "lib/netstandard1.1/System.Reflection.Metadata.dll": {} } }, - "System.Reflection.Primitives/4.0.1-rc2-24027": { + "System.Reflection.Primitives/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Reflection.TypeExtensions/4.1.0-rc2-24027": { + "System.Reflection.TypeExtensions/4.1.0": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} @@ -2715,14 +2864,14 @@ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} } }, - "System.Resources.Reader/4.0.0-rc2-24027": { + "System.Resources.Reader/4.0.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" }, "compile": { "lib/netstandard1.0/System.Resources.Reader.dll": {} @@ -2731,94 +2880,96 @@ "lib/netstandard1.0/System.Resources.Reader.dll": {} } }, - "System.Resources.ResourceManager/4.0.1-rc2-24027": { + "System.Resources.ResourceManager/4.0.1": { "type": "package", "dependencies": { - "System.Globalization": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Runtime/4.1.0-rc2-24027": { + "System.Runtime/4.1.0": { "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, "compile": { "ref/netstandard1.5/System.Runtime.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp80+wpa81/_._": {} } }, - "System.Runtime.Extensions/4.1.0-rc2-24027": { + "System.Runtime.Extensions/4.1.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.5/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Runtime.Handles/4.0.1-rc2-24027": { + "System.Runtime.Handles/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Runtime.Handles.dll": {} } }, - "System.Runtime.InteropServices/4.1.0-rc2-24027": { + "System.Runtime.InteropServices/4.1.0": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices.PInvoke": "4.0.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.5/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/_._": {} } }, - "System.Runtime.InteropServices.PInvoke/4.0.0-rc2-24027": { + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.InteropServices.PInvoke.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.InteropServices.PInvoke.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-24027": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } } }, - "System.Runtime.Loader/4.0.0-rc2-24027": { + "System.Runtime.Loader/4.0.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.5/System.Runtime.Loader.dll": {} @@ -2827,13 +2978,13 @@ "lib/netstandard1.5/System.Runtime.Loader.dll": {} } }, - "System.Runtime.Numerics/4.0.1-rc2-24027": { + "System.Runtime.Numerics/4.0.1": { "type": "package", "dependencies": { - "System.Globalization": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027" + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" }, "compile": { "ref/netstandard1.1/System.Runtime.Numerics.dll": {} @@ -2842,11 +2993,11 @@ "lib/netstandard1.3/System.Runtime.Numerics.dll": {} } }, - "System.Runtime.Serialization.Primitives/4.1.1-rc2-24027": { + "System.Runtime.Serialization.Primitives/4.1.1": { "type": "package", "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} @@ -2855,16 +3006,16 @@ "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} } }, - "System.Security.Claims/4.0.1-rc2-24027": { + "System.Security.Claims/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Security.Principal": "4.0.1-rc2-24027" + "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.Security.Principal": "4.0.1" }, "compile": { "ref/netstandard1.3/System.Security.Claims.dll": {} @@ -2873,74 +3024,82 @@ "lib/netstandard1.3/System.Security.Claims.dll": {} } }, - "System.Security.Cryptography.Algorithms/4.1.0-rc2-24027": { + "System.Security.Cryptography.Algorithms/4.2.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027" + "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" }, "compile": { - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} }, "runtimeTargets": { - "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.Algorithms.dll": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.4/System.Security.Cryptography.Algorithms.dll": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.Security.Cryptography.Cng/4.1.0-rc2-24027": { + "System.Security.Cryptography.Cng/4.2.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027" + "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" }, "compile": { - "ref/netstandard1.4/_._": {} + "ref/netstandard1.6/_._": {} }, "runtimeTargets": { - "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { "assetType": "runtime", "rid": "unix" }, - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { "assetType": "runtime", "rid": "win" } } }, - "System.Security.Cryptography.Csp/4.0.0-rc2-24027": { + "System.Security.Cryptography.Csp/4.0.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/_._": {} @@ -2956,21 +3115,21 @@ } } }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-24027": { + "System.Security.Cryptography.Encoding/4.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "runtime.native.System.Security.Cryptography": "4.0.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} @@ -2980,53 +3139,52 @@ "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.Security.Cryptography.OpenSsl/4.0.0-rc2-24027": { + "System.Security.Cryptography.OpenSsl/4.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Runtime.Numerics": "4.0.1-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "runtime.native.System.Security.Cryptography": "4.0.0-rc2-24027" + "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" }, "compile": { - "ref/netstandard1.4/_._": {} + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} }, "runtimeTargets": { - "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.OpenSsl.dll": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { "assetType": "runtime", "rid": "unix" - }, - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.OpenSsl.dll": { - "assetType": "runtime", - "rid": "win" } } }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-24027": { + "System.Security.Cryptography.Primitives/4.0.0": { "type": "package", "dependencies": { - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} @@ -3035,53 +3193,53 @@ "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} } }, - "System.Security.Cryptography.X509Certificates/4.1.0-rc2-24027": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Globalization.Calendars": "4.0.1-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.IO.FileSystem.Watcher": "4.0.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Runtime.Numerics": "4.0.1-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Security.Cryptography.Cng": "4.1.0-rc2-24027", - "System.Security.Cryptography.Csp": "4.0.0-rc2-24027", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-24027", - "System.Security.Cryptography.OpenSsl": "4.0.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "runtime.native.System": "4.0.0-rc2-24027", - "runtime.native.System.Net.Http": "4.0.1-rc2-24027", - "runtime.native.System.Security.Cryptography": "4.0.0-rc2-24027" + "System.Security.Cryptography.X509Certificates/4.1.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" }, "compile": { "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} }, "runtimeTargets": { - "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.Security.Principal/4.0.1-rc2-24027": { + "System.Security.Principal/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/System.Security.Principal.dll": {} @@ -3090,22 +3248,23 @@ "lib/netstandard1.0/System.Security.Principal.dll": {} } }, - "System.Security.Principal.Windows/4.0.0-rc2-24027": { + "System.Security.Principal.Windows/4.0.0": { "type": "package", "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Claims": "4.0.1-rc2-24027", - "System.Security.Principal": "4.0.1-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "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.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Claims": "4.0.1", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" }, "compile": { "ref/netstandard1.3/System.Security.Principal.Windows.dll": {} @@ -3121,32 +3280,32 @@ } } }, - "System.Text.Encoding/4.0.11-rc2-24027": { + "System.Text.Encoding/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Text.Encoding.CodePages/4.0.1-rc2-24027": { + "System.Text.Encoding.CodePages/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "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.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" }, "compile": { "ref/netstandard1.3/_._": {} @@ -3162,29 +3321,28 @@ } } }, - "System.Text.Encoding.Extensions/4.0.11-rc2-24027": { + "System.Text.Encoding.Extensions/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11" }, "compile": { "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Text.Encodings.Web/4.0.0-rc2-24027": { + "System.Text.Encodings.Web/4.0.0": { "type": "package", "dependencies": { - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "System.Diagnostics.Debug": "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.Threading": "4.0.11" }, "compile": { "lib/netstandard1.0/System.Text.Encodings.Web.dll": {} @@ -3193,28 +3351,28 @@ "lib/netstandard1.0/System.Text.Encodings.Web.dll": {} } }, - "System.Text.RegularExpressions/4.0.12-rc2-24027": { + "System.Text.RegularExpressions/4.1.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { - "ref/netstandard1.3/System.Text.RegularExpressions.dll": {} + "ref/netstandard1.6/System.Text.RegularExpressions.dll": {} }, "runtime": { - "lib/netstandard1.3/System.Text.RegularExpressions.dll": {} + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} } }, - "System.Threading/4.0.11-rc2-24027": { + "System.Threading/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" }, "compile": { "ref/netstandard1.3/System.Threading.dll": {} @@ -3223,12 +3381,13 @@ "lib/netstandard1.3/System.Threading.dll": {} } }, - "System.Threading.Overlapped/4.0.1-rc2-24027": { + "System.Threading.Overlapped/4.0.1": { "type": "package", "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" }, "compile": { "ref/netstandard1.3/_._": {} @@ -3244,32 +3403,31 @@ } } }, - "System.Threading.Tasks/4.0.11-rc2-24027": { + "System.Threading.Tasks/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Threading.Tasks.Dataflow/4.6.0-rc2-24027": { + "System.Threading.Tasks.Dataflow/4.6.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Dynamic.Runtime": "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.Threading.Tasks": "4.0.11" }, "compile": { "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} @@ -3278,12 +3436,12 @@ "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} } }, - "System.Threading.Tasks.Extensions/4.0.0-rc2-24027": { + "System.Threading.Tasks.Extensions/4.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "System.Collections": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" }, "compile": { "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} @@ -3292,17 +3450,17 @@ "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} } }, - "System.Threading.Tasks.Parallel/4.0.1-rc2-24027": { + "System.Threading.Tasks.Parallel/4.0.1": { "type": "package", "dependencies": { - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "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" }, "compile": { "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} @@ -3311,10 +3469,10 @@ "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} } }, - "System.Threading.Thread/4.0.0-rc2-24027": { + "System.Threading.Thread/4.0.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Threading.Thread.dll": {} @@ -3323,11 +3481,11 @@ "lib/netstandard1.3/System.Threading.Thread.dll": {} } }, - "System.Threading.ThreadPool/4.0.10-rc2-24027": { + "System.Threading.ThreadPool/4.0.10": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027" + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" }, "compile": { "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} @@ -3336,33 +3494,35 @@ "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} } }, - "System.Threading.Timer/4.0.1-rc2-24027": { + "System.Threading.Timer/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.2/System.Threading.Timer.dll": {} } }, - "System.Xml.ReaderWriter/4.0.11-rc2-24027": { + "System.Xml.ReaderWriter/4.0.11": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Text.Encoding.Extensions": "4.0.11-rc2-24027", - "System.Text.RegularExpressions": "4.0.12-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "System.Threading.Tasks.Extensions": "4.0.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} @@ -3371,21 +3531,21 @@ "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} } }, - "System.Xml.XDocument/4.0.11-rc2-24027": { + "System.Xml.XDocument/4.0.11": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tools": "4.0.1-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Xml.ReaderWriter": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Xml.XDocument.dll": {} @@ -3394,19 +3554,19 @@ "lib/netstandard1.3/System.Xml.XDocument.dll": {} } }, - "System.Xml.XmlDocument/4.0.1-rc2-24027": { + "System.Xml.XmlDocument/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Xml.ReaderWriter": "4.0.11-rc2-24027" + "System.Collections": "4.0.11", + "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.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" }, "compile": { "ref/netstandard1.3/_._": {} @@ -3415,18 +3575,18 @@ "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} } }, - "System.Xml.XPath/4.0.1-rc2-24027": { + "System.Xml.XPath/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Xml.ReaderWriter": "4.0.11-rc2-24027" + "System.Collections": "4.0.11", + "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.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" }, "compile": { "ref/netstandard1.3/_._": {} @@ -3435,18 +3595,18 @@ "lib/netstandard1.3/System.Xml.XPath.dll": {} } }, - "System.Xml.XPath.XDocument/4.0.1-rc2-24027": { + "System.Xml.XPath.XDocument/4.0.1": { "type": "package", "dependencies": { - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Xml.ReaderWriter": "4.0.11-rc2-24027", - "System.Xml.XDocument": "4.0.11-rc2-24027", - "System.Xml.XPath": "4.0.1-rc2-24027" + "System.Diagnostics.Debug": "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.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11", + "System.Xml.XPath": "4.0.1" }, "compile": { "ref/netstandard1.3/_._": {} @@ -3455,13 +3615,13 @@ "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {} } }, - "RecurrentTasks/2.1.0": { + "RecurrentTasks/2.3.0": { "type": "project", "framework": ".NETStandard,Version=v1.3", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "System.Threading": "4.0.11" }, "compile": { "netstandard1.3/RecurrentTasks.dll": {} @@ -3473,26 +3633,30 @@ } }, "libraries": { - "Libuv/1.9.0-rc2-20901": { - "sha512": "NW+YOuRDrlmGM6yjSRjJUqlHukDEqUTuZKVJvEzWV4LH8wEKqrmVcxTqAab87+UiQ3KOLsyaBJ3ZNdmzxFUTig==", + "Libuv/1.9.0": { + "sha512": "9Q7AaqtQhS8JDSIvRBt6ODSLWDBI4c8YxNxyCQemWebBFUtBbc6M5Vi5Gz1ZyIUlTW3rZK9bIr5gnVyv0z7a2Q==", "type": "package", + "path": "Libuv/1.9.0", "files": [ - "Libuv.1.9.0-rc2-20901.nupkg.sha512", + "Libuv.1.9.0.nupkg.sha512", "Libuv.nuspec", + "License.txt", "runtimes/debian-x64/native/libuv.so", + "runtimes/fedora-x64/native/libuv.so", + "runtimes/opensuse-x64/native/libuv.so", "runtimes/osx/native/libuv.dylib", "runtimes/rhel-x64/native/libuv.so", "runtimes/win7-arm/native/libuv.dll", "runtimes/win7-x64/native/libuv.dll", - "runtimes/win7-x86/native/libuv.dll", - "thirdpartynotices.txt" + "runtimes/win7-x86/native/libuv.dll" ] }, - "Microsoft.AspNetCore.Antiforgery/1.0.0-rc2-final": { - "sha512": "dvmfV1ExR2oqTt9rxhaRrutFBfta7fXY4o5nA8OU0f8CYzdZ7vyw7hyebAEE1p9SFXH5Km8/WFWkZ8uu3GNGPg==", + "Microsoft.AspNetCore.Antiforgery/1.0.0": { + "sha512": "oJnrSvL6S7jM2eD/TR/Kyp/7O6pKvN+8FcnYvUaxaHbKlISwl98o44uidzePBjGxTf4fh9NFEx/q3OuuxAvBzw==", "type": "package", + "path": "Microsoft.AspNetCore.Antiforgery/1.0.0", "files": [ - "Microsoft.AspNetCore.Antiforgery.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Antiforgery.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Antiforgery.nuspec", "lib/net451/Microsoft.AspNetCore.Antiforgery.dll", "lib/net451/Microsoft.AspNetCore.Antiforgery.xml", @@ -3500,11 +3664,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.xml" ] }, - "Microsoft.AspNetCore.Authorization/1.0.0-rc2-final": { - "sha512": "ZeV8YInPAMAM0IbbZUnjaNOSYWZVu8EuHd+PEUQENaMIJ6hLqPm06M4AM3CS2b07FGjPkV5WqjV5PckZDI9mkw==", + "Microsoft.AspNetCore.Authorization/1.0.0": { + "sha512": "iVFQ5xHSyxmfWYdl5B/xIFzXgm4SRgYQUKlLFVNGfEhbbjw0Ur2pfVrEvpENrhHFOQ2XAZcuFlGxSIzZwsVrMg==", "type": "package", + "path": "Microsoft.AspNetCore.Authorization/1.0.0", "files": [ - "Microsoft.AspNetCore.Authorization.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Authorization.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Authorization.nuspec", "lib/net451/Microsoft.AspNetCore.Authorization.dll", "lib/net451/Microsoft.AspNetCore.Authorization.xml", @@ -3512,11 +3677,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.xml" ] }, - "Microsoft.AspNetCore.Cors/1.0.0-rc2-final": { - "sha512": "9z1b66i3QNBVZSb5/f6QuRfiNEZuxcB3tub/ArFWugovnYu3ejgTZEdAQtnKSfnnlw6sIeyvHA1BCib+eUmH2g==", + "Microsoft.AspNetCore.Cors/1.0.0": { + "sha512": "fC8lWOU3+ltkbgQyD1P7eRQ66fGfZkPNU2UkwOI8tyF5FUsd8nRTfzvsO4mSyQfgmgfk2Hc8TGzx/okevZwXkg==", "type": "package", + "path": "Microsoft.AspNetCore.Cors/1.0.0", "files": [ - "Microsoft.AspNetCore.Cors.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Cors.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Cors.nuspec", "lib/net451/Microsoft.AspNetCore.Cors.dll", "lib/net451/Microsoft.AspNetCore.Cors.xml", @@ -3524,11 +3690,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Cors.xml" ] }, - "Microsoft.AspNetCore.Cryptography.Internal/1.0.0-rc2-final": { - "sha512": "pkxGrn5RCFGmJdAtydcjXong9KiqmOa7KDSX7yfVsqQ5UEdvnSPbhHSQvBMJrUtRWwrl6fuQ6caQzfGcBR9aFw==", + "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": { + "sha512": "0btvxwOqYNpKTUQrD7LA3p6Wi0vrhfWGBVqIKPS1KtEdkCv3QoVgFO4eJYuClGDS9NXhqk7TWh46/8x8wtZHaw==", "type": "package", + "path": "Microsoft.AspNetCore.Cryptography.Internal/1.0.0", "files": [ - "Microsoft.AspNetCore.Cryptography.Internal.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Cryptography.Internal.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Cryptography.Internal.nuspec", "lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll", "lib/net451/Microsoft.AspNetCore.Cryptography.Internal.xml", @@ -3536,11 +3703,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.xml" ] }, - "Microsoft.AspNetCore.DataProtection/1.0.0-rc2-final": { - "sha512": "OfC2eQP22/etD/sFqrZ8FPxbmMTeERtWNxVdNT3LeQwuOvSyd642ckDagcyX20HglAwYpYbZ4MuQFsSl1pzuJA==", + "Microsoft.AspNetCore.DataProtection/1.0.0": { + "sha512": "gt4URT+8ljPk0ePspLqOGPJBm+s6iMvsZqweplhf7wiZSjFiG1uYBNpQ/0dFY7wSx3NMRjekyXzCjvkGAV570g==", "type": "package", + "path": "Microsoft.AspNetCore.DataProtection/1.0.0", "files": [ - "Microsoft.AspNetCore.DataProtection.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.DataProtection.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.DataProtection.nuspec", "lib/net451/Microsoft.AspNetCore.DataProtection.dll", "lib/net451/Microsoft.AspNetCore.DataProtection.xml", @@ -3548,11 +3716,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.xml" ] }, - "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0-rc2-final": { - "sha512": "JFk890DtR1vYN0q/Iuork6zBNS7GlY8tdL7uE3lVVw15Xg8dz4AxYDoymWrSinbuOV9puwzKy+FZnQzDiSUFgQ==", + "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": { + "sha512": "h5ycDgkqmRdManmYMQVJgzNI7YtVp2X2/os1cKmdfrpfq+m9L8bMKhbd7PCksoLci+aYTOSn45khPl+hpPb9ug==", "type": "package", + "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0", "files": [ - "Microsoft.AspNetCore.DataProtection.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.DataProtection.Abstractions.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.DataProtection.Abstractions.nuspec", "lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll", "lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.xml", @@ -3560,21 +3729,23 @@ "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.xml" ] }, - "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0-rc2-final": { - "sha512": "q2KCO4LYhp8DYff2+8TBSo/wCe2yWK8D9U5N5x+AJCcQu/XS42aPOfUyuiuf1YCDI71UZAeUa0JZa1wVdeJHSg==", + "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": { + "sha512": "RrXsm5Xzvxs0OFDhRcIIUNOM5rXKnRWj/bIkuDkXNIBniGcPDrfGbACIatA127I6pmybNAE84puFAt3wsU2kww==", "type": "package", + "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0", "files": [ - "Microsoft.AspNetCore.Diagnostics.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Diagnostics.Abstractions.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Diagnostics.Abstractions.nuspec", "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll", "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml" ] }, - "Microsoft.AspNetCore.Hosting/1.0.0-rc2-final": { - "sha512": "nFGSvCL9YXB9OeZxM2B2vM38+gbBNSICF4YTdbaoGDO39OZVT3w0PtmqZQIm8wGQ5rZE2BRSSrkDeDUS/hdddg==", + "Microsoft.AspNetCore.Hosting/1.0.0": { + "sha512": "0M7ZRAxTmGHOQV3B5Lm30VBg33uxxkPIKAxMc/C9yFBMPWPfk6V1uvb2ZL5eEPlo9/MZooITyMcGBQUHiakFjg==", "type": "package", + "path": "Microsoft.AspNetCore.Hosting/1.0.0", "files": [ - "Microsoft.AspNetCore.Hosting.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Hosting.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Hosting.nuspec", "lib/net451/Microsoft.AspNetCore.Hosting.dll", "lib/net451/Microsoft.AspNetCore.Hosting.xml", @@ -3582,11 +3753,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.xml" ] }, - "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0-rc2-final": { - "sha512": "EZY6EF9MzSRAVJJNaMGrRDGjFXtd9x96gZY0M5J91Mn453GY+ray0SZBo9ED1uYqGqtvFg5uIiI9VBBrqZAElQ==", + "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": { + "sha512": "8r6qOl1jYyC523ZKM1QNl+6ijIoYWELWm0tpEWqtTIOg9DytHJWshB7usgqiuRmfHXM0EUziR6ouFY7iP7Tuzw==", "type": "package", + "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0", "files": [ - "Microsoft.AspNetCore.Hosting.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Hosting.Abstractions.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Hosting.Abstractions.nuspec", "lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll", "lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.xml", @@ -3594,11 +3766,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.xml" ] }, - "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0-rc2-final": { - "sha512": "PI+9VZXqhPSRk5PslkeYmjp5R38KQo0N+TTfmRFSgQ1XQQYMyOkl1BcIVSNHUIPEz0o+MmNk3OqFp5QeV1vZyg==", + "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": { + "sha512": "sHZyhQEoW15T9E36rfdm5Ux6a6RZB0KNM79ccf2IplWASqmlRGhX4ydU3dzQRLhkHpLx16fnWOL0KScsO6BevQ==", "type": "package", + "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0", "files": [ - "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Hosting.Server.Abstractions.nuspec", "lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", "lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", @@ -3606,21 +3779,23 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml" ] }, - "Microsoft.AspNetCore.Html.Abstractions/1.0.0-rc2-final": { - "sha512": "wVqhkopksHunVNaU8nTrX8h4L3hdPrkI5oWkDbvA0xD2hTNL82WmDWwG0YdDbq98XPJ/P/LCznZ45GnRz/lUbw==", + "Microsoft.AspNetCore.Html.Abstractions/1.0.0": { + "sha512": "/JLMu2k8FiInLZC0SHXT+Cmdzi7AYa3B5v9w32Kd0mPTH4RYIQo/XNPIOr2HsPTXp3I9cZo1DajaMVGnJMN2QA==", "type": "package", + "path": "Microsoft.AspNetCore.Html.Abstractions/1.0.0", "files": [ - "Microsoft.AspNetCore.Html.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Html.Abstractions.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Html.Abstractions.nuspec", "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll", "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.xml" ] }, - "Microsoft.AspNetCore.Http/1.0.0-rc2-final": { - "sha512": "b2npuCnnmTijWXELJXTf9hzPvry82W/JbUiJ8TSdCSC1AUNuJu/3j6tAppUEkrq53KniExeJWqAVN1DNSzJuIw==", + "Microsoft.AspNetCore.Http/1.0.0": { + "sha512": "c/+eWVWQ8fX5hBHhL1BY4k2n4kVyUnqJLSCj0sTTXwRTU6IKoGbTOUqHT9as8C71Vk54YpAsi/VPmGW7T/ap3A==", "type": "package", + "path": "Microsoft.AspNetCore.Http/1.0.0", "files": [ - "Microsoft.AspNetCore.Http.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Http.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Http.nuspec", "lib/net451/Microsoft.AspNetCore.Http.dll", "lib/net451/Microsoft.AspNetCore.Http.xml", @@ -3628,11 +3803,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Http.xml" ] }, - "Microsoft.AspNetCore.Http.Abstractions/1.0.0-rc2-final": { - "sha512": "ndmI1ufOWIq7b9ntY5rX2D7GeLG1Y6yAycPdxzOnK5k9siKcEikr1dhiQpWjRIPv5EoehvkLeCuQ991rujInRw==", + "Microsoft.AspNetCore.Http.Abstractions/1.0.0": { + "sha512": "OJHlqdJOWKKBfsiVdX4Z4KCNuqvBIu6+1MVKuejRDyHnGyMkNHNoP/dtVzhPqvJXaJg9N4HlD0XNc6GDCFVffg==", "type": "package", + "path": "Microsoft.AspNetCore.Http.Abstractions/1.0.0", "files": [ - "Microsoft.AspNetCore.Http.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Http.Abstractions.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Http.Abstractions.nuspec", "lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll", "lib/net451/Microsoft.AspNetCore.Http.Abstractions.xml", @@ -3640,11 +3816,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.xml" ] }, - "Microsoft.AspNetCore.Http.Extensions/1.0.0-rc2-final": { - "sha512": "51WUpcbF7nhiZbxc4vM0sUGUo4E0uJ5LWLlKy3PYIIsja1APvJoiizK8S0/6EEYTgNi8RZpbv8b/yUyU/kJ5fg==", + "Microsoft.AspNetCore.Http.Extensions/1.0.0": { + "sha512": "GlvCPRpnw2jjHLdbGf/C28NQZLMeX1mugv5BS1a3FCQOJYyuwQZil4JwblR0frLyVrUVoJQ7UXRNZIzEVlO5XA==", "type": "package", + "path": "Microsoft.AspNetCore.Http.Extensions/1.0.0", "files": [ - "Microsoft.AspNetCore.Http.Extensions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Http.Extensions.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Http.Extensions.nuspec", "lib/net451/Microsoft.AspNetCore.Http.Extensions.dll", "lib/net451/Microsoft.AspNetCore.Http.Extensions.xml", @@ -3652,11 +3829,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.xml" ] }, - "Microsoft.AspNetCore.Http.Features/1.0.0-rc2-final": { - "sha512": "Wcn5RF+ZQgxHOuyb9u7H1jHSn7cTVyzKCl51xwBNd3tZAnxVSLhpwANSLGeMRd+MgIpd8rFqRhd8LCeB+BrlQA==", + "Microsoft.AspNetCore.Http.Features/1.0.0": { + "sha512": "6x7zgfbTo1gL9xMEb7EMO2ES/48bqwnWyfH09z+ubWhnzxdhHls8rtqstPylu5FPD9nid6Vo2pgDm5vufRAy5Q==", "type": "package", + "path": "Microsoft.AspNetCore.Http.Features/1.0.0", "files": [ - "Microsoft.AspNetCore.Http.Features.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Http.Features.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Http.Features.nuspec", "lib/net451/Microsoft.AspNetCore.Http.Features.dll", "lib/net451/Microsoft.AspNetCore.Http.Features.xml", @@ -3664,11 +3842,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.xml" ] }, - "Microsoft.AspNetCore.HttpOverrides/1.0.0-rc2-final": { - "sha512": "0EEYIFULc/hz/thwEiwZGWToQlSt7/pIQPTiUKji9Ir1yhvugKBnCcKDQLhTOOAiqAWd9e5UfFuoP31NhojsxQ==", + "Microsoft.AspNetCore.HttpOverrides/1.0.0": { + "sha512": "gHpdaaAzhaTWJZuJVo3ler2zzdQWrm8wnsoSjcNtoZZdTOkwImndRwK8o4GYoM18dfmfNheM7i4EENI7XHM/lA==", "type": "package", + "path": "Microsoft.AspNetCore.HttpOverrides/1.0.0", "files": [ - "Microsoft.AspNetCore.HttpOverrides.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.HttpOverrides.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.HttpOverrides.nuspec", "lib/net451/Microsoft.AspNetCore.HttpOverrides.dll", "lib/net451/Microsoft.AspNetCore.HttpOverrides.xml", @@ -3676,21 +3855,23 @@ "lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.xml" ] }, - "Microsoft.AspNetCore.JsonPatch/1.0.0-rc2-final": { - "sha512": "6zCyIkw/nFox0zPPZ2RsBJgq7QdFLoDJ0pWe1IIIAVllIw8J+6n0sDcIfypXlEny3kpslGutaR4bWQPRuH/Y8w==", + "Microsoft.AspNetCore.JsonPatch/1.0.0": { + "sha512": "WVaSVS+dDlWCR/qerHnBxU9tIeJ9GMA3M5tg4cxH7/cJYZZLnr2zvaFHGB+cRRNCKKTJ0pFRxT7ES8knhgAAaA==", "type": "package", + "path": "Microsoft.AspNetCore.JsonPatch/1.0.0", "files": [ - "Microsoft.AspNetCore.JsonPatch.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.JsonPatch.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.JsonPatch.nuspec", "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll", "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.xml" ] }, - "Microsoft.AspNetCore.Localization/1.0.0-rc2-final": { - "sha512": "BilhBurHj/4K+yPUXqpalzOpTpgtN4VJIagULbE6LSS/AJFnm2E+qtks59cCHdvzJxuTCswOoWiNyvgnbqvnOQ==", + "Microsoft.AspNetCore.Localization/1.0.0": { + "sha512": "DF/maMd9f6ZPoTlU8n6/AGm3fpZNPiiip34bPrBQuloX2a5O0KwyV72qKhJhJNqmVVnDnTu8XYT16ysoFXRxQA==", "type": "package", + "path": "Microsoft.AspNetCore.Localization/1.0.0", "files": [ - "Microsoft.AspNetCore.Localization.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Localization.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Localization.nuspec", "lib/net451/Microsoft.AspNetCore.Localization.dll", "lib/net451/Microsoft.AspNetCore.Localization.xml", @@ -3698,23 +3879,25 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Localization.xml" ] }, - "Microsoft.AspNetCore.Mvc/1.0.0-rc2-final": { - "sha512": "vzCC0/VzdxqaWidqconJFtScPGLiG+dIYzKgqCeJU884e3OujB3TPZGjzQNypZMBqLs5WX5sZA5l8PQC7OXYvg==", + "Microsoft.AspNetCore.Mvc/1.0.0": { + "sha512": "nNiMnzdXHpMrsjnBRiYaVy5EMsCmTsqSIIOtJvMbqJldh1i3NCM9jgvp4Da+Ke1gkGd2/MK8rXp+8a5yF+QOOQ==", "type": "package", + "path": "Microsoft.AspNetCore.Mvc/1.0.0", "files": [ - "Microsoft.AspNetCore.Mvc.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Mvc.nuspec", "lib/net451/Microsoft.AspNetCore.Mvc.dll", "lib/net451/Microsoft.AspNetCore.Mvc.xml", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.dll", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.xml" + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll", + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.xml" ] }, - "Microsoft.AspNetCore.Mvc.Abstractions/1.0.0-rc2-final": { - "sha512": "Xpj+GEStqZY3FfE10SK1W0Wrdek0uQZv/YS28kcWSKIu6aqojPcsP5sTow+JFnS8a27vxwVdn/iNVpmppN0cDw==", + "Microsoft.AspNetCore.Mvc.Abstractions/1.0.0": { + "sha512": "d7KEexDwxSwVeZv+SDbsMRPl2WuKMVckOCp/KTGuI1NJhd/7GvNGW101iRIC3tC/yym0PaajcWwTZNVfjhyoJw==", "type": "package", + "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.0.0", "files": [ - "Microsoft.AspNetCore.Mvc.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.Abstractions.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Mvc.Abstractions.nuspec", "lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll", "lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.xml", @@ -3722,131 +3905,142 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.xml" ] }, - "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.0-rc2-final": { - "sha512": "FyFOVpiLAW8O0Ue9xbAZp0J85u3iA2bZ1TzpDUuIj5w9WDGjQnv0mTLl09uy8wBqIQYXMeOEKJyb/MfXY/SLow==", + "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.0": { + "sha512": "46aWHLmZ37c44bJzLdbSEmIxCwQo7BljHBoK8C9CPCEPOLPWmg0XyPhGyMSGY4woDmm9ukBOEpqT899BWSxhRw==", "type": "package", + "path": "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.0", "files": [ - "Microsoft.AspNetCore.Mvc.ApiExplorer.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.ApiExplorer.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Mvc.ApiExplorer.nuspec", "lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll", "lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.xml", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.ApiExplorer.dll", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.ApiExplorer.xml" + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll", + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.xml" ] }, - "Microsoft.AspNetCore.Mvc.Core/1.0.0-rc2-final": { - "sha512": "H3cNbfPq2JXxY6y8dW7OPbTZYGNJo4S119DLPPKsbf1z3VuHUkKEZNy9fBee1tHUj26ND/PBzZ5C4FXaFX989Q==", + "Microsoft.AspNetCore.Mvc.Core/1.0.0": { + "sha512": "tjCOZJheOAKStHs4LIcrLsbF/00wEwSinC+vCFpsmdqGVl3/tX9jnID20E1NlkKOW68DOLBavoC23BWFiHa0JA==", "type": "package", + "path": "Microsoft.AspNetCore.Mvc.Core/1.0.0", "files": [ - "Microsoft.AspNetCore.Mvc.Core.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.Core.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Mvc.Core.nuspec", "lib/net451/Microsoft.AspNetCore.Mvc.Core.dll", "lib/net451/Microsoft.AspNetCore.Mvc.Core.xml", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Core.dll", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Core.xml" + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll", + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.xml" ] }, - "Microsoft.AspNetCore.Mvc.Cors/1.0.0-rc2-final": { - "sha512": "p0Tg+BHfcbWzcJrdTc4T2Uy0Y1kMYQTSZJnoZ6HioQyuZnvYmgo+HR9NfcGSecgg1dM8Ea2ItF8pnh6yLRhNCQ==", + "Microsoft.AspNetCore.Mvc.Cors/1.0.0": { + "sha512": "jz3au6mm/O0ahotfUqZTGtsftcd4UYKIzl2l0+WRG817UJdMGLmnmgmUPcAQR1nrI0Dg49MsfTkjWoMQM9CsUw==", "type": "package", + "path": "Microsoft.AspNetCore.Mvc.Cors/1.0.0", "files": [ - "Microsoft.AspNetCore.Mvc.Cors.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.Cors.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Mvc.Cors.nuspec", "lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll", "lib/net451/Microsoft.AspNetCore.Mvc.Cors.xml", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Cors.dll", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Cors.xml" + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll", + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.xml" ] }, - "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.0-rc2-final": { - "sha512": "U40NtMeJpPraqiLv4/6P+a16bXCM36t72Epbp8x/V35Xr4NSIHZ8PkhtBSdI6eWInsdZPUV5vGXzNyT3BXB4rg==", + "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.0": { + "sha512": "ZU02Y2tnKu/lVv2ywnNO+nSRzDWiTlq+ZhSuR9L3Q9NqlCyQJXOgX+iD/BGshnMQ7ZTstjyO4h8WeF7Ii9vBWQ==", "type": "package", + "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.0", "files": [ - "Microsoft.AspNetCore.Mvc.DataAnnotations.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.DataAnnotations.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Mvc.DataAnnotations.nuspec", "lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll", "lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.xml", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.DataAnnotations.dll", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.DataAnnotations.xml" + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll", + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.xml" ] }, - "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.0-rc2-final": { - "sha512": "fO/lI6VCOJuQU4OoMxwwrsXcOQw3yqOKNVABxkP215GofEYrE9UjrJZjSKDl1JEh6014WYcOfbx6DDfw9/HrXQ==", + "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.0": { + "sha512": "XQQLbxYLmdRj2U685NxFIrxVxqsXHLO5zN4ZIhTQ23VxzI6Qk2WN9ska0tl4ZMDV/4pSyE8SlmNeKPCN3pW86w==", "type": "package", + "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.0", "files": [ - "Microsoft.AspNetCore.Mvc.Formatters.Json.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.Formatters.Json.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Mvc.Formatters.Json.nuspec", "lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll", "lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.xml", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Formatters.Json.dll", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Formatters.Json.xml" + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll", + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.xml" ] }, - "Microsoft.AspNetCore.Mvc.Localization/1.0.0-rc2-final": { - "sha512": "T6gPQgkwa380n8PnX5V9rFT6Zecup4NzK/MAaTMQ84QdJJXBoNNhZ5TfbydxG04IYpsZtikyezN3a2toR1NZlw==", + "Microsoft.AspNetCore.Mvc.Localization/1.0.0": { + "sha512": "+w4s6j88pzJmc++3IozCmo0AIOF8ks/LrOAuMTRm6ve/l+wTp/oqXu2tjLA3QAvP6n6hC3cm40qW69UhYUtSIQ==", "type": "package", + "path": "Microsoft.AspNetCore.Mvc.Localization/1.0.0", "files": [ - "Microsoft.AspNetCore.Mvc.Localization.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.Localization.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Mvc.Localization.nuspec", "lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll", "lib/net451/Microsoft.AspNetCore.Mvc.Localization.xml", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Localization.dll", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Localization.xml" + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll", + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.xml" ] }, - "Microsoft.AspNetCore.Mvc.Razor/1.0.0-rc2-final": { - "sha512": "oGcGdt0c74TbcdKwcEO/uV4AevquW5Z+eIEKQGXmhb8KHAQh4eO7pRJepp5+5XrM+VPNED+FdvAGfe8YoVKeBw==", + "Microsoft.AspNetCore.Mvc.Razor/1.0.0": { + "sha512": "G17pVnANhBj6AdpzTnJV36MRx4KNLQao0NqGUyKFvtKjy77KR55Fmt6/MVykbOB5xH33fbMIveTiSF3h4kWSQA==", "type": "package", + "path": "Microsoft.AspNetCore.Mvc.Razor/1.0.0", "files": [ - "Microsoft.AspNetCore.Mvc.Razor.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.Razor.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Mvc.Razor.nuspec", "lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll", "lib/net451/Microsoft.AspNetCore.Mvc.Razor.xml", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Razor.dll", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Razor.xml" + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll", + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.xml" ] }, - "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.0-rc2-final": { - "sha512": "zREudJwjqm6pjuzOa+OFW0jtvE5pVHfcWd3P97DhivsWznF1afkYbE9r9jlmNpIc5swnyrKhes6jsnpbVbNcXw==", + "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.0": { + "sha512": "cMdbvKf56IRyviirKFAgwcUSxwzLVASRA8cgxQD6Bw/JO9uwpG33mWjMnsdmZveW0y/ek1FjHTx6Zd4UpZfQ6A==", "type": "package", + "path": "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.0", "files": [ - "Microsoft.AspNetCore.Mvc.Razor.Host.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.Razor.Host.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Mvc.Razor.Host.nuspec", "lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll", "lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.xml", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Razor.Host.dll", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Razor.Host.xml" + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll", + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.xml" ] }, - "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.0-rc2-final": { - "sha512": "bePjw8Jc/k6bha7XNv9H2LZHjsuPm0n1ujHcRnUsz9v4xlicW4yV3UhQ/DmplFPWNVHMa0y0BgN5kEhlNqpUcQ==", + "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.0": { + "sha512": "5IT4kddg3Tz3Ki53HvP3fvjnpYzKjY5mFWhmpPQvE2vzfMr7zU6X1Cls2SnJPMcV6sAqzTB4j6AmUmcEpFNMqg==", "type": "package", + "path": "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.0", "files": [ - "Microsoft.AspNetCore.Mvc.TagHelpers.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.TagHelpers.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Mvc.TagHelpers.nuspec", "lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll", "lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.xml", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.TagHelpers.dll", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.TagHelpers.xml" + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll", + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.xml" ] }, - "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.0-rc2-final": { - "sha512": "tXrY6gozRdfEaQu7oL/CBi/dvJYDPSqB+Uk4KwgpUbVgfNc6gxMQJURHHVg3k6eYvpVBM5DYlMXLGs7ME3hlzg==", + "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.0": { + "sha512": "DNMCqY+TX5jgO3M1C7Lf5E61llWZ+QgtjLYfrIkq7yfZjhzI52nprFE3mh66HahKU1EvyOz9+ISdaSmTimfNbQ==", "type": "package", + "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.0", "files": [ - "Microsoft.AspNetCore.Mvc.ViewFeatures.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.ViewFeatures.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Mvc.ViewFeatures.nuspec", "lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll", "lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.xml", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.ViewFeatures.dll", - "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.ViewFeatures.xml" + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll", + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.xml" ] }, - "Microsoft.AspNetCore.Razor/1.0.0-rc2-final": { - "sha512": "6nsCyZ6GJKxmBBgc4daQvCMchJRh9+Q7oZBzp4jmfSD5Ju9Jd53y622G4bKQXZrEBSTujSJ+d8r4cqt71tcIkg==", + "Microsoft.AspNetCore.Razor/1.0.0": { + "sha512": "+vhlFn8n45hj1M91HYVm2ryLMZ+ZYR/OUdBVE8aUzkvkTVF+3UnNxSY3hAEugcgcbf9/XQTE+DDxEgN4LdYEjg==", "type": "package", + "path": "Microsoft.AspNetCore.Razor/1.0.0", "files": [ - "Microsoft.AspNetCore.Razor.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Razor.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Razor.nuspec", "lib/net451/Microsoft.AspNetCore.Razor.dll", "lib/net451/Microsoft.AspNetCore.Razor.xml", @@ -3854,11 +4048,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Razor.xml" ] }, - "Microsoft.AspNetCore.Razor.Runtime/1.0.0-rc2-final": { - "sha512": "ydM66tgqnydDcAxyPYqL+ww9yR4dDlBz9HeIpeFocV5MnygDlQwjOFDlD0vWQEKI6dt39802PHpoXa2K/OwVuw==", + "Microsoft.AspNetCore.Razor.Runtime/1.0.0": { + "sha512": "hsq6xJeqDDb78akZuy79QE3kaCxcigD3vccbIaNrrz7JSXOzayfteF06ToK+J1SXSDRtrBj3XZZfrjiqIY/vCw==", "type": "package", + "path": "Microsoft.AspNetCore.Razor.Runtime/1.0.0", "files": [ - "Microsoft.AspNetCore.Razor.Runtime.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Razor.Runtime.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Razor.Runtime.nuspec", "lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll", "lib/net451/Microsoft.AspNetCore.Razor.Runtime.xml", @@ -3866,24 +4061,28 @@ "lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.xml" ] }, - "Microsoft.AspNetCore.Razor.Tools/1.0.0-preview1-final": { - "sha512": "3lMt3yRoagqL9JYC6ds5sMVNhBXilEz6ype9qB6Qndcabjx7ac0MJDSxKoacinOIzzGviCD1bandE7krA/YhNQ==", + "Microsoft.AspNetCore.Razor.Tools/1.0.0-preview2-final": { + "sha512": "gUFr7P3hVd7ILgY5Q5AnBHxatElop3kpn7uYX7kPVktvWMkL0HK2DKw66hqYTy5BNz41BTuxCn0Foa7aKwvTVA==", "type": "package", + "path": "Microsoft.AspNetCore.Razor.Tools/1.0.0-preview2-final", "files": [ - "Microsoft.AspNetCore.Razor.Tools.1.0.0-preview1-final.nupkg.sha512", + "Microsoft.AspNetCore.Razor.Tools.1.0.0-preview2-final.nupkg.sha512", "Microsoft.AspNetCore.Razor.Tools.nuspec", "lib/net451/dotnet-razor-tooling.exe", "lib/net451/dotnet-razor-tooling.xml", "lib/netcoreapp1.0/dotnet-razor-tooling.dll", "lib/netcoreapp1.0/dotnet-razor-tooling.runtimeconfig.json", - "lib/netcoreapp1.0/dotnet-razor-tooling.xml" + "lib/netcoreapp1.0/dotnet-razor-tooling.xml", + "runtimes/win7-x64/lib/net451/dotnet-razor-tooling.exe", + "runtimes/win7-x86/lib/net451/dotnet-razor-tooling.exe" ] }, - "Microsoft.AspNetCore.Routing/1.0.0-rc2-final": { - "sha512": "PkpR5hgMzoI2uLbng29ZVA+bVNaOnsUzHEY5TKnLmwY1FL7ll76lEkvDiQrTTyWT+Rp6Z3JFVxnAH4fSxDp27A==", + "Microsoft.AspNetCore.Routing/1.0.0": { + "sha512": "NvFvRtYHXWjBbXz5/7F7JDNcdhrE+tG1/Q9R6LmMxFgu8tkl1bqtFZQbMy17FYFkmm8Fn/T81blRGE2nxCbDRA==", "type": "package", + "path": "Microsoft.AspNetCore.Routing/1.0.0", "files": [ - "Microsoft.AspNetCore.Routing.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Routing.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Routing.nuspec", "lib/net451/Microsoft.AspNetCore.Routing.dll", "lib/net451/Microsoft.AspNetCore.Routing.xml", @@ -3891,11 +4090,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Routing.xml" ] }, - "Microsoft.AspNetCore.Routing.Abstractions/1.0.0-rc2-final": { - "sha512": "5MIF0y7nIlBIUIxLUuC0S8pWHo5Xq3MbqUvjU5q0WFHSrHIg2K7AaVIS6IO+jV9O+GsxSvyYs2C9pqaHIcaCHA==", + "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": { + "sha512": "Ne5CFiD1xCGSHrGICw7PsVnj7gijfkMfsw52AO6ingcUhE01dc87cJPpfGLnY22MIvqn11ECLbNZYmzFp/Rs+A==", "type": "package", + "path": "Microsoft.AspNetCore.Routing.Abstractions/1.0.0", "files": [ - "Microsoft.AspNetCore.Routing.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Routing.Abstractions.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Routing.Abstractions.nuspec", "lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll", "lib/net451/Microsoft.AspNetCore.Routing.Abstractions.xml", @@ -3903,11 +4103,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.xml" ] }, - "Microsoft.AspNetCore.Server.IISIntegration/1.0.0-rc2-final": { - "sha512": "rJT7VnwAiMgk5B3kxxFagHpAlRlUC2XewNid6MJeiGQts28yKXIRY+346XjegthzpLa9PP4H7yTy0/72q3mWtA==", + "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": { + "sha512": "xmn6EivvL4Ymo7LP+Jc49WLcIiYsUiujZo0loEbAg473nY2dIHxcxncpFAKzPf/MzqN0qBtaXEP0igYJ813H3Q==", "type": "package", + "path": "Microsoft.AspNetCore.Server.IISIntegration/1.0.0", "files": [ - "Microsoft.AspNetCore.Server.IISIntegration.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Server.IISIntegration.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Server.IISIntegration.nuspec", "lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll", "lib/net451/Microsoft.AspNetCore.Server.IISIntegration.xml", @@ -3915,11 +4116,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.xml" ] }, - "Microsoft.AspNetCore.Server.Kestrel/1.0.0-rc2-final": { - "sha512": "ojeLfBZ+H7uVImuzqErcNv8hN8Z8+k99jSl2U+cwEMddJXnzqjND20NlwNW/g4/3roLB3F3+6kYTy3wWMYFQCg==", + "Microsoft.AspNetCore.Server.Kestrel/1.0.0": { + "sha512": "TNRTsufpdeoa88kR2NU+mO0IZIyJCcBurkdLx4I9d7MpLV1MCnRCrIeTgFIOWpB+j6kytUUXblzhsd0rfk6+bQ==", "type": "package", + "path": "Microsoft.AspNetCore.Server.Kestrel/1.0.0", "files": [ - "Microsoft.AspNetCore.Server.Kestrel.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Server.Kestrel.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.Server.Kestrel.nuspec", "lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll", "lib/net451/Microsoft.AspNetCore.Server.Kestrel.xml", @@ -3927,11 +4129,12 @@ "lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.xml" ] }, - "Microsoft.AspNetCore.WebUtilities/1.0.0-rc2-final": { - "sha512": "0VoDSZHObAEIbBeJEg01p1MjC5fllSDImgrFr9XNn18XKGkZSaFLIm1K4kv3kS38aUt5vjwq2qhstDMbKdUgLw==", + "Microsoft.AspNetCore.WebUtilities/1.0.0": { + "sha512": "D0licSnS1JgqQ/gYlN41wXbeYG3dFIdjY781YzMHZ5gBB7kczacshW+H6plZkXRr/cCnAJWGa31o1R8c5GEy/A==", "type": "package", + "path": "Microsoft.AspNetCore.WebUtilities/1.0.0", "files": [ - "Microsoft.AspNetCore.WebUtilities.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.WebUtilities.1.0.0.nupkg.sha512", "Microsoft.AspNetCore.WebUtilities.nuspec", "lib/net451/Microsoft.AspNetCore.WebUtilities.dll", "lib/net451/Microsoft.AspNetCore.WebUtilities.xml", @@ -3954,11 +4157,12 @@ "tools/uninstall.ps1" ] }, - "Microsoft.CodeAnalysis.Common/1.3.0-beta1-20160429-01": { - "sha512": "TSrsz9ZhBpbO3HTK0kNSUQNVTqfSEcgbPXzB/0VrkEfrXLNESJzqmA94ddrf+51w5o9kMMH53/er1A1A+PmZVg==", + "Microsoft.CodeAnalysis.Common/1.3.0": { + "sha512": "V09G35cs0CT1C4Dr1IEOh8IGfnWALEVAOO5JXsqagxXwmYR012TlorQ+vx2eXxfZRKs3gAS/r92gN9kRBLba5A==", "type": "package", + "path": "Microsoft.CodeAnalysis.Common/1.3.0", "files": [ - "Microsoft.CodeAnalysis.Common.1.3.0-beta1-20160429-01.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.1.3.0.nupkg.sha512", "Microsoft.CodeAnalysis.Common.nuspec", "ThirdPartyNotices.rtf", "lib/net45/Microsoft.CodeAnalysis.dll", @@ -3969,11 +4173,12 @@ "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml" ] }, - "Microsoft.CodeAnalysis.CSharp/1.3.0-beta1-20160429-01": { - "sha512": "q0uOK8fa3CNYNKud8OygnYmOvgcBQxQAnS2irP9LbARMGkCB1qNpjhSeiC+eF402O5Xb5voGOXnrIQbdLUv5TA==", + "Microsoft.CodeAnalysis.CSharp/1.3.0": { + "sha512": "BgWDIAbSFsHuGeLSn/rljLi51nXqkSo4DZ0qEIrHyPVasrhxEVq7aV8KKZ3HEfSFB+GIhBmOogE+mlOLYg19eg==", "type": "package", + "path": "Microsoft.CodeAnalysis.CSharp/1.3.0", "files": [ - "Microsoft.CodeAnalysis.CSharp.1.3.0-beta1-20160429-01.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.1.3.0.nupkg.sha512", "Microsoft.CodeAnalysis.CSharp.nuspec", "ThirdPartyNotices.rtf", "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", @@ -3984,11 +4189,12 @@ "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml" ] }, - "Microsoft.CodeAnalysis.VisualBasic/1.3.0-beta1-20160429-01": { - "sha512": "JEBXzOva/Okn0bY1q9fiXkCe/Gyg+fpZOHaIvUbsrtR384eQDcfvnj5NfomM1NMAJ5nw30DH1mSupnLLVqe04w==", + "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { + "sha512": "Sf3k8PkTkWqBmXnnblJbvb7ewO6mJzX6WO2t7m04BmOY5qBq6yhhyXnn/BMM+QCec3Arw3X35Zd8f9eBql0qgg==", "type": "package", + "path": "Microsoft.CodeAnalysis.VisualBasic/1.3.0", "files": [ - "Microsoft.CodeAnalysis.VisualBasic.1.3.0-beta1-20160429-01.nupkg.sha512", + "Microsoft.CodeAnalysis.VisualBasic.1.3.0.nupkg.sha512", "Microsoft.CodeAnalysis.VisualBasic.nuspec", "ThirdPartyNotices.rtf", "lib/net45/Microsoft.CodeAnalysis.VisualBasic.dll", @@ -3999,11 +4205,12 @@ "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml" ] }, - "Microsoft.CSharp/4.0.1-rc2-24027": { - "sha512": "P6MB1bNnyy4PizG4ewY0z2FP7R2kI3g/nB5qTF3rh75JXPekaJiDFPd+34uymg/5xtjllwCyM2RtVxaOhnRAPA==", + "Microsoft.CSharp/4.0.1": { + "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", "type": "package", + "path": "Microsoft.CSharp/4.0.1", "files": [ - "Microsoft.CSharp.4.0.1-rc2-24027.nupkg.sha512", + "Microsoft.CSharp.4.0.1.nupkg.sha512", "Microsoft.CSharp.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4055,67 +4262,79 @@ "ref/xamarinwatchos10/_._" ] }, - "Microsoft.DotNet.Cli.Utils/1.0.0-preview1-002702": { - "sha512": "/0HCuW5md8HOZ/QznFhjKIWqgDLB5cpFFGnhGByxo9exzWtH8+uGvyjtSJq/pGSVJWLtyjj9YXyohCZ20B9+VA==", + "Microsoft.DotNet.Cli.Utils/1.0.0-preview2-003121": { + "sha512": "FLXqhQjkjj83Sh0TRlLEyMIMtAhDRJuPRWnDONtnCv5bozk1jPzflLEXYbk2xsnsOMpnYrUvKQbwUKUWyaXuFQ==", "type": "package", + "path": "Microsoft.DotNet.Cli.Utils/1.0.0-preview2-003121", "files": [ - "Microsoft.DotNet.Cli.Utils.1.0.0-preview1-002702.nupkg.sha512", + "Microsoft.DotNet.Cli.Utils.1.0.0-preview2-003121.nupkg.sha512", "Microsoft.DotNet.Cli.Utils.nuspec", "lib/net451/Microsoft.DotNet.Cli.Utils.dll", - "lib/netstandard1.5/Microsoft.DotNet.Cli.Utils.dll" + "lib/netstandard1.6/Microsoft.DotNet.Cli.Utils.dll" ] }, - "Microsoft.DotNet.InternalAbstractions/1.0.0-rc2-002702": { - "sha512": "81Zp6K3oJY5zyoCtf7eguaZ+EnM3zawCtUKszBCLob1KH6Bu44ET2hokkk/6eMhTI2aQhbGrV9SaSjJ2K8DUDg==", + "Microsoft.DotNet.InternalAbstractions/1.0.0": { + "sha512": "AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==", "type": "package", + "path": "Microsoft.DotNet.InternalAbstractions/1.0.0", "files": [ - "Microsoft.DotNet.InternalAbstractions.1.0.0-rc2-002702.nupkg.sha512", + "Microsoft.DotNet.InternalAbstractions.1.0.0.nupkg.sha512", "Microsoft.DotNet.InternalAbstractions.nuspec", "lib/net451/Microsoft.DotNet.InternalAbstractions.dll", "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll" ] }, - "Microsoft.DotNet.ProjectModel/1.0.0-rc2-002702": { - "sha512": "ryslqqMpPRcJma9kJn3V1/GydzUny6i6xfpQ0cqfWmlPdSQ9Hnh6x2l8yVqU+ueCiVffKWn/Or80moLwroXP/A==", + "Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": { + "sha512": "wnWw5KsKinG2wWxdoQIJXZlMFvPNhL7WmIyW9q6xrZFUi/uld5PC3ksq2QDZepF148FUjCIyTP+TnRwU3RJqUg==", "type": "package", + "path": "Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121", "files": [ - "Microsoft.DotNet.ProjectModel.1.0.0-rc2-002702.nupkg.sha512", + "Microsoft.DotNet.ProjectModel.1.0.0-rc3-003121.nupkg.sha512", "Microsoft.DotNet.ProjectModel.nuspec", "lib/net451/Microsoft.DotNet.ProjectModel.dll", - "lib/netstandard1.5/Microsoft.DotNet.ProjectModel.dll" + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll" ] }, - "Microsoft.Extensions.Caching.Abstractions/1.0.0-rc2-final": { - "sha512": "Seu7cdYLYDFjYGd9KgzbAa5G6Xkzw6f6mSJjWemal1qNL505ktHMSbve6IPGScipL578rPwPTVqrTWWKIvmvLg==", + "Microsoft.DotNet.ProjectModel.Loader/1.0.0-preview2-003121": { + "sha512": "dpGbzFkk6se2DLkKjyycSBNlFFzjZWc3gxrviVq6UyOJDDUBKuiOk0si41dkRtfIGHB7dcPBlZHXUiEC7tPhKQ==", "type": "package", + "path": "Microsoft.DotNet.ProjectModel.Loader/1.0.0-preview2-003121", "files": [ - "Microsoft.Extensions.Caching.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.DotNet.ProjectModel.Loader.1.0.0-preview2-003121.nupkg.sha512", + "Microsoft.DotNet.ProjectModel.Loader.nuspec", + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.Loader.dll" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/1.0.0": { + "sha512": "IxlFDVOchL6tdR05bk7EiJvMtvZrVkZXBhkbXqc3GxOHOrHFGcN+92WoWFPeBpdpy8ot/Px5ZdXzt7k+2n1Bdg==", + "type": "package", + "path": "Microsoft.Extensions.Caching.Abstractions/1.0.0", + "files": [ + "Microsoft.Extensions.Caching.Abstractions.1.0.0.nupkg.sha512", "Microsoft.Extensions.Caching.Abstractions.nuspec", - "lib/netcore50/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netcore50/Microsoft.Extensions.Caching.Abstractions.xml", "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll", "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.xml" ] }, - "Microsoft.Extensions.Caching.Memory/1.0.0-rc2-final": { - "sha512": "G6KkTMUiChu9RaURYmNbkKc/cIvhj38jfVzoVtoSR0Aw2KzRCtJiW80xrLaNEgzl2Eu6BipCCy9DVNa7cFZhLQ==", + "Microsoft.Extensions.Caching.Memory/1.0.0": { + "sha512": "6+7zTufCnZ+tfrUo7RbIRR3LB0BxwOwxfXuo0IbLyIvgoToGpWuz5wYEDfCYNOvpig9tY8FA0I1uRHYmITMXMQ==", "type": "package", + "path": "Microsoft.Extensions.Caching.Memory/1.0.0", "files": [ - "Microsoft.Extensions.Caching.Memory.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Caching.Memory.1.0.0.nupkg.sha512", "Microsoft.Extensions.Caching.Memory.nuspec", "lib/net451/Microsoft.Extensions.Caching.Memory.dll", "lib/net451/Microsoft.Extensions.Caching.Memory.xml", - "lib/netcore50/Microsoft.Extensions.Caching.Memory.dll", - "lib/netcore50/Microsoft.Extensions.Caching.Memory.xml", "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll", "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.xml" ] }, - "Microsoft.Extensions.CommandLineUtils/1.0.0-rc2-final": { - "sha512": "W27sd1qlG76lEs/TD6PUJKcJJ572v/WrMtHq8VrHKOcI7NwkTgOaayt+/Mh6Zr7a+EIAAITPOFjKjUiPDEPn+g==", + "Microsoft.Extensions.CommandLineUtils/1.0.0": { + "sha512": "kXJ8+YvEjp1j7ezJ7yvQMLYbRL6QlpBUjRoBfqghoe80yqZ5azYB90lL4iNeyRCznWF+cGm41aaIoFU0aOq7TQ==", "type": "package", + "path": "Microsoft.Extensions.CommandLineUtils/1.0.0", "files": [ - "Microsoft.Extensions.CommandLineUtils.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.CommandLineUtils.1.0.0.nupkg.sha512", "Microsoft.Extensions.CommandLineUtils.nuspec", "lib/net451/Microsoft.Extensions.CommandLineUtils.dll", "lib/net451/Microsoft.Extensions.CommandLineUtils.xml", @@ -4123,86 +4342,102 @@ "lib/netstandard1.3/Microsoft.Extensions.CommandLineUtils.xml" ] }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-final": { - "sha512": "dHr1CJ3nkWxQAtIRk7pTX/0KCDC14DY580xC7RlMHt3EW9zUak4y31FQQIMgsE9oaeJMnJP2RtimN4FPzPaWdQ==", + "Microsoft.Extensions.Configuration/1.0.0": { + "sha512": "hR4yYebruRp6qyFnV3RW4qrnEb0J1LnMmQbj50AUA423V8dMs4E3YAohsyRyGBFnpbJ+KKzieSG/n2A6T0klZQ==", "type": "package", + "path": "Microsoft.Extensions.Configuration/1.0.0", "files": [ - "Microsoft.Extensions.Configuration.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Configuration.1.0.0.nupkg.sha512", "Microsoft.Extensions.Configuration.nuspec", "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll", "lib/netstandard1.1/Microsoft.Extensions.Configuration.xml" ] }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-final": { - "sha512": "Q871jpweVxec1zvUuK4RoXGRRXCZsp/f+6SDUSi8DQ95KcT8yKe2ZSoq2S2xnwoKFUepg2B6Yr3ToXD2v27zNA==", + "Microsoft.Extensions.Configuration.Abstractions/1.0.0": { + "sha512": "nJ+Et/rnDMDmGhxvFAKdN3va7y+YDPICv1nUEP8I4IKgOkWwr/dCZHMqxVhJFrkbW9ux8Kd7erC4mvxfZh0WnA==", "type": "package", + "path": "Microsoft.Extensions.Configuration.Abstractions/1.0.0", "files": [ - "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0.nupkg.sha512", "Microsoft.Extensions.Configuration.Abstractions.nuspec", "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll", "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.xml" ] }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-final": { - "sha512": "TreRt5BDwivHosFbDpfaJ9CArhyZUHWzv9dlqZx2e0+PSbZznXRBg0QWteh+Y5gEPmJy6hANuz4ZeVK52nLKXA==", + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": { + "sha512": "A0yqS98VtPNlFkFI7YBlwkAekUHE/9mMeNc+K4RmgTjCrskuk6pX3LGhDU7aD5CPYc9Px7M2To/2u4xDSnRikg==", "type": "package", + "path": "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0", "files": [ - "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0.nupkg.sha512", + "Microsoft.Extensions.Configuration.EnvironmentVariables.nuspec", + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.xml" + ] + }, + "Microsoft.Extensions.DependencyInjection/1.0.0": { + "sha512": "zdtkiZNV6LB8xtpmfyUjP/9N9ZCL/ydQ+0bfjun38fbrk+MDEm9M2yeLzRdq+OIt5xExw/KU04wFaVwJ1bhQPg==", + "type": "package", + "path": "Microsoft.Extensions.DependencyInjection/1.0.0", + "files": [ + "Microsoft.Extensions.DependencyInjection.1.0.0.nupkg.sha512", "Microsoft.Extensions.DependencyInjection.nuspec", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.dll", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.xml", "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll", "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.xml" ] }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-final": { - "sha512": "KRvRif+xioZSjml/O/Y6W/fksieNZ/hp+Bf/4Nau85gQleG8UJl+etaJXj18SWu8bQ3ApD4ikzq6qKXLlO8AMg==", + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": { + "sha512": "+XwaNo3o9RhLQhUnnOBCaukeRi1X9yYc0Fzye9RlErSflKZdw0VgHtn6rvKo0FTionsW0x8QVULhKH+nkqVjQA==", "type": "package", + "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0", "files": [ - "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-final.nupkg", - "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0.nupkg.sha512", "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.xml", "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml" ] }, - "Microsoft.Extensions.DependencyModel/1.0.0-rc2-final": { - "sha512": "IFfLyVWxqGOA+ql+h6gvPjWbDMXClLORxgoeJab7WxpPHTcHut/5vFLu8+29iQklymlKfYefRo8tudtwjxjCRw==", + "Microsoft.Extensions.DependencyModel/1.0.0": { + "sha512": "n55Y2T4qMgCNMrJaqAN+nlG2EH4XL+e9uxIg4vdFsQeF+L8UKxRdD3C35Bt+xk3vO3Zwp3g+6KFq2VPH2COSmg==", "type": "package", + "path": "Microsoft.Extensions.DependencyModel/1.0.0", "files": [ - "Microsoft.Extensions.DependencyModel.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.DependencyModel.1.0.0.nupkg.sha512", "Microsoft.Extensions.DependencyModel.nuspec", "lib/net451/Microsoft.Extensions.DependencyModel.dll", - "lib/netstandard1.5/Microsoft.Extensions.DependencyModel.dll" + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll" ] }, - "Microsoft.Extensions.FileProviders.Abstractions/1.0.0-rc2-final": { - "sha512": "pVcRuHzugJ1pn4LWpSJYOGXWdIMDcyj+AFIHFWUZ5CBGGXKfDCOPS0ztS5WshLYYc+9zDdAPmWSvQxVbTGljjg==", + "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": { + "sha512": "4jsqTxG3py/hYSsOtZMkNJ2/CQqPdpwyK7bDUkrwHgqowCFSmx/C+R4IzQ+2AK2Up1fVcu+ldC0gktwidL828A==", "type": "package", + "path": "Microsoft.Extensions.FileProviders.Abstractions/1.0.0", "files": [ - "Microsoft.Extensions.FileProviders.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.FileProviders.Abstractions.1.0.0.nupkg.sha512", "Microsoft.Extensions.FileProviders.Abstractions.nuspec", "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll", "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.xml" ] }, - "Microsoft.Extensions.FileProviders.Composite/1.0.0-rc2-final": { - "sha512": "96d4CqD89j9mY3YTWry45PMhXNoxUJ83d1grVQjGvAo62UEOlj4lEg+4dzaLIpjU4ajVfOaEa/wFeV5JM31jWQ==", + "Microsoft.Extensions.FileProviders.Composite/1.0.0": { + "sha512": "4nbDQfagNr1eILXSFZbTNuAKuZ6SsOyK6ySTMryo67ECi8+EcZBQ12E0aXcxX/aT3v+3pbWSt71NXlEm8tKIxw==", "type": "package", + "path": "Microsoft.Extensions.FileProviders.Composite/1.0.0", "files": [ - "Microsoft.Extensions.FileProviders.Composite.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.FileProviders.Composite.1.0.0.nupkg.sha512", "Microsoft.Extensions.FileProviders.Composite.nuspec", "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll", "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.xml" ] }, - "Microsoft.Extensions.FileProviders.Physical/1.0.0-rc2-final": { - "sha512": "mGinPq86ouElAEY7K9Yww3bIJFD3k+UESFveOKCtXVbn9Z25rJOLoD7T0WRkJxzPZ+0MTipWpMh7jUJdsMV5Nw==", + "Microsoft.Extensions.FileProviders.Physical/1.0.0": { + "sha512": "Ej5hGWtK3xM9YU+B2O8EdlMcJf5utbDQs9ecnfvwhENQeeNU7iI2jjnRB2d7V6o9SQZmNHPzdPvaNb3PlSMz+Q==", "type": "package", + "path": "Microsoft.Extensions.FileProviders.Physical/1.0.0", "files": [ - "Microsoft.Extensions.FileProviders.Physical.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.FileProviders.Physical.1.0.0.nupkg.sha512", "Microsoft.Extensions.FileProviders.Physical.nuspec", "lib/net451/Microsoft.Extensions.FileProviders.Physical.dll", "lib/net451/Microsoft.Extensions.FileProviders.Physical.xml", @@ -4210,11 +4445,12 @@ "lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.xml" ] }, - "Microsoft.Extensions.FileSystemGlobbing/1.0.0-rc2-final": { - "sha512": "xyrVmdjyFmGROsMkc50oI5KTie8V15ZJ8BdWbN/vpE45y+McRVpakGZDKzS2cLP7IaE67fGpr0jg4VvLQJ8Jhg==", + "Microsoft.Extensions.FileSystemGlobbing/1.0.0": { + "sha512": "scXp1Y+hmhQKLe57Z7cSjsAEFtE4zSHHydkg1SpvG56nWwWQVpVcRAbRZsv1qIBR5/vNB4LA9xiOKnvKO/Halg==", "type": "package", + "path": "Microsoft.Extensions.FileSystemGlobbing/1.0.0", "files": [ - "Microsoft.Extensions.FileSystemGlobbing.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.FileSystemGlobbing.1.0.0.nupkg.sha512", "Microsoft.Extensions.FileSystemGlobbing.nuspec", "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll", "lib/net451/Microsoft.Extensions.FileSystemGlobbing.xml", @@ -4222,21 +4458,23 @@ "lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.xml" ] }, - "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0-rc2-final": { - "sha512": "aqjoyxHn0XynGkVXSPqHuUtWuNPAaIEubuVYdipr72Nj/zKQ0RWGssZsEHunrKxTe8Itdv8+MF+V2SLDdQn7/Q==", + "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": { + "sha512": "nxGoN8o+4clQk103krYRqS5FVVCZc3Tlc09AYj4W8gZ9Q5Jxa2BLW7ss+ogKU/hvNSg2NkJyQTfi9SegGU6ssQ==", "type": "package", + "path": "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0", "files": [ - "Microsoft.Extensions.Globalization.CultureInfoCache.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Globalization.CultureInfoCache.1.0.0.nupkg.sha512", "Microsoft.Extensions.Globalization.CultureInfoCache.nuspec", "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll", "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.xml" ] }, - "Microsoft.Extensions.Localization/1.0.0-rc2-final": { - "sha512": "2KuamQ5Wndf/z1+cOmDGo39TNmVu5s0S7+opXUtFMN59oVFxPyTmh0txrr1MMUDd8n+1GSjs50b/gb4pYnbdQA==", + "Microsoft.Extensions.Localization/1.0.0": { + "sha512": "nkDgz++GXjMSEIiVS6CpeirV8m8zvc/vUN2sq5sPnqG8PZltCMSNmqrwyL1onx6A6aRNdTr1nVfvYHwWAmS4vg==", "type": "package", + "path": "Microsoft.Extensions.Localization/1.0.0", "files": [ - "Microsoft.Extensions.Localization.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Localization.1.0.0.nupkg.sha512", "Microsoft.Extensions.Localization.nuspec", "lib/net451/Microsoft.Extensions.Localization.dll", "lib/net451/Microsoft.Extensions.Localization.xml", @@ -4244,46 +4482,45 @@ "lib/netstandard1.3/Microsoft.Extensions.Localization.xml" ] }, - "Microsoft.Extensions.Localization.Abstractions/1.0.0-rc2-final": { - "sha512": "E/eBmNoRTP99vmf6pW+mTQS0EiAmM62/rN9k32FRB4v5tSwuzGCw9YrMZ4UuoAztQQWcqgeLuS2Ymfw89sj9kA==", + "Microsoft.Extensions.Localization.Abstractions/1.0.0": { + "sha512": "hQ2sEJf7swsD5jk4DogLI3DazGvsvbz0IuSbxPFDjcvP0PRdxgCsyGpg70LD+3tRmxZcE1uh5jtcAi4X2BcB9w==", "type": "package", + "path": "Microsoft.Extensions.Localization.Abstractions/1.0.0", "files": [ - "Microsoft.Extensions.Localization.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Localization.Abstractions.1.0.0.nupkg.sha512", "Microsoft.Extensions.Localization.Abstractions.nuspec", "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll", "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.xml" ] }, - "Microsoft.Extensions.Logging/1.0.0-rc2-final": { - "sha512": "M9lTQcaxlV2RAlyzar4s+AsTtS3KzQy78TfQImdl7s1foCMwjDerF3tYtHa4HupWAfOYUPId0b/fXNVfIZwqxw==", + "Microsoft.Extensions.Logging/1.0.0": { + "sha512": "0mDuASVrd/nMeBYIJSK+9lT3TSmWxUXP/ipVB1pF1ApMN5fqGCckPTNwmOfT4Z9wPkXGnhbwFTGrxZvbzTWxOg==", "type": "package", + "path": "Microsoft.Extensions.Logging/1.0.0", "files": [ - "Microsoft.Extensions.Logging.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Logging.1.0.0.nupkg.sha512", "Microsoft.Extensions.Logging.nuspec", - "lib/netcore50/Microsoft.Extensions.Logging.dll", - "lib/netcore50/Microsoft.Extensions.Logging.xml", "lib/netstandard1.1/Microsoft.Extensions.Logging.dll", "lib/netstandard1.1/Microsoft.Extensions.Logging.xml" ] }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-final": { - "sha512": "cuBUcNmHGLqG7zT4ZpGY21w0/zQNJzfw6tz3eIEU2PNLBeA0EfV2b9LHfgrIFhn74+xmgoKhwo/0Th3d28Cubw==", + "Microsoft.Extensions.Logging.Abstractions/1.0.0": { + "sha512": "wHT6oY50q36mAXBRKtFaB7u07WxKC5u2M8fi3PqHOOnHyUo9gD0u1TlCNR8UObHQxKMYwqlgI8TLcErpt29n8A==", "type": "package", + "path": "Microsoft.Extensions.Logging.Abstractions/1.0.0", "files": [ - "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-final.nupkg", - "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Logging.Abstractions.1.0.0.nupkg.sha512", "Microsoft.Extensions.Logging.Abstractions.nuspec", - "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.xml", "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll", "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.xml" ] }, - "Microsoft.Extensions.Logging.Console/1.0.0-rc2-final": { - "sha512": "wzTVkE0h7xKPB7PF/XMgTIuvckjzscgDqvpr2QhqMYxXeni7dUqAO8FUy4DQ8MljXikgLbKSUvJS9HgMhFD3ng==", + "Microsoft.Extensions.Logging.Console/1.0.0": { + "sha512": "GN4gFFONP12KbFEG9rNFpXuz6D2Tybcm8+c1wilaQ1eSl9zVX0gVRrKw/YRwxdwbM3eK7nWfRRqJaQPzOjtLnA==", "type": "package", + "path": "Microsoft.Extensions.Logging.Console/1.0.0", "files": [ - "Microsoft.Extensions.Logging.Console.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Logging.Console.1.0.0.nupkg.sha512", "Microsoft.Extensions.Logging.Console.nuspec", "lib/net451/Microsoft.Extensions.Logging.Console.dll", "lib/net451/Microsoft.Extensions.Logging.Console.xml", @@ -4291,11 +4528,12 @@ "lib/netstandard1.3/Microsoft.Extensions.Logging.Console.xml" ] }, - "Microsoft.Extensions.ObjectPool/1.0.0-rc2-final": { - "sha512": "78jJAea29pPuF7ydHXDNy/sR99OHVZ7U40K9ej6klAyEG12U7IftdF9b3nv/1Q6K8czYzll2in38BAdOeANRbw==", + "Microsoft.Extensions.ObjectPool/1.0.0": { + "sha512": "BTXoWSTrv/saLlNSg8l41YOoSKeUUanQLykUqRTtiUJz2xxQOCgm4ckPzrdmSK6w0mdjR2h7IrUDGdBF78Z7yg==", "type": "package", + "path": "Microsoft.Extensions.ObjectPool/1.0.0", "files": [ - "Microsoft.Extensions.ObjectPool.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.ObjectPool.1.0.0.nupkg.sha512", "Microsoft.Extensions.ObjectPool.nuspec", "lib/net451/Microsoft.Extensions.ObjectPool.dll", "lib/net451/Microsoft.Extensions.ObjectPool.xml", @@ -4303,176 +4541,179 @@ "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.xml" ] }, - "Microsoft.Extensions.Options/1.0.0-rc2-final": { - "sha512": "Sj7WVNsiMbULRas/DGKsZ3u6GA29AFAWGZwitVFQgIf/ppzM8VfnFyCRkSnwMA0gTD4u09scnQkKyl6Yi8kNuQ==", + "Microsoft.Extensions.Options/1.0.0": { + "sha512": "SdP3yPKF++JTkoa91pBDiE70uQkR/gdXWzOnMPbSj+eOqY1vgY+b8RVl+gh7TrJ2wlCK2QqnQtvCQlPPZRK36w==", "type": "package", + "path": "Microsoft.Extensions.Options/1.0.0", "files": [ - "Microsoft.Extensions.Options.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Options.1.0.0.nupkg.sha512", "Microsoft.Extensions.Options.nuspec", - "lib/netcore50/Microsoft.Extensions.Options.dll", - "lib/netcore50/Microsoft.Extensions.Options.xml", "lib/netstandard1.0/Microsoft.Extensions.Options.dll", "lib/netstandard1.0/Microsoft.Extensions.Options.xml" ] }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-final": { - "sha512": "OjXClhPcccu39GNAs6SH6J2iC2R883Wco7LKvPqnjo1aKJQRp9vFVFVueutJFABncZO7BZINgZCwgLxVQN3yIg==", + "Microsoft.Extensions.PlatformAbstractions/1.0.0": { + "sha512": "zyjUzrOmuevOAJpIo3Mt5GmpALVYCVdLZ99keMbmCxxgQH7oxzU58kGHzE6hAgYEiWsdfMJLjVR7r+vSmaJmtg==", "type": "package", + "path": "Microsoft.Extensions.PlatformAbstractions/1.0.0", "files": [ - "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.PlatformAbstractions.1.0.0.nupkg.sha512", "Microsoft.Extensions.PlatformAbstractions.nuspec", "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll", "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml", - "lib/netcore50/Microsoft.Extensions.PlatformAbstractions.dll", - "lib/netcore50/Microsoft.Extensions.PlatformAbstractions.xml", "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll", "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml" ] }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-final": { - "sha512": "5lXETW9MI0CIOOCtgeJcrX3jODcFkX04tr+K/MB+cRspPvYD3URbf4MRIwWgI5r7cu+8+efPxEH0tG1g8ldhQA==", + "Microsoft.Extensions.Primitives/1.0.0": { + "sha512": "3q2vzfKEDjL6JFkRpk5SFA3zarYsO6+ZYgoucNImrUMzDn0mFbEOL5p9oPoWiypwypbJVVjWTf557bXZ0YFLig==", "type": "package", + "path": "Microsoft.Extensions.Primitives/1.0.0", "files": [ - "Microsoft.Extensions.Primitives.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Primitives.1.0.0.nupkg.sha512", "Microsoft.Extensions.Primitives.nuspec", - "lib/netcore50/Microsoft.Extensions.Primitives.dll", - "lib/netcore50/Microsoft.Extensions.Primitives.xml", "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll", "lib/netstandard1.0/Microsoft.Extensions.Primitives.xml" ] }, - "Microsoft.Extensions.WebEncoders/1.0.0-rc2-final": { - "sha512": "OCXr7Y9u/tmKhmNMJqbAlMcUQxtpzJvZ1Jvs8LJoSyCCFVmZlwZ8c6k7ileYpW2jvxGGOQ6N64V184HY2uQPHg==", + "Microsoft.Extensions.WebEncoders/1.0.0": { + "sha512": "NSSIBREmHHiyoAFXV2LMA+a6RMZtTHxgUbHJGHRtnjmTKnRyticx5HAzNpy8VG9+HCCHenL9QD7zSA8jjgAi5A==", "type": "package", + "path": "Microsoft.Extensions.WebEncoders/1.0.0", "files": [ - "Microsoft.Extensions.WebEncoders.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.WebEncoders.1.0.0.nupkg.sha512", "Microsoft.Extensions.WebEncoders.nuspec", "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll", "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.xml" ] }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-final": { - "sha512": "80kfOb0U8FKsKxv0fHtJFhcAWeYIvTAz4NCrKi84n5XXzMPNV7DLdy6d0g2f7UCj0iOtNGE5cGvAFiWqqZFeEA==", + "Microsoft.Net.Http.Headers/1.0.0": { + "sha512": "1lr92itF1fKR2oEQ6gk1IUsuCgp7UMlf/b1sjlAyuDeUnttj39ra59GQHYpomglJX1UVNpi1/cSBbEsXoNeIhw==", "type": "package", + "path": "Microsoft.Net.Http.Headers/1.0.0", "files": [ - "Microsoft.Net.Http.Headers.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Net.Http.Headers.1.0.0.nupkg.sha512", "Microsoft.Net.Http.Headers.nuspec", "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll", "lib/netstandard1.1/Microsoft.Net.Http.Headers.xml" ] }, - "Microsoft.NETCore.App/1.0.0-rc2-3002702": { - "sha512": "G+wsg7zwathgjAOZ2w0XbHU0MD4GEHIpi/JsvBGmbACW+/Dsx2YoXai7LLItfe5ZVidqBXXQCz8NxCKbKqr8Ww==", + "Microsoft.NETCore.App/1.0.0": { + "sha512": "Bv40dLDrT+Igcg1e6otW3D8voeJCfcAxOlsxSVlDz+J+cdWls5kblZvPHHvx7gX3/oJoQVIkEeO3sMyv5PSVJA==", "type": "package", + "path": "Microsoft.NETCore.App/1.0.0", "files": [ - "Microsoft.NETCore.App.1.0.0-rc2-3002702.nupkg.sha512", + "Microsoft.NETCore.App.1.0.0.nupkg.sha512", "Microsoft.NETCore.App.nuspec", "ThirdPartyNotices.txt", - "dotnet_library_license.txt" + "dotnet_library_license.txt", + "lib/netcoreapp1.0/_._" ] }, - "Microsoft.NETCore.DotNetHost/1.0.1-rc2-002702-00": { - "sha512": "AE5A6IqSArMD6a1JbMkJtZqO4GwSzyoqnUhSCOUvgqTcWM38i6Xk6DbSK2IrqxuYEYT6FvPaj7k5M/VYZZl7cA==", + "Microsoft.NETCore.DotNetHost/1.0.1": { + "sha512": "uaMgykq6AckP3hZW4dsD6zjocxyXPz0tcTl8OX7mlSUWsyFXdtf45sjdwI0JIHxt3gnI6GihAlOAwYK8HE4niQ==", "type": "package", + "path": "Microsoft.NETCore.DotNetHost/1.0.1", "files": [ - "Microsoft.NETCore.DotNetHost.1.0.1-rc2-002702-00.nupkg.sha512", + "Microsoft.NETCore.DotNetHost.1.0.1.nupkg.sha512", "Microsoft.NETCore.DotNetHost.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "runtime.json" ] }, - "Microsoft.NETCore.DotNetHostPolicy/1.0.1-rc2-002702-00": { - "sha512": "Mg1V8yBpxH5I/85kRHvALqZsyHxDF7o4jOcKOVH/AywPLWTa/qFpy4Dx3MwGYOw1q6SclhH6Y9JvzIimorjeRg==", + "Microsoft.NETCore.DotNetHostPolicy/1.0.1": { + "sha512": "d8AQ+ZVj2iK9sbgl3IEsshCSaumhM1PNTPHxldZAQLOoI1BKF8QZ1zPCNqwBGisPiWOE3f/1SHDbQi1BTRBxuA==", "type": "package", + "path": "Microsoft.NETCore.DotNetHostPolicy/1.0.1", "files": [ - "Microsoft.NETCore.DotNetHostPolicy.1.0.1-rc2-002702-00.nupkg.sha512", + "Microsoft.NETCore.DotNetHostPolicy.1.0.1.nupkg.sha512", "Microsoft.NETCore.DotNetHostPolicy.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "runtime.json" ] }, - "Microsoft.NETCore.DotNetHostResolver/1.0.1-rc2-002702-00": { - "sha512": "6QUf62ktb7V21ctlmEhzg/JnLyQULfLCro5Zycf9kgasVA3lPwX7pxXPbW1R/BQSxuhnRuYlFQIFAcFzb866Tw==", + "Microsoft.NETCore.DotNetHostResolver/1.0.1": { + "sha512": "GEXgpAHB9E0OhfcmNJ664Xcd2bJkz2qkGIAFmCgEI5ANlQy4qEEmBVfUqA+Z9HB85ZwWxZc1eIJ6fxdxcjrctg==", "type": "package", + "path": "Microsoft.NETCore.DotNetHostResolver/1.0.1", "files": [ - "Microsoft.NETCore.DotNetHostResolver.1.0.1-rc2-002702-00.nupkg.sha512", + "Microsoft.NETCore.DotNetHostResolver.1.0.1.nupkg.sha512", "Microsoft.NETCore.DotNetHostResolver.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "runtime.json" ] }, - "Microsoft.NETCore.Platforms/1.0.1-rc2-24027": { - "sha512": "BIZpJMovdHgUbCrZR9suwwLpZMNehIkaFKiIb9X5+wPjXNHMSQ91ETSASAnEXERyU7+ptJAfJGqgr3Y9ly98MQ==", + "Microsoft.NETCore.Jit/1.0.2": { + "sha512": "Ok2vWofa6X8WD9vc4pfLHwvJz1/B6t3gOAoZcjrjrQf7lQOlNIuZIZtLn3wnWX28DuQGpPJkRlBxFj7Z5txNqw==", "type": "package", + "path": "Microsoft.NETCore.Jit/1.0.2", "files": [ - "Microsoft.NETCore.Platforms.1.0.1-rc2-24027.nupkg.sha512", - "Microsoft.NETCore.Platforms.nuspec", + "Microsoft.NETCore.Jit.1.0.2.nupkg.sha512", + "Microsoft.NETCore.Jit.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "runtime.json" ] }, - "Microsoft.NETCore.Runtime/1.0.2-rc2-24027": { - "sha512": "z/R3npq0vJi1urIComaxGXX2CCfv27N78pNa3dMG4fyCQZA6u50v8ttWFnPV1caSN1O5JvDavqpBXVT1FdHcrA==", + "Microsoft.NETCore.Platforms/1.0.1": { + "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==", "type": "package", + "path": "Microsoft.NETCore.Platforms/1.0.1", "files": [ - "Microsoft.NETCore.Runtime.1.0.2-rc2-24027.nupkg.sha512", - "Microsoft.NETCore.Runtime.nuspec", + "Microsoft.NETCore.Platforms.1.0.1.nupkg.sha512", + "Microsoft.NETCore.Platforms.nuspec", "ThirdPartyNotices.txt", - "dotnet_library_license.txt" + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.json" ] }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.2-rc2-24027": { - "sha512": "ANtMxCAN/4krahv/EnSHzTMosrTb3lwMrxqR+NBNLGOhXPs+Vo/UiUSOppF30CHJjK0mQvRMJyQrOGTRKmv64Q==", + "Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "sha512": "A0x1xtTjYJWZr2DRzgfCOXgB0JkQg8twnmtTJ79wFje+IihlLbXtx6Z2AxyVokBM5ruwTedR6YdCmHk39QJdtQ==", "type": "package", + "path": "Microsoft.NETCore.Runtime.CoreCLR/1.0.2", "files": [ - "Microsoft.NETCore.Runtime.CoreCLR.1.0.2-rc2-24027.nupkg.sha512", + "Microsoft.NETCore.Runtime.CoreCLR.1.0.2.nupkg.sha512", "Microsoft.NETCore.Runtime.CoreCLR.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "runtime.json" ] }, - "Microsoft.NETCore.Runtime.Native/1.0.2-rc2-24027": { - "sha512": "aUtA5PJE7rGp0v6aKdYefj8GGpbf5nsND7xlMzPf0+n00YeYuM65sQtrd3TwtQlfmN4J57d40wfzEM3suVwWlg==", + "Microsoft.NETCore.Targets/1.0.1": { + "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", "type": "package", + "path": "Microsoft.NETCore.Targets/1.0.1", "files": [ - "Microsoft.NETCore.Runtime.Native.1.0.2-rc2-24027.nupkg.sha512", - "Microsoft.NETCore.Runtime.Native.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt" - ] - }, - "Microsoft.NETCore.Targets/1.0.1-rc2-24027": { - "sha512": "pNy4HhkgeM1kE/IqtDQLfUcMpy3NB3B/p8J/71G9Wvu2p/ARRH2hjq1TkETiqQW7ER9aFUs86wmgHyk3dtDgVQ==", - "type": "package", - "files": [ - "Microsoft.NETCore.Targets.1.0.1-rc2-24027.nupkg.sha512", + "Microsoft.NETCore.Targets.1.0.1.nupkg.sha512", "Microsoft.NETCore.Targets.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", + "lib/netstandard1.0/_._", "runtime.json" ] }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1-rc2-24027": { - "sha512": "/G/btXCgCbBpwWeeOoOiCAwayjcjPPW1hYqJ4uvreFA0J0+vu6o4pKQcypEz0X4CzmmUdcYG9hO6i43nBNBumg==", + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", "type": "package", + "path": "Microsoft.NETCore.Windows.ApiSets/1.0.1", "files": [ - "Microsoft.NETCore.Windows.ApiSets.1.0.1-rc2-24027.nupkg.sha512", + "Microsoft.NETCore.Windows.ApiSets.1.0.1.nupkg.sha512", "Microsoft.NETCore.Windows.ApiSets.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "runtime.json" ] }, - "Microsoft.VisualBasic/10.0.1-rc2-24027": { - "sha512": "qI8hR1LZUnSJivAFDPYIhBwWNIGa+kCpOAum4Oi2AR+8bV2FDiVK0t5an/wMeMjtsm3cLQzp0OAreQsMGogWXg==", + "Microsoft.VisualBasic/10.0.1": { + "sha512": "HpNyOf/4Tp2lh4FyywB55VITk0SqVxEjDzsVDDyF1yafDN6Bq18xcHowzCPINyYHUTgGcEtmpYiRsFdSo0KKdQ==", "type": "package", + "path": "Microsoft.VisualBasic/10.0.1", "files": [ - "Microsoft.VisualBasic.10.0.1-rc2-24027.nupkg.sha512", + "Microsoft.VisualBasic.10.0.1.nupkg.sha512", "Microsoft.VisualBasic.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4510,11 +4751,12 @@ "ref/wpa81/_._" ] }, - "Microsoft.Win32.Primitives/4.0.1-rc2-24027": { - "sha512": "ac5JNXIY6zjTxnjOmPyDHsG4a9u4cXzk3rSlmXRqBUdepWrmPErLx6tz6mnJJpRUS9ukZ/235KtcmVGIOXSk2g==", + "Microsoft.Win32.Primitives/4.0.1": { + "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", "type": "package", + "path": "Microsoft.Win32.Primitives/4.0.1", "files": [ - "Microsoft.Win32.Primitives.4.0.1-rc2-24027.nupkg.sha512", + "Microsoft.Win32.Primitives.4.0.1.nupkg.sha512", "Microsoft.Win32.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4545,11 +4787,12 @@ "ref/xamarinwatchos10/_._" ] }, - "Microsoft.Win32.Registry/4.0.0-rc2-24027": { - "sha512": "gBr/3xleRlegHUjRjLguwJ/TAbjvlrb4DGZkRBNNHbQGuSEUJyB4spgmmGdPATCHFAEdMhGcoVwMwbyE40prCw==", + "Microsoft.Win32.Registry/4.0.0": { + "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==", "type": "package", + "path": "Microsoft.Win32.Registry/4.0.0", "files": [ - "Microsoft.Win32.Registry.4.0.0-rc2-24027.nupkg.sha512", + "Microsoft.Win32.Registry.4.0.0.nupkg.sha512", "Microsoft.Win32.Registry.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4567,25 +4810,28 @@ "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", "runtimes/win/lib/netcore50/_._", "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll" ] }, - "NETStandard.Library/1.5.0-rc2-24027": { - "sha512": "SD27bvP2gNnlpC7HZUbnPOXS1M7VbBZoi0bdlqe5tj7weJQ2EyGDGw8mi7K1yUmeqjL6jPWBLSC28TDaLnyqwA==", + "NETStandard.Library/1.6.0": { + "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==", "type": "package", + "path": "NETStandard.Library/1.6.0", "files": [ - "NETStandard.Library.1.5.0-rc2-24027.nupkg.sha512", + "NETStandard.Library.1.6.0.nupkg.sha512", "NETStandard.Library.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt" ] }, - "Newtonsoft.Json/8.0.3": { - "sha512": "KGsYQdS2zLH+H8x2cZaSI7e+YZ4SFIbyy1YJQYl6GYBWjf5o4H1A68nxyq+WTyVSOJQ4GqS/DiPE+UseUizgMg==", + "Newtonsoft.Json/9.0.1": { + "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==", "type": "package", + "path": "Newtonsoft.Json/9.0.1", "files": [ - "Newtonsoft.Json.8.0.3.nupkg.sha512", + "Newtonsoft.Json.9.0.1.nupkg.sha512", "Newtonsoft.Json.nuspec", "lib/net20/Newtonsoft.Json.dll", "lib/net20/Newtonsoft.Json.xml", @@ -4595,18 +4841,21 @@ "lib/net40/Newtonsoft.Json.xml", "lib/net45/Newtonsoft.Json.dll", "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", - "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll", - "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml", "tools/install.ps1" ] }, - "NuGet.Common/3.5.0-beta-final": { - "sha512": "7eCg4ky9NtTnxY1+2VtDKIYX137QejH8Dsuw6fENU53N6OeoROsrv1MUm0pu4e3TF8VH1eL5G3Vx/G30VdXEDg==", + "NuGet.Common/3.5.0-beta2-1484": { + "sha512": "rLBmcZOPVF7Mne/LumDNACZZyI5B67hjylt+Z/WSEUQ/IXE9nLv8IVL0+T9xljIaSSQCjO8cOtmJ6ztqrsQKcQ==", "type": "package", + "path": "NuGet.Common/3.5.0-beta2-1484", "files": [ - "NuGet.Common.3.5.0-beta-final.nupkg.sha512", + "NuGet.Common.3.5.0-beta2-1484.nupkg.sha512", "NuGet.Common.nuspec", "lib/net45/NuGet.Common.dll", "lib/net45/NuGet.Common.xml", @@ -4614,11 +4863,12 @@ "lib/netstandard1.3/NuGet.Common.xml" ] }, - "NuGet.Configuration/3.5.0-beta-final": { - "sha512": "XNEuz+JnexgJ+awG5laoKpjbQY62eeSWvpWyNAZs9tVm2Y2Qz2P6o5jYkSfteq1USp672e0G41gcD/XM0XR1Qw==", + "NuGet.Configuration/3.5.0-beta2-1484": { + "sha512": "ee2jhTjPMztWmUIuaM1pdVRytXO7n8V/ZlENzJ/uTsZcnAbPZZLasAUoKJf7kKacBNTfSHd1MmWII/YweHWPGQ==", "type": "package", + "path": "NuGet.Configuration/3.5.0-beta2-1484", "files": [ - "NuGet.Configuration.3.5.0-beta-final.nupkg.sha512", + "NuGet.Configuration.3.5.0-beta2-1484.nupkg.sha512", "NuGet.Configuration.nuspec", "lib/net45/NuGet.Configuration.dll", "lib/net45/NuGet.Configuration.xml", @@ -4626,11 +4876,12 @@ "lib/netstandard1.3/NuGet.Configuration.xml" ] }, - "NuGet.DependencyResolver.Core/3.5.0-beta-final": { - "sha512": "0K284c0Q9u7ibCLE+NUqNe4p0BkSCVyMzWNYYxGY7ehujGUnEC+yGohFpyAu0RPt5bVBCzsbWNe+hXeDoQsjSg==", + "NuGet.DependencyResolver.Core/3.5.0-beta2-1484": { + "sha512": "C33r3vl2eMbo3YFi7mKMnyFBSVzXxaQA045913UpQQi6oIFkNn8m9Ozztbfv7wQXQGlG+ftopObFE/Ig5I2e8Q==", "type": "package", + "path": "NuGet.DependencyResolver.Core/3.5.0-beta2-1484", "files": [ - "NuGet.DependencyResolver.Core.3.5.0-beta-final.nupkg.sha512", + "NuGet.DependencyResolver.Core.3.5.0-beta2-1484.nupkg.sha512", "NuGet.DependencyResolver.Core.nuspec", "lib/net45/NuGet.DependencyResolver.Core.dll", "lib/net45/NuGet.DependencyResolver.Core.xml", @@ -4638,23 +4889,27 @@ "lib/netstandard1.3/NuGet.DependencyResolver.Core.xml" ] }, - "NuGet.Frameworks/3.5.0-beta-final": { - "sha512": "Si7O1OFxUryBq3xuq2AIwADM8WUMIBQOmUdTJBSaxV+KesShLJfgrr7Dl+Tg/nVETSEArJS8ktscv7gjKqtosg==", + "NuGet.Frameworks/3.5.0-beta2-1484": { + "sha512": "AZoX0c05qgSfx0IOGTbLXa2fD7eM2WUqKP3osMMvSxK+tOGmctHuFlvjXxMHBv9yg0/13KdH0osV/zI7+SjzOA==", "type": "package", + "path": "NuGet.Frameworks/3.5.0-beta2-1484", "files": [ - "NuGet.Frameworks.3.5.0-beta-final.nupkg.sha512", + "NuGet.Frameworks.3.5.0-beta2-1484.nupkg.sha512", "NuGet.Frameworks.nuspec", + "lib/net40-client/NuGet.Frameworks.dll", + "lib/net40-client/NuGet.Frameworks.xml", "lib/net45/NuGet.Frameworks.dll", "lib/net45/NuGet.Frameworks.xml", "lib/netstandard1.3/NuGet.Frameworks.dll", "lib/netstandard1.3/NuGet.Frameworks.xml" ] }, - "NuGet.LibraryModel/3.5.0-beta-final": { - "sha512": "Q/lVn/2Vg2wDiFMD8BwvzmPGw0gEusTt+cqIZ8KNICqUPJ94ICBOZRuEebKmTD/+azrqudDr/ZkI8q7hqLVhaQ==", + "NuGet.LibraryModel/3.5.0-beta2-1484": { + "sha512": "DliyPvB2O5sLAjhlBceACSm6fzzPDoWRdzbs/7Z89TWqp2JRQ98I5ds5HzeMJjfqO6t1BYoCVDV0h1ymoTuyVQ==", "type": "package", + "path": "NuGet.LibraryModel/3.5.0-beta2-1484", "files": [ - "NuGet.LibraryModel.3.5.0-beta-final.nupkg.sha512", + "NuGet.LibraryModel.3.5.0-beta2-1484.nupkg.sha512", "NuGet.LibraryModel.nuspec", "lib/net45/NuGet.LibraryModel.dll", "lib/net45/NuGet.LibraryModel.xml", @@ -4662,11 +4917,12 @@ "lib/netstandard1.3/NuGet.LibraryModel.xml" ] }, - "NuGet.Packaging/3.5.0-beta-final": { - "sha512": "wJSrtokTPmpIkNhJLiG5GPxdRFCVl6XB3MmgLCyRhD2O2wZVQqvvL6SELOz/61EU0C8m9ni/UiiNRqTEtH5QZw==", + "NuGet.Packaging/3.5.0-beta2-1484": { + "sha512": "/+7d3vvCel4KhJo6AyOneg07fbAkUsy/ORgIaxW3nNdJubCXSrAdg1wfQpwzBygmErjrPcdYzzk2y2Sc6m7hwQ==", "type": "package", + "path": "NuGet.Packaging/3.5.0-beta2-1484", "files": [ - "NuGet.Packaging.3.5.0-beta-final.nupkg.sha512", + "NuGet.Packaging.3.5.0-beta2-1484.nupkg.sha512", "NuGet.Packaging.nuspec", "lib/net45/NuGet.Packaging.dll", "lib/net45/NuGet.Packaging.xml", @@ -4674,11 +4930,12 @@ "lib/netstandard1.3/NuGet.Packaging.xml" ] }, - "NuGet.Packaging.Core/3.5.0-beta-final": { - "sha512": "sdc8dUnbjEpNzIK5h5frJgn7ARQjQLdXMC5YrMHoEh0sCJnd2p1Lu4JvHK7mqn/MurVCAvoAjNDyazzFaVCD0w==", + "NuGet.Packaging.Core/3.5.0-beta2-1484": { + "sha512": "Lsz2lgYH0mdOvuL8C3G4XLm9EaAheBOqrgLgnBNxCeLGLU+n+Zu8Lt6K1bpzgkeKyTyAhJdWbv/3lS4w7s04gw==", "type": "package", + "path": "NuGet.Packaging.Core/3.5.0-beta2-1484", "files": [ - "NuGet.Packaging.Core.3.5.0-beta-final.nupkg.sha512", + "NuGet.Packaging.Core.3.5.0-beta2-1484.nupkg.sha512", "NuGet.Packaging.Core.nuspec", "lib/net45/NuGet.Packaging.Core.dll", "lib/net45/NuGet.Packaging.Core.xml", @@ -4686,11 +4943,12 @@ "lib/netstandard1.3/NuGet.Packaging.Core.xml" ] }, - "NuGet.Packaging.Core.Types/3.5.0-beta-final": { - "sha512": "35AVdtLFJFp66CI9EDS61iviOe4UsCwfGh7RILK3j2ihZtlbTIIS5ygjmS8GnTkhNpmdwQRIk/rUempv4ABBxQ==", + "NuGet.Packaging.Core.Types/3.5.0-beta2-1484": { + "sha512": "4mEXZBoe/RKTDVQGwdrl/f5gqolU2d1JWjpbGdQv5EG/xQCC8IQ8FTNYzk0+ydV/vuRM1yaNe+6UQ90nGE+1kQ==", "type": "package", + "path": "NuGet.Packaging.Core.Types/3.5.0-beta2-1484", "files": [ - "NuGet.Packaging.Core.Types.3.5.0-beta-final.nupkg.sha512", + "NuGet.Packaging.Core.Types.3.5.0-beta2-1484.nupkg.sha512", "NuGet.Packaging.Core.Types.nuspec", "lib/net45/NuGet.Packaging.Core.Types.dll", "lib/net45/NuGet.Packaging.Core.Types.xml", @@ -4698,11 +4956,12 @@ "lib/netstandard1.3/NuGet.Packaging.Core.Types.xml" ] }, - "NuGet.ProjectModel/3.5.0-beta-final": { - "sha512": "ddWYHyNLP2InZMui7UduGNFATnXdVe4vjE0NdDGNGKF+zXgeRna5hYWvFfmL/UZN7yr6uvN3Kq4A1+/qjoSn3w==", + "NuGet.ProjectModel/3.5.0-beta2-1484": { + "sha512": "7SFxD1wBRusat8rJm/hICDues0Fm9ECNJLaxbzq6xdPBBN3NljGMp3V3ZeyEose6ItetqPBY9+ZcKhiPIsmx6A==", "type": "package", + "path": "NuGet.ProjectModel/3.5.0-beta2-1484", "files": [ - "NuGet.ProjectModel.3.5.0-beta-final.nupkg.sha512", + "NuGet.ProjectModel.3.5.0-beta2-1484.nupkg.sha512", "NuGet.ProjectModel.nuspec", "lib/net45/NuGet.ProjectModel.dll", "lib/net45/NuGet.ProjectModel.xml", @@ -4710,11 +4969,12 @@ "lib/netstandard1.3/NuGet.ProjectModel.xml" ] }, - "NuGet.Protocol.Core.Types/3.5.0-beta-final": { - "sha512": "1r6K1IVpCu8Lti319FSzRyCmjfwLCoWAwdqdAWOAO3JK7ivyToSi3Gk1N3bHl6jiqiXkKGHZIQv5WR7QPj/fqw==", + "NuGet.Protocol.Core.Types/3.5.0-beta2-1484": { + "sha512": "y+HMFeV4/vqryIhRQATC1HZvE9QOGgOwesCUWlVAY24yi4HcTTVWWSv0WVX8OzJj+uobYWVfICFyC28JnuMEoA==", "type": "package", + "path": "NuGet.Protocol.Core.Types/3.5.0-beta2-1484", "files": [ - "NuGet.Protocol.Core.Types.3.5.0-beta-final.nupkg.sha512", + "NuGet.Protocol.Core.Types.3.5.0-beta2-1484.nupkg.sha512", "NuGet.Protocol.Core.Types.nuspec", "lib/net45/NuGet.Protocol.Core.Types.dll", "lib/net45/NuGet.Protocol.Core.Types.xml", @@ -4722,11 +4982,12 @@ "lib/netstandard1.3/NuGet.Protocol.Core.Types.xml" ] }, - "NuGet.Protocol.Core.v3/3.5.0-beta-final": { - "sha512": "avrqOi+8sDERlbXhSURd5DPtEQoGUcThuVH784i0AxIeYPtZBV66Eq9P8dcoDR7S+cXd4Zeppc+FoMfh1Jw8Dg==", + "NuGet.Protocol.Core.v3/3.5.0-beta2-1484": { + "sha512": "DsLSsObYuTF9CJ22/ti5femoz1H5zZiQ5SjnZjhoNrz26Af0M9y3fcLvJGTFO7xPDU6QC1G9lZ0fNW7ucH/GpQ==", "type": "package", + "path": "NuGet.Protocol.Core.v3/3.5.0-beta2-1484", "files": [ - "NuGet.Protocol.Core.v3.3.5.0-beta-final.nupkg.sha512", + "NuGet.Protocol.Core.v3.3.5.0-beta2-1484.nupkg.sha512", "NuGet.Protocol.Core.v3.nuspec", "lib/net45/NuGet.Protocol.Core.v3.dll", "lib/net45/NuGet.Protocol.Core.v3.xml", @@ -4734,11 +4995,12 @@ "lib/netstandard1.3/NuGet.Protocol.Core.v3.xml" ] }, - "NuGet.Repositories/3.5.0-beta-final": { - "sha512": "+w022gOL3QFrNnx0dXMBOmV11q2kGLYV/sFY5bdIaK778ELzAKRCdBsFfxs0YNPLKRGtq2Gn4FNOmyviKuNe4g==", + "NuGet.Repositories/3.5.0-beta2-1484": { + "sha512": "+3ozgJleYPKL2VG44XRzVyFGu8dLOIJ2Kohg2VY87DzTJEnH3kLOMhudZERowNxxzfJpwiSDUXNsDNiWH4EujA==", "type": "package", + "path": "NuGet.Repositories/3.5.0-beta2-1484", "files": [ - "NuGet.Repositories.3.5.0-beta-final.nupkg.sha512", + "NuGet.Repositories.3.5.0-beta2-1484.nupkg.sha512", "NuGet.Repositories.nuspec", "lib/net45/NuGet.Repositories.dll", "lib/net45/NuGet.Repositories.xml", @@ -4746,11 +5008,12 @@ "lib/netstandard1.3/NuGet.Repositories.xml" ] }, - "NuGet.RuntimeModel/3.5.0-beta-final": { - "sha512": "5opNw7zHG5wC0Qx9AzlopdPg48Tf/QVcVVKmPRuwUa3VBA1b9DBjY+1jCkaof8JRzyHZqLnxd6T9BuT98Jk0YQ==", + "NuGet.RuntimeModel/3.5.0-beta2-1484": { + "sha512": "vg29WbKcExD9AJrKMr7NB9pnp+0MTAcDHB6gFHCqRynSo6jgjC8q+ZPAlxC115rQiO8fqzOEP59Q8hx20anUtA==", "type": "package", + "path": "NuGet.RuntimeModel/3.5.0-beta2-1484", "files": [ - "NuGet.RuntimeModel.3.5.0-beta-final.nupkg.sha512", + "NuGet.RuntimeModel.3.5.0-beta2-1484.nupkg.sha512", "NuGet.RuntimeModel.nuspec", "lib/net45/NuGet.RuntimeModel.dll", "lib/net45/NuGet.RuntimeModel.xml", @@ -4758,11 +5021,12 @@ "lib/netstandard1.3/NuGet.RuntimeModel.xml" ] }, - "NuGet.Versioning/3.5.0-beta-final": { - "sha512": "fwFF9Mck1hgZVDvvJLU81gcaidMksfRoCwyjBALEXxnp1fJr4xLyGbTRdbf2OKI5OODGuUpxaMkcz7P4T8HsXw==", + "NuGet.Versioning/3.5.0-beta2-1484": { + "sha512": "Stok+SI5lWxOkTgZZM7jT4xuAZogm5+j85mKJeHSXb8o0OAbB+qDX9jkdM2wIEnjoR8R29J0nQYwk2Kl2lWFpA==", "type": "package", + "path": "NuGet.Versioning/3.5.0-beta2-1484", "files": [ - "NuGet.Versioning.3.5.0-beta-final.nupkg.sha512", + "NuGet.Versioning.3.5.0-beta2-1484.nupkg.sha512", "NuGet.Versioning.nuspec", "lib/net45/NuGet.Versioning.dll", "lib/net45/NuGet.Versioning.xml", @@ -4770,75 +5034,90 @@ "lib/netstandard1.0/NuGet.Versioning.xml" ] }, - "runtime.native.System/4.0.0-rc2-24027": { - "sha512": "bC0GLcJTry9N+ra9qb+zYSQHnBpy4ZMVJXRRSuu7aD/cQoZPQtySql110ec9REOKsE6tf2ZoolczpCOmzwKW8g==", + "runtime.native.System/4.0.0": { + "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==", "type": "package", + "path": "runtime.native.System/4.0.0", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", - "runtime.native.System.4.0.0-rc2-24027.nupkg.sha512", + "lib/netstandard1.0/_._", + "runtime.native.System.4.0.0.nupkg.sha512", "runtime.native.System.nuspec" ] }, - "runtime.native.System.IO.Compression/4.1.0-rc2-24027": { - "sha512": "r84dFA/jE921UfQNrFyNUAdvU//SNzdAv2eMb4YXH4DlXF0V/FM5QqYodZQkr4tVNbQM3KqIn1eIjbWcDCB7Dg==", + "runtime.native.System.IO.Compression/4.1.0": { + "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==", "type": "package", + "path": "runtime.native.System.IO.Compression/4.1.0", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", - "runtime.native.System.IO.Compression.4.1.0-rc2-24027.nupkg.sha512", + "lib/netstandard1.0/_._", + "runtime.native.System.IO.Compression.4.1.0.nupkg.sha512", "runtime.native.System.IO.Compression.nuspec" ] }, - "runtime.native.System.Net.Http/4.0.1-rc2-24027": { - "sha512": "NtYGs9vDkR/XtJAA2batr1MxMM/JqtvCIMzJ3QdErd5HoALZSv5O9YQfBPvdsrGUPDyDgbIa8WB0Q/iFv+o12A==", + "runtime.native.System.Net.Http/4.0.1": { + "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==", "type": "package", + "path": "runtime.native.System.Net.Http/4.0.1", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", - "runtime.native.System.Net.Http.4.0.1-rc2-24027.nupkg.sha512", + "lib/netstandard1.0/_._", + "runtime.native.System.Net.Http.4.0.1.nupkg.sha512", "runtime.native.System.Net.Http.nuspec" ] }, - "runtime.native.System.Net.Security/4.0.1-rc2-24027": { - "sha512": "LFbuFstk7gCPPefhVlfvTsnf0GbRSRpzI8yK319/IZakJBQhIEBQEK1aawg29PfAQf7Pqmt8FAUT4tkhhHmH9A==", + "runtime.native.System.Net.Security/4.0.1": { + "sha512": "Az6Ff6rZFb8nYGAaejFR6jr8ktt9f3e1Q/yKdw0pwHNTLaO/1eCAC9vzBoR9YAb0QeZD6fZXl1A9tRB5stpzXA==", "type": "package", + "path": "runtime.native.System.Net.Security/4.0.1", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", - "runtime.native.System.Net.Security.4.0.1-rc2-24027.nupkg.sha512", + "lib/netstandard1.0/_._", + "runtime.native.System.Net.Security.4.0.1.nupkg.sha512", "runtime.native.System.Net.Security.nuspec" ] }, - "runtime.native.System.Security.Cryptography/4.0.0-rc2-24027": { - "sha512": "Xi58pn6uTrwo2hz2mhR7LbqaukuS3eRsVg6Y5BZGDtthJmv/LGh//3jtVASQMK14ByRVZoK3nP8S+l/2gt+R+g==", + "runtime.native.System.Security.Cryptography/4.0.0": { + "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", "type": "package", + "path": "runtime.native.System.Security.Cryptography/4.0.0", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", - "runtime.native.System.Security.Cryptography.4.0.0-rc2-24027.nupkg.sha512", + "lib/netstandard1.0/_._", + "runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512", "runtime.native.System.Security.Cryptography.nuspec" ] }, - "System.AppContext/4.1.0-rc2-24027": { - "sha512": "brLKF/+Dhn1ylN+VoN/tcur89LFerCUmqBFug+hbMHTKw3UVIghn+fS9rk0mad8jCr1LjHx2TWQhrg9peDEkmg==", + "System.AppContext/4.1.0": { + "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", "type": "package", + "path": "System.AppContext/4.1.0", "files": [ - "System.AppContext.4.1.0-rc2-24027.nupkg.sha512", + "System.AppContext.4.1.0.nupkg.sha512", "System.AppContext.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/System.AppContext.dll", - "lib/net462/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", "lib/xamarinwatchos10/_._", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", - "ref/net462/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", "ref/netstandard1.3/System.AppContext.dll", "ref/netstandard1.3/System.AppContext.xml", "ref/netstandard1.3/de/System.AppContext.xml", @@ -4850,28 +5129,30 @@ "ref/netstandard1.3/ru/System.AppContext.xml", "ref/netstandard1.3/zh-hans/System.AppContext.xml", "ref/netstandard1.3/zh-hant/System.AppContext.xml", - "ref/netstandard1.5/System.AppContext.dll", - "ref/netstandard1.5/System.AppContext.xml", - "ref/netstandard1.5/de/System.AppContext.xml", - "ref/netstandard1.5/es/System.AppContext.xml", - "ref/netstandard1.5/fr/System.AppContext.xml", - "ref/netstandard1.5/it/System.AppContext.xml", - "ref/netstandard1.5/ja/System.AppContext.xml", - "ref/netstandard1.5/ko/System.AppContext.xml", - "ref/netstandard1.5/ru/System.AppContext.xml", - "ref/netstandard1.5/zh-hans/System.AppContext.xml", - "ref/netstandard1.5/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll" ] }, - "System.Buffers/4.0.0-rc2-24027": { - "sha512": "eyzIgf8Mh/SjxN1gsGnH09ICA5U2TGWU5I3Rp1V0ayO9UmTf5XrsZo3+LwKbj+fycoh2yYg0leFa7IG0/+Bs3g==", + "System.Buffers/4.0.0": { + "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==", "type": "package", + "path": "System.Buffers/4.0.0", "files": [ - "System.Buffers.4.0.0-rc2-24027.nupkg.sha512", + "System.Buffers.4.0.0.nupkg.sha512", "System.Buffers.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4879,11 +5160,12 @@ "lib/netstandard1.1/System.Buffers.dll" ] }, - "System.Collections/4.0.11-rc2-24027": { - "sha512": "wi4oT2B06Ev7vDPeJki7HVJ3qPYJIilzf+p81JuNaBD9L2wi9Y2L5BsQ6ToncW+lYZafuMea/hiK1xX1Ge1VWQ==", + "System.Collections/4.0.11": { + "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", "type": "package", + "path": "System.Collections/4.0.11", "files": [ - "System.Collections.4.0.11-rc2-24027.nupkg.sha512", + "System.Collections.4.0.11.nupkg.sha512", "System.Collections.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4944,11 +5226,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Collections.Concurrent/4.0.12-rc2-24027": { - "sha512": "0XN+QpKMG5xHRZ50hV6Yn1ojqAhZ2CL8q4vT316ipEB3yEb/ROMjC18Html5QreF12ZS6Le1AWtIB1Qgi2FzvA==", + "System.Collections.Concurrent/4.0.12": { + "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", "type": "package", + "path": "System.Collections.Concurrent/4.0.12", "files": [ - "System.Collections.Concurrent.4.0.12-rc2-24027.nupkg.sha512", + "System.Collections.Concurrent.4.0.12.nupkg.sha512", "System.Collections.Concurrent.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5009,11 +5292,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Collections.Immutable/1.2.0-rc2-24027": { - "sha512": "bn4jDP6DOvUHTlpUVa4ehecoz+V4YL4gdL6yOXdruc/3XHRVL2j/ZIggusM8f90uUSQhg7bgvBuLmQCGG3cZtg==", + "System.Collections.Immutable/1.2.0": { + "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==", "type": "package", + "path": "System.Collections.Immutable/1.2.0", "files": [ - "System.Collections.Immutable.1.2.0-rc2-24027.nupkg.sha512", + "System.Collections.Immutable.1.2.0.nupkg.sha512", "System.Collections.Immutable.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5023,11 +5307,12 @@ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml" ] }, - "System.Collections.NonGeneric/4.0.1-rc2-24027": { - "sha512": "txfwF71o0wY1QkQQqY9svm0+w12fZla/DBNMV1lpcuqzipu854Qg40meH2aPU3qjnHbRvdyM9dglYyE6/RachQ==", + "System.Collections.NonGeneric/4.0.1": { + "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==", "type": "package", + "path": "System.Collections.NonGeneric/4.0.1", "files": [ - "System.Collections.NonGeneric.4.0.1-rc2-24027.nupkg.sha512", + "System.Collections.NonGeneric.4.0.1.nupkg.sha512", "System.Collections.NonGeneric.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5059,11 +5344,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Collections.Specialized/4.0.1-rc2-24027": { - "sha512": "1qeRkJqzH2NXFxOV0IehUM4iMvpZBjUnL2JTEocOIdLXoUc3VDiFaQK/Z7GfmZrvNrA0OBq5iJqFReitxH5sZQ==", + "System.Collections.Specialized/4.0.1": { + "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==", "type": "package", + "path": "System.Collections.Specialized/4.0.1", "files": [ - "System.Collections.Specialized.4.0.1-rc2-24027.nupkg.sha512", + "System.Collections.Specialized.4.0.1.nupkg.sha512", "System.Collections.Specialized.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5095,11 +5381,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.ComponentModel/4.0.1-rc2-24027": { - "sha512": "6ne+Yk/6J59NZ19jiKjxwRPS2VIofrps2xkGDxMpyiHzEk4xpIY0kzt0ZABvTpdOYpvOw7bz2Ls2/X0QiuSjQg==", + "System.ComponentModel/4.0.1": { + "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", "type": "package", + "path": "System.ComponentModel/4.0.1", "files": [ - "System.ComponentModel.4.0.1-rc2-24027.nupkg.sha512", + "System.ComponentModel.4.0.1.nupkg.sha512", "System.ComponentModel.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5151,11 +5438,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.ComponentModel.Annotations/4.1.0-rc2-24027": { - "sha512": "BRJ7eUoaukLaxXlaVIOr7SKXQoF6ie54eCTTiWwp8NdIWirlOfPUQUFANPjcosDvKcUQLXksCiH8Wkj7ApRkQw==", + "System.ComponentModel.Annotations/4.1.0": { + "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==", "type": "package", + "path": "System.ComponentModel.Annotations/4.1.0", "files": [ - "System.ComponentModel.Annotations.4.1.0-rc2-24027.nupkg.sha512", + "System.ComponentModel.Annotations.4.1.0.nupkg.sha512", "System.ComponentModel.Annotations.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5227,11 +5515,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.ComponentModel.Primitives/4.0.1-rc2-24027": { - "sha512": "yTC0+qi9NaO0tt+1proIshyQ32slseRC6f/mrZLJU+pJRDY2k1nMage7AySH1qk9ZHw9KjiXMRjkRwgrQRQoSQ==", + "System.ComponentModel.Primitives/4.1.0": { + "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==", "type": "package", + "path": "System.ComponentModel.Primitives/4.1.0", "files": [ - "System.ComponentModel.Primitives.4.0.1-rc2-24027.nupkg.sha512", + "System.ComponentModel.Primitives.4.1.0.nupkg.sha512", "System.ComponentModel.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5263,18 +5552,21 @@ "ref/xamarinwatchos10/_._" ] }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-24027": { - "sha512": "HGB9P4M6eAWPRzFE+F+OCaNnhr2+0trWbfhHS/OoJnrdf1f8Cl6FSYAV2B5C9fxUH326Ew57fcEKloMJY4Bimg==", + "System.ComponentModel.TypeConverter/4.1.0": { + "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==", "type": "package", + "path": "System.ComponentModel.TypeConverter/4.1.0", "files": [ - "System.ComponentModel.TypeConverter.4.0.1-rc2-24027.nupkg.sha512", + "System.ComponentModel.TypeConverter.4.1.0.nupkg.sha512", "System.ComponentModel.TypeConverter.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", @@ -5282,6 +5574,7 @@ "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", @@ -5293,17 +5586,29 @@ "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._" ] }, - "System.Console/4.0.0-rc2-24027": { - "sha512": "ZkOW7ehVR6vnVTfttO0Z1uf3v7mT8cxQZbPHaGDyTt65qh4WzQOXgZYWqDNduyA1xWlvKh28XAhAkK0P39CcAA==", + "System.Console/4.0.0": { + "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", "type": "package", + "path": "System.Console/4.0.0", "files": [ - "System.Console.4.0.0-rc2-24027.nupkg.sha512", + "System.Console.4.0.0.nupkg.sha512", "System.Console.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5334,11 +5639,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Diagnostics.Contracts/4.0.1-rc2-24027": { - "sha512": "UiVz+conwNlcYGvF69rRjROVJeSNOXpkHKMGAfIZx1zvTrZkOM2rcPjZ00aaYA+y9rR0GAGKwzuYo+JDkuyupw==", + "System.Diagnostics.Contracts/4.0.1": { + "sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==", "type": "package", + "path": "System.Diagnostics.Contracts/4.0.1", "files": [ - "System.Diagnostics.Contracts.4.0.1-rc2-24027.nupkg.sha512", + "System.Diagnostics.Contracts.4.0.1.nupkg.sha512", "System.Diagnostics.Contracts.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5391,11 +5697,12 @@ "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll" ] }, - "System.Diagnostics.Debug/4.0.11-rc2-24027": { - "sha512": "k0ckwL97zqxiSjRpgmkjUoP51LvEzMshynNuNOyUsKLQTHVieTsrg2YiBnou0AsDnDk/maCmuPJvoJR0qIcOuQ==", + "System.Diagnostics.Debug/4.0.11": { + "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", "type": "package", + "path": "System.Diagnostics.Debug/4.0.11", "files": [ - "System.Diagnostics.Debug.4.0.11-rc2-24027.nupkg.sha512", + "System.Diagnostics.Debug.4.0.11.nupkg.sha512", "System.Diagnostics.Debug.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5456,11 +5763,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Diagnostics.DiagnosticSource/4.0.0-rc2-24027": { - "sha512": "NPjXdTV6+9D0ZaHUn5JI0lxusxZAKOuHIVPmMXV+L4Ypm/nFaH+gDMn0o6ZNb9B3l46DfdxyrZYc0E2AfEHQrA==", + "System.Diagnostics.DiagnosticSource/4.0.0": { + "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==", "type": "package", + "path": "System.Diagnostics.DiagnosticSource/4.0.0", "files": [ - "System.Diagnostics.DiagnosticSource.4.0.0-rc2-24027.nupkg.sha512", + "System.Diagnostics.DiagnosticSource.4.0.0.nupkg.sha512", "System.Diagnostics.DiagnosticSource.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5474,11 +5782,12 @@ "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml" ] }, - "System.Diagnostics.FileVersionInfo/4.0.0-rc2-24027": { - "sha512": "CdQQHji/OYKMwtKRIfSHRKfIIEFisortQ7+n2Qazar4TOSiw68FFIOV5XQc/0VZ/6RVQ0PzbPEPkb9tOCYCF9w==", + "System.Diagnostics.FileVersionInfo/4.0.0": { + "sha512": "qjF74OTAU+mRhLaL4YSfiWy3vj6T3AOz8AW37l5zCwfbBfj0k7E94XnEsRaf2TnhE/7QaV6Hvqakoy2LoV8MVg==", "type": "package", + "path": "System.Diagnostics.FileVersionInfo/4.0.0", "files": [ - "System.Diagnostics.FileVersionInfo.4.0.0-rc2-24027.nupkg.sha512", + "System.Diagnostics.FileVersionInfo.4.0.0.nupkg.sha512", "System.Diagnostics.FileVersionInfo.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5508,15 +5817,17 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", - "runtimes/win7/lib/netcore50/_._", - "runtimes/win7/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll" + "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll" ] }, - "System.Diagnostics.Process/4.1.0-rc2-24027": { - "sha512": "34TctkTL63XRR67BC8WOKY1UtJiE4vJyCsJ4IJx7ktdq6eqClbHqQjuwRgtxN+Yz/vg9uzkQlkZ9ryf+OSYcKQ==", + "System.Diagnostics.Process/4.1.0": { + "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", "type": "package", + "path": "System.Diagnostics.Process/4.1.0", "files": [ - "System.Diagnostics.Process.4.1.0-rc2-24027.nupkg.sha512", + "System.Diagnostics.Process.4.1.0.nupkg.sha512", "System.Diagnostics.Process.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5559,16 +5870,19 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", - "runtimes/osx.10.10/lib/netstandard1.4/System.Diagnostics.Process.dll", - "runtimes/win7/lib/netcore50/_._", - "runtimes/win7/lib/netstandard1.4/System.Diagnostics.Process.dll" + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win/lib/net46/System.Diagnostics.Process.dll", + "runtimes/win/lib/net461/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win7/lib/netcore50/_._" ] }, - "System.Diagnostics.StackTrace/4.0.1-rc2-24027": { - "sha512": "qaPDTZqMcuJgko+V6ZwlZEG7H344T1GkUh6NMKV0L3ISwEeQmA2shVBOyS1tHNyO6RvpL+CuxhlVJdSqGFUT2w==", + "System.Diagnostics.StackTrace/4.0.1": { + "sha512": "6i2EbRq0lgGfiZ+FDf0gVaw9qeEU+7IS2+wbZJmFVpvVzVOgZEt0ScZtyenuBvs6iDYbGiF51bMAa0oDP/tujQ==", "type": "package", + "path": "System.Diagnostics.StackTrace/4.0.1", "files": [ - "System.Diagnostics.StackTrace.4.0.1-rc2-24027.nupkg.sha512", + "System.Diagnostics.StackTrace.4.0.1.nupkg.sha512", "System.Diagnostics.StackTrace.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5601,11 +5915,12 @@ "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll" ] }, - "System.Diagnostics.Tools/4.0.1-rc2-24027": { - "sha512": "Afv5y9mVcMGmcN1YB4RIQdK5glUyL5cOIigi2DMuetSKJykMXxVH8KldkjYFwFKHcx8T1gN6/47knzZU3DtrrA==", + "System.Diagnostics.Tools/4.0.1": { + "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", "type": "package", + "path": "System.Diagnostics.Tools/4.0.1", "files": [ - "System.Diagnostics.Tools.4.0.1-rc2-24027.nupkg.sha512", + "System.Diagnostics.Tools.4.0.1.nupkg.sha512", "System.Diagnostics.Tools.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5655,11 +5970,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Diagnostics.Tracing/4.1.0-rc2-24027": { - "sha512": "ZRR3q7pPGqKc5rcHAhNP9bTjtIILmZu82E86n+mDyMYx+KEpuYpj8P+kQMWeLKYK1U4gxftqyidwm6+j0b+YoQ==", + "System.Diagnostics.Tracing/4.1.0": { + "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", "type": "package", + "path": "System.Diagnostics.Tracing/4.1.0", "files": [ - "System.Diagnostics.Tracing.4.1.0-rc2-24027.nupkg.sha512", + "System.Diagnostics.Tracing.4.1.0.nupkg.sha512", "System.Diagnostics.Tracing.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5742,11 +6058,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Dynamic.Runtime/4.0.11-rc2-24027": { - "sha512": "ZbyJQ3UQSGiB5aotbYN3otZ7vrwimkG6dAN4YYAwH3YvP9X1zF5GHeHuSqX1uDq0hGX+vngi8s1oUKgWHAYYrQ==", + "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-rc2-24027.nupkg.sha512", + "System.Dynamic.Runtime.4.0.11.nupkg.sha512", "System.Dynamic.Runtime.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5810,11 +6127,12 @@ "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll" ] }, - "System.Globalization/4.0.11-rc2-24027": { - "sha512": "RDterYo6tAE2YslHrhvAdrAkTdhGkml7tg5JGX/XwgN2GGkB3NkiqigBSaUEV4S2ftCzCFDIhCxqQy57lAsEIA==", + "System.Globalization/4.0.11": { + "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", "type": "package", + "path": "System.Globalization/4.0.11", "files": [ - "System.Globalization.4.0.11-rc2-24027.nupkg.sha512", + "System.Globalization.4.0.11.nupkg.sha512", "System.Globalization.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5875,11 +6193,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Globalization.Calendars/4.0.1-rc2-24027": { - "sha512": "mVqwlFh2qMNkuQY7KColHE3XkpFhSVLE2GF8J4jiXHmqbeIBh5D1/nPjr4JLVHzO3nyFQE0JwqDsVXtpv/s6iw==", + "System.Globalization.Calendars/4.0.1": { + "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", "type": "package", + "path": "System.Globalization.Calendars/4.0.1", "files": [ - "System.Globalization.Calendars.4.0.1-rc2-24027.nupkg.sha512", + "System.Globalization.Calendars.4.0.1.nupkg.sha512", "System.Globalization.Calendars.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5910,11 +6229,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Globalization.Extensions/4.0.1-rc2-24027": { - "sha512": "BaZplqKspB1c99AV3QybawRhLjzAOmPZGaiGimlCMD3KmztARHW2Im7gD2ECxjk+pGkyML7GuiGEuJae83Ky0w==", + "System.Globalization.Extensions/4.0.1": { + "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", "type": "package", + "path": "System.Globalization.Extensions/4.0.1", "files": [ - "System.Globalization.Extensions.4.0.1-rc2-24027.nupkg.sha512", + "System.Globalization.Extensions.4.0.1.nupkg.sha512", "System.Globalization.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5944,14 +6264,16 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", - "runtimes/win7/lib/netstandard1.3/System.Globalization.Extensions.dll" + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll" ] }, - "System.IO/4.1.0-rc2-24027": { - "sha512": "VQRYN33mwALJ1UWfxxMqXzKCYUDNMUeU6j8YCxVcLCBx3Oa/l7i15NQv/OAebfOVSmBa3LmBTRP4rQqChrCbFg==", + "System.IO/4.1.0": { + "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", "type": "package", + "path": "System.IO/4.1.0", "files": [ - "System.IO.4.1.0-rc2-24027.nupkg.sha512", + "System.IO.4.1.0.nupkg.sha512", "System.IO.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6025,11 +6347,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.IO.Compression/4.1.0-rc2-24027": { - "sha512": "tDUl9OuEauxpXOcWFXLW5nPqE0GqpC4sHOq5KbruncfTsTLQp+/vX156Wm8LpdHmeC35sQmSyYeRGJQHfoPfww==", + "System.IO.Compression/4.1.0": { + "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==", "type": "package", + "path": "System.IO.Compression/4.1.0", "files": [ - "System.IO.Compression.4.1.0-rc2-24027.nupkg.sha512", + "System.IO.Compression.4.1.0.nupkg.sha512", "System.IO.Compression.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6089,14 +6412,16 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", - "runtimes/win7/lib/netstandard1.3/System.IO.Compression.dll" + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll" ] }, - "System.IO.Compression.ZipFile/4.0.1-rc2-24027": { - "sha512": "2rHCcLJ831Jb7qnH0TLNbXzKpEG4cvyC6jXWwc7AS4TkeaLx+4GZP4o3aacIrNHRrLDLIzfCju4w/ZR+NnPk1A==", + "System.IO.Compression.ZipFile/4.0.1": { + "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==", "type": "package", + "path": "System.IO.Compression.ZipFile/4.0.1", "files": [ - "System.IO.Compression.ZipFile.4.0.1-rc2-24027.nupkg.sha512", + "System.IO.Compression.ZipFile.4.0.1.nupkg.sha512", "System.IO.Compression.ZipFile.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6128,11 +6453,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.IO.FileSystem/4.0.1-rc2-24027": { - "sha512": "8iXOvjXDIQJIM881n5423Cy2A8Ajrdr9l9mXUvvsXt6wQNXAi/LBVsFRLPe7hpRUKP23niqinSBoHfMGcuxByQ==", + "System.IO.FileSystem/4.0.1": { + "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", "type": "package", + "path": "System.IO.FileSystem/4.0.1", "files": [ - "System.IO.FileSystem.4.0.1-rc2-24027.nupkg.sha512", + "System.IO.FileSystem.4.0.1.nupkg.sha512", "System.IO.FileSystem.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6163,11 +6489,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.IO.FileSystem.Primitives/4.0.1-rc2-24027": { - "sha512": "SIxgLl6TXmfavhGnp3LF8X/D2zrg0ALhbfk40ntybaW9dO5nJAw7m1kllvlGFBdjefJ5Y8O1AUbbCJggC+p2yw==", + "System.IO.FileSystem.Primitives/4.0.1": { + "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", "type": "package", + "path": "System.IO.FileSystem.Primitives/4.0.1", "files": [ - "System.IO.FileSystem.Primitives.4.0.1-rc2-24027.nupkg.sha512", + "System.IO.FileSystem.Primitives.4.0.1.nupkg.sha512", "System.IO.FileSystem.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6199,11 +6526,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.IO.FileSystem.Watcher/4.0.0-rc2-24027": { - "sha512": "ByuB1AFnjj4VDK2uefLsSCaAeI8GO5skdEpByrds+MuRDXOOK+33lh7eXuABCNfGRWR2wg8cMIw8x4o1qmog8Q==", + "System.IO.FileSystem.Watcher/4.0.0": { + "sha512": "qM4Wr3La+RYb/03B0mZZjbA7tHsGzDffnuXP8Sl48HW2JwCjn3kfD5qdw0sqyNNowUipcJMi9/q6sMUrOIJ6UQ==", "type": "package", + "path": "System.IO.FileSystem.Watcher/4.0.0", "files": [ - "System.IO.FileSystem.Watcher.4.0.0-rc2-24027.nupkg.sha512", + "System.IO.FileSystem.Watcher.4.0.0.nupkg.sha512", "System.IO.FileSystem.Watcher.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6234,15 +6562,17 @@ "ref/xamarinwatchos10/_._", "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll", "runtimes/osx/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll", - "runtimes/win7/lib/netcore50/_._", - "runtimes/win7/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll" + "runtimes/win/lib/net46/System.IO.FileSystem.Watcher.dll", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll", + "runtimes/win7/lib/netcore50/_._" ] }, - "System.IO.MemoryMappedFiles/4.0.0-rc2-24027": { - "sha512": "mnUZdkXZA06Irdeqiy0GMpIux6+KN7Wc0mEPzQTcqeCan41O2UH/dGtChh5M8+IEMi5H9JmCKOSl5+BIQGCraw==", + "System.IO.MemoryMappedFiles/4.0.0": { + "sha512": "Xqj4xaFAnLVpss9ZSUIvB/VdJAA7GxZDnFGDKJfiGAnZ5VnFROn6eOHWepFpujCYTsh6wlZ3B33bqYkF0QJ7Eg==", "type": "package", + "path": "System.IO.MemoryMappedFiles/4.0.0", "files": [ - "System.IO.MemoryMappedFiles.4.0.0-rc2-24027.nupkg.sha512", + "System.IO.MemoryMappedFiles.4.0.0.nupkg.sha512", "System.IO.MemoryMappedFiles.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6272,15 +6602,17 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/unix/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll", - "runtimes/win7/lib/netcore50/_._", - "runtimes/win7/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll" + "runtimes/win/lib/net46/System.IO.MemoryMappedFiles.dll", + "runtimes/win/lib/netcore50/System.IO.MemoryMappedFiles.dll", + "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll" ] }, - "System.IO.UnmanagedMemoryStream/4.0.1-rc2-24027": { - "sha512": "Jh+aa9o2tdLwCe/zOTqofTkmNYFLbz6SJjw8ybmzwnFWRGltdyhvHPT++0lMAd+/DTFxzAA/HD6pTnBDW5Ag5g==", + "System.IO.UnmanagedMemoryStream/4.0.1": { + "sha512": "wcq0kXcpfJwdl1Y4/ZjDk7Dhx5HdLyRYYWYmD8Nn8skoGYYQd2BQWbXwjWSczip8AL4Z57o2dWWXAl4aABAKiQ==", "type": "package", + "path": "System.IO.UnmanagedMemoryStream/4.0.1", "files": [ - "System.IO.UnmanagedMemoryStream.4.0.1-rc2-24027.nupkg.sha512", + "System.IO.UnmanagedMemoryStream.4.0.1.nupkg.sha512", "System.IO.UnmanagedMemoryStream.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6312,20 +6644,21 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Linq/4.1.0-rc2-24027": { - "sha512": "uf9wbc/YWrM4xa6g0T8n1XpY/zRcTHSPw+sCwkdrL2aJbYyLFKs1Yeg8M0zjMX4SwmiNeDiZR2gkAHAPsIfKCg==", + "System.Linq/4.1.0": { + "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", "type": "package", + "path": "System.Linq/4.1.0", "files": [ - "System.Linq.4.1.0-rc2-24027.nupkg.sha512", + "System.Linq.4.1.0.nupkg.sha512", "System.Linq.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", - "lib/net462/System.Linq.dll", + "lib/net463/System.Linq.dll", "lib/netcore50/System.Linq.dll", - "lib/netstandard1.5/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", "lib/portable-net45+win8+wp8+wpa81/_._", "lib/win8/_._", "lib/wp80/_._", @@ -6337,7 +6670,7 @@ "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", - "ref/net462/System.Linq.dll", + "ref/net463/System.Linq.dll", "ref/netcore50/System.Linq.dll", "ref/netcore50/System.Linq.xml", "ref/netcore50/de/System.Linq.xml", @@ -6360,17 +6693,17 @@ "ref/netstandard1.0/ru/System.Linq.xml", "ref/netstandard1.0/zh-hans/System.Linq.xml", "ref/netstandard1.0/zh-hant/System.Linq.xml", - "ref/netstandard1.5/System.Linq.dll", - "ref/netstandard1.5/System.Linq.xml", - "ref/netstandard1.5/de/System.Linq.xml", - "ref/netstandard1.5/es/System.Linq.xml", - "ref/netstandard1.5/fr/System.Linq.xml", - "ref/netstandard1.5/it/System.Linq.xml", - "ref/netstandard1.5/ja/System.Linq.xml", - "ref/netstandard1.5/ko/System.Linq.xml", - "ref/netstandard1.5/ru/System.Linq.xml", - "ref/netstandard1.5/zh-hans/System.Linq.xml", - "ref/netstandard1.5/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", "ref/portable-net45+win8+wp8+wpa81/_._", "ref/win8/_._", "ref/wp80/_._", @@ -6381,19 +6714,21 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Linq.Expressions/4.0.11-rc2-24027": { - "sha512": "CfLNPBWzWdqfRGkdIXNWQ+2zSyaegOL4MAQSry0k6t8CQnPwJLywZLIZAV+cU47gi/7C2eM2I63r2eBZNJDovw==", + "System.Linq.Expressions/4.1.0": { + "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", "type": "package", + "path": "System.Linq.Expressions/4.1.0", "files": [ - "System.Linq.Expressions.4.0.11-rc2-24027.nupkg.sha512", + "System.Linq.Expressions.4.1.0.nupkg.sha512", "System.Linq.Expressions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.3/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", "lib/portable-net45+win8+wp8+wpa81/_._", "lib/win8/_._", "lib/wp80/_._", @@ -6405,6 +6740,7 @@ "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", "ref/netcore50/System.Linq.Expressions.dll", "ref/netcore50/System.Linq.Expressions.xml", "ref/netcore50/de/System.Linq.Expressions.xml", @@ -6438,6 +6774,17 @@ "ref/netstandard1.3/ru/System.Linq.Expressions.xml", "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", "ref/portable-net45+win8+wp8+wpa81/_._", "ref/win8/_._", "ref/wp80/_._", @@ -6449,11 +6796,12 @@ "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll" ] }, - "System.Linq.Parallel/4.0.1-rc2-24027": { - "sha512": "YCTgmWh4dxVijkTOPpAOOBsjYRO4LYoiEm1j6XV2qI1eErQT0NDP3WoWNvt85wfeGeAF5C+3ArShDOgq9Bg0lQ==", + "System.Linq.Parallel/4.0.1": { + "sha512": "J7XCa7n2cFn32uLbtceXfBFhgCk5M++50lylHKNbqTiJkw5y4Tglpi6amuJNPCvj9bLzNSI7rs1fi4joLMNRgg==", "type": "package", + "path": "System.Linq.Parallel/4.0.1", "files": [ - "System.Linq.Parallel.4.0.1-rc2-24027.nupkg.sha512", + "System.Linq.Parallel.4.0.1.nupkg.sha512", "System.Linq.Parallel.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6503,11 +6851,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Linq.Queryable/4.0.1-rc2-24027": { - "sha512": "4D7vMlUik6PWAYE4j89AMRsc8CJERoRC4M7dBPQSwogd+fCblUMehDwBjRXI4lSEwgK2fhbkv46jJu6RlA20QA==", + "System.Linq.Queryable/4.0.1": { + "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", "type": "package", + "path": "System.Linq.Queryable/4.0.1", "files": [ - "System.Linq.Queryable.4.0.1-rc2-24027.nupkg.sha512", + "System.Linq.Queryable.4.0.1.nupkg.sha512", "System.Linq.Queryable.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6559,11 +6908,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Net.Http/4.0.1-rc2-24027": { - "sha512": "5CK9SN0sEFUk7xHiV/8tqTiWuTlO7CkeqGmrfMsKIqcS/XFvRkMDKm2z8+IkLfzV77k6xnYse7n3Y3F9JqXaGw==", + "System.Net.Http/4.1.0": { + "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==", "type": "package", + "path": "System.Net.Http/4.1.0", "files": [ - "System.Net.Http.4.0.1-rc2-24027.nupkg.sha512", + "System.Net.Http.4.1.0.nupkg.sha512", "System.Net.Http.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6571,8 +6921,7 @@ "lib/monoandroid10/_._", "lib/monotouch10/_._", "lib/net45/_._", - "lib/netcore50/System.Net.Http.dll", - "lib/netstandard1.4/System.Net.Http.dll", + "lib/net46/System.Net.Http.dll", "lib/portable-net45+win8+wpa81/_._", "lib/win8/_._", "lib/wpa81/_._", @@ -6583,7 +6932,17 @@ "ref/monoandroid10/_._", "ref/monotouch10/_._", "ref/net45/_._", - "ref/net46/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", "ref/netcore50/System.Net.Http.dll", "ref/netcore50/System.Net.Http.xml", "ref/netcore50/de/System.Net.Http.xml", @@ -6606,22 +6965,35 @@ "ref/netstandard1.1/ru/System.Net.Http.xml", "ref/netstandard1.1/zh-hans/System.Net.Http.xml", "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", "ref/portable-net45+win8+wpa81/_._", "ref/win8/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", - "runtimes/win7/lib/net46/_._", - "runtimes/win7/lib/netcore50/System.Net.Http.dll", - "runtimes/win7/lib/netstandard1.3/System.Net.Http.dll" + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll" ] }, - "System.Net.NameResolution/4.0.0-rc2-24027": { - "sha512": "c5LsVEi57gpr+CgmNKHX/AAS/ydv400yHjm+OM5gqTZ834W/R0M3t/AjdFv+LYBaliAPIUZ/ysBymyyo9ISNFQ==", + "System.Net.NameResolution/4.0.0": { + "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==", "type": "package", + "path": "System.Net.NameResolution/4.0.0", "files": [ - "System.Net.NameResolution.4.0.0-rc2-24027.nupkg.sha512", + "System.Net.NameResolution.4.0.0.nupkg.sha512", "System.Net.NameResolution.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6651,15 +7023,17 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", - "runtimes/win7/lib/netcore50/System.Net.NameResolution.dll", - "runtimes/win7/lib/netstandard1.3/System.Net.NameResolution.dll" + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll" ] }, - "System.Net.Primitives/4.0.11-rc2-24027": { - "sha512": "K4oOpa82emlHY0QCsWTcgLrZUw2X6BNvOVWiJOKTPxtUhUqru03Ncy0tFXbXyc9hdEvMLL3BDaN1iFTV8u1AhA==", + "System.Net.Primitives/4.0.11": { + "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", "type": "package", + "path": "System.Net.Primitives/4.0.11", "files": [ - "System.Net.Primitives.4.0.11-rc2-24027.nupkg.sha512", + "System.Net.Primitives.4.0.11.nupkg.sha512", "System.Net.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6731,11 +7105,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Net.Requests/4.0.11-rc2-24027": { - "sha512": "hjdU34/tlB7COhCr0QDym338GlYiLAwP1f+J0q4Y18OwijJlbDLx6YUTtlJs8aJpvu6WrmYlD9B9hkWGclWrOg==", + "System.Net.Requests/4.0.11": { + "sha512": "vxGt7C0cZixN+VqoSW4Yakc1Y9WknmxauDqzxgpw/FnBdz4kQNN51l4wxdXX5VY1xjqy//+G+4CvJWp1+f+y6Q==", "type": "package", + "path": "System.Net.Requests/4.0.11", "files": [ - "System.Net.Requests.4.0.11-rc2-24027.nupkg.sha512", + "System.Net.Requests.4.0.11.nupkg.sha512", "System.Net.Requests.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6807,15 +7182,16 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll", - "runtimes/win7/lib/net46/_._", - "runtimes/win7/lib/netstandard1.3/System.Net.Requests.dll" + "runtimes/win/lib/net46/_._", + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll" ] }, - "System.Net.Security/4.0.0-rc2-24027": { - "sha512": "NDppeK2WgQ1nMar+gz2jvnMl7fgLnhUtI9zd8UKf8Xy3GiXAY3k8IcNkGhFTODBGVcu7OF9ZNjJmieDLMYaRwA==", + "System.Net.Security/4.0.0": { + "sha512": "uM1JaYJciCc2w7efD6du0EpQ1n5ZQqE6/P43/aI4H5E59qvP+wt3l70KIUF/Ha7NaeXGoGNFPVO0MB80pVHk2g==", "type": "package", + "path": "System.Net.Security/4.0.0", "files": [ - "System.Net.Security.4.0.0-rc2-24027.nupkg.sha512", + "System.Net.Security.4.0.0.nupkg.sha512", "System.Net.Security.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6844,16 +7220,18 @@ "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.4/System.Net.Security.dll", - "runtimes/win7/lib/netcore50/_._", - "runtimes/win7/lib/netstandard1.3/System.Net.Security.dll" + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll", + "runtimes/win/lib/net46/System.Net.Security.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll", + "runtimes/win7/lib/netcore50/_._" ] }, - "System.Net.Sockets/4.1.0-rc2-24027": { - "sha512": "WJ/Fu0JBpC4FEKL7Jf3Qg20NxQZUQ6EqhssHuN/E5E1Vd67vsu/xyK83no6ofZMBASfJb5Zgm6Nh4E2hXf57nQ==", + "System.Net.Sockets/4.1.0": { + "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", "type": "package", + "path": "System.Net.Sockets/4.1.0", "files": [ - "System.Net.Sockets.4.1.0-rc2-24027.nupkg.sha512", + "System.Net.Sockets.4.1.0.nupkg.sha512", "System.Net.Sockets.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6884,11 +7262,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Net.WebHeaderCollection/4.0.1-rc2-24027": { - "sha512": "BozyPHP7REBLj8QbAf2TuH081CB2E5PIRC3K5MhqacoV4EsK0FmgCzhLyvnbSi8pTKV6NrjTPmdWDD2sCyPf+g==", + "System.Net.WebHeaderCollection/4.0.1": { + "sha512": "XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==", "type": "package", + "path": "System.Net.WebHeaderCollection/4.0.1", "files": [ - "System.Net.WebHeaderCollection.4.0.1-rc2-24027.nupkg.sha512", + "System.Net.WebHeaderCollection.4.0.1.nupkg.sha512", "System.Net.WebHeaderCollection.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6920,11 +7299,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Net.WebSockets/4.0.0-rc2-24027": { - "sha512": "YH2CdIcdIfrvmGGkVv/g8pFlXTy0OPH0Z7+EwdlYbK4v2autDVwIrJDb881kC7xuPEQTZloxbDWzUJh1XWq1yA==", + "System.Net.WebSockets/4.0.0": { + "sha512": "2KJo8hir6Edi9jnMDAMhiJoI691xRBmKcbNpwjrvpIMOCTYOtBpSsSEGBxBDV7PKbasJNaFp1+PZz1D7xS41Hg==", "type": "package", + "path": "System.Net.WebSockets/4.0.0", "files": [ - "System.Net.WebSockets.4.0.0-rc2-24027.nupkg.sha512", + "System.Net.WebSockets.4.0.0.nupkg.sha512", "System.Net.WebSockets.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6956,11 +7336,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Numerics.Vectors/4.1.1-rc2-24027": { - "sha512": "9G+2IoDcQBas3kdySw4rz7XzI/dbUqPkC0yiOR9YAWZpOH52icM6YxcgTKiI3Weh3w1il/xMrplrTYuE6hqAaA==", + "System.Numerics.Vectors/4.1.1": { + "sha512": "Ex1NSKycC2wi5XBMWUGWPc3lumh6OQWFFmmpZFZz0oLht5lQ+wWPHVZumOrMJuckfUiVMd4p67BrkBos8lcF+Q==", "type": "package", + "path": "System.Numerics.Vectors/4.1.1", "files": [ - "System.Numerics.Vectors.4.1.1-rc2-24027.nupkg.sha512", + "System.Numerics.Vectors.4.1.1.nupkg.sha512", "System.Numerics.Vectors.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6968,11 +7349,10 @@ "lib/MonoTouch10/_._", "lib/net46/System.Numerics.Vectors.dll", "lib/net46/System.Numerics.Vectors.xml", - "lib/net46/_._", - "lib/netstandard1.3/System.Numerics.Vectors.dll", - "lib/netstandard1.3/System.Numerics.Vectors.xml", - "lib/portable-net45+win8/System.Numerics.Vectors.dll", - "lib/portable-net45+win8/System.Numerics.Vectors.xml", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", @@ -6981,20 +7361,20 @@ "ref/MonoTouch10/_._", "ref/net46/System.Numerics.Vectors.dll", "ref/net46/System.Numerics.Vectors.xml", - "ref/net46/_._", - "ref/netstandard1.1/System.Numerics.Vectors.dll", - "ref/portable-net45+win8/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._" ] }, - "System.ObjectModel/4.0.12-rc2-24027": { - "sha512": "8wgKzGVl3RlTMBYsWCjOizWpzH8mm7i0pv2vHwXbpV/rGptDDKzXHyTmdqFdBAfrnsnicwh79hNTc5zzKWKK1A==", + "System.ObjectModel/4.0.12": { + "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", "type": "package", + "path": "System.ObjectModel/4.0.12", "files": [ - "System.ObjectModel.4.0.12-rc2-24027.nupkg.sha512", + "System.ObjectModel.4.0.12.nupkg.sha512", "System.ObjectModel.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7057,11 +7437,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Reflection/4.1.0-rc2-24027": { - "sha512": "RMJrRP3I71J5PLfsX2reWDPltwJs/pJ+CbIqa2ccDVop2WlBq6CuV7FOo7l77nuYFKODI6kpATLXZKiq8V8aEQ==", + "System.Reflection/4.1.0": { + "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", "type": "package", + "path": "System.Reflection/4.1.0", "files": [ - "System.Reflection.4.1.0-rc2-24027.nupkg.sha512", + "System.Reflection.4.1.0.nupkg.sha512", "System.Reflection.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7135,11 +7516,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Reflection.DispatchProxy/4.0.1-rc2-24027": { - "sha512": "lzyB7X/yf4pmPCIqXEQbeKNBl7lX+/c+Shmo1N9qgRNuaZ1vSA3ZvFFXCBsyZSkvbr7MUviNHEc0CLQ8R0IS6g==", + "System.Reflection.DispatchProxy/4.0.1": { + "sha512": "GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==", "type": "package", + "path": "System.Reflection.DispatchProxy/4.0.1", "files": [ - "System.Reflection.DispatchProxy.4.0.1-rc2-24027.nupkg.sha512", + "System.Reflection.DispatchProxy.4.0.1.nupkg.sha512", "System.Reflection.DispatchProxy.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7170,11 +7552,12 @@ "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll" ] }, - "System.Reflection.Emit/4.0.1-rc2-24027": { - "sha512": "C4kvi/Lpj5vgUtCygP0bbBnlYyuDZEU2ofdgGXa8AgV3FkmwNEqJ7zm3OhMFe/kMKRgEkJXkioFdkLHrJJLDTQ==", + "System.Reflection.Emit/4.0.1": { + "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", "type": "package", + "path": "System.Reflection.Emit/4.0.1", "files": [ - "System.Reflection.Emit.4.0.1-rc2-24027.nupkg.sha512", + "System.Reflection.Emit.4.0.1.nupkg.sha512", "System.Reflection.Emit.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7199,11 +7582,12 @@ "ref/xamarinmac20/_._" ] }, - "System.Reflection.Emit.ILGeneration/4.0.1-rc2-24027": { - "sha512": "s7puteOinRV3+sGWDLeuUbSSxwZHqHhXpLwoTlS4L0x7d58j868LbKPSPJVZAs6a/dGkyo02WHVDcEtCBjn8VQ==", + "System.Reflection.Emit.ILGeneration/4.0.1": { + "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", "type": "package", + "path": "System.Reflection.Emit.ILGeneration/4.0.1", "files": [ - "System.Reflection.Emit.ILGeneration.4.0.1-rc2-24027.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.4.0.1.nupkg.sha512", "System.Reflection.Emit.ILGeneration.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7229,11 +7613,12 @@ "runtimes/aot/lib/netcore50/_._" ] }, - "System.Reflection.Emit.Lightweight/4.0.1-rc2-24027": { - "sha512": "kDuurD3Z1bYJrW0VqBEoHWLUCWYtto/SF/dajEj8sXftap3zkqBF+3IMb8l4EfRuzytlS2TlmFxiApbB9C8JEA==", + "System.Reflection.Emit.Lightweight/4.0.1": { + "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", "type": "package", + "path": "System.Reflection.Emit.Lightweight/4.0.1", "files": [ - "System.Reflection.Emit.Lightweight.4.0.1-rc2-24027.nupkg.sha512", + "System.Reflection.Emit.Lightweight.4.0.1.nupkg.sha512", "System.Reflection.Emit.Lightweight.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7259,11 +7644,12 @@ "runtimes/aot/lib/netcore50/_._" ] }, - "System.Reflection.Extensions/4.0.1-rc2-24027": { - "sha512": "5N1tt+n0OHyaZ3Wb73FIfNsRrkFDW1I2fuAzojudgcZ0XcAHqLE0Wb9/JQ2eG6Lp89l2qntx4HvXcIDjVwvYuw==", + "System.Reflection.Extensions/4.0.1": { + "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", "type": "package", + "path": "System.Reflection.Extensions/4.0.1", "files": [ - "System.Reflection.Extensions.4.0.1-rc2-24027.nupkg.sha512", + "System.Reflection.Extensions.4.0.1.nupkg.sha512", "System.Reflection.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7313,11 +7699,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Reflection.Metadata/1.3.0-rc2-24027": { - "sha512": "ADZVzbL6KHwUzqn+BD9cf82ev/ADG1w4Uy7V8G//kx89aImQbbq2pCOpyl8IBC4Qqrq0hUWjgTOrxFo8PNa/pA==", + "System.Reflection.Metadata/1.3.0": { + "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==", "type": "package", + "path": "System.Reflection.Metadata/1.3.0", "files": [ - "System.Reflection.Metadata.1.3.0-rc2-24027.nupkg.sha512", + "System.Reflection.Metadata.1.3.0.nupkg.sha512", "System.Reflection.Metadata.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7327,11 +7714,12 @@ "lib/portable-net45+win8/System.Reflection.Metadata.xml" ] }, - "System.Reflection.Primitives/4.0.1-rc2-24027": { - "sha512": "/FgLaA5DnqSVZVm5+eqhSjezjBCRo7+W5LzUsa3nQul6hHbMGkB2uuN8Tt6UfpLzKZ5QimefeDKkLYmChBnskQ==", + "System.Reflection.Primitives/4.0.1": { + "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", "type": "package", + "path": "System.Reflection.Primitives/4.0.1", "files": [ - "System.Reflection.Primitives.4.0.1-rc2-24027.nupkg.sha512", + "System.Reflection.Primitives.4.0.1.nupkg.sha512", "System.Reflection.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7381,11 +7769,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Reflection.TypeExtensions/4.1.0-rc2-24027": { - "sha512": "1t2V/qaXZjJ2krlf97bGEcqiNjriHZQv5mx3Mez2PJ2+gqJbu0vPWCSNTN8Y+miCuRm+Pwx0ZFAoCQHkij2xcQ==", + "System.Reflection.TypeExtensions/4.1.0": { + "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", "type": "package", + "path": "System.Reflection.TypeExtensions/4.1.0", "files": [ - "System.Reflection.TypeExtensions.4.1.0-rc2-24027.nupkg.sha512", + "System.Reflection.TypeExtensions.4.1.0.nupkg.sha512", "System.Reflection.TypeExtensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7432,22 +7821,24 @@ "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll" ] }, - "System.Resources.Reader/4.0.0-rc2-24027": { - "sha512": "VnZkfhNx3kXVe/wPEVpkVkpj7nuw1fRAlxL1Kyc2dxgJdugyKWFPjNCDXHEL85EB+rOhUC40+Rnodg/ZA60Lyw==", + "System.Resources.Reader/4.0.0": { + "sha512": "VX1iHAoHxgrLZv+nq/9drCZI6Q4SSCzSVyUm1e0U60sqWdj6XhY7wvKmy3RvsSal9h+/vqSWwxxJsm0J4vn/jA==", "type": "package", + "path": "System.Resources.Reader/4.0.0", "files": [ - "System.Resources.Reader.4.0.0-rc2-24027.nupkg.sha512", + "System.Resources.Reader.4.0.0.nupkg.sha512", "System.Resources.Reader.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/netstandard1.0/System.Resources.Reader.dll" ] }, - "System.Resources.ResourceManager/4.0.1-rc2-24027": { - "sha512": "WFDuYprqRWAVcQzArAqgabw9bbGPBaogBG17sGtZ5Iyb7ddOcIs89QYdcxdatPkSYOFNWydwSY2fyOjhIKMIcA==", + "System.Resources.ResourceManager/4.0.1": { + "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", "type": "package", + "path": "System.Resources.ResourceManager/4.0.1", "files": [ - "System.Resources.ResourceManager.4.0.1-rc2-24027.nupkg.sha512", + "System.Resources.ResourceManager.4.0.1.nupkg.sha512", "System.Resources.ResourceManager.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7497,11 +7888,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime/4.1.0-rc2-24027": { - "sha512": "sDyyCeXycMSiNP4z1wyeyXlZSb26/OXIAwqnDsOAjw9PL3r8OgDRJgt4SH6Qid5z6E5IEGTKwjBjrHJGoa8bag==", + "System.Runtime/4.1.0": { + "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", "type": "package", + "path": "System.Runtime/4.1.0", "files": [ - "System.Runtime.4.1.0-rc2-24027.nupkg.sha512", + "System.Runtime.4.1.0.nupkg.sha512", "System.Runtime.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7586,11 +7978,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.Extensions/4.1.0-rc2-24027": { - "sha512": "rHmAgtQY8XlVd4tB/5ta8IzxAL9gpUlkTYQgUXDjdHux2MFmDSJv4vgm/atmwbKZcd0TnzjD2SYpnkWSqDWgFg==", + "System.Runtime.Extensions/4.1.0": { + "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", "type": "package", + "path": "System.Runtime.Extensions/4.1.0", "files": [ - "System.Runtime.Extensions.4.1.0-rc2-24027.nupkg.sha512", + "System.Runtime.Extensions.4.1.0.nupkg.sha512", "System.Runtime.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7664,11 +8057,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.Handles/4.0.1-rc2-24027": { - "sha512": "zAfnDT+YDOnVK2ZSoE+70LU94207gz0AO1B+ELtfsZB6a35yVFBo9XTE/nK9QwsZxnknPIqoQ1CJz434TC5PFA==", + "System.Runtime.Handles/4.0.1": { + "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", "type": "package", + "path": "System.Runtime.Handles/4.0.1", "files": [ - "System.Runtime.Handles.4.0.1-rc2-24027.nupkg.sha512", + "System.Runtime.Handles.4.0.1.nupkg.sha512", "System.Runtime.Handles.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7699,11 +8093,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.InteropServices/4.1.0-rc2-24027": { - "sha512": "HMTGM3YyFBqDSP4STwC2YC51PInAQNMRj4V3rodwhaeAl+DnRKYqRFnd3eO2l99JqrcBIgg48SFGU9zglQC38w==", + "System.Runtime.InteropServices/4.1.0": { + "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", "type": "package", + "path": "System.Runtime.InteropServices/4.1.0", "files": [ - "System.Runtime.InteropServices.4.1.0-rc2-24027.nupkg.sha512", + "System.Runtime.InteropServices.4.1.0.nupkg.sha512", "System.Runtime.InteropServices.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7786,39 +8181,20 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.InteropServices.PInvoke/4.0.0-rc2-24027": { - "sha512": "KS562Uiu5jWEJqIihGZs7P+H/2rasaQC1HE0ZAx6A/2V2G8kFDydYEEB8Zs/M7roRsiCrdaj7chuokiAghShFg==", + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", "type": "package", + "path": "System.Runtime.InteropServices.RuntimeInformation/4.0.0", "files": [ - "System.Runtime.InteropServices.PInvoke.4.0.0-rc2-24027.nupkg.sha512", - "System.Runtime.InteropServices.PInvoke.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Runtime.InteropServices.PInvoke.dll", - "lib/netstandard1.3/System.Runtime.InteropServices.PInvoke.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Runtime.InteropServices.PInvoke.dll", - "ref/netstandard1.3/System.Runtime.InteropServices.PInvoke.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.PInvoke.dll" - ] - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-24027": { - "sha512": "nsKC00hUZY8SbNHMK3RMu62zEmgdB9xKO+7B30DfLLy5R/10ICrfUVUJvvc/HQC/VSObPUdjYUsqAFoQMIaHHA==", - "type": "package", - "files": [ - "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-24027.nupkg.sha512", + "System.Runtime.InteropServices.RuntimeInformation.4.0.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/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", @@ -7829,14 +8205,20 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll" ] }, - "System.Runtime.Loader/4.0.0-rc2-24027": { - "sha512": "fH8ahqrW0BezIY8kAUWcXCpMxTOh3YygEXf7u8HczG/ZHJoDKTEiyMLvyz+6wm+h0y4GswDVr7RKPkvJHr3ktw==", + "System.Runtime.Loader/4.0.0": { + "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", "type": "package", + "path": "System.Runtime.Loader/4.0.0", "files": [ - "System.Runtime.Loader.4.0.0-rc2-24027.nupkg.sha512", + "System.Runtime.Loader.4.0.0.nupkg.sha512", "System.Runtime.Loader.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7855,11 +8237,12 @@ "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml" ] }, - "System.Runtime.Numerics/4.0.1-rc2-24027": { - "sha512": "ZcDlNWYNdyPJruJdoFiQjdD9aj17MUnK9vlShMaqIYtZmn5NuRY5Iyn0yojyA9SgJPaAoQkbvb/rJ7Nafly8sg==", + "System.Runtime.Numerics/4.0.1": { + "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==", "type": "package", + "path": "System.Runtime.Numerics/4.0.1", "files": [ - "System.Runtime.Numerics.4.0.1-rc2-24027.nupkg.sha512", + "System.Runtime.Numerics.4.0.1.nupkg.sha512", "System.Runtime.Numerics.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7909,11 +8292,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.Serialization.Primitives/4.1.1-rc2-24027": { - "sha512": "CatEVkKtMZlBrsdboi2RNediIXkYaiKtseORboHASI96mYtlPvivmHr/nw+pKx7s7enaFvs5Ovfbc8uXs5Qt7Q==", + "System.Runtime.Serialization.Primitives/4.1.1": { + "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", "type": "package", + "path": "System.Runtime.Serialization.Primitives/4.1.1", "files": [ - "System.Runtime.Serialization.Primitives.4.1.1-rc2-24027.nupkg.sha512", + "System.Runtime.Serialization.Primitives.4.1.1.nupkg.sha512", "System.Runtime.Serialization.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7979,11 +8363,12 @@ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll" ] }, - "System.Security.Claims/4.0.1-rc2-24027": { - "sha512": "9oxucsKjs8q2UZHHx6tQm78uXzAiCWE7MVbxUmLlVzCRXLKtzjWCgZqHzCjg37GHMvi326PhblnOI222CGW2GA==", + "System.Security.Claims/4.0.1": { + "sha512": "4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==", "type": "package", + "path": "System.Security.Claims/4.0.1", "files": [ - "System.Security.Claims.4.0.1-rc2-24027.nupkg.sha512", + "System.Security.Claims.4.0.1.nupkg.sha512", "System.Security.Claims.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8015,11 +8400,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Security.Cryptography.Algorithms/4.1.0-rc2-24027": { - "sha512": "oh/g+cyjJ7b1GpLmSHSPAv2o3juedBppGeumF25ELzsyINFCeOGpVOdUr15GLfTpNYHyYML0PCefIW6PrFH2XQ==", + "System.Security.Cryptography.Algorithms/4.2.0": { + "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", "type": "package", + "path": "System.Security.Cryptography.Algorithms/4.2.0", "files": [ - "System.Security.Cryptography.Algorithms.4.1.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.Algorithms.4.2.0.nupkg.sha512", "System.Security.Cryptography.Algorithms.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8027,6 +8413,7 @@ "lib/MonoTouch10/_._", "lib/net46/System.Security.Cryptography.Algorithms.dll", "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", @@ -8035,39 +8422,54 @@ "ref/MonoTouch10/_._", "ref/net46/System.Security.Cryptography.Algorithms.dll", "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.Algorithms.dll", - "runtimes/win7/lib/netstandard1.4/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", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll" ] }, - "System.Security.Cryptography.Cng/4.1.0-rc2-24027": { - "sha512": "QILmzqCpi0F9+DK5Z4/w0VW7gu07CpXksTxhkjqGspxuh7KSd+G2lsIM7vUEZaWvuwJQyQRCNRMALC7u/tgY+g==", + "System.Security.Cryptography.Cng/4.2.0": { + "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==", "type": "package", + "path": "System.Security.Cryptography.Cng/4.2.0", "files": [ - "System.Security.Cryptography.Cng.4.1.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.Cng.4.2.0.nupkg.sha512", "System.Security.Cryptography.Cng.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/net46/System.Security.Cryptography.Cng.dll", "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", "ref/net46/System.Security.Cryptography.Cng.dll", "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll" + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll" ] }, - "System.Security.Cryptography.Csp/4.0.0-rc2-24027": { - "sha512": "fQJkR6jpeLJVmB8z2XFqzRdToriROpb0MhVKvEDIOhPTwafemMe0+hxxTZ2sLJVOeytFxk10rZq05mJgA+SxdA==", + "System.Security.Cryptography.Csp/4.0.0": { + "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==", "type": "package", + "path": "System.Security.Cryptography.Csp/4.0.0", "files": [ - "System.Security.Cryptography.Csp.4.0.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.Csp.4.0.0.nupkg.sha512", "System.Security.Cryptography.Csp.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8087,15 +8489,17 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", "runtimes/win/lib/netcore50/_._", "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll" ] }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-24027": { - "sha512": "71AE+Bd68o0t6R0OEwHNRxcpcCI2kYfY0EOP+mAzIohObJKLoaDW6t8CunWOnr7hzvHI4W2UdNgmZzX2HSSuOA==", + "System.Security.Cryptography.Encoding/4.0.0": { + "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", "type": "package", + "path": "System.Security.Cryptography.Encoding/4.0.0", "files": [ - "System.Security.Cryptography.Encoding.4.0.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.Encoding.4.0.0.nupkg.sha512", "System.Security.Cryptography.Encoding.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8125,27 +8529,30 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "runtimes/win7/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll" + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll" ] }, - "System.Security.Cryptography.OpenSsl/4.0.0-rc2-24027": { - "sha512": "DZ3OjJC6O1qmYksZ45fuyHpB0julRXuohxGyDg2S4flOb8BIJYtzNZPapkkTNazDVAHohK4J8c7OLx3kFE2LVw==", + "System.Security.Cryptography.OpenSsl/4.0.0": { + "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==", "type": "package", + "path": "System.Security.Cryptography.OpenSsl/4.0.0", "files": [ - "System.Security.Cryptography.OpenSsl.4.0.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.OpenSsl.4.0.0.nupkg.sha512", "System.Security.Cryptography.OpenSsl.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", - "ref/netstandard1.4/System.Security.Cryptography.OpenSsl.dll", - "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.OpenSsl.dll", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.OpenSsl.dll" + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll" ] }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-24027": { - "sha512": "0uZrfk+oxQTpQ/4qTLCTTPXMvjkf0a7YUsYP2GkIeTirphSTZ090LISz4WLXf5AbuO/hYEI7k0MSxp0uqFB0tQ==", + "System.Security.Cryptography.Primitives/4.0.0": { + "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", "type": "package", + "path": "System.Security.Cryptography.Primitives/4.0.0", "files": [ - "System.Security.Cryptography.Primitives.4.0.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.Primitives.4.0.0.nupkg.sha512", "System.Security.Cryptography.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8167,11 +8574,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Security.Cryptography.X509Certificates/4.1.0-rc2-24027": { - "sha512": "nVprbjLjneBgQj9hDlOQqydaZLj/vnBtctLB4Tr5hf9xNP32twD0EDyN75F3/58WB90bMRgWijyQuI6llRs5mQ==", + "System.Security.Cryptography.X509Certificates/4.1.0": { + "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", "type": "package", + "path": "System.Security.Cryptography.X509Certificates/4.1.0", "files": [ - "System.Security.Cryptography.X509Certificates.4.1.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.4.1.0.nupkg.sha512", "System.Security.Cryptography.X509Certificates.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8213,16 +8621,19 @@ "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win7/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win7/lib/netstandard1.4/System.Security.Cryptography.X509Certificates.dll" + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll" ] }, - "System.Security.Principal/4.0.1-rc2-24027": { - "sha512": "L6+kLyQvfqGaJ08G8p84O1XCq5VxdjZmEyRgZjnupcZkB9MVK+1aG6iM6jMUbVz5upRm4WWXPkRbwVpUdeJYsw==", + "System.Security.Principal/4.0.1": { + "sha512": "On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==", "type": "package", + "path": "System.Security.Principal/4.0.1", "files": [ - "System.Security.Principal.4.0.1-rc2-24027.nupkg.sha512", + "System.Security.Principal.4.0.1.nupkg.sha512", "System.Security.Principal.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8274,11 +8685,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Security.Principal.Windows/4.0.0-rc2-24027": { - "sha512": "0zK9NALYpgSfw3oADZFPqtqS9JPHPTMT6RtYawKySlGOnElJG5+hhOsLq+ktG6k10Pyvem8/Pu5CrqJEqhLQFQ==", + "System.Security.Principal.Windows/4.0.0": { + "sha512": "iFx15AF3RMEPZn3COh8+Bb2Thv2zsmLd93RchS1b8Mj5SNYeGqbYNCSn5AES1+gq56p4ujGZPrl0xN7ngkXOHg==", "type": "package", + "path": "System.Security.Principal.Windows/4.0.0", "files": [ - "System.Security.Principal.Windows.4.0.0-rc2-24027.nupkg.sha512", + "System.Security.Principal.Windows.4.0.0.nupkg.sha512", "System.Security.Principal.Windows.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8296,14 +8708,16 @@ "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll" ] }, - "System.Text.Encoding/4.0.11-rc2-24027": { - "sha512": "WyhCB3a669kXgMXEBx+T0G+bulfT0xzhYqZvuIGm22qIFlS85z11df279viqqjkwv2PDQvLjE2YKhRqkvdEd3g==", + "System.Text.Encoding/4.0.11": { + "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", "type": "package", + "path": "System.Text.Encoding/4.0.11", "files": [ - "System.Text.Encoding.4.0.11-rc2-24027.nupkg.sha512", + "System.Text.Encoding.4.0.11.nupkg.sha512", "System.Text.Encoding.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8364,16 +8778,18 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Text.Encoding.CodePages/4.0.1-rc2-24027": { - "sha512": "hoE1NcYMD2fwCotbt/I+B/6p0gyxp82MiKTZ5OKK2O7nMJ8sjF7YtzyVicvxD7e3sBDyCZWdcbMEW09M/C+IAQ==", + "System.Text.Encoding.CodePages/4.0.1": { + "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==", "type": "package", + "path": "System.Text.Encoding.CodePages/4.0.1", "files": [ - "System.Text.Encoding.CodePages.4.0.1-rc2-24027.nupkg.sha512", + "System.Text.Encoding.CodePages.4.0.1.nupkg.sha512", "System.Text.Encoding.CodePages.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", @@ -8399,11 +8815,12 @@ "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll" ] }, - "System.Text.Encoding.Extensions/4.0.11-rc2-24027": { - "sha512": "wj8if+6Wg+2Li3/T/+1+0qkuI7IZfeymtDhTiDThXDwc8+U9ZlZ2QcGHv9v9AEuh1ljWzp6dysuwehWSqAyhpg==", + "System.Text.Encoding.Extensions/4.0.11": { + "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", "type": "package", + "path": "System.Text.Encoding.Extensions/4.0.11", "files": [ - "System.Text.Encoding.Extensions.4.0.11-rc2-24027.nupkg.sha512", + "System.Text.Encoding.Extensions.4.0.11.nupkg.sha512", "System.Text.Encoding.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8464,11 +8881,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Text.Encodings.Web/4.0.0-rc2-24027": { - "sha512": "r8and4JvIHRMq1Zc1H+hRKhRearrYKogJ18hQRZRsq9dcRRuxIwsv3FB73N7tMflYA2eJDmcWeqlBlYzGhOSdQ==", + "System.Text.Encodings.Web/4.0.0": { + "sha512": "TWZnuiJgPDAEEUfobD7njXvSVR2Toz+jvKWds6yL4oSztmKQfnWzucczjzA+6Dv1bktBdY71sZW1YN0X6m9chQ==", "type": "package", + "path": "System.Text.Encodings.Web/4.0.0", "files": [ - "System.Text.Encodings.Web.4.0.0-rc2-24027.nupkg.sha512", + "System.Text.Encodings.Web.4.0.0.nupkg.sha512", "System.Text.Encodings.Web.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8476,19 +8894,21 @@ "lib/netstandard1.0/System.Text.Encodings.Web.xml" ] }, - "System.Text.RegularExpressions/4.0.12-rc2-24027": { - "sha512": "Hot88dwmUASuTWne7upZ1yfnXxZ9tGhRJNtlD9+s3QOqSLPy1a8fGlFIaxBVgAk7kKTb/3Eg4j+1QG6TGXDeDQ==", + "System.Text.RegularExpressions/4.1.0": { + "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", "type": "package", + "path": "System.Text.RegularExpressions/4.1.0", "files": [ - "System.Text.RegularExpressions.4.0.12-rc2-24027.nupkg.sha512", + "System.Text.RegularExpressions.4.1.0.nupkg.sha512", "System.Text.RegularExpressions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/netstandard1.3/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", "lib/portable-net45+win8+wp8+wpa81/_._", "lib/win8/_._", "lib/wp80/_._", @@ -8500,6 +8920,7 @@ "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", "ref/netcore50/System.Text.RegularExpressions.dll", "ref/netcore50/System.Text.RegularExpressions.xml", "ref/netcore50/de/System.Text.RegularExpressions.xml", @@ -8533,6 +8954,17 @@ "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", "ref/portable-net45+win8+wp8+wpa81/_._", "ref/win8/_._", "ref/wp80/_._", @@ -8543,11 +8975,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Threading/4.0.11-rc2-24027": { - "sha512": "JdVfUj82+pkIGfpUeb28HdwxoUMR7lTL5LT2iX9gyKtIo4yv2VirGPFVvohdlN9t9My+dIlYb9W4z1YlZV/RIA==", + "System.Threading/4.0.11": { + "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", "type": "package", + "path": "System.Threading/4.0.11", "files": [ - "System.Threading.4.0.11-rc2-24027.nupkg.sha512", + "System.Threading.4.0.11.nupkg.sha512", "System.Threading.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8611,11 +9044,12 @@ "runtimes/aot/lib/netcore50/System.Threading.dll" ] }, - "System.Threading.Overlapped/4.0.1-rc2-24027": { - "sha512": "FabraxAMMWzA2IgOTTfYz1sX1V1b0KqLntBAkEB3uDiZRN2FZpGK9Puq/Z9Je44ubcBBtSNWPe+wzu+QBiKawg==", + "System.Threading.Overlapped/4.0.1": { + "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==", "type": "package", + "path": "System.Threading.Overlapped/4.0.1", "files": [ - "System.Threading.Overlapped.4.0.1-rc2-24027.nupkg.sha512", + "System.Threading.Overlapped.4.0.1.nupkg.sha512", "System.Threading.Overlapped.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8633,15 +9067,17 @@ "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", + "runtimes/win/lib/net46/System.Threading.Overlapped.dll", "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll" ] }, - "System.Threading.Tasks/4.0.11-rc2-24027": { - "sha512": "BULvVgPxKNzMgAZpaRHREYhbGFTDbwG84mR61gGcajhLo6nn7XS9E1Lzixiv3gANtT7HROH7h3LeMPMRsEvEPQ==", + "System.Threading.Tasks/4.0.11": { + "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", "type": "package", + "path": "System.Threading.Tasks/4.0.11", "files": [ - "System.Threading.Tasks.4.0.11-rc2-24027.nupkg.sha512", + "System.Threading.Tasks.4.0.11.nupkg.sha512", "System.Threading.Tasks.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8702,11 +9138,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Threading.Tasks.Dataflow/4.6.0-rc2-24027": { - "sha512": "pB+qc63BahNZaD7sO2IvXDoekTfvN/bKe/zzjzSh0dhOAcMvTNfDWknuG8EynoOEM9REZ147En2XvH0srAyHMA==", + "System.Threading.Tasks.Dataflow/4.6.0": { + "sha512": "2hRjGu2r2jxRZ55wmcHO/WbdX+YAOz9x6FE8xqkHZgPaoFMKQZRe9dk8xTZIas8fRjxRmzawnTEWIrhlM+Un7w==", "type": "package", + "path": "System.Threading.Tasks.Dataflow/4.6.0", "files": [ - "System.Threading.Tasks.Dataflow.4.6.0-rc2-24027.nupkg.sha512", + "System.Threading.Tasks.Dataflow.4.6.0.nupkg.sha512", "System.Threading.Tasks.Dataflow.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8716,11 +9153,12 @@ "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll" ] }, - "System.Threading.Tasks.Extensions/4.0.0-rc2-24027": { - "sha512": "dfj0Fl7/0KeP1UwQvo7xu7LdRAHfJ/Pdvo2YL+sDHddCLaiu+1yNyijYBocaCgQ4H0t8nEg8he/dWsPpaTdfNg==", + "System.Threading.Tasks.Extensions/4.0.0": { + "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==", "type": "package", + "path": "System.Threading.Tasks.Extensions/4.0.0", "files": [ - "System.Threading.Tasks.Extensions.4.0.0-rc2-24027.nupkg.sha512", + "System.Threading.Tasks.Extensions.4.0.0.nupkg.sha512", "System.Threading.Tasks.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8730,11 +9168,12 @@ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml" ] }, - "System.Threading.Tasks.Parallel/4.0.1-rc2-24027": { - "sha512": "SNOmVf2OqhpwIEznDWxBO7ZZOnN4Iy9xSVrnT4lsU/A93Zc3zJ/7m9oT7RkkQFUncNIq39xqcuYlJ4u1KjTFJg==", + "System.Threading.Tasks.Parallel/4.0.1": { + "sha512": "7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==", "type": "package", + "path": "System.Threading.Tasks.Parallel/4.0.1", "files": [ - "System.Threading.Tasks.Parallel.4.0.1-rc2-24027.nupkg.sha512", + "System.Threading.Tasks.Parallel.4.0.1.nupkg.sha512", "System.Threading.Tasks.Parallel.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8784,11 +9223,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Threading.Thread/4.0.0-rc2-24027": { - "sha512": "pb71GbyEOz4LIVFjssvJ+xXRXA7dye0TuRfW/H9ocfyHensQCWZIeo89Z4rEqbK+3/mE3avAsCpBYenwop0hQA==", + "System.Threading.Thread/4.0.0": { + "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==", "type": "package", + "path": "System.Threading.Thread/4.0.0", "files": [ - "System.Threading.Thread.4.0.0-rc2-24027.nupkg.sha512", + "System.Threading.Thread.4.0.0.nupkg.sha512", "System.Threading.Thread.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8821,11 +9261,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Threading.ThreadPool/4.0.10-rc2-24027": { - "sha512": "MyuiERgONOnLCD45PQ1rTHYEv6R/2RL1/LxmqJh5/MXYBeh7o8B3VrXlMuxpTZwKg4pbQbLe5uWIueoPwyq8IA==", + "System.Threading.ThreadPool/4.0.10": { + "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", "type": "package", + "path": "System.Threading.ThreadPool/4.0.10", "files": [ - "System.Threading.ThreadPool.4.0.10-rc2-24027.nupkg.sha512", + "System.Threading.ThreadPool.4.0.10.nupkg.sha512", "System.Threading.ThreadPool.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8858,11 +9299,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Threading.Timer/4.0.1-rc2-24027": { - "sha512": "AA9O27bBDE+sNy3PsN3RLoHaQzK7OldejkpXoi3UAeVcR+8Yr4O0UmcdCkucE4KfGk/ID+BxHCWdws4FEDV+4w==", + "System.Threading.Timer/4.0.1": { + "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", "type": "package", + "path": "System.Threading.Timer/4.0.1", "files": [ - "System.Threading.Timer.4.0.1-rc2-24027.nupkg.sha512", + "System.Threading.Timer.4.0.1.nupkg.sha512", "System.Threading.Timer.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8910,11 +9352,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Xml.ReaderWriter/4.0.11-rc2-24027": { - "sha512": "PET0DO5ec5Cp6bAK40aWkv/gq4+/3KslTnkpw8UcYfoNkZafIsmd11UzWY+FnjJIpVxHDG3u4SlQAinKlABxFw==", + "System.Xml.ReaderWriter/4.0.11": { + "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", "type": "package", + "path": "System.Xml.ReaderWriter/4.0.11", "files": [ - "System.Xml.ReaderWriter.4.0.11-rc2-24027.nupkg.sha512", + "System.Xml.ReaderWriter.4.0.11.nupkg.sha512", "System.Xml.ReaderWriter.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -8977,11 +9420,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Xml.XDocument/4.0.11-rc2-24027": { - "sha512": "e2rpl8sRIEw2YiizX6CzL/g7BU9OeIRXdsuVAL3DWDFBsYrLac+Wcdn1HM1bHhrZ8Gbw+KmFQBMtnXHzv+xGsA==", + "System.Xml.XDocument/4.0.11": { + "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", "type": "package", + "path": "System.Xml.XDocument/4.0.11", "files": [ - "System.Xml.XDocument.4.0.11-rc2-24027.nupkg.sha512", + "System.Xml.XDocument.4.0.11.nupkg.sha512", "System.Xml.XDocument.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -9044,11 +9488,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Xml.XmlDocument/4.0.1-rc2-24027": { - "sha512": "9Dll6QjHF9ECoBG+bPgfiEC0B8URbG+PRuI/QLfemn/OQYG+PBfh+hK/Svfxx8d8AqhXA7pnUzOXRYNlRQ5zAQ==", + "System.Xml.XmlDocument/4.0.1": { + "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==", "type": "package", + "path": "System.Xml.XmlDocument/4.0.1", "files": [ - "System.Xml.XmlDocument.4.0.1-rc2-24027.nupkg.sha512", + "System.Xml.XmlDocument.4.0.1.nupkg.sha512", "System.Xml.XmlDocument.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -9080,11 +9525,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Xml.XPath/4.0.1-rc2-24027": { - "sha512": "HlYEV5eowxhA9GQHC0sIAKo7Hhpa2soYkBezc1/7qK1bt0bNnXDdNQXqaSDklxpAJz3xvpkOgdeid44Z/nrGxA==", + "System.Xml.XPath/4.0.1": { + "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==", "type": "package", + "path": "System.Xml.XPath/4.0.1", "files": [ - "System.Xml.XPath.4.0.1-rc2-24027.nupkg.sha512", + "System.Xml.XPath.4.0.1.nupkg.sha512", "System.Xml.XPath.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -9116,11 +9562,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Xml.XPath.XDocument/4.0.1-rc2-24027": { - "sha512": "IxOLcwl5A0Lm1s2FIUh5klV+Fi0tUE/5OltvIkZdV7phcWVfgBlCRlgxweaXVrCTI+9TZ8TihVutVaA+PC95lg==", + "System.Xml.XPath.XDocument/4.0.1": { + "sha512": "FLhdYJx4331oGovQypQ8JIw2kEmNzCsjVOVYY/16kZTUoquZG85oVn7yUhBE2OZt1yGPSXAL0HTEfzjlbNpM7Q==", "type": "package", + "path": "System.Xml.XPath.XDocument/4.0.1", "files": [ - "System.Xml.XPath.XDocument.4.0.1-rc2-24027.nupkg.sha512", + "System.Xml.XPath.XDocument.4.0.1.nupkg.sha512", "System.Xml.XPath.XDocument.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -9152,7 +9599,7 @@ "ref/xamarinwatchos10/_._" ] }, - "RecurrentTasks/2.1.0": { + "RecurrentTasks/2.3.0": { "type": "project", "path": "../../src/RecurrentTasks/project.json", "msbuildProject": "../../src/RecurrentTasks/RecurrentTasks.xproj" @@ -9160,31 +9607,32 @@ }, "projectFileDependencyGroups": { "": [ - "Microsoft.AspNetCore.Mvc >= 1.0.0-rc2-final", - "Microsoft.AspNetCore.Razor.Tools >= 1.0.0-preview1-final", - "Microsoft.AspNetCore.Server.IISIntegration >= 1.0.0-rc2-final", - "Microsoft.AspNetCore.Server.Kestrel >= 1.0.0-rc2-final", - "Microsoft.Extensions.Configuration >= 1.0.0-rc2-final", - "Microsoft.Extensions.Logging >= 1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Console >= 1.0.0-rc2-final", - "Microsoft.NETCore.App >= 1.0.0-rc2-3002702", + "Microsoft.AspNetCore.Mvc >= 1.0.0", + "Microsoft.AspNetCore.Razor.Tools >= 1.0.0-preview2-final", + "Microsoft.AspNetCore.Server.IISIntegration >= 1.0.0", + "Microsoft.AspNetCore.Server.Kestrel >= 1.0.0", + "Microsoft.Extensions.Configuration >= 1.0.0", + "Microsoft.Extensions.Logging >= 1.0.0", + "Microsoft.Extensions.Logging.Console >= 1.0.0", + "Microsoft.NETCore.App >= 1.0.0", "RecurrentTasks" ], ".NETCoreApp,Version=v1.0": [] }, "tools": { ".NETCoreApp,Version=v1.0": { - "Microsoft.AspNetCore.Razor.Tools/1.0.0-preview1-final": { + "Microsoft.AspNetCore.Razor.Tools/1.0.0-preview2-final": { "type": "package", "dependencies": { - "Microsoft.AspNetCore.Razor.Runtime": "1.0.0-rc2-final", - "Microsoft.DotNet.Cli.Utils": "1.0.0-preview1-002702", - "Microsoft.Extensions.CommandLineUtils": "1.0.0-rc2-final", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final", - "Microsoft.NETCore.App": "1.0.0-rc2-3002702", - "Newtonsoft.Json": "8.0.3", - "System.Diagnostics.Process": "4.1.0-rc2-24027", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027" + "Microsoft.AspNetCore.Razor.Runtime": "1.0.0", + "Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121", + "Microsoft.DotNet.ProjectModel.Loader": "1.0.0-preview2-003121", + "Microsoft.Extensions.CommandLineUtils": "1.0.0", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "Microsoft.NETCore.App": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "System.Diagnostics.Process": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1" }, "compile": { "lib/netcoreapp1.0/dotnet-razor-tooling.dll": {} @@ -9193,13 +9641,13 @@ "lib/netcoreapp1.0/dotnet-razor-tooling.dll": {} } }, - "Microsoft.AspNetCore.Server.IISIntegration.Tools/1.0.0-preview1-final": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools/1.0.0-preview2-final": { "type": "package", "dependencies": { - "Microsoft.DotNet.ProjectModel": "1.0.0-rc2-002702", - "Microsoft.Extensions.CommandLineUtils": "1.0.0-rc2-final", - "Microsoft.NETCore.App": "1.0.0-rc2-3002702", - "System.Diagnostics.Process": "4.1.0-rc2-24027" + "Microsoft.DotNet.ProjectModel": "1.0.0-rc3-003121", + "Microsoft.Extensions.CommandLineUtils": "1.0.0", + "Microsoft.NETCore.App": "1.0.0", + "System.Diagnostics.Process": "4.1.0" }, "compile": { "lib/netcoreapp1.0/dotnet-publish-iis.dll": {} @@ -9212,8 +9660,8 @@ }, "projectFileToolGroups": { ".NETCoreApp,Version=v1.0": [ - "Microsoft.AspNetCore.Razor.Tools >= 1.0.0-preview1-final", - "Microsoft.AspNetCore.Server.IISIntegration.Tools >= 1.0.0-preview1-final" + "Microsoft.AspNetCore.Razor.Tools >= 1.0.0-preview2-final", + "Microsoft.AspNetCore.Server.IISIntegration.Tools >= 1.0.0-preview2-final" ] } } \ No newline at end of file diff --git a/src/RecurrentTasks/project.json b/src/RecurrentTasks/project.json index 7f25b09..508fc96 100644 --- a/src/RecurrentTasks/project.json +++ b/src/RecurrentTasks/project.json @@ -1,12 +1,12 @@ { - "version": "2.2.0", + "version": "2.3.0", "title": "RecurrentTasks", "copyright": "Dmitry Popov, 2016", "packOptions": { "summary": "RecurrentTasks for .NET allows you to run simple recurrent background tasks with specific intervals, without complex frameworks, persistance, etc...", "tags": [ "task", "job", "recurrent", "recurring", "aspnetcore" ], "owners": [ "Dmitry Popov" ], - "releaseNotes": "New: AfterRunFail event (with Exception info)", + "releaseNotes": "Dependencies upgraded to 1.0.0 RTM", "licenseUrl": "https://github.com/justdmitry/RecurrentTasks/blob/master/LICENSE", "projectUrl": "https://github.com/justdmitry/RecurrentTasks", "repository": { @@ -15,11 +15,11 @@ } }, "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0", + "System.Threading": "4.0.11" }, "frameworks": { - "netstandard1.3": { } + "netstandard1.3": {} } } diff --git a/src/RecurrentTasks/project.lock.json b/src/RecurrentTasks/project.lock.json index 85a7669..be5b296 100644 --- a/src/RecurrentTasks/project.lock.json +++ b/src/RecurrentTasks/project.lock.json @@ -3,16 +3,16 @@ "version": 2, "targets": { ".NETStandard,Version=v1.3": { - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-final": { + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": { "type": "package", "dependencies": { - "System.ComponentModel": "4.0.1-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027" + "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" }, "compile": { "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} @@ -21,17 +21,18 @@ "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} } }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-final": { + "Microsoft.Extensions.Logging.Abstractions/1.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027" + "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" }, "compile": { "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {} @@ -40,28 +41,48 @@ "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {} } }, - "System.Collections/4.0.11-rc2-24027": { + "Microsoft.NETCore.Platforms/1.0.1": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.0.1": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "System.Collections/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Collections.dll": {} } }, - "System.Collections.Concurrent/4.0.12-rc2-24027": { + "System.Collections.Concurrent/4.0.12": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Collections.Concurrent.dll": {} @@ -70,10 +91,10 @@ "lib/netstandard1.3/System.Collections.Concurrent.dll": {} } }, - "System.ComponentModel/4.0.1-rc2-24027": { + "System.ComponentModel/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/System.ComponentModel.dll": {} @@ -82,244 +103,171 @@ "lib/netstandard1.3/System.ComponentModel.dll": {} } }, - "System.Diagnostics.Debug/4.0.11-rc2-24027": { + "System.Diagnostics.Debug/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} } }, - "System.Diagnostics.Tracing/4.1.0-rc2-24027": { + "System.Diagnostics.Tracing/4.1.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/_._": {} } }, - "System.Globalization/4.0.11-rc2-24027": { + "System.Globalization/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Globalization.dll": {} } }, - "System.IO/4.1.0-rc2-24027": { + "System.IO/4.1.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.IO.dll": {} } }, - "System.Linq/4.1.0-rc2-24027": { + "System.Linq/4.1.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "System.Collections": "4.0.11", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/System.Linq.dll": {} } }, - "System.Linq.Expressions/4.0.11-rc2-24027": { + "System.Linq.Expressions/4.1.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Emit": "4.0.1-rc2-24027", - "System.Reflection.Emit.ILGeneration": "4.0.1-rc2-24027", - "System.Reflection.Emit.Lightweight": "4.0.1-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Linq.Expressions.dll": {} - } - }, - "System.ObjectModel/4.0.12-rc2-24027": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} } }, - "System.Reflection/4.1.0-rc2-24027": { + "System.Reflection/4.1.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Reflection.dll": {} } }, - "System.Reflection.Emit/4.0.1-rc2-24027": { + "System.Reflection.Primitives/4.0.1": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Emit.ILGeneration": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1-rc2-24027": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.1-rc2-24027": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Emit.ILGeneration": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1-rc2-24027": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" - }, - "compile": { - "ref/netstandard1.0/_._": {} - } - }, - "System.Reflection.Primitives/4.0.1-rc2-24027": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/System.Reflection.Primitives.dll": {} } }, - "System.Reflection.TypeExtensions/4.1.0-rc2-24027": { + "System.Resources.ResourceManager/4.0.1": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "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" }, "compile": { - "ref/netstandard1.3/_._": {} + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} } }, - "System.Resources.ResourceManager/4.0.1-rc2-24027": { + "System.Runtime/4.1.0": { "type": "package", "dependencies": { - "System.Globalization": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" }, - "compile": { - "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.1.0-rc2-24027": { - "type": "package", "compile": { "ref/netstandard1.3/System.Runtime.dll": {} } }, - "System.Runtime.Extensions/4.1.0-rc2-24027": { + "System.Runtime.Extensions/4.1.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Runtime.Extensions.dll": {} } }, - "System.Runtime.Handles/4.0.1-rc2-24027": { + "System.Runtime.Handles/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Runtime.Handles.dll": {} } }, - "System.Runtime.InteropServices/4.1.0-rc2-24027": { + "System.Runtime.InteropServices/4.1.0": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Runtime.InteropServices.dll": {} } }, - "System.Text.Encoding/4.0.11-rc2-24027": { + "System.Text.Encoding/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Text.Encoding.dll": {} } }, - "System.Threading/4.0.11-rc2-24027": { + "System.Threading/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" }, "compile": { "ref/netstandard1.3/System.Threading.dll": {} @@ -328,10 +276,12 @@ "lib/netstandard1.3/System.Threading.dll": {} } }, - "System.Threading.Tasks/4.0.11-rc2-24027": { + "System.Threading.Tasks/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Threading.Tasks.dll": {} @@ -340,35 +290,60 @@ } }, "libraries": { - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-final": { - "sha512": "KRvRif+xioZSjml/O/Y6W/fksieNZ/hp+Bf/4Nau85gQleG8UJl+etaJXj18SWu8bQ3ApD4ikzq6qKXLlO8AMg==", + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": { + "sha512": "+XwaNo3o9RhLQhUnnOBCaukeRi1X9yYc0Fzye9RlErSflKZdw0VgHtn6rvKo0FTionsW0x8QVULhKH+nkqVjQA==", "type": "package", + "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0", "files": [ - "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0.nupkg.sha512", "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.xml", "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml" ] }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-final": { - "sha512": "cuBUcNmHGLqG7zT4ZpGY21w0/zQNJzfw6tz3eIEU2PNLBeA0EfV2b9LHfgrIFhn74+xmgoKhwo/0Th3d28Cubw==", + "Microsoft.Extensions.Logging.Abstractions/1.0.0": { + "sha512": "wHT6oY50q36mAXBRKtFaB7u07WxKC5u2M8fi3PqHOOnHyUo9gD0u1TlCNR8UObHQxKMYwqlgI8TLcErpt29n8A==", "type": "package", + "path": "Microsoft.Extensions.Logging.Abstractions/1.0.0", "files": [ - "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Logging.Abstractions.1.0.0.nupkg.sha512", "Microsoft.Extensions.Logging.Abstractions.nuspec", - "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.xml", "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll", "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.xml" ] }, - "System.Collections/4.0.11-rc2-24027": { - "sha512": "wi4oT2B06Ev7vDPeJki7HVJ3qPYJIilzf+p81JuNaBD9L2wi9Y2L5BsQ6ToncW+lYZafuMea/hiK1xX1Ge1VWQ==", + "Microsoft.NETCore.Platforms/1.0.1": { + "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==", + "type": "package", + "path": "Microsoft.NETCore.Platforms/1.0.1", + "files": [ + "Microsoft.NETCore.Platforms.1.0.1.nupkg.sha512", + "Microsoft.NETCore.Platforms.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.0.1": { + "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", + "type": "package", + "path": "Microsoft.NETCore.Targets/1.0.1", + "files": [ + "Microsoft.NETCore.Targets.1.0.1.nupkg.sha512", + "Microsoft.NETCore.Targets.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.json" + ] + }, + "System.Collections/4.0.11": { + "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", "type": "package", + "path": "System.Collections/4.0.11", "files": [ - "System.Collections.4.0.11-rc2-24027.nupkg.sha512", + "System.Collections.4.0.11.nupkg.sha512", "System.Collections.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -429,11 +404,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Collections.Concurrent/4.0.12-rc2-24027": { - "sha512": "0XN+QpKMG5xHRZ50hV6Yn1ojqAhZ2CL8q4vT316ipEB3yEb/ROMjC18Html5QreF12ZS6Le1AWtIB1Qgi2FzvA==", + "System.Collections.Concurrent/4.0.12": { + "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", "type": "package", + "path": "System.Collections.Concurrent/4.0.12", "files": [ - "System.Collections.Concurrent.4.0.12-rc2-24027.nupkg.sha512", + "System.Collections.Concurrent.4.0.12.nupkg.sha512", "System.Collections.Concurrent.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -494,11 +470,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.ComponentModel/4.0.1-rc2-24027": { - "sha512": "6ne+Yk/6J59NZ19jiKjxwRPS2VIofrps2xkGDxMpyiHzEk4xpIY0kzt0ZABvTpdOYpvOw7bz2Ls2/X0QiuSjQg==", + "System.ComponentModel/4.0.1": { + "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", "type": "package", + "path": "System.ComponentModel/4.0.1", "files": [ - "System.ComponentModel.4.0.1-rc2-24027.nupkg.sha512", + "System.ComponentModel.4.0.1.nupkg.sha512", "System.ComponentModel.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -550,11 +527,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Diagnostics.Debug/4.0.11-rc2-24027": { - "sha512": "k0ckwL97zqxiSjRpgmkjUoP51LvEzMshynNuNOyUsKLQTHVieTsrg2YiBnou0AsDnDk/maCmuPJvoJR0qIcOuQ==", + "System.Diagnostics.Debug/4.0.11": { + "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", "type": "package", + "path": "System.Diagnostics.Debug/4.0.11", "files": [ - "System.Diagnostics.Debug.4.0.11-rc2-24027.nupkg.sha512", + "System.Diagnostics.Debug.4.0.11.nupkg.sha512", "System.Diagnostics.Debug.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -615,11 +593,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Diagnostics.Tracing/4.1.0-rc2-24027": { - "sha512": "ZRR3q7pPGqKc5rcHAhNP9bTjtIILmZu82E86n+mDyMYx+KEpuYpj8P+kQMWeLKYK1U4gxftqyidwm6+j0b+YoQ==", + "System.Diagnostics.Tracing/4.1.0": { + "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", "type": "package", + "path": "System.Diagnostics.Tracing/4.1.0", "files": [ - "System.Diagnostics.Tracing.4.1.0-rc2-24027.nupkg.sha512", + "System.Diagnostics.Tracing.4.1.0.nupkg.sha512", "System.Diagnostics.Tracing.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -702,11 +681,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Globalization/4.0.11-rc2-24027": { - "sha512": "RDterYo6tAE2YslHrhvAdrAkTdhGkml7tg5JGX/XwgN2GGkB3NkiqigBSaUEV4S2ftCzCFDIhCxqQy57lAsEIA==", + "System.Globalization/4.0.11": { + "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", "type": "package", + "path": "System.Globalization/4.0.11", "files": [ - "System.Globalization.4.0.11-rc2-24027.nupkg.sha512", + "System.Globalization.4.0.11.nupkg.sha512", "System.Globalization.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -767,11 +747,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.IO/4.1.0-rc2-24027": { - "sha512": "VQRYN33mwALJ1UWfxxMqXzKCYUDNMUeU6j8YCxVcLCBx3Oa/l7i15NQv/OAebfOVSmBa3LmBTRP4rQqChrCbFg==", + "System.IO/4.1.0": { + "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", "type": "package", + "path": "System.IO/4.1.0", "files": [ - "System.IO.4.1.0-rc2-24027.nupkg.sha512", + "System.IO.4.1.0.nupkg.sha512", "System.IO.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -845,20 +826,21 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Linq/4.1.0-rc2-24027": { - "sha512": "uf9wbc/YWrM4xa6g0T8n1XpY/zRcTHSPw+sCwkdrL2aJbYyLFKs1Yeg8M0zjMX4SwmiNeDiZR2gkAHAPsIfKCg==", + "System.Linq/4.1.0": { + "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", "type": "package", + "path": "System.Linq/4.1.0", "files": [ - "System.Linq.4.1.0-rc2-24027.nupkg.sha512", + "System.Linq.4.1.0.nupkg.sha512", "System.Linq.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", - "lib/net462/System.Linq.dll", + "lib/net463/System.Linq.dll", "lib/netcore50/System.Linq.dll", - "lib/netstandard1.5/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", "lib/portable-net45+win8+wp8+wpa81/_._", "lib/win8/_._", "lib/wp80/_._", @@ -870,7 +852,7 @@ "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", - "ref/net462/System.Linq.dll", + "ref/net463/System.Linq.dll", "ref/netcore50/System.Linq.dll", "ref/netcore50/System.Linq.xml", "ref/netcore50/de/System.Linq.xml", @@ -893,17 +875,17 @@ "ref/netstandard1.0/ru/System.Linq.xml", "ref/netstandard1.0/zh-hans/System.Linq.xml", "ref/netstandard1.0/zh-hant/System.Linq.xml", - "ref/netstandard1.5/System.Linq.dll", - "ref/netstandard1.5/System.Linq.xml", - "ref/netstandard1.5/de/System.Linq.xml", - "ref/netstandard1.5/es/System.Linq.xml", - "ref/netstandard1.5/fr/System.Linq.xml", - "ref/netstandard1.5/it/System.Linq.xml", - "ref/netstandard1.5/ja/System.Linq.xml", - "ref/netstandard1.5/ko/System.Linq.xml", - "ref/netstandard1.5/ru/System.Linq.xml", - "ref/netstandard1.5/zh-hans/System.Linq.xml", - "ref/netstandard1.5/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", "ref/portable-net45+win8+wp8+wpa81/_._", "ref/win8/_._", "ref/wp80/_._", @@ -914,19 +896,21 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Linq.Expressions/4.0.11-rc2-24027": { - "sha512": "CfLNPBWzWdqfRGkdIXNWQ+2zSyaegOL4MAQSry0k6t8CQnPwJLywZLIZAV+cU47gi/7C2eM2I63r2eBZNJDovw==", + "System.Linq.Expressions/4.1.0": { + "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", "type": "package", + "path": "System.Linq.Expressions/4.1.0", "files": [ - "System.Linq.Expressions.4.0.11-rc2-24027.nupkg.sha512", + "System.Linq.Expressions.4.1.0.nupkg.sha512", "System.Linq.Expressions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.3/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", "lib/portable-net45+win8+wp8+wpa81/_._", "lib/win8/_._", "lib/wp80/_._", @@ -938,6 +922,7 @@ "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", "ref/netcore50/System.Linq.Expressions.dll", "ref/netcore50/System.Linq.Expressions.xml", "ref/netcore50/de/System.Linq.Expressions.xml", @@ -971,6 +956,17 @@ "ref/netstandard1.3/ru/System.Linq.Expressions.xml", "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", "ref/portable-net45+win8+wp8+wpa81/_._", "ref/win8/_._", "ref/wp80/_._", @@ -982,78 +978,12 @@ "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll" ] }, - "System.ObjectModel/4.0.12-rc2-24027": { - "sha512": "8wgKzGVl3RlTMBYsWCjOizWpzH8mm7i0pv2vHwXbpV/rGptDDKzXHyTmdqFdBAfrnsnicwh79hNTc5zzKWKK1A==", + "System.Reflection/4.1.0": { + "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", "type": "package", + "path": "System.Reflection/4.1.0", "files": [ - "System.ObjectModel.4.0.12-rc2-24027.nupkg.sha512", - "System.ObjectModel.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.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.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Reflection/4.1.0-rc2-24027": { - "sha512": "RMJrRP3I71J5PLfsX2reWDPltwJs/pJ+CbIqa2ccDVop2WlBq6CuV7FOo7l77nuYFKODI6kpATLXZKiq8V8aEQ==", - "type": "package", - "files": [ - "System.Reflection.4.1.0-rc2-24027.nupkg.sha512", + "System.Reflection.4.1.0.nupkg.sha512", "System.Reflection.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1127,154 +1057,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Reflection.Emit/4.0.1-rc2-24027": { - "sha512": "C4kvi/Lpj5vgUtCygP0bbBnlYyuDZEU2ofdgGXa8AgV3FkmwNEqJ7zm3OhMFe/kMKRgEkJXkioFdkLHrJJLDTQ==", - "type": "package", - "files": [ - "System.Reflection.Emit.4.0.1-rc2-24027.nupkg.sha512", - "System.Reflection.Emit.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/netstandard1.3/System.Reflection.Emit.dll", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/net45/_._", - "ref/netstandard1.1/System.Reflection.Emit.dll", - "ref/netstandard1.1/System.Reflection.Emit.xml", - "ref/netstandard1.1/de/System.Reflection.Emit.xml", - "ref/netstandard1.1/es/System.Reflection.Emit.xml", - "ref/netstandard1.1/fr/System.Reflection.Emit.xml", - "ref/netstandard1.1/it/System.Reflection.Emit.xml", - "ref/netstandard1.1/ja/System.Reflection.Emit.xml", - "ref/netstandard1.1/ko/System.Reflection.Emit.xml", - "ref/netstandard1.1/ru/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", - "ref/xamarinmac20/_._" - ] - }, - "System.Reflection.Emit.ILGeneration/4.0.1-rc2-24027": { - "sha512": "s7puteOinRV3+sGWDLeuUbSSxwZHqHhXpLwoTlS4L0x7d58j868LbKPSPJVZAs6a/dGkyo02WHVDcEtCBjn8VQ==", - "type": "package", - "files": [ - "System.Reflection.Emit.ILGeneration.4.0.1-rc2-24027.nupkg.sha512", - "System.Reflection.Emit.ILGeneration.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "System.Reflection.Emit.Lightweight/4.0.1-rc2-24027": { - "sha512": "kDuurD3Z1bYJrW0VqBEoHWLUCWYtto/SF/dajEj8sXftap3zkqBF+3IMb8l4EfRuzytlS2TlmFxiApbB9C8JEA==", - "type": "package", - "files": [ - "System.Reflection.Emit.Lightweight.4.0.1-rc2-24027.nupkg.sha512", - "System.Reflection.Emit.Lightweight.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "System.Reflection.Extensions/4.0.1-rc2-24027": { - "sha512": "5N1tt+n0OHyaZ3Wb73FIfNsRrkFDW1I2fuAzojudgcZ0XcAHqLE0Wb9/JQ2eG6Lp89l2qntx4HvXcIDjVwvYuw==", - "type": "package", - "files": [ - "System.Reflection.Extensions.4.0.1-rc2-24027.nupkg.sha512", - "System.Reflection.Extensions.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "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.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Reflection.Primitives/4.0.1-rc2-24027": { - "sha512": "/FgLaA5DnqSVZVm5+eqhSjezjBCRo7+W5LzUsa3nQul6hHbMGkB2uuN8Tt6UfpLzKZ5QimefeDKkLYmChBnskQ==", + "System.Reflection.Primitives/4.0.1": { + "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", "type": "package", + "path": "System.Reflection.Primitives/4.0.1", "files": [ - "System.Reflection.Primitives.4.0.1-rc2-24027.nupkg.sha512", + "System.Reflection.Primitives.4.0.1.nupkg.sha512", "System.Reflection.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1324,62 +1112,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Reflection.TypeExtensions/4.1.0-rc2-24027": { - "sha512": "1t2V/qaXZjJ2krlf97bGEcqiNjriHZQv5mx3Mez2PJ2+gqJbu0vPWCSNTN8Y+miCuRm+Pwx0ZFAoCQHkij2xcQ==", - "type": "package", - "files": [ - "System.Reflection.TypeExtensions.4.1.0-rc2-24027.nupkg.sha512", - "System.Reflection.TypeExtensions.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll" - ] - }, - "System.Resources.ResourceManager/4.0.1-rc2-24027": { - "sha512": "WFDuYprqRWAVcQzArAqgabw9bbGPBaogBG17sGtZ5Iyb7ddOcIs89QYdcxdatPkSYOFNWydwSY2fyOjhIKMIcA==", + "System.Resources.ResourceManager/4.0.1": { + "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", "type": "package", + "path": "System.Resources.ResourceManager/4.0.1", "files": [ - "System.Resources.ResourceManager.4.0.1-rc2-24027.nupkg.sha512", + "System.Resources.ResourceManager.4.0.1.nupkg.sha512", "System.Resources.ResourceManager.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1429,11 +1167,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime/4.1.0-rc2-24027": { - "sha512": "sDyyCeXycMSiNP4z1wyeyXlZSb26/OXIAwqnDsOAjw9PL3r8OgDRJgt4SH6Qid5z6E5IEGTKwjBjrHJGoa8bag==", + "System.Runtime/4.1.0": { + "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", "type": "package", + "path": "System.Runtime/4.1.0", "files": [ - "System.Runtime.4.1.0-rc2-24027.nupkg.sha512", + "System.Runtime.4.1.0.nupkg.sha512", "System.Runtime.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1518,11 +1257,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.Extensions/4.1.0-rc2-24027": { - "sha512": "rHmAgtQY8XlVd4tB/5ta8IzxAL9gpUlkTYQgUXDjdHux2MFmDSJv4vgm/atmwbKZcd0TnzjD2SYpnkWSqDWgFg==", + "System.Runtime.Extensions/4.1.0": { + "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", "type": "package", + "path": "System.Runtime.Extensions/4.1.0", "files": [ - "System.Runtime.Extensions.4.1.0-rc2-24027.nupkg.sha512", + "System.Runtime.Extensions.4.1.0.nupkg.sha512", "System.Runtime.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1596,11 +1336,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.Handles/4.0.1-rc2-24027": { - "sha512": "zAfnDT+YDOnVK2ZSoE+70LU94207gz0AO1B+ELtfsZB6a35yVFBo9XTE/nK9QwsZxnknPIqoQ1CJz434TC5PFA==", + "System.Runtime.Handles/4.0.1": { + "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", "type": "package", + "path": "System.Runtime.Handles/4.0.1", "files": [ - "System.Runtime.Handles.4.0.1-rc2-24027.nupkg.sha512", + "System.Runtime.Handles.4.0.1.nupkg.sha512", "System.Runtime.Handles.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1631,11 +1372,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.InteropServices/4.1.0-rc2-24027": { - "sha512": "HMTGM3YyFBqDSP4STwC2YC51PInAQNMRj4V3rodwhaeAl+DnRKYqRFnd3eO2l99JqrcBIgg48SFGU9zglQC38w==", + "System.Runtime.InteropServices/4.1.0": { + "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", "type": "package", + "path": "System.Runtime.InteropServices/4.1.0", "files": [ - "System.Runtime.InteropServices.4.1.0-rc2-24027.nupkg.sha512", + "System.Runtime.InteropServices.4.1.0.nupkg.sha512", "System.Runtime.InteropServices.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1718,11 +1460,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Text.Encoding/4.0.11-rc2-24027": { - "sha512": "WyhCB3a669kXgMXEBx+T0G+bulfT0xzhYqZvuIGm22qIFlS85z11df279viqqjkwv2PDQvLjE2YKhRqkvdEd3g==", + "System.Text.Encoding/4.0.11": { + "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", "type": "package", + "path": "System.Text.Encoding/4.0.11", "files": [ - "System.Text.Encoding.4.0.11-rc2-24027.nupkg.sha512", + "System.Text.Encoding.4.0.11.nupkg.sha512", "System.Text.Encoding.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1783,11 +1526,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Threading/4.0.11-rc2-24027": { - "sha512": "JdVfUj82+pkIGfpUeb28HdwxoUMR7lTL5LT2iX9gyKtIo4yv2VirGPFVvohdlN9t9My+dIlYb9W4z1YlZV/RIA==", + "System.Threading/4.0.11": { + "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", "type": "package", + "path": "System.Threading/4.0.11", "files": [ - "System.Threading.4.0.11-rc2-24027.nupkg.sha512", + "System.Threading.4.0.11.nupkg.sha512", "System.Threading.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1851,11 +1595,12 @@ "runtimes/aot/lib/netcore50/System.Threading.dll" ] }, - "System.Threading.Tasks/4.0.11-rc2-24027": { - "sha512": "BULvVgPxKNzMgAZpaRHREYhbGFTDbwG84mR61gGcajhLo6nn7XS9E1Lzixiv3gANtT7HROH7h3LeMPMRsEvEPQ==", + "System.Threading.Tasks/4.0.11": { + "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", "type": "package", + "path": "System.Threading.Tasks/4.0.11", "files": [ - "System.Threading.Tasks.4.0.11-rc2-24027.nupkg.sha512", + "System.Threading.Tasks.4.0.11.nupkg.sha512", "System.Threading.Tasks.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1919,9 +1664,9 @@ }, "projectFileDependencyGroups": { "": [ - "Microsoft.Extensions.DependencyInjection.Abstractions >= 1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Abstractions >= 1.0.0-rc2-final", - "System.Threading >= 4.0.11-rc2-24027" + "Microsoft.Extensions.DependencyInjection.Abstractions >= 1.0.0", + "Microsoft.Extensions.Logging.Abstractions >= 1.0.0", + "System.Threading >= 4.0.11" ], ".NETStandard,Version=v1.3": [] }, diff --git a/test/RecurrentTasks.Tests/project.json b/test/RecurrentTasks.Tests/project.json index cd2976e..682ac57 100644 --- a/test/RecurrentTasks.Tests/project.json +++ b/test/RecurrentTasks.Tests/project.json @@ -3,11 +3,11 @@ "dependencies": { "RecurrentTasks": "*", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final", - "xunit": "2.1.0", - "dotnet-test-xunit": "1.0.0-rc2-build10015" + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.Logging.Console": "1.0.0", + "xunit": "2.2.0-beta2-build3300", + "dotnet-test-xunit": "2.2.0-preview2-build1029" }, "testRunner": "xunit", @@ -18,14 +18,10 @@ "frameworks": { "netcoreapp1.0": { - "imports": [ - "dnxcore50", - "portable-net45+win8" - ], "dependencies": { "Microsoft.NETCore.App": { "type": "platform", - "version": "1.0.0-rc2-3002702" + "version": "1.0.0" } } } diff --git a/test/RecurrentTasks.Tests/project.lock.json b/test/RecurrentTasks.Tests/project.lock.json index 3245824..7f2a40e 100644 --- a/test/RecurrentTasks.Tests/project.lock.json +++ b/test/RecurrentTasks.Tests/project.lock.json @@ -3,12 +3,12 @@ "version": 2, "targets": { ".NETCoreApp,Version=v1.0": { - "dotnet-test-xunit/1.0.0-rc2-build10015": { + "dotnet-test-xunit/2.2.0-preview2-build1029": { "type": "package", "dependencies": { - "Microsoft.Extensions.Testing.Abstractions": "1.0.0-preview1-002702", - "Microsoft.NETCore.App": "1.0.0-rc2-3002702", - "xunit.runner.reporters": "2.1.0" + "Microsoft.Extensions.Testing.Abstractions": "1.0.0-preview2-003121", + "Microsoft.NETCore.App": "1.0.0", + "xunit.runner.reporters": "2.2.0-beta2-build3300" }, "compile": { "lib/netcoreapp1.0/dotnet-test-xunit.dll": {} @@ -17,51 +17,91 @@ "lib/netcoreapp1.0/dotnet-test-xunit.dll": {} } }, + "Libuv/1.9.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1" + }, + "runtimeTargets": { + "runtimes/debian-x64/native/libuv.so": { + "assetType": "native", + "rid": "debian-x64" + }, + "runtimes/fedora-x64/native/libuv.so": { + "assetType": "native", + "rid": "fedora-x64" + }, + "runtimes/opensuse-x64/native/libuv.so": { + "assetType": "native", + "rid": "opensuse-x64" + }, + "runtimes/osx/native/libuv.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/rhel-x64/native/libuv.so": { + "assetType": "native", + "rid": "rhel-x64" + }, + "runtimes/win7-arm/native/libuv.dll": { + "assetType": "native", + "rid": "win7-arm" + }, + "runtimes/win7-x64/native/libuv.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x86/native/libuv.dll": { + "assetType": "native", + "rid": "win7-x86" + } + } + }, "Microsoft.CodeAnalysis.Analyzers/1.1.0": { "type": "package" }, - "Microsoft.CodeAnalysis.Common/1.3.0-beta1-20160429-01": { + "Microsoft.CodeAnalysis.Common/1.3.0": { "type": "package", "dependencies": { "Microsoft.CodeAnalysis.Analyzers": "1.1.0", - "System.AppContext": "4.1.0-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Collections.Immutable": "1.2.0-rc2-24027", - "System.Console": "4.0.0-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.FileVersionInfo": "4.0.0-rc2-24027", - "System.Diagnostics.StackTrace": "4.0.1-rc2-24027", - "System.Diagnostics.Tools": "4.0.1-rc2-24027", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Metadata": "1.3.0-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Runtime.Numerics": "4.0.1-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-24027", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Text.Encoding.CodePages": "4.0.1-rc2-24027", - "System.Text.Encoding.Extensions": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "System.Threading.Tasks.Parallel": "4.0.1-rc2-24027", - "System.Threading.Thread": "4.0.0-rc2-24027", - "System.Xml.ReaderWriter": "4.0.11-rc2-24027", - "System.Xml.XDocument": "4.0.11-rc2-24027", - "System.Xml.XPath.XDocument": "4.0.1-rc2-24027", - "System.Xml.XmlDocument": "4.0.1-rc2-24027" + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.Immutable": "1.2.0", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.FileVersionInfo": "4.0.0", + "System.Diagnostics.StackTrace": "4.0.1", + "System.Diagnostics.Tools": "4.0.1", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "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.Reflection": "4.1.0", + "System.Reflection.Metadata": "1.3.0", + "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.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.CodePages": "4.0.1", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Thread": "4.0.0", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11", + "System.Xml.XPath.XDocument": "4.0.1", + "System.Xml.XmlDocument": "4.0.1" }, "compile": { "lib/netstandard1.3/_._": {} @@ -70,10 +110,10 @@ "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {} } }, - "Microsoft.CodeAnalysis.CSharp/1.3.0-beta1-20160429-01": { + "Microsoft.CodeAnalysis.CSharp/1.3.0": { "type": "package", "dependencies": { - "Microsoft.CodeAnalysis.Common": "[1.3.0-beta1-20160429-01]" + "Microsoft.CodeAnalysis.Common": "[1.3.0]" }, "compile": { "lib/netstandard1.3/_._": {} @@ -82,10 +122,10 @@ "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {} } }, - "Microsoft.CodeAnalysis.VisualBasic/1.3.0-beta1-20160429-01": { + "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { "type": "package", "dependencies": { - "Microsoft.CodeAnalysis.Common": "1.3.0-beta1-20160429-01" + "Microsoft.CodeAnalysis.Common": "1.3.0" }, "compile": { "lib/netstandard1.3/_._": {} @@ -94,25 +134,25 @@ "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": {} } }, - "Microsoft.CSharp/4.0.1-rc2-24027": { + "Microsoft.CSharp/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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": {} @@ -121,16 +161,21 @@ "lib/netstandard1.3/Microsoft.CSharp.dll": {} } }, - "Microsoft.DiaSymReader/1.0.6": { + "Microsoft.DiaSymReader/1.0.8": { "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, "compile": { - "lib/portable-net45+win8/Microsoft.DiaSymReader.dll": {} + "lib/netstandard1.1/Microsoft.DiaSymReader.dll": {} }, "runtime": { - "lib/portable-net45+win8/Microsoft.DiaSymReader.dll": {} + "lib/netstandard1.1/Microsoft.DiaSymReader.dll": {} } }, - "Microsoft.DiaSymReader.Native/1.3.3": { + "Microsoft.DiaSymReader.Native/1.4.0-rc2": { "type": "package", "runtimeTargets": { "runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll": { @@ -159,17 +204,17 @@ } } }, - "Microsoft.DotNet.InternalAbstractions/1.0.0-rc2-002702": { + "Microsoft.DotNet.InternalAbstractions/1.0.0": { "type": "package", "dependencies": { - "System.AppContext": "4.1.0-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-24027" + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" }, "compile": { "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {} @@ -178,34 +223,34 @@ "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {} } }, - "Microsoft.DotNet.ProjectModel/1.0.0-rc2-002702": { + "Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": { "type": "package", "dependencies": { - "Microsoft.CSharp": "4.0.1-rc2-24027", - "Microsoft.Extensions.DependencyModel": "1.0.0-rc2-002702", - "Newtonsoft.Json": "7.0.1", - "NuGet.Packaging": "3.5.0-beta-final", - "NuGet.RuntimeModel": "3.5.0-beta-final", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.Reflection.Metadata": "1.3.0-rc2-24027", - "System.Runtime.Loader": "4.0.0-rc2-24027", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Threading.Thread": "4.0.0-rc2-24027", - "System.Xml.XDocument": "4.0.11-rc2-24027" + "Microsoft.CSharp": "4.0.1", + "Microsoft.Extensions.DependencyModel": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "NuGet.Packaging": "3.5.0-beta2-1484", + "NuGet.RuntimeModel": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime.Loader": "4.0.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Threading.Thread": "4.0.0", + "System.Xml.XDocument": "4.0.11" }, "compile": { - "lib/netstandard1.5/Microsoft.DotNet.ProjectModel.dll": {} + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.DotNet.ProjectModel.dll": {} + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll": {} } }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-final": { + "Microsoft.Extensions.Configuration.Abstractions/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-final", - "System.Linq": "4.1.0-rc2-24027" + "Microsoft.Extensions.Primitives": "1.0.0", + "System.Linq": "4.1.0" }, "compile": { "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} @@ -214,15 +259,15 @@ "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} } }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-final": { + "Microsoft.Extensions.DependencyInjection/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "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" }, "compile": { "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {} @@ -231,16 +276,16 @@ "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {} } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-final": { + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": { "type": "package", "dependencies": { - "System.ComponentModel": "4.0.1-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027" + "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" }, "compile": { "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} @@ -249,28 +294,28 @@ "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} } }, - "Microsoft.Extensions.DependencyModel/1.0.0-rc2-002702": { + "Microsoft.Extensions.DependencyModel/1.0.0": { "type": "package", "dependencies": { - "Microsoft.DotNet.InternalAbstractions": "1.0.0-rc2-002702", - "Newtonsoft.Json": "7.0.1", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027" + "Microsoft.DotNet.InternalAbstractions": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Linq": "4.1.0" }, "compile": { - "lib/netstandard1.5/Microsoft.Extensions.DependencyModel.dll": {} + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.Extensions.DependencyModel.dll": {} + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} } }, - "Microsoft.Extensions.Logging/1.0.0-rc2-final": { + "Microsoft.Extensions.Logging/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "System.Threading": "4.0.11" }, "compile": { "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {} @@ -279,17 +324,18 @@ "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {} } }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-final": { + "Microsoft.Extensions.Logging.Abstractions/1.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027" + "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" }, "compile": { "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {} @@ -298,14 +344,14 @@ "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {} } }, - "Microsoft.Extensions.Logging.Console/1.0.0-rc2-final": { + "Microsoft.Extensions.Logging.Console/1.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final", - "System.Console": "4.0.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "System.Console": "4.0.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Threading": "4.0.11" }, "compile": { "lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {} @@ -314,164 +360,153 @@ "lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {} } }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-final": { + "Microsoft.Extensions.Primitives/1.0.0": { "type": "package", "dependencies": { - "System.AppContext": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" }, "compile": { - "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {} + "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {} }, "runtime": { - "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {} + "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {} } }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-final": { + "Microsoft.Extensions.Testing.Abstractions/1.0.0-preview2-003121": { "type": "package", "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.DiaSymReader": "1.0.8", + "Microsoft.DiaSymReader.Native": "1.4.0-rc2", + "Microsoft.DotNet.ProjectModel": "1.0.0-rc3-003121", + "Newtonsoft.Json": "9.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1" }, "compile": { - "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {} + "lib/netstandard1.6/Microsoft.Extensions.Testing.Abstractions.dll": {} }, "runtime": { - "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.Extensions.Testing.Abstractions/1.0.0-preview1-002702": { - "type": "package", - "dependencies": { - "Microsoft.DiaSymReader": "1.0.6", - "Microsoft.DiaSymReader.Native": "1.3.3", - "Microsoft.DotNet.ProjectModel": "1.0.0-rc2-002702", - "Newtonsoft.Json": "7.0.1", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027" + "lib/netstandard1.6/Microsoft.Extensions.Testing.Abstractions.dll": {} + } + }, + "Microsoft.NETCore.App/1.0.0": { + "type": "package", + "dependencies": { + "Libuv": "1.9.0", + "Microsoft.CSharp": "4.0.1", + "Microsoft.CodeAnalysis.CSharp": "1.3.0", + "Microsoft.CodeAnalysis.VisualBasic": "1.3.0", + "Microsoft.NETCore.DotNetHostPolicy": "1.0.1", + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2", + "Microsoft.VisualBasic": "10.0.1", + "NETStandard.Library": "1.6.0", + "System.Buffers": "4.0.0", + "System.Collections.Immutable": "1.2.0", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Annotations": "4.1.0", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Process": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO.FileSystem.Watcher": "4.0.0", + "System.IO.MemoryMappedFiles": "4.0.0", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Parallel": "4.0.1", + "System.Linq.Queryable": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Requests": "4.0.11", + "System.Net.Security": "4.0.0", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Numerics.Vectors": "4.1.1", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.Reader": "4.0.0", + "System.Runtime.Loader": "4.0.0", + "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.Threading.Tasks.Dataflow": "4.6.0", + "System.Threading.Tasks.Extensions": "4.0.0", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10" }, "compile": { - "lib/netstandard1.5/Microsoft.Extensions.Testing.Abstractions.dll": {} + "lib/netcoreapp1.0/_._": {} }, "runtime": { - "lib/netstandard1.5/Microsoft.Extensions.Testing.Abstractions.dll": {} - } - }, - "Microsoft.NETCore.App/1.0.0-rc2-3002702": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1-rc2-24027", - "Microsoft.CodeAnalysis.CSharp": "1.3.0-beta1-20160429-01", - "Microsoft.CodeAnalysis.VisualBasic": "1.3.0-beta1-20160429-01", - "Microsoft.NETCore.DotNetHostPolicy": "1.0.1-rc2-002702-00", - "Microsoft.VisualBasic": "10.0.1-rc2-24027", - "NETStandard.Library": "1.5.0-rc2-24027", - "System.Buffers": "4.0.0-rc2-24027", - "System.Collections.Immutable": "1.2.0-rc2-24027", - "System.ComponentModel": "4.0.1-rc2-24027", - "System.ComponentModel.Annotations": "4.1.0-rc2-24027", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-24027", - "System.Diagnostics.Process": "4.1.0-rc2-24027", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.Globalization.Extensions": "4.0.1-rc2-24027", - "System.IO.FileSystem.Watcher": "4.0.0-rc2-24027", - "System.IO.MemoryMappedFiles": "4.0.0-rc2-24027", - "System.IO.UnmanagedMemoryStream": "4.0.1-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.Linq.Parallel": "4.0.1-rc2-24027", - "System.Linq.Queryable": "4.0.1-rc2-24027", - "System.Net.NameResolution": "4.0.0-rc2-24027", - "System.Net.Requests": "4.0.11-rc2-24027", - "System.Net.Security": "4.0.0-rc2-24027", - "System.Net.WebHeaderCollection": "4.0.1-rc2-24027", - "System.Numerics.Vectors": "4.1.1-rc2-24027", - "System.Reflection.DispatchProxy": "4.0.1-rc2-24027", - "System.Reflection.Metadata": "1.3.0-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Resources.Reader": "4.0.0-rc2-24027", - "System.Runtime.Loader": "4.0.0-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc2-24027", - "System.Threading.Tasks.Dataflow": "4.6.0-rc2-24027", - "System.Threading.Tasks.Extensions": "4.0.0-rc2-24027", - "System.Threading.Tasks.Parallel": "4.0.1-rc2-24027", - "System.Threading.Thread": "4.0.0-rc2-24027", - "System.Threading.ThreadPool": "4.0.10-rc2-24027" - } - }, - "Microsoft.NETCore.DotNetHost/1.0.1-rc2-002702-00": { + "lib/netcoreapp1.0/_._": {} + } + }, + "Microsoft.NETCore.DotNetHost/1.0.1": { "type": "package" }, - "Microsoft.NETCore.DotNetHostPolicy/1.0.1-rc2-002702-00": { + "Microsoft.NETCore.DotNetHostPolicy/1.0.1": { "type": "package", "dependencies": { - "Microsoft.NETCore.DotNetHostResolver": "1.0.1-rc2-002702" + "Microsoft.NETCore.DotNetHostResolver": "1.0.1" } }, - "Microsoft.NETCore.DotNetHostResolver/1.0.1-rc2-002702-00": { + "Microsoft.NETCore.DotNetHostResolver/1.0.1": { "type": "package", "dependencies": { - "Microsoft.NETCore.DotNetHost": "1.0.1-rc2-002702" + "Microsoft.NETCore.DotNetHost": "1.0.1" } }, - "Microsoft.NETCore.Platforms/1.0.1-rc2-24027": { + "Microsoft.NETCore.Jit/1.0.2": { + "type": "package" + }, + "Microsoft.NETCore.Platforms/1.0.1": { "type": "package", - "dependencies": { - "Microsoft.NETCore.Targets": "1.0.1-rc2-24027" + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} } }, - "Microsoft.NETCore.Runtime/1.0.2-rc2-24027": { + "Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { "type": "package", "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2-rc2-24027", - "Microsoft.NETCore.Runtime.Native": "1.0.2-rc2-24027" + "Microsoft.NETCore.Jit": "1.0.2", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1" } }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.2-rc2-24027": { + "Microsoft.NETCore.Targets/1.0.1": { "type": "package", - "dependencies": { - "Microsoft.NETCore.Windows.ApiSets": "1.0.1-rc2-24027" + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} } }, - "Microsoft.NETCore.Runtime.Native/1.0.2-rc2-24027": { - "type": "package" - }, - "Microsoft.NETCore.Targets/1.0.1-rc2-24027": { - "type": "package" - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1-rc2-24027": { + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { "type": "package" }, - "Microsoft.VisualBasic/10.0.1-rc2-24027": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.VisualBasic/10.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.1/Microsoft.VisualBasic.dll": {} @@ -480,25 +515,28 @@ "lib/netstandard1.3/Microsoft.VisualBasic.dll": {} } }, - "Microsoft.Win32.Primitives/4.0.1-rc2-24027": { + "Microsoft.Win32.Primitives/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} } }, - "Microsoft.Win32.Registry/4.0.0-rc2-24027": { + "Microsoft.Win32.Registry/4.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "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.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0" }, "compile": { "ref/netstandard1.3/_._": {} @@ -514,67 +552,95 @@ } } }, - "NETStandard.Library/1.5.0-rc2-24027": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc2-24027", - "Microsoft.NETCore.Runtime": "1.0.2-rc2-24027", - "Microsoft.Win32.Primitives": "4.0.1-rc2-24027", - "System.AppContext": "4.1.0-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Console": "4.0.0-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tools": "4.0.1-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Globalization.Calendars": "4.0.1-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.Compression": "4.1.0-rc2-24027", - "System.IO.Compression.ZipFile": "4.0.1-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Net.Http": "4.0.1-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.Net.Sockets": "4.1.0-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-24027", - "System.Runtime.Numerics": "4.0.1-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Text.Encoding.Extensions": "4.0.11-rc2-24027", - "System.Text.RegularExpressions": "4.0.12-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "System.Threading.Timer": "4.0.1-rc2-24027", - "System.Xml.ReaderWriter": "4.0.11-rc2-24027", - "System.Xml.XDocument": "4.0.11-rc2-24027" - } - }, - "Newtonsoft.Json/7.0.1": { - "type": "package", - "compile": { - "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} + "NETStandard.Library/1.6.0": { + "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" + } + }, + "Newtonsoft.Json/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "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.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "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.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} }, "runtime": { - "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} + "lib/netstandard1.0/Newtonsoft.Json.dll": {} } }, - "NuGet.Common/3.5.0-beta-final": { + "NuGet.Common/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", - "System.Diagnostics.Process": "4.1.0-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Threading.Thread": "4.0.0-rc2-24027" + "NETStandard.Library": "1.6.0", + "System.Diagnostics.Process": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Threading.Thread": "4.0.0" }, "compile": { "lib/netstandard1.3/NuGet.Common.dll": {} @@ -583,11 +649,10 @@ "lib/netstandard1.3/NuGet.Common.dll": {} } }, - "NuGet.Frameworks/3.5.0-beta-final": { + "NuGet.Frameworks/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", - "NuGet.Versioning": "3.5.0-beta-final" + "NETStandard.Library": "1.6.0" }, "compile": { "lib/netstandard1.3/NuGet.Frameworks.dll": {} @@ -596,13 +661,13 @@ "lib/netstandard1.3/NuGet.Frameworks.dll": {} } }, - "NuGet.Packaging/3.5.0-beta-final": { + "NuGet.Packaging/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", - "NuGet.Common": "3.5.0-beta-final", - "NuGet.Packaging.Core": "3.5.0-beta-final", - "System.IO.Compression": "4.1.0-rc2-24027" + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging.Core": "3.5.0-beta2-1484", + "System.IO.Compression": "4.1.0" }, "compile": { "lib/netstandard1.3/NuGet.Packaging.dll": {} @@ -611,12 +676,13 @@ "lib/netstandard1.3/NuGet.Packaging.dll": {} } }, - "NuGet.Packaging.Core/3.5.0-beta-final": { + "NuGet.Packaging.Core/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", - "NuGet.Packaging.Core.Types": "3.5.0-beta-final", - "System.Xml.XDocument": "4.0.11-rc2-24027" + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging.Core.Types": "3.5.0-beta2-1484", + "System.Xml.XDocument": "4.0.11" }, "compile": { "lib/netstandard1.3/NuGet.Packaging.Core.dll": {} @@ -625,11 +691,12 @@ "lib/netstandard1.3/NuGet.Packaging.Core.dll": {} } }, - "NuGet.Packaging.Core.Types/3.5.0-beta-final": { + "NuGet.Packaging.Core.Types/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", - "NuGet.Frameworks": "3.5.0-beta-final" + "NETStandard.Library": "1.6.0", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484" }, "compile": { "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {} @@ -638,15 +705,15 @@ "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {} } }, - "NuGet.RuntimeModel/3.5.0-beta-final": { + "NuGet.RuntimeModel/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027", + "NETStandard.Library": "1.6.0", "Newtonsoft.Json": "6.0.4", - "NuGet.Frameworks": "3.5.0-beta-final", - "NuGet.Versioning": "3.5.0-beta-final", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027" + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.ObjectModel": "4.0.12" }, "compile": { "lib/netstandard1.3/NuGet.RuntimeModel.dll": {} @@ -655,10 +722,10 @@ "lib/netstandard1.3/NuGet.RuntimeModel.dll": {} } }, - "NuGet.Versioning/3.5.0-beta-final": { + "NuGet.Versioning/3.5.0-beta2-1484": { "type": "package", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027" + "NETStandard.Library": "1.6.0" }, "compile": { "lib/netstandard1.0/NuGet.Versioning.dll": {} @@ -667,137 +734,154 @@ "lib/netstandard1.0/NuGet.Versioning.dll": {} } }, - "runtime.native.System/4.0.0-rc2-24027": { - "type": "package" - }, - "runtime.native.System.IO.Compression/4.1.0-rc2-24027": { - "type": "package" - }, - "runtime.native.System.Net.Http/4.0.1-rc2-24027": { - "type": "package" - }, - "runtime.native.System.Net.Security/4.0.1-rc2-24027": { - "type": "package" + "runtime.native.System/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } }, - "runtime.native.System.Security.Cryptography/4.0.0-rc2-24027": { - "type": "package" + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } }, - "System.AppContext/4.1.0-rc2-24027": { + "runtime.native.System.Net.Http/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" }, "compile": { - "ref/netstandard1.5/System.AppContext.dll": {} + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} } }, - "System.Buffers/4.0.0-rc2-24027": { + "runtime.native.System.Net.Security/4.0.1": { "type": "package", "dependencies": { - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" }, "compile": { - "lib/netstandard1.1/System.Buffers.dll": {} + "lib/netstandard1.0/_._": {} }, "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} + "lib/netstandard1.0/_._": {} } }, - "System.Collections/4.0.11-rc2-24027": { + "runtime.native.System.Security.Cryptography/4.0.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" }, "compile": { - "ref/netstandard1.3/System.Collections.dll": {} + "lib/netstandard1.0/_._": {} }, "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} + "lib/netstandard1.0/_._": {} } }, - "System.Collections.Concurrent/4.0.12-rc2-24027": { + "System.AppContext/4.1.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "System.Runtime": "4.1.0" }, "compile": { - "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + "ref/netstandard1.6/System.AppContext.dll": {} }, "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + "lib/netstandard1.6/System.AppContext.dll": {} } }, - "System.Collections.Immutable/1.2.0-rc2-24027": { + "System.Buffers/4.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { - "lib/netstandard1.0/System.Collections.Immutable.dll": {} + "lib/netstandard1.1/System.Buffers.dll": {} }, "runtime": { - "lib/netstandard1.0/System.Collections.Immutable.dll": {} + "lib/netstandard1.1/System.Buffers.dll": {} } }, - "System.Collections.NonGeneric/4.0.1-rc2-24027": { + "System.Collections/4.0.11": { "type": "package", "dependencies": { - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { - "ref/netstandard1.3/_._": {} + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.12": { + "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" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} }, "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} } }, - "System.Collections.Specialized/4.0.1-rc2-24027": { + "System.Collections.Immutable/1.2.0": { "type": "package", "dependencies": { - "System.Collections.NonGeneric": "4.0.1-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Globalization.Extensions": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { - "ref/netstandard1.3/_._": {} + "lib/netstandard1.0/System.Collections.Immutable.dll": {} }, "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} + "lib/netstandard1.0/System.Collections.Immutable.dll": {} } }, - "System.ComponentModel/4.0.1-rc2-24027": { + "System.ComponentModel/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/System.ComponentModel.dll": {} @@ -806,20 +890,20 @@ "lib/netstandard1.3/System.ComponentModel.dll": {} } }, - "System.ComponentModel.Annotations/4.1.0-rc2-24027": { + "System.ComponentModel.Annotations/4.1.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.ComponentModel": "4.0.1-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Text.RegularExpressions": "4.0.12-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.4/System.ComponentModel.Annotations.dll": {} @@ -828,37 +912,38 @@ "lib/netstandard1.4/System.ComponentModel.Annotations.dll": {} } }, - "System.Console/4.0.0-rc2-24027": { + "System.Console/4.0.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Console.dll": {} } }, - "System.Diagnostics.Debug/4.0.11-rc2-24027": { + "System.Diagnostics.Debug/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Diagnostics.DiagnosticSource/4.0.0-rc2-24027": { + "System.Diagnostics.DiagnosticSource/4.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} @@ -867,17 +952,18 @@ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} } }, - "System.Diagnostics.FileVersionInfo/4.0.0-rc2-24027": { + "System.Diagnostics.FileVersionInfo/4.0.0": { "type": "package", "dependencies": { - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Reflection.Metadata": "1.3.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" }, "compile": { "ref/netstandard1.3/_._": {} @@ -887,34 +973,36 @@ "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": { + "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.Diagnostics.Process/4.1.0-rc2-24027": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1-rc2-24027", - "Microsoft.Win32.Registry": "4.0.0-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Text.Encoding.Extensions": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "System.Threading.Thread": "4.0.0-rc2-24027", - "System.Threading.ThreadPool": "4.0.10-rc2-24027" + "System.Diagnostics.Process/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "Microsoft.Win32.Registry": "4.0.0", + "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.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0" }, "compile": { "ref/netstandard1.4/System.Diagnostics.Process.dll": {} @@ -924,21 +1012,25 @@ "assetType": "runtime", "rid": "linux" }, - "runtimes/osx.10.10/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { "assetType": "runtime", - "rid": "osx.10.10" + "rid": "osx" }, - "runtimes/win7/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.Diagnostics.StackTrace/4.0.1-rc2-24027": { + "System.Diagnostics.StackTrace/4.0.1": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "System.Collections.Immutable": "1.2.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" }, "compile": { "ref/netstandard1.3/_._": {} @@ -947,48 +1039,46 @@ "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} } }, - "System.Diagnostics.Tools/4.0.1-rc2-24027": { + "System.Diagnostics.Tools/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Diagnostics.Tracing/4.1.0-rc2-24027": { + "System.Diagnostics.Tracing/4.1.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/_._": {} } }, - "System.Dynamic.Runtime/4.0.11-rc2-24027": { + "System.Dynamic.Runtime/4.0.11": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Emit": "4.0.1-rc2-24027", - "System.Reflection.Emit.ILGeneration": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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": {} @@ -997,36 +1087,38 @@ "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} } }, - "System.Globalization/4.0.11-rc2-24027": { + "System.Globalization/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Globalization.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Globalization.Calendars/4.0.1-rc2-24027": { + "System.Globalization.Calendars/4.0.1": { "type": "package", "dependencies": { - "System.Globalization": "4.0.11-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Globalization.Calendars.dll": {} } }, - "System.Globalization.Extensions/4.0.1-rc2-24027": { + "System.Globalization.Extensions/4.0.1": { "type": "package", "dependencies": { - "System.Globalization": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Globalization.Extensions.dll": {} @@ -1036,71 +1128,69 @@ "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.IO/4.1.0-rc2-24027": { + "System.IO/4.1.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.5/System.IO.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.IO.Compression/4.1.0-rc2-24027": { + "System.IO.Compression/4.1.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "runtime.native.System.IO.Compression": "4.1.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.IO.Compression.dll": {} }, - "runtime": { - "lib/portable-net45+win8+wpa81/_._": {} - }, "runtimeTargets": { "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.3/System.IO.Compression.dll": { + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.IO.Compression.ZipFile/4.0.1-rc2-24027": { + "System.IO.Compression.ZipFile/4.0.1": { "type": "package", "dependencies": { - "System.Buffers": "4.0.0-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.Compression": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} @@ -1109,24 +1199,26 @@ "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} } }, - "System.IO.FileSystem/4.0.1-rc2-24027": { + "System.IO.FileSystem/4.0.1": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.IO.FileSystem.dll": {} } }, - "System.IO.FileSystem.Primitives/4.0.1-rc2-24027": { + "System.IO.FileSystem.Primitives/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} @@ -1135,24 +1227,25 @@ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} } }, - "System.IO.FileSystem.Watcher/4.0.0-rc2-24027": { + "System.IO.FileSystem.Watcher/4.0.0": { "type": "package", "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Overlapped": "4.0.1-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "System.Threading.Thread": "4.0.0-rc2-24027", - "runtime.native.System": "4.0.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "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.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "runtime.native.System": "4.0.0" }, "compile": { "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {} @@ -1166,26 +1259,28 @@ "assetType": "runtime", "rid": "osx" }, - "runtimes/win7/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": { + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.IO.MemoryMappedFiles/4.0.0-rc2-24027": { + "System.IO.MemoryMappedFiles/4.0.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.IO.UnmanagedMemoryStream": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.IO.UnmanagedMemoryStream": "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.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" }, "compile": { "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {} @@ -1195,22 +1290,22 @@ "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": { + "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.IO.UnmanagedMemoryStream/4.0.1-rc2-24027": { + "System.IO.UnmanagedMemoryStream/4.0.1": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" }, "compile": { "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} @@ -1219,63 +1314,63 @@ "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} } }, - "System.Linq/4.1.0-rc2-24027": { + "System.Linq/4.1.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027" + "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" }, "compile": { - "ref/netstandard1.5/System.Linq.dll": {} + "ref/netstandard1.6/System.Linq.dll": {} }, "runtime": { - "lib/netstandard1.5/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.11-rc2-24027": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Emit": "4.0.1-rc2-24027", - "System.Reflection.Emit.ILGeneration": "4.0.1-rc2-24027", - "System.Reflection.Emit.Lightweight": "4.0.1-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.1.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" }, "compile": { - "ref/netstandard1.3/System.Linq.Expressions.dll": {} + "ref/netstandard1.6/System.Linq.Expressions.dll": {} }, "runtime": { - "lib/netstandard1.3/System.Linq.Expressions.dll": {} + "lib/netstandard1.6/System.Linq.Expressions.dll": {} } }, - "System.Linq.Parallel/4.0.1-rc2-24027": { + "System.Linq.Parallel/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "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.Threading.Tasks": "4.0.11" }, "compile": { "ref/netstandard1.1/System.Linq.Parallel.dll": {} @@ -1284,17 +1379,17 @@ "lib/netstandard1.3/System.Linq.Parallel.dll": {} } }, - "System.Linq.Queryable/4.0.1-rc2-24027": { + "System.Linq.Queryable/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.0/System.Linq.Queryable.dll": {} @@ -1303,62 +1398,67 @@ "lib/netstandard1.3/System.Linq.Queryable.dll": {} } }, - "System.Net.Http/4.0.1-rc2-24027": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-24027", - "System.Security.Cryptography.OpenSsl": "4.0.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "runtime.native.System": "4.0.0-rc2-24027", - "runtime.native.System.Net.Http": "4.0.1-rc2-24027", - "runtime.native.System.Security.Cryptography": "4.0.0-rc2-24027" - }, - "compile": { - "ref/netstandard1.1/System.Net.Http.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" }, - "runtime": { - "lib/netstandard1.4/System.Net.Http.dll": {} + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} }, "runtimeTargets": { - "runtimes/win7/lib/netstandard1.3/System.Net.Http.dll": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" } } }, - "System.Net.NameResolution/4.0.0-rc2-24027": { + "System.Net.NameResolution/4.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Principal.Windows": "4.0.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "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.Principal.Windows": "4.0.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" }, "compile": { "ref/netstandard1.3/System.Net.NameResolution.dll": {} @@ -1368,121 +1468,122 @@ "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.3/System.Net.NameResolution.dll": { + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.Net.Primitives/4.0.11-rc2-24027": { + "System.Net.Primitives/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" }, "compile": { "ref/netstandard1.3/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Net.Requests/4.0.11-rc2-24027": { + "System.Net.Requests/4.0.11": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Net.Http": "4.0.1-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.Net.WebHeaderCollection": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" }, "compile": { "ref/netstandard1.3/System.Net.Requests.dll": {} }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} - }, "runtimeTargets": { "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": { "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.3/System.Net.Requests.dll": { + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.Net.Security/4.0.0-rc2-24027": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Globalization.Extensions": "4.0.1-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Claims": "4.0.1-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-24027", - "System.Security.Cryptography.OpenSsl": "4.0.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc2-24027", - "System.Security.Principal": "4.0.1-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "System.Threading.ThreadPool": "4.0.10-rc2-24027", - "runtime.native.System.Net.Security": "4.0.1-rc2-24027" + "System.Net.Security/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "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.Claims": "4.0.1", + "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.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Security": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" }, "compile": { "ref/netstandard1.3/System.Net.Security.dll": {} }, "runtimeTargets": { - "runtimes/unix/lib/netstandard1.4/System.Net.Security.dll": { + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": { "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.3/System.Net.Security.dll": { + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.Net.Sockets/4.1.0-rc2-24027": { + "System.Net.Sockets/4.1.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Net.Sockets.dll": {} } }, - "System.Net.WebHeaderCollection/4.0.1-rc2-24027": { + "System.Net.WebHeaderCollection/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Specialized": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027" + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} @@ -1491,29 +1592,29 @@ "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} } }, - "System.Numerics.Vectors/4.1.1-rc2-24027": { + "System.Numerics.Vectors/4.1.1": { "type": "package", "dependencies": { - "System.Globalization": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027" + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" }, "compile": { - "ref/netstandard1.1/System.Numerics.Vectors.dll": {} + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} }, "runtime": { - "lib/netstandard1.3/System.Numerics.Vectors.dll": {} + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} } }, - "System.ObjectModel/4.0.12-rc2-24027": { + "System.ObjectModel/4.0.12": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.ObjectModel.dll": {} @@ -1522,33 +1623,32 @@ "lib/netstandard1.3/System.ObjectModel.dll": {} } }, - "System.Reflection/4.1.0-rc2-24027": { + "System.Reflection/4.1.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.5/System.Reflection.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Reflection.DispatchProxy/4.0.1-rc2-24027": { + "System.Reflection.DispatchProxy/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Emit": "4.0.1-rc2-24027", - "System.Reflection.Emit.ILGeneration": "4.0.1-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "System.Collections": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" }, "compile": { "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} @@ -1557,14 +1657,14 @@ "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} } }, - "System.Reflection.Emit/4.0.1-rc2-24027": { + "System.Reflection.Emit/4.0.1": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Emit.ILGeneration": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.1/_._": {} @@ -1573,12 +1673,12 @@ "lib/netstandard1.3/System.Reflection.Emit.dll": {} } }, - "System.Reflection.Emit.ILGeneration/4.0.1-rc2-24027": { + "System.Reflection.Emit.ILGeneration/4.0.1": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/_._": {} @@ -1587,13 +1687,13 @@ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} } }, - "System.Reflection.Emit.Lightweight/4.0.1-rc2-24027": { + "System.Reflection.Emit.Lightweight/4.0.1": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Emit.ILGeneration": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/_._": {} @@ -1602,37 +1702,36 @@ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} } }, - "System.Reflection.Extensions/4.0.1-rc2-24027": { + "System.Reflection.Extensions/4.0.1": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Reflection.Metadata/1.3.0-rc2-24027": { + "System.Reflection.Metadata/1.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Immutable": "1.2.0-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Text.Encoding.Extensions": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "System.Collections": "4.0.11", + "System.Collections.Immutable": "1.2.0", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "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.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11" }, "compile": { "lib/netstandard1.1/System.Reflection.Metadata.dll": {} @@ -1641,23 +1740,22 @@ "lib/netstandard1.1/System.Reflection.Metadata.dll": {} } }, - "System.Reflection.Primitives/4.0.1-rc2-24027": { + "System.Reflection.Primitives/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Reflection.TypeExtensions/4.1.0-rc2-24027": { + "System.Reflection.TypeExtensions/4.1.0": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} @@ -1666,14 +1764,14 @@ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} } }, - "System.Resources.Reader/4.0.0-rc2-24027": { + "System.Resources.Reader/4.0.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" }, "compile": { "lib/netstandard1.0/System.Resources.Reader.dll": {} @@ -1682,94 +1780,96 @@ "lib/netstandard1.0/System.Resources.Reader.dll": {} } }, - "System.Resources.ResourceManager/4.0.1-rc2-24027": { + "System.Resources.ResourceManager/4.0.1": { "type": "package", "dependencies": { - "System.Globalization": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Runtime/4.1.0-rc2-24027": { + "System.Runtime/4.1.0": { "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, "compile": { "ref/netstandard1.5/System.Runtime.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp80+wpa81/_._": {} } }, - "System.Runtime.Extensions/4.1.0-rc2-24027": { + "System.Runtime.Extensions/4.1.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.5/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Runtime.Handles/4.0.1-rc2-24027": { + "System.Runtime.Handles/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Runtime.Handles.dll": {} } }, - "System.Runtime.InteropServices/4.1.0-rc2-24027": { + "System.Runtime.InteropServices/4.1.0": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0-rc2-24027", - "System.Reflection.Primitives": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices.PInvoke": "4.0.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.5/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/_._": {} - } - }, - "System.Runtime.InteropServices.PInvoke/4.0.0-rc2-24027": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.InteropServices.PInvoke.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.InteropServices.PInvoke.dll": {} } }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-24027": { + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } } }, - "System.Runtime.Loader/4.0.0-rc2-24027": { + "System.Runtime.Loader/4.0.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.5/System.Runtime.Loader.dll": {} @@ -1778,13 +1878,13 @@ "lib/netstandard1.5/System.Runtime.Loader.dll": {} } }, - "System.Runtime.Numerics/4.0.1-rc2-24027": { + "System.Runtime.Numerics/4.0.1": { "type": "package", "dependencies": { - "System.Globalization": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027" + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" }, "compile": { "ref/netstandard1.1/System.Runtime.Numerics.dll": {} @@ -1793,11 +1893,11 @@ "lib/netstandard1.3/System.Runtime.Numerics.dll": {} } }, - "System.Runtime.Serialization.Primitives/4.1.1-rc2-24027": { + "System.Runtime.Serialization.Primitives/4.1.1": { "type": "package", "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027" + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} @@ -1806,16 +1906,16 @@ "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} } }, - "System.Security.Claims/4.0.1-rc2-24027": { + "System.Security.Claims/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Security.Principal": "4.0.1-rc2-24027" + "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.Security.Principal": "4.0.1" }, "compile": { "ref/netstandard1.3/_._": {} @@ -1824,74 +1924,82 @@ "lib/netstandard1.3/System.Security.Claims.dll": {} } }, - "System.Security.Cryptography.Algorithms/4.1.0-rc2-24027": { + "System.Security.Cryptography.Algorithms/4.2.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027" + "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" }, "compile": { - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} }, "runtimeTargets": { - "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.Algorithms.dll": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.4/System.Security.Cryptography.Algorithms.dll": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.Security.Cryptography.Cng/4.1.0-rc2-24027": { + "System.Security.Cryptography.Cng/4.2.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027" + "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" }, "compile": { - "ref/netstandard1.4/_._": {} + "ref/netstandard1.6/_._": {} }, "runtimeTargets": { - "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { "assetType": "runtime", "rid": "unix" }, - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { "assetType": "runtime", "rid": "win" } } }, - "System.Security.Cryptography.Csp/4.0.0-rc2-24027": { + "System.Security.Cryptography.Csp/4.0.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/_._": {} @@ -1907,21 +2015,21 @@ } } }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-24027": { + "System.Security.Cryptography.Encoding/4.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "runtime.native.System.Security.Cryptography": "4.0.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} @@ -1931,53 +2039,52 @@ "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.Security.Cryptography.OpenSsl/4.0.0-rc2-24027": { + "System.Security.Cryptography.OpenSsl/4.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Runtime.Numerics": "4.0.1-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "runtime.native.System.Security.Cryptography": "4.0.0-rc2-24027" - }, - "compile": { - "ref/netstandard1.4/_._": {} + "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" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} }, "runtimeTargets": { - "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.OpenSsl.dll": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { "assetType": "runtime", "rid": "unix" - }, - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.OpenSsl.dll": { - "assetType": "runtime", - "rid": "win" } } }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-24027": { + "System.Security.Cryptography.Primitives/4.0.0": { "type": "package", "dependencies": { - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} @@ -1986,53 +2093,53 @@ "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} } }, - "System.Security.Cryptography.X509Certificates/4.1.0-rc2-24027": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Globalization.Calendars": "4.0.1-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.IO.FileSystem.Watcher": "4.0.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Runtime.Numerics": "4.0.1-rc2-24027", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", - "System.Security.Cryptography.Cng": "4.1.0-rc2-24027", - "System.Security.Cryptography.Csp": "4.0.0-rc2-24027", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-24027", - "System.Security.Cryptography.OpenSsl": "4.0.0-rc2-24027", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "runtime.native.System": "4.0.0-rc2-24027", - "runtime.native.System.Net.Http": "4.0.1-rc2-24027", - "runtime.native.System.Security.Cryptography": "4.0.0-rc2-24027" + "System.Security.Cryptography.X509Certificates/4.1.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" }, "compile": { "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} }, "runtimeTargets": { - "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { "assetType": "runtime", "rid": "unix" }, - "runtimes/win7/lib/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { "assetType": "runtime", - "rid": "win7" + "rid": "win" } } }, - "System.Security.Principal/4.0.1-rc2-24027": { + "System.Security.Principal/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.0/System.Security.Principal.dll": {} @@ -2041,22 +2148,23 @@ "lib/netstandard1.0/System.Security.Principal.dll": {} } }, - "System.Security.Principal.Windows/4.0.0-rc2-24027": { + "System.Security.Principal.Windows/4.0.0": { "type": "package", "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Security.Claims": "4.0.1-rc2-24027", - "System.Security.Principal": "4.0.1-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "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.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Claims": "4.0.1", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" }, "compile": { "ref/netstandard1.3/_._": {} @@ -2072,32 +2180,32 @@ } } }, - "System.Text.Encoding/4.0.11-rc2-24027": { + "System.Text.Encoding/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Text.Encoding.CodePages/4.0.1-rc2-24027": { + "System.Text.Encoding.CodePages/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "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.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" }, "compile": { "ref/netstandard1.3/_._": {} @@ -2113,41 +2221,40 @@ } } }, - "System.Text.Encoding.Extensions/4.0.11-rc2-24027": { + "System.Text.Encoding.Extensions/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11" }, "compile": { "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Text.RegularExpressions/4.0.12-rc2-24027": { + "System.Text.RegularExpressions/4.1.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027" + "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" }, "compile": { - "ref/netstandard1.3/System.Text.RegularExpressions.dll": {} + "ref/netstandard1.6/System.Text.RegularExpressions.dll": {} }, "runtime": { - "lib/netstandard1.3/System.Text.RegularExpressions.dll": {} + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} } }, - "System.Threading/4.0.11-rc2-24027": { + "System.Threading/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" }, "compile": { "ref/netstandard1.3/System.Threading.dll": {} @@ -2156,12 +2263,13 @@ "lib/netstandard1.3/System.Threading.dll": {} } }, - "System.Threading.Overlapped/4.0.1-rc2-24027": { + "System.Threading.Overlapped/4.0.1": { "type": "package", "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" }, "compile": { "ref/netstandard1.3/_._": {} @@ -2177,32 +2285,31 @@ } } }, - "System.Threading.Tasks/4.0.11-rc2-24027": { + "System.Threading.Tasks/4.0.11": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} } }, - "System.Threading.Tasks.Dataflow/4.6.0-rc2-24027": { + "System.Threading.Tasks.Dataflow/4.6.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Dynamic.Runtime": "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.Threading.Tasks": "4.0.11" }, "compile": { "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} @@ -2211,12 +2318,12 @@ "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} } }, - "System.Threading.Tasks.Extensions/4.0.0-rc2-24027": { + "System.Threading.Tasks.Extensions/4.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "System.Collections": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" }, "compile": { "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} @@ -2225,17 +2332,17 @@ "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} } }, - "System.Threading.Tasks.Parallel/4.0.1-rc2-24027": { + "System.Threading.Tasks.Parallel/4.0.1": { "type": "package", "dependencies": { - "System.Collections.Concurrent": "4.0.12-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027" + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "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" }, "compile": { "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} @@ -2244,10 +2351,10 @@ "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} } }, - "System.Threading.Thread/4.0.0-rc2-24027": { + "System.Threading.Thread/4.0.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.3/System.Threading.Thread.dll": {} @@ -2256,11 +2363,11 @@ "lib/netstandard1.3/System.Threading.Thread.dll": {} } }, - "System.Threading.ThreadPool/4.0.10-rc2-24027": { + "System.Threading.ThreadPool/4.0.10": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Handles": "4.0.1-rc2-24027" + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" }, "compile": { "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} @@ -2269,33 +2376,35 @@ "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} } }, - "System.Threading.Timer/4.0.1-rc2-24027": { + "System.Threading.Timer/4.0.1": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0-rc2-24027" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" }, "compile": { "ref/netstandard1.2/System.Threading.Timer.dll": {} } }, - "System.Xml.ReaderWriter/4.0.11-rc2-24027": { + "System.Xml.ReaderWriter/4.0.11": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.IO.FileSystem": "4.0.1-rc2-24027", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Runtime.InteropServices": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Text.Encoding.Extensions": "4.0.11-rc2-24027", - "System.Text.RegularExpressions": "4.0.12-rc2-24027", - "System.Threading.Tasks": "4.0.11-rc2-24027", - "System.Threading.Tasks.Extensions": "4.0.0-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} @@ -2304,21 +2413,21 @@ "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} } }, - "System.Xml.XDocument/4.0.11-rc2-24027": { + "System.Xml.XDocument/4.0.11": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tools": "4.0.1-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Reflection": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Xml.ReaderWriter": "4.0.11-rc2-24027" + "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" }, "compile": { "ref/netstandard1.3/System.Xml.XDocument.dll": {} @@ -2327,19 +2436,19 @@ "lib/netstandard1.3/System.Xml.XDocument.dll": {} } }, - "System.Xml.XmlDocument/4.0.1-rc2-24027": { + "System.Xml.XmlDocument/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Text.Encoding": "4.0.11-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Xml.ReaderWriter": "4.0.11-rc2-24027" + "System.Collections": "4.0.11", + "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.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" }, "compile": { "ref/netstandard1.3/_._": {} @@ -2348,18 +2457,18 @@ "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} } }, - "System.Xml.XPath/4.0.1-rc2-24027": { + "System.Xml.XPath/4.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.IO": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Xml.ReaderWriter": "4.0.11-rc2-24027" + "System.Collections": "4.0.11", + "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.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" }, "compile": { "ref/netstandard1.3/_._": {} @@ -2368,18 +2477,18 @@ "lib/netstandard1.3/System.Xml.XPath.dll": {} } }, - "System.Xml.XPath.XDocument/4.0.1-rc2-24027": { + "System.Xml.XPath.XDocument/4.0.1": { "type": "package", "dependencies": { - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime": "4.1.0-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Xml.ReaderWriter": "4.0.11-rc2-24027", - "System.Xml.XDocument": "4.0.11-rc2-24027", - "System.Xml.XPath": "4.0.1-rc2-24027" + "System.Diagnostics.Debug": "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.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11", + "System.Xml.XPath": "4.0.1" }, "compile": { "ref/netstandard1.3/_._": {} @@ -2388,155 +2497,107 @@ "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {} } }, - "xunit/2.1.0": { + "xunit/2.2.0-beta2-build3300": { "type": "package", "dependencies": { - "xunit.assert": "[2.1.0]", - "xunit.core": "[2.1.0]" + "xunit.assert": "[2.2.0-beta2-build3300]", + "xunit.core": "[2.2.0-beta2-build3300]" } }, - "xunit.abstractions/2.0.0": { + "xunit.abstractions/2.0.1-rc2": { "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Diagnostics.Tools": "4.0.1-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027" + }, "compile": { - "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + "lib/netstandard1.0/xunit.abstractions.dll": {} }, "runtime": { - "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + "lib/netstandard1.0/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0": { + "xunit.assert/2.2.0-beta2-build3300": { "type": "package", "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Text.RegularExpressions": "4.0.0", - "System.Threading.Tasks": "4.0.0" + "NETStandard.Library": "1.6.0" }, "compile": { - "lib/dotnet/xunit.assert.dll": {} + "lib/netstandard1.0/xunit.assert.dll": {} }, "runtime": { - "lib/dotnet/xunit.assert.dll": {} + "lib/netstandard1.0/xunit.assert.dll": {} } }, - "xunit.core/2.1.0": { + "xunit.core/2.2.0-beta2-build3300": { "type": "package", "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading.Tasks": "4.0.0", - "xunit.abstractions": "2.0.0", - "xunit.extensibility.core": "[2.1.0]", - "xunit.extensibility.execution": "[2.1.0]" + "xunit.extensibility.core": "[2.2.0-beta2-build3300]", + "xunit.extensibility.execution": "[2.2.0-beta2-build3300]" } }, - "xunit.extensibility.core/2.1.0": { + "xunit.extensibility.core/2.2.0-beta2-build3300": { "type": "package", "dependencies": { - "xunit.abstractions": "[2.0.0]" + "NETStandard.Library": "1.6.0", + "xunit.abstractions": "2.0.1-rc2" }, "compile": { - "lib/dotnet/xunit.core.dll": {} + "lib/netstandard1.0/xunit.core.dll": {} }, "runtime": { - "lib/dotnet/xunit.core.dll": {} + "lib/netstandard1.0/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0": { + "xunit.extensibility.execution/2.2.0-beta2-build3300": { "type": "package", "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0", - "xunit.abstractions": "2.0.0", - "xunit.extensibility.core": "[2.1.0]" + "NETStandard.Library": "1.6.0", + "xunit.extensibility.core": "[2.2.0-beta2-build3300]" }, "compile": { - "lib/dotnet/xunit.execution.dotnet.dll": {} + "lib/netstandard1.0/xunit.execution.dotnet.dll": {} }, "runtime": { - "lib/dotnet/xunit.execution.dotnet.dll": {} + "lib/netstandard1.0/xunit.execution.dotnet.dll": {} } }, - "xunit.runner.reporters/2.1.0": { + "xunit.runner.reporters/2.2.0-beta2-build3300": { "type": "package", "dependencies": { - "Newtonsoft.Json": "7.0.1", - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0", - "xunit.abstractions": "2.0.0", - "xunit.runner.utility": "[2.1.0]" + "NETStandard.Library": "1.6.0", + "Newtonsoft.Json": "9.0.1", + "xunit.runner.utility": "[2.2.0-beta2-build3300]" }, "compile": { - "lib/dotnet/xunit.runner.reporters.dotnet.dll": {} + "lib/netstandard1.1/xunit.runner.reporters.dotnet.dll": {} }, "runtime": { - "lib/dotnet/xunit.runner.reporters.dotnet.dll": {} + "lib/netstandard1.1/xunit.runner.reporters.dotnet.dll": {} } }, - "xunit.runner.utility/2.1.0": { + "xunit.runner.utility/2.2.0-beta2-build3300": { "type": "package", "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Text.RegularExpressions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0", - "xunit.abstractions": "2.0.0" + "NETStandard.Library": "1.6.0", + "xunit.abstractions": "2.0.1-rc2" }, "compile": { - "lib/dotnet/xunit.runner.utility.dotnet.dll": {} + "lib/netstandard1.1/xunit.runner.utility.dotnet.dll": {} }, "runtime": { - "lib/dotnet/xunit.runner.utility.dotnet.dll": {} + "lib/netstandard1.1/xunit.runner.utility.dotnet.dll": {} } }, - "RecurrentTasks/2.1.0": { + "RecurrentTasks/2.3.0": { "type": "project", "framework": ".NETStandard,Version=v1.3", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", - "System.Threading": "4.0.11-rc2-24027" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "System.Threading": "4.0.11" }, "compile": { "netstandard1.3/RecurrentTasks.dll": {} @@ -2548,11 +2609,12 @@ } }, "libraries": { - "dotnet-test-xunit/1.0.0-rc2-build10015": { - "sha512": "2traZWYeJiFzau+1j9HcnSZ3rQLDyIrqKyYKCTbPPmu6lsQAtaOG5q+fuKS9Vaxczmh0IcvZ2hdWEuYmtVb9zw==", + "dotnet-test-xunit/2.2.0-preview2-build1029": { + "sha512": "mPl4HHGcXsE4ljw3sHCOUvlyhXHDpfFO6qz0HbTQrhrFT8Tgm/HFLfz6TpMXUfch7rRL23kR8i0yjQPYdsl6EQ==", "type": "package", + "path": "dotnet-test-xunit/2.2.0-preview2-build1029", "files": [ - "dotnet-test-xunit.1.0.0-rc2-build10015.nupkg.sha512", + "dotnet-test-xunit.2.2.0-preview2-build1029.nupkg.sha512", "dotnet-test-xunit.nuspec", "lib/net451/dotnet-test-xunit.exe", "lib/netcoreapp1.0/dotnet-test-xunit.dll", @@ -2562,6 +2624,24 @@ "runtimes/win7-x86/lib/net451/dotnet-test-xunit.exe" ] }, + "Libuv/1.9.0": { + "sha512": "9Q7AaqtQhS8JDSIvRBt6ODSLWDBI4c8YxNxyCQemWebBFUtBbc6M5Vi5Gz1ZyIUlTW3rZK9bIr5gnVyv0z7a2Q==", + "type": "package", + "path": "Libuv/1.9.0", + "files": [ + "Libuv.1.9.0.nupkg.sha512", + "Libuv.nuspec", + "License.txt", + "runtimes/debian-x64/native/libuv.so", + "runtimes/fedora-x64/native/libuv.so", + "runtimes/opensuse-x64/native/libuv.so", + "runtimes/osx/native/libuv.dylib", + "runtimes/rhel-x64/native/libuv.so", + "runtimes/win7-arm/native/libuv.dll", + "runtimes/win7-x64/native/libuv.dll", + "runtimes/win7-x86/native/libuv.dll" + ] + }, "Microsoft.CodeAnalysis.Analyzers/1.1.0": { "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", "type": "package", @@ -2577,11 +2657,12 @@ "tools/uninstall.ps1" ] }, - "Microsoft.CodeAnalysis.Common/1.3.0-beta1-20160429-01": { - "sha512": "TSrsz9ZhBpbO3HTK0kNSUQNVTqfSEcgbPXzB/0VrkEfrXLNESJzqmA94ddrf+51w5o9kMMH53/er1A1A+PmZVg==", + "Microsoft.CodeAnalysis.Common/1.3.0": { + "sha512": "V09G35cs0CT1C4Dr1IEOh8IGfnWALEVAOO5JXsqagxXwmYR012TlorQ+vx2eXxfZRKs3gAS/r92gN9kRBLba5A==", "type": "package", + "path": "Microsoft.CodeAnalysis.Common/1.3.0", "files": [ - "Microsoft.CodeAnalysis.Common.1.3.0-beta1-20160429-01.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.1.3.0.nupkg.sha512", "Microsoft.CodeAnalysis.Common.nuspec", "ThirdPartyNotices.rtf", "lib/net45/Microsoft.CodeAnalysis.dll", @@ -2592,11 +2673,12 @@ "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml" ] }, - "Microsoft.CodeAnalysis.CSharp/1.3.0-beta1-20160429-01": { - "sha512": "q0uOK8fa3CNYNKud8OygnYmOvgcBQxQAnS2irP9LbARMGkCB1qNpjhSeiC+eF402O5Xb5voGOXnrIQbdLUv5TA==", + "Microsoft.CodeAnalysis.CSharp/1.3.0": { + "sha512": "BgWDIAbSFsHuGeLSn/rljLi51nXqkSo4DZ0qEIrHyPVasrhxEVq7aV8KKZ3HEfSFB+GIhBmOogE+mlOLYg19eg==", "type": "package", + "path": "Microsoft.CodeAnalysis.CSharp/1.3.0", "files": [ - "Microsoft.CodeAnalysis.CSharp.1.3.0-beta1-20160429-01.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.1.3.0.nupkg.sha512", "Microsoft.CodeAnalysis.CSharp.nuspec", "ThirdPartyNotices.rtf", "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", @@ -2607,11 +2689,12 @@ "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml" ] }, - "Microsoft.CodeAnalysis.VisualBasic/1.3.0-beta1-20160429-01": { - "sha512": "JEBXzOva/Okn0bY1q9fiXkCe/Gyg+fpZOHaIvUbsrtR384eQDcfvnj5NfomM1NMAJ5nw30DH1mSupnLLVqe04w==", + "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { + "sha512": "Sf3k8PkTkWqBmXnnblJbvb7ewO6mJzX6WO2t7m04BmOY5qBq6yhhyXnn/BMM+QCec3Arw3X35Zd8f9eBql0qgg==", "type": "package", + "path": "Microsoft.CodeAnalysis.VisualBasic/1.3.0", "files": [ - "Microsoft.CodeAnalysis.VisualBasic.1.3.0-beta1-20160429-01.nupkg.sha512", + "Microsoft.CodeAnalysis.VisualBasic.1.3.0.nupkg.sha512", "Microsoft.CodeAnalysis.VisualBasic.nuspec", "ThirdPartyNotices.rtf", "lib/net45/Microsoft.CodeAnalysis.VisualBasic.dll", @@ -2622,11 +2705,12 @@ "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml" ] }, - "Microsoft.CSharp/4.0.1-rc2-24027": { - "sha512": "P6MB1bNnyy4PizG4ewY0z2FP7R2kI3g/nB5qTF3rh75JXPekaJiDFPd+34uymg/5xtjllwCyM2RtVxaOhnRAPA==", + "Microsoft.CSharp/4.0.1": { + "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", "type": "package", + "path": "Microsoft.CSharp/4.0.1", "files": [ - "Microsoft.CSharp.4.0.1-rc2-24027.nupkg.sha512", + "Microsoft.CSharp.4.0.1.nupkg.sha512", "Microsoft.CSharp.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2678,23 +2762,27 @@ "ref/xamarinwatchos10/_._" ] }, - "Microsoft.DiaSymReader/1.0.6": { - "sha512": "ai2eBJrXlHa0hecUKnEyacH0iXxGNOMpc9X0s7VAeqqh5TSTW70QMhTRZ0FNCtf3R/W67K4a+uf3R7MASmAjrg==", + "Microsoft.DiaSymReader/1.0.8": { + "sha512": "ABLULVhCAiyBFLBT5xX6vB4NhZDgwUylGRQK+zW5nZn2rbh1f8LOnFZ9gVSxzL6qOzPNb32Nu3QZ43iZerHOxA==", "type": "package", + "path": "Microsoft.DiaSymReader/1.0.8", "files": [ - "Microsoft.DiaSymReader.1.0.6.nupkg.sha512", + "Microsoft.DiaSymReader.1.0.8.nupkg.sha512", "Microsoft.DiaSymReader.nuspec", "lib/net20/Microsoft.DiaSymReader.dll", "lib/net20/Microsoft.DiaSymReader.xml", + "lib/netstandard1.1/Microsoft.DiaSymReader.dll", + "lib/netstandard1.1/Microsoft.DiaSymReader.xml", "lib/portable-net45+win8/Microsoft.DiaSymReader.dll", "lib/portable-net45+win8/Microsoft.DiaSymReader.xml" ] }, - "Microsoft.DiaSymReader.Native/1.3.3": { - "sha512": "mjATkm+L2UlP35gO/ExNutLDfgX4iiwz1l/8sYVoeGHp5WnkEDu0NfIEsC4Oy/pCYeRw0/6SGB+kArJVNNvENQ==", + "Microsoft.DiaSymReader.Native/1.4.0-rc2": { + "sha512": "KIQOG+U6btTHL5KkXYofMpyCzVx+6EcDPS9GBRGGhlrTjJqcqAM6a6a0D0Dur/HPnAdmGLtSHVjCDZijGJFCAA==", "type": "package", + "path": "Microsoft.DiaSymReader.Native/1.4.0-rc2", "files": [ - "Microsoft.DiaSymReader.Native.1.3.3.nupkg.sha512", + "Microsoft.DiaSymReader.Native.1.4.0-rc2.nupkg.sha512", "Microsoft.DiaSymReader.Native.nuspec", "build/Microsoft.DiaSymReader.Native.props", "runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll", @@ -2705,101 +2793,100 @@ "runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll" ] }, - "Microsoft.DotNet.InternalAbstractions/1.0.0-rc2-002702": { - "sha512": "81Zp6K3oJY5zyoCtf7eguaZ+EnM3zawCtUKszBCLob1KH6Bu44ET2hokkk/6eMhTI2aQhbGrV9SaSjJ2K8DUDg==", + "Microsoft.DotNet.InternalAbstractions/1.0.0": { + "sha512": "AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==", "type": "package", + "path": "Microsoft.DotNet.InternalAbstractions/1.0.0", "files": [ - "Microsoft.DotNet.InternalAbstractions.1.0.0-rc2-002702.nupkg.sha512", + "Microsoft.DotNet.InternalAbstractions.1.0.0.nupkg.sha512", "Microsoft.DotNet.InternalAbstractions.nuspec", "lib/net451/Microsoft.DotNet.InternalAbstractions.dll", "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll" ] }, - "Microsoft.DotNet.ProjectModel/1.0.0-rc2-002702": { - "sha512": "ryslqqMpPRcJma9kJn3V1/GydzUny6i6xfpQ0cqfWmlPdSQ9Hnh6x2l8yVqU+ueCiVffKWn/Or80moLwroXP/A==", + "Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": { + "sha512": "wnWw5KsKinG2wWxdoQIJXZlMFvPNhL7WmIyW9q6xrZFUi/uld5PC3ksq2QDZepF148FUjCIyTP+TnRwU3RJqUg==", "type": "package", + "path": "Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121", "files": [ - "Microsoft.DotNet.ProjectModel.1.0.0-rc2-002702.nupkg.sha512", + "Microsoft.DotNet.ProjectModel.1.0.0-rc3-003121.nupkg.sha512", "Microsoft.DotNet.ProjectModel.nuspec", "lib/net451/Microsoft.DotNet.ProjectModel.dll", - "lib/netstandard1.5/Microsoft.DotNet.ProjectModel.dll" + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll" ] }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-final": { - "sha512": "Q871jpweVxec1zvUuK4RoXGRRXCZsp/f+6SDUSi8DQ95KcT8yKe2ZSoq2S2xnwoKFUepg2B6Yr3ToXD2v27zNA==", + "Microsoft.Extensions.Configuration.Abstractions/1.0.0": { + "sha512": "nJ+Et/rnDMDmGhxvFAKdN3va7y+YDPICv1nUEP8I4IKgOkWwr/dCZHMqxVhJFrkbW9ux8Kd7erC4mvxfZh0WnA==", "type": "package", + "path": "Microsoft.Extensions.Configuration.Abstractions/1.0.0", "files": [ - "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0.nupkg.sha512", "Microsoft.Extensions.Configuration.Abstractions.nuspec", "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll", "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.xml" ] }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-final": { - "sha512": "TreRt5BDwivHosFbDpfaJ9CArhyZUHWzv9dlqZx2e0+PSbZznXRBg0QWteh+Y5gEPmJy6hANuz4ZeVK52nLKXA==", + "Microsoft.Extensions.DependencyInjection/1.0.0": { + "sha512": "zdtkiZNV6LB8xtpmfyUjP/9N9ZCL/ydQ+0bfjun38fbrk+MDEm9M2yeLzRdq+OIt5xExw/KU04wFaVwJ1bhQPg==", "type": "package", + "path": "Microsoft.Extensions.DependencyInjection/1.0.0", "files": [ - "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.1.0.0.nupkg.sha512", "Microsoft.Extensions.DependencyInjection.nuspec", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.dll", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.xml", "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll", "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.xml" ] }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-final": { - "sha512": "KRvRif+xioZSjml/O/Y6W/fksieNZ/hp+Bf/4Nau85gQleG8UJl+etaJXj18SWu8bQ3ApD4ikzq6qKXLlO8AMg==", + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": { + "sha512": "+XwaNo3o9RhLQhUnnOBCaukeRi1X9yYc0Fzye9RlErSflKZdw0VgHtn6rvKo0FTionsW0x8QVULhKH+nkqVjQA==", "type": "package", + "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0", "files": [ - "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-final.nupkg", - "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0.nupkg.sha512", "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.xml", "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml" ] }, - "Microsoft.Extensions.DependencyModel/1.0.0-rc2-002702": { - "sha512": "xLEhTaEJw+3o49TNfPJ0I4ZBPe56kIIgHYmrQo6AibTfdaIV36TyvjznIGwRc53x87xKavq88PlV4tpL+jUiJQ==", + "Microsoft.Extensions.DependencyModel/1.0.0": { + "sha512": "n55Y2T4qMgCNMrJaqAN+nlG2EH4XL+e9uxIg4vdFsQeF+L8UKxRdD3C35Bt+xk3vO3Zwp3g+6KFq2VPH2COSmg==", "type": "package", + "path": "Microsoft.Extensions.DependencyModel/1.0.0", "files": [ - "Microsoft.Extensions.DependencyModel.1.0.0-rc2-002702.nupkg.sha512", + "Microsoft.Extensions.DependencyModel.1.0.0.nupkg.sha512", "Microsoft.Extensions.DependencyModel.nuspec", "lib/net451/Microsoft.Extensions.DependencyModel.dll", - "lib/netstandard1.5/Microsoft.Extensions.DependencyModel.dll" + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll" ] }, - "Microsoft.Extensions.Logging/1.0.0-rc2-final": { - "sha512": "M9lTQcaxlV2RAlyzar4s+AsTtS3KzQy78TfQImdl7s1foCMwjDerF3tYtHa4HupWAfOYUPId0b/fXNVfIZwqxw==", + "Microsoft.Extensions.Logging/1.0.0": { + "sha512": "0mDuASVrd/nMeBYIJSK+9lT3TSmWxUXP/ipVB1pF1ApMN5fqGCckPTNwmOfT4Z9wPkXGnhbwFTGrxZvbzTWxOg==", "type": "package", + "path": "Microsoft.Extensions.Logging/1.0.0", "files": [ - "Microsoft.Extensions.Logging.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Logging.1.0.0.nupkg.sha512", "Microsoft.Extensions.Logging.nuspec", - "lib/netcore50/Microsoft.Extensions.Logging.dll", - "lib/netcore50/Microsoft.Extensions.Logging.xml", "lib/netstandard1.1/Microsoft.Extensions.Logging.dll", "lib/netstandard1.1/Microsoft.Extensions.Logging.xml" ] }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-final": { - "sha512": "cuBUcNmHGLqG7zT4ZpGY21w0/zQNJzfw6tz3eIEU2PNLBeA0EfV2b9LHfgrIFhn74+xmgoKhwo/0Th3d28Cubw==", + "Microsoft.Extensions.Logging.Abstractions/1.0.0": { + "sha512": "wHT6oY50q36mAXBRKtFaB7u07WxKC5u2M8fi3PqHOOnHyUo9gD0u1TlCNR8UObHQxKMYwqlgI8TLcErpt29n8A==", "type": "package", + "path": "Microsoft.Extensions.Logging.Abstractions/1.0.0", "files": [ - "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-final.nupkg", - "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Logging.Abstractions.1.0.0.nupkg.sha512", "Microsoft.Extensions.Logging.Abstractions.nuspec", - "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.xml", "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll", "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.xml" ] }, - "Microsoft.Extensions.Logging.Console/1.0.0-rc2-final": { - "sha512": "wzTVkE0h7xKPB7PF/XMgTIuvckjzscgDqvpr2QhqMYxXeni7dUqAO8FUy4DQ8MljXikgLbKSUvJS9HgMhFD3ng==", + "Microsoft.Extensions.Logging.Console/1.0.0": { + "sha512": "GN4gFFONP12KbFEG9rNFpXuz6D2Tybcm8+c1wilaQ1eSl9zVX0gVRrKw/YRwxdwbM3eK7nWfRRqJaQPzOjtLnA==", "type": "package", + "path": "Microsoft.Extensions.Logging.Console/1.0.0", "files": [ - "Microsoft.Extensions.Logging.Console.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Logging.Console.1.0.0.nupkg.sha512", "Microsoft.Extensions.Logging.Console.nuspec", "lib/net451/Microsoft.Extensions.Logging.Console.dll", "lib/net451/Microsoft.Extensions.Logging.Console.xml", @@ -2807,154 +2894,144 @@ "lib/netstandard1.3/Microsoft.Extensions.Logging.Console.xml" ] }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-final": { - "sha512": "OjXClhPcccu39GNAs6SH6J2iC2R883Wco7LKvPqnjo1aKJQRp9vFVFVueutJFABncZO7BZINgZCwgLxVQN3yIg==", - "type": "package", - "files": [ - "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-final.nupkg.sha512", - "Microsoft.Extensions.PlatformAbstractions.nuspec", - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll", - "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml", - "lib/netcore50/Microsoft.Extensions.PlatformAbstractions.dll", - "lib/netcore50/Microsoft.Extensions.PlatformAbstractions.xml", - "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll", - "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml" - ] - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-final": { - "sha512": "5lXETW9MI0CIOOCtgeJcrX3jODcFkX04tr+K/MB+cRspPvYD3URbf4MRIwWgI5r7cu+8+efPxEH0tG1g8ldhQA==", + "Microsoft.Extensions.Primitives/1.0.0": { + "sha512": "3q2vzfKEDjL6JFkRpk5SFA3zarYsO6+ZYgoucNImrUMzDn0mFbEOL5p9oPoWiypwypbJVVjWTf557bXZ0YFLig==", "type": "package", + "path": "Microsoft.Extensions.Primitives/1.0.0", "files": [ - "Microsoft.Extensions.Primitives.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Primitives.1.0.0.nupkg.sha512", "Microsoft.Extensions.Primitives.nuspec", - "lib/netcore50/Microsoft.Extensions.Primitives.dll", - "lib/netcore50/Microsoft.Extensions.Primitives.xml", "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll", "lib/netstandard1.0/Microsoft.Extensions.Primitives.xml" ] }, - "Microsoft.Extensions.Testing.Abstractions/1.0.0-preview1-002702": { - "sha512": "NE4Efz4kvkztJ80CSifUlP0UaBP4iOOaeTVk6nrj+ZIJzhsRGLbecIe4oX8G82pkCkqFF9i8KTl7YYUwpQY5Wg==", + "Microsoft.Extensions.Testing.Abstractions/1.0.0-preview2-003121": { + "sha512": "q3Uq07d6LbYr0NiX5Dz9GCbXJv4vkmSbUvFEmov3Vo4prZWjhFzF+byk2tWAEEqtZ6ereMYXBUt99wCTtANk6Q==", "type": "package", + "path": "Microsoft.Extensions.Testing.Abstractions/1.0.0-preview2-003121", "files": [ - "Microsoft.Extensions.Testing.Abstractions.1.0.0-preview1-002702.nupkg.sha512", + "Microsoft.Extensions.Testing.Abstractions.1.0.0-preview2-003121.nupkg.sha512", "Microsoft.Extensions.Testing.Abstractions.nuspec", "lib/net451/Microsoft.Extensions.Testing.Abstractions.dll", - "lib/netstandard1.5/Microsoft.Extensions.Testing.Abstractions.dll" + "lib/netstandard1.6/Microsoft.Extensions.Testing.Abstractions.dll" ] }, - "Microsoft.NETCore.App/1.0.0-rc2-3002702": { - "sha512": "G+wsg7zwathgjAOZ2w0XbHU0MD4GEHIpi/JsvBGmbACW+/Dsx2YoXai7LLItfe5ZVidqBXXQCz8NxCKbKqr8Ww==", + "Microsoft.NETCore.App/1.0.0": { + "sha512": "Bv40dLDrT+Igcg1e6otW3D8voeJCfcAxOlsxSVlDz+J+cdWls5kblZvPHHvx7gX3/oJoQVIkEeO3sMyv5PSVJA==", "type": "package", + "path": "Microsoft.NETCore.App/1.0.0", "files": [ - "Microsoft.NETCore.App.1.0.0-rc2-3002702.nupkg.sha512", + "Microsoft.NETCore.App.1.0.0.nupkg.sha512", "Microsoft.NETCore.App.nuspec", "ThirdPartyNotices.txt", - "dotnet_library_license.txt" + "dotnet_library_license.txt", + "lib/netcoreapp1.0/_._" ] }, - "Microsoft.NETCore.DotNetHost/1.0.1-rc2-002702-00": { - "sha512": "AE5A6IqSArMD6a1JbMkJtZqO4GwSzyoqnUhSCOUvgqTcWM38i6Xk6DbSK2IrqxuYEYT6FvPaj7k5M/VYZZl7cA==", + "Microsoft.NETCore.DotNetHost/1.0.1": { + "sha512": "uaMgykq6AckP3hZW4dsD6zjocxyXPz0tcTl8OX7mlSUWsyFXdtf45sjdwI0JIHxt3gnI6GihAlOAwYK8HE4niQ==", "type": "package", + "path": "Microsoft.NETCore.DotNetHost/1.0.1", "files": [ - "Microsoft.NETCore.DotNetHost.1.0.1-rc2-002702-00.nupkg.sha512", + "Microsoft.NETCore.DotNetHost.1.0.1.nupkg.sha512", "Microsoft.NETCore.DotNetHost.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "runtime.json" ] }, - "Microsoft.NETCore.DotNetHostPolicy/1.0.1-rc2-002702-00": { - "sha512": "Mg1V8yBpxH5I/85kRHvALqZsyHxDF7o4jOcKOVH/AywPLWTa/qFpy4Dx3MwGYOw1q6SclhH6Y9JvzIimorjeRg==", + "Microsoft.NETCore.DotNetHostPolicy/1.0.1": { + "sha512": "d8AQ+ZVj2iK9sbgl3IEsshCSaumhM1PNTPHxldZAQLOoI1BKF8QZ1zPCNqwBGisPiWOE3f/1SHDbQi1BTRBxuA==", "type": "package", + "path": "Microsoft.NETCore.DotNetHostPolicy/1.0.1", "files": [ - "Microsoft.NETCore.DotNetHostPolicy.1.0.1-rc2-002702-00.nupkg.sha512", + "Microsoft.NETCore.DotNetHostPolicy.1.0.1.nupkg.sha512", "Microsoft.NETCore.DotNetHostPolicy.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "runtime.json" ] }, - "Microsoft.NETCore.DotNetHostResolver/1.0.1-rc2-002702-00": { - "sha512": "6QUf62ktb7V21ctlmEhzg/JnLyQULfLCro5Zycf9kgasVA3lPwX7pxXPbW1R/BQSxuhnRuYlFQIFAcFzb866Tw==", + "Microsoft.NETCore.DotNetHostResolver/1.0.1": { + "sha512": "GEXgpAHB9E0OhfcmNJ664Xcd2bJkz2qkGIAFmCgEI5ANlQy4qEEmBVfUqA+Z9HB85ZwWxZc1eIJ6fxdxcjrctg==", "type": "package", + "path": "Microsoft.NETCore.DotNetHostResolver/1.0.1", "files": [ - "Microsoft.NETCore.DotNetHostResolver.1.0.1-rc2-002702-00.nupkg.sha512", + "Microsoft.NETCore.DotNetHostResolver.1.0.1.nupkg.sha512", "Microsoft.NETCore.DotNetHostResolver.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "runtime.json" ] }, - "Microsoft.NETCore.Platforms/1.0.1-rc2-24027": { - "sha512": "BIZpJMovdHgUbCrZR9suwwLpZMNehIkaFKiIb9X5+wPjXNHMSQ91ETSASAnEXERyU7+ptJAfJGqgr3Y9ly98MQ==", + "Microsoft.NETCore.Jit/1.0.2": { + "sha512": "Ok2vWofa6X8WD9vc4pfLHwvJz1/B6t3gOAoZcjrjrQf7lQOlNIuZIZtLn3wnWX28DuQGpPJkRlBxFj7Z5txNqw==", "type": "package", + "path": "Microsoft.NETCore.Jit/1.0.2", "files": [ - "Microsoft.NETCore.Platforms.1.0.1-rc2-24027.nupkg.sha512", - "Microsoft.NETCore.Platforms.nuspec", + "Microsoft.NETCore.Jit.1.0.2.nupkg.sha512", + "Microsoft.NETCore.Jit.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "runtime.json" ] }, - "Microsoft.NETCore.Runtime/1.0.2-rc2-24027": { - "sha512": "z/R3npq0vJi1urIComaxGXX2CCfv27N78pNa3dMG4fyCQZA6u50v8ttWFnPV1caSN1O5JvDavqpBXVT1FdHcrA==", + "Microsoft.NETCore.Platforms/1.0.1": { + "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==", "type": "package", + "path": "Microsoft.NETCore.Platforms/1.0.1", "files": [ - "Microsoft.NETCore.Runtime.1.0.2-rc2-24027.nupkg.sha512", - "Microsoft.NETCore.Runtime.nuspec", + "Microsoft.NETCore.Platforms.1.0.1.nupkg.sha512", + "Microsoft.NETCore.Platforms.nuspec", "ThirdPartyNotices.txt", - "dotnet_library_license.txt" + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.json" ] }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.2-rc2-24027": { - "sha512": "ANtMxCAN/4krahv/EnSHzTMosrTb3lwMrxqR+NBNLGOhXPs+Vo/UiUSOppF30CHJjK0mQvRMJyQrOGTRKmv64Q==", + "Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "sha512": "A0x1xtTjYJWZr2DRzgfCOXgB0JkQg8twnmtTJ79wFje+IihlLbXtx6Z2AxyVokBM5ruwTedR6YdCmHk39QJdtQ==", "type": "package", + "path": "Microsoft.NETCore.Runtime.CoreCLR/1.0.2", "files": [ - "Microsoft.NETCore.Runtime.CoreCLR.1.0.2-rc2-24027.nupkg.sha512", + "Microsoft.NETCore.Runtime.CoreCLR.1.0.2.nupkg.sha512", "Microsoft.NETCore.Runtime.CoreCLR.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "runtime.json" ] }, - "Microsoft.NETCore.Runtime.Native/1.0.2-rc2-24027": { - "sha512": "aUtA5PJE7rGp0v6aKdYefj8GGpbf5nsND7xlMzPf0+n00YeYuM65sQtrd3TwtQlfmN4J57d40wfzEM3suVwWlg==", - "type": "package", - "files": [ - "Microsoft.NETCore.Runtime.Native.1.0.2-rc2-24027.nupkg.sha512", - "Microsoft.NETCore.Runtime.Native.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt" - ] - }, - "Microsoft.NETCore.Targets/1.0.1-rc2-24027": { - "sha512": "pNy4HhkgeM1kE/IqtDQLfUcMpy3NB3B/p8J/71G9Wvu2p/ARRH2hjq1TkETiqQW7ER9aFUs86wmgHyk3dtDgVQ==", + "Microsoft.NETCore.Targets/1.0.1": { + "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", "type": "package", + "path": "Microsoft.NETCore.Targets/1.0.1", "files": [ - "Microsoft.NETCore.Targets.1.0.1-rc2-24027.nupkg.sha512", + "Microsoft.NETCore.Targets.1.0.1.nupkg.sha512", "Microsoft.NETCore.Targets.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", + "lib/netstandard1.0/_._", "runtime.json" ] }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1-rc2-24027": { - "sha512": "/G/btXCgCbBpwWeeOoOiCAwayjcjPPW1hYqJ4uvreFA0J0+vu6o4pKQcypEz0X4CzmmUdcYG9hO6i43nBNBumg==", + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", "type": "package", + "path": "Microsoft.NETCore.Windows.ApiSets/1.0.1", "files": [ - "Microsoft.NETCore.Windows.ApiSets.1.0.1-rc2-24027.nupkg.sha512", + "Microsoft.NETCore.Windows.ApiSets.1.0.1.nupkg.sha512", "Microsoft.NETCore.Windows.ApiSets.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "runtime.json" ] }, - "Microsoft.VisualBasic/10.0.1-rc2-24027": { - "sha512": "qI8hR1LZUnSJivAFDPYIhBwWNIGa+kCpOAum4Oi2AR+8bV2FDiVK0t5an/wMeMjtsm3cLQzp0OAreQsMGogWXg==", + "Microsoft.VisualBasic/10.0.1": { + "sha512": "HpNyOf/4Tp2lh4FyywB55VITk0SqVxEjDzsVDDyF1yafDN6Bq18xcHowzCPINyYHUTgGcEtmpYiRsFdSo0KKdQ==", "type": "package", + "path": "Microsoft.VisualBasic/10.0.1", "files": [ - "Microsoft.VisualBasic.10.0.1-rc2-24027.nupkg.sha512", + "Microsoft.VisualBasic.10.0.1.nupkg.sha512", "Microsoft.VisualBasic.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2992,11 +3069,12 @@ "ref/wpa81/_._" ] }, - "Microsoft.Win32.Primitives/4.0.1-rc2-24027": { - "sha512": "ac5JNXIY6zjTxnjOmPyDHsG4a9u4cXzk3rSlmXRqBUdepWrmPErLx6tz6mnJJpRUS9ukZ/235KtcmVGIOXSk2g==", + "Microsoft.Win32.Primitives/4.0.1": { + "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", "type": "package", + "path": "Microsoft.Win32.Primitives/4.0.1", "files": [ - "Microsoft.Win32.Primitives.4.0.1-rc2-24027.nupkg.sha512", + "Microsoft.Win32.Primitives.4.0.1.nupkg.sha512", "Microsoft.Win32.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3027,11 +3105,12 @@ "ref/xamarinwatchos10/_._" ] }, - "Microsoft.Win32.Registry/4.0.0-rc2-24027": { - "sha512": "gBr/3xleRlegHUjRjLguwJ/TAbjvlrb4DGZkRBNNHbQGuSEUJyB4spgmmGdPATCHFAEdMhGcoVwMwbyE40prCw==", + "Microsoft.Win32.Registry/4.0.0": { + "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==", "type": "package", + "path": "Microsoft.Win32.Registry/4.0.0", "files": [ - "Microsoft.Win32.Registry.4.0.0-rc2-24027.nupkg.sha512", + "Microsoft.Win32.Registry.4.0.0.nupkg.sha512", "Microsoft.Win32.Registry.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3049,25 +3128,28 @@ "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", "runtimes/win/lib/netcore50/_._", "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll" ] }, - "NETStandard.Library/1.5.0-rc2-24027": { - "sha512": "SD27bvP2gNnlpC7HZUbnPOXS1M7VbBZoi0bdlqe5tj7weJQ2EyGDGw8mi7K1yUmeqjL6jPWBLSC28TDaLnyqwA==", + "NETStandard.Library/1.6.0": { + "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==", "type": "package", + "path": "NETStandard.Library/1.6.0", "files": [ - "NETStandard.Library.1.5.0-rc2-24027.nupkg.sha512", + "NETStandard.Library.1.6.0.nupkg.sha512", "NETStandard.Library.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt" ] }, - "Newtonsoft.Json/7.0.1": { - "sha512": "q3V4KLetMLnt1gpAVWgtXnHjKs0UG/RalBc29u2ZKxd5t5Ze4JBL5WiiYIklJyK/5CRiIiNwigVQUo0FgbsuWA==", + "Newtonsoft.Json/9.0.1": { + "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==", "type": "package", + "path": "Newtonsoft.Json/9.0.1", "files": [ - "Newtonsoft.Json.7.0.1.nupkg.sha512", + "Newtonsoft.Json.9.0.1.nupkg.sha512", "Newtonsoft.Json.nuspec", "lib/net20/Newtonsoft.Json.dll", "lib/net20/Newtonsoft.Json.xml", @@ -3077,18 +3159,21 @@ "lib/net40/Newtonsoft.Json.xml", "lib/net45/Newtonsoft.Json.dll", "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", - "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll", - "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml", "tools/install.ps1" ] }, - "NuGet.Common/3.5.0-beta-final": { - "sha512": "7eCg4ky9NtTnxY1+2VtDKIYX137QejH8Dsuw6fENU53N6OeoROsrv1MUm0pu4e3TF8VH1eL5G3Vx/G30VdXEDg==", + "NuGet.Common/3.5.0-beta2-1484": { + "sha512": "rLBmcZOPVF7Mne/LumDNACZZyI5B67hjylt+Z/WSEUQ/IXE9nLv8IVL0+T9xljIaSSQCjO8cOtmJ6ztqrsQKcQ==", "type": "package", + "path": "NuGet.Common/3.5.0-beta2-1484", "files": [ - "NuGet.Common.3.5.0-beta-final.nupkg.sha512", + "NuGet.Common.3.5.0-beta2-1484.nupkg.sha512", "NuGet.Common.nuspec", "lib/net45/NuGet.Common.dll", "lib/net45/NuGet.Common.xml", @@ -3096,23 +3181,27 @@ "lib/netstandard1.3/NuGet.Common.xml" ] }, - "NuGet.Frameworks/3.5.0-beta-final": { - "sha512": "Si7O1OFxUryBq3xuq2AIwADM8WUMIBQOmUdTJBSaxV+KesShLJfgrr7Dl+Tg/nVETSEArJS8ktscv7gjKqtosg==", + "NuGet.Frameworks/3.5.0-beta2-1484": { + "sha512": "AZoX0c05qgSfx0IOGTbLXa2fD7eM2WUqKP3osMMvSxK+tOGmctHuFlvjXxMHBv9yg0/13KdH0osV/zI7+SjzOA==", "type": "package", + "path": "NuGet.Frameworks/3.5.0-beta2-1484", "files": [ - "NuGet.Frameworks.3.5.0-beta-final.nupkg.sha512", + "NuGet.Frameworks.3.5.0-beta2-1484.nupkg.sha512", "NuGet.Frameworks.nuspec", + "lib/net40-client/NuGet.Frameworks.dll", + "lib/net40-client/NuGet.Frameworks.xml", "lib/net45/NuGet.Frameworks.dll", "lib/net45/NuGet.Frameworks.xml", "lib/netstandard1.3/NuGet.Frameworks.dll", "lib/netstandard1.3/NuGet.Frameworks.xml" ] }, - "NuGet.Packaging/3.5.0-beta-final": { - "sha512": "wJSrtokTPmpIkNhJLiG5GPxdRFCVl6XB3MmgLCyRhD2O2wZVQqvvL6SELOz/61EU0C8m9ni/UiiNRqTEtH5QZw==", + "NuGet.Packaging/3.5.0-beta2-1484": { + "sha512": "/+7d3vvCel4KhJo6AyOneg07fbAkUsy/ORgIaxW3nNdJubCXSrAdg1wfQpwzBygmErjrPcdYzzk2y2Sc6m7hwQ==", "type": "package", + "path": "NuGet.Packaging/3.5.0-beta2-1484", "files": [ - "NuGet.Packaging.3.5.0-beta-final.nupkg.sha512", + "NuGet.Packaging.3.5.0-beta2-1484.nupkg.sha512", "NuGet.Packaging.nuspec", "lib/net45/NuGet.Packaging.dll", "lib/net45/NuGet.Packaging.xml", @@ -3120,11 +3209,12 @@ "lib/netstandard1.3/NuGet.Packaging.xml" ] }, - "NuGet.Packaging.Core/3.5.0-beta-final": { - "sha512": "sdc8dUnbjEpNzIK5h5frJgn7ARQjQLdXMC5YrMHoEh0sCJnd2p1Lu4JvHK7mqn/MurVCAvoAjNDyazzFaVCD0w==", + "NuGet.Packaging.Core/3.5.0-beta2-1484": { + "sha512": "Lsz2lgYH0mdOvuL8C3G4XLm9EaAheBOqrgLgnBNxCeLGLU+n+Zu8Lt6K1bpzgkeKyTyAhJdWbv/3lS4w7s04gw==", "type": "package", + "path": "NuGet.Packaging.Core/3.5.0-beta2-1484", "files": [ - "NuGet.Packaging.Core.3.5.0-beta-final.nupkg.sha512", + "NuGet.Packaging.Core.3.5.0-beta2-1484.nupkg.sha512", "NuGet.Packaging.Core.nuspec", "lib/net45/NuGet.Packaging.Core.dll", "lib/net45/NuGet.Packaging.Core.xml", @@ -3132,11 +3222,12 @@ "lib/netstandard1.3/NuGet.Packaging.Core.xml" ] }, - "NuGet.Packaging.Core.Types/3.5.0-beta-final": { - "sha512": "35AVdtLFJFp66CI9EDS61iviOe4UsCwfGh7RILK3j2ihZtlbTIIS5ygjmS8GnTkhNpmdwQRIk/rUempv4ABBxQ==", + "NuGet.Packaging.Core.Types/3.5.0-beta2-1484": { + "sha512": "4mEXZBoe/RKTDVQGwdrl/f5gqolU2d1JWjpbGdQv5EG/xQCC8IQ8FTNYzk0+ydV/vuRM1yaNe+6UQ90nGE+1kQ==", "type": "package", + "path": "NuGet.Packaging.Core.Types/3.5.0-beta2-1484", "files": [ - "NuGet.Packaging.Core.Types.3.5.0-beta-final.nupkg.sha512", + "NuGet.Packaging.Core.Types.3.5.0-beta2-1484.nupkg.sha512", "NuGet.Packaging.Core.Types.nuspec", "lib/net45/NuGet.Packaging.Core.Types.dll", "lib/net45/NuGet.Packaging.Core.Types.xml", @@ -3144,11 +3235,12 @@ "lib/netstandard1.3/NuGet.Packaging.Core.Types.xml" ] }, - "NuGet.RuntimeModel/3.5.0-beta-final": { - "sha512": "5opNw7zHG5wC0Qx9AzlopdPg48Tf/QVcVVKmPRuwUa3VBA1b9DBjY+1jCkaof8JRzyHZqLnxd6T9BuT98Jk0YQ==", + "NuGet.RuntimeModel/3.5.0-beta2-1484": { + "sha512": "vg29WbKcExD9AJrKMr7NB9pnp+0MTAcDHB6gFHCqRynSo6jgjC8q+ZPAlxC115rQiO8fqzOEP59Q8hx20anUtA==", "type": "package", + "path": "NuGet.RuntimeModel/3.5.0-beta2-1484", "files": [ - "NuGet.RuntimeModel.3.5.0-beta-final.nupkg.sha512", + "NuGet.RuntimeModel.3.5.0-beta2-1484.nupkg.sha512", "NuGet.RuntimeModel.nuspec", "lib/net45/NuGet.RuntimeModel.dll", "lib/net45/NuGet.RuntimeModel.xml", @@ -3156,11 +3248,12 @@ "lib/netstandard1.3/NuGet.RuntimeModel.xml" ] }, - "NuGet.Versioning/3.5.0-beta-final": { - "sha512": "fwFF9Mck1hgZVDvvJLU81gcaidMksfRoCwyjBALEXxnp1fJr4xLyGbTRdbf2OKI5OODGuUpxaMkcz7P4T8HsXw==", + "NuGet.Versioning/3.5.0-beta2-1484": { + "sha512": "Stok+SI5lWxOkTgZZM7jT4xuAZogm5+j85mKJeHSXb8o0OAbB+qDX9jkdM2wIEnjoR8R29J0nQYwk2Kl2lWFpA==", "type": "package", + "path": "NuGet.Versioning/3.5.0-beta2-1484", "files": [ - "NuGet.Versioning.3.5.0-beta-final.nupkg.sha512", + "NuGet.Versioning.3.5.0-beta2-1484.nupkg.sha512", "NuGet.Versioning.nuspec", "lib/net45/NuGet.Versioning.dll", "lib/net45/NuGet.Versioning.xml", @@ -3168,75 +3261,90 @@ "lib/netstandard1.0/NuGet.Versioning.xml" ] }, - "runtime.native.System/4.0.0-rc2-24027": { - "sha512": "bC0GLcJTry9N+ra9qb+zYSQHnBpy4ZMVJXRRSuu7aD/cQoZPQtySql110ec9REOKsE6tf2ZoolczpCOmzwKW8g==", + "runtime.native.System/4.0.0": { + "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==", "type": "package", + "path": "runtime.native.System/4.0.0", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", - "runtime.native.System.4.0.0-rc2-24027.nupkg.sha512", + "lib/netstandard1.0/_._", + "runtime.native.System.4.0.0.nupkg.sha512", "runtime.native.System.nuspec" ] }, - "runtime.native.System.IO.Compression/4.1.0-rc2-24027": { - "sha512": "r84dFA/jE921UfQNrFyNUAdvU//SNzdAv2eMb4YXH4DlXF0V/FM5QqYodZQkr4tVNbQM3KqIn1eIjbWcDCB7Dg==", + "runtime.native.System.IO.Compression/4.1.0": { + "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==", "type": "package", + "path": "runtime.native.System.IO.Compression/4.1.0", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", - "runtime.native.System.IO.Compression.4.1.0-rc2-24027.nupkg.sha512", + "lib/netstandard1.0/_._", + "runtime.native.System.IO.Compression.4.1.0.nupkg.sha512", "runtime.native.System.IO.Compression.nuspec" ] }, - "runtime.native.System.Net.Http/4.0.1-rc2-24027": { - "sha512": "NtYGs9vDkR/XtJAA2batr1MxMM/JqtvCIMzJ3QdErd5HoALZSv5O9YQfBPvdsrGUPDyDgbIa8WB0Q/iFv+o12A==", + "runtime.native.System.Net.Http/4.0.1": { + "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==", "type": "package", + "path": "runtime.native.System.Net.Http/4.0.1", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", - "runtime.native.System.Net.Http.4.0.1-rc2-24027.nupkg.sha512", + "lib/netstandard1.0/_._", + "runtime.native.System.Net.Http.4.0.1.nupkg.sha512", "runtime.native.System.Net.Http.nuspec" ] }, - "runtime.native.System.Net.Security/4.0.1-rc2-24027": { - "sha512": "LFbuFstk7gCPPefhVlfvTsnf0GbRSRpzI8yK319/IZakJBQhIEBQEK1aawg29PfAQf7Pqmt8FAUT4tkhhHmH9A==", + "runtime.native.System.Net.Security/4.0.1": { + "sha512": "Az6Ff6rZFb8nYGAaejFR6jr8ktt9f3e1Q/yKdw0pwHNTLaO/1eCAC9vzBoR9YAb0QeZD6fZXl1A9tRB5stpzXA==", "type": "package", + "path": "runtime.native.System.Net.Security/4.0.1", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", - "runtime.native.System.Net.Security.4.0.1-rc2-24027.nupkg.sha512", + "lib/netstandard1.0/_._", + "runtime.native.System.Net.Security.4.0.1.nupkg.sha512", "runtime.native.System.Net.Security.nuspec" ] }, - "runtime.native.System.Security.Cryptography/4.0.0-rc2-24027": { - "sha512": "Xi58pn6uTrwo2hz2mhR7LbqaukuS3eRsVg6Y5BZGDtthJmv/LGh//3jtVASQMK14ByRVZoK3nP8S+l/2gt+R+g==", + "runtime.native.System.Security.Cryptography/4.0.0": { + "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", "type": "package", + "path": "runtime.native.System.Security.Cryptography/4.0.0", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", - "runtime.native.System.Security.Cryptography.4.0.0-rc2-24027.nupkg.sha512", + "lib/netstandard1.0/_._", + "runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512", "runtime.native.System.Security.Cryptography.nuspec" ] }, - "System.AppContext/4.1.0-rc2-24027": { - "sha512": "brLKF/+Dhn1ylN+VoN/tcur89LFerCUmqBFug+hbMHTKw3UVIghn+fS9rk0mad8jCr1LjHx2TWQhrg9peDEkmg==", + "System.AppContext/4.1.0": { + "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", "type": "package", + "path": "System.AppContext/4.1.0", "files": [ - "System.AppContext.4.1.0-rc2-24027.nupkg.sha512", + "System.AppContext.4.1.0.nupkg.sha512", "System.AppContext.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/System.AppContext.dll", - "lib/net462/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", "lib/xamarinwatchos10/_._", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", - "ref/net462/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", "ref/netstandard1.3/System.AppContext.dll", "ref/netstandard1.3/System.AppContext.xml", "ref/netstandard1.3/de/System.AppContext.xml", @@ -3248,28 +3356,30 @@ "ref/netstandard1.3/ru/System.AppContext.xml", "ref/netstandard1.3/zh-hans/System.AppContext.xml", "ref/netstandard1.3/zh-hant/System.AppContext.xml", - "ref/netstandard1.5/System.AppContext.dll", - "ref/netstandard1.5/System.AppContext.xml", - "ref/netstandard1.5/de/System.AppContext.xml", - "ref/netstandard1.5/es/System.AppContext.xml", - "ref/netstandard1.5/fr/System.AppContext.xml", - "ref/netstandard1.5/it/System.AppContext.xml", - "ref/netstandard1.5/ja/System.AppContext.xml", - "ref/netstandard1.5/ko/System.AppContext.xml", - "ref/netstandard1.5/ru/System.AppContext.xml", - "ref/netstandard1.5/zh-hans/System.AppContext.xml", - "ref/netstandard1.5/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll" ] }, - "System.Buffers/4.0.0-rc2-24027": { - "sha512": "eyzIgf8Mh/SjxN1gsGnH09ICA5U2TGWU5I3Rp1V0ayO9UmTf5XrsZo3+LwKbj+fycoh2yYg0leFa7IG0/+Bs3g==", + "System.Buffers/4.0.0": { + "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==", "type": "package", + "path": "System.Buffers/4.0.0", "files": [ - "System.Buffers.4.0.0-rc2-24027.nupkg.sha512", + "System.Buffers.4.0.0.nupkg.sha512", "System.Buffers.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3277,11 +3387,12 @@ "lib/netstandard1.1/System.Buffers.dll" ] }, - "System.Collections/4.0.11-rc2-24027": { - "sha512": "wi4oT2B06Ev7vDPeJki7HVJ3qPYJIilzf+p81JuNaBD9L2wi9Y2L5BsQ6ToncW+lYZafuMea/hiK1xX1Ge1VWQ==", + "System.Collections/4.0.11": { + "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", "type": "package", + "path": "System.Collections/4.0.11", "files": [ - "System.Collections.4.0.11-rc2-24027.nupkg.sha512", + "System.Collections.4.0.11.nupkg.sha512", "System.Collections.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3342,11 +3453,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Collections.Concurrent/4.0.12-rc2-24027": { - "sha512": "0XN+QpKMG5xHRZ50hV6Yn1ojqAhZ2CL8q4vT316ipEB3yEb/ROMjC18Html5QreF12ZS6Le1AWtIB1Qgi2FzvA==", + "System.Collections.Concurrent/4.0.12": { + "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", "type": "package", + "path": "System.Collections.Concurrent/4.0.12", "files": [ - "System.Collections.Concurrent.4.0.12-rc2-24027.nupkg.sha512", + "System.Collections.Concurrent.4.0.12.nupkg.sha512", "System.Collections.Concurrent.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3407,11 +3519,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Collections.Immutable/1.2.0-rc2-24027": { - "sha512": "bn4jDP6DOvUHTlpUVa4ehecoz+V4YL4gdL6yOXdruc/3XHRVL2j/ZIggusM8f90uUSQhg7bgvBuLmQCGG3cZtg==", + "System.Collections.Immutable/1.2.0": { + "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==", "type": "package", + "path": "System.Collections.Immutable/1.2.0", "files": [ - "System.Collections.Immutable.1.2.0-rc2-24027.nupkg.sha512", + "System.Collections.Immutable.1.2.0.nupkg.sha512", "System.Collections.Immutable.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3421,83 +3534,12 @@ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml" ] }, - "System.Collections.NonGeneric/4.0.1-rc2-24027": { - "sha512": "txfwF71o0wY1QkQQqY9svm0+w12fZla/DBNMV1lpcuqzipu854Qg40meH2aPU3qjnHbRvdyM9dglYyE6/RachQ==", + "System.ComponentModel/4.0.1": { + "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", "type": "package", + "path": "System.ComponentModel/4.0.1", "files": [ - "System.Collections.NonGeneric.4.0.1-rc2-24027.nupkg.sha512", - "System.Collections.NonGeneric.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Collections.NonGeneric.dll", - "lib/netstandard1.3/System.Collections.NonGeneric.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Collections.NonGeneric.dll", - "ref/netstandard1.3/System.Collections.NonGeneric.dll", - "ref/netstandard1.3/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Collections.Specialized/4.0.1-rc2-24027": { - "sha512": "1qeRkJqzH2NXFxOV0IehUM4iMvpZBjUnL2JTEocOIdLXoUc3VDiFaQK/Z7GfmZrvNrA0OBq5iJqFReitxH5sZQ==", - "type": "package", - "files": [ - "System.Collections.Specialized.4.0.1-rc2-24027.nupkg.sha512", - "System.Collections.Specialized.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Collections.Specialized.dll", - "lib/netstandard1.3/System.Collections.Specialized.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Collections.Specialized.dll", - "ref/netstandard1.3/System.Collections.Specialized.dll", - "ref/netstandard1.3/System.Collections.Specialized.xml", - "ref/netstandard1.3/de/System.Collections.Specialized.xml", - "ref/netstandard1.3/es/System.Collections.Specialized.xml", - "ref/netstandard1.3/fr/System.Collections.Specialized.xml", - "ref/netstandard1.3/it/System.Collections.Specialized.xml", - "ref/netstandard1.3/ja/System.Collections.Specialized.xml", - "ref/netstandard1.3/ko/System.Collections.Specialized.xml", - "ref/netstandard1.3/ru/System.Collections.Specialized.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.ComponentModel/4.0.1-rc2-24027": { - "sha512": "6ne+Yk/6J59NZ19jiKjxwRPS2VIofrps2xkGDxMpyiHzEk4xpIY0kzt0ZABvTpdOYpvOw7bz2Ls2/X0QiuSjQg==", - "type": "package", - "files": [ - "System.ComponentModel.4.0.1-rc2-24027.nupkg.sha512", + "System.ComponentModel.4.0.1.nupkg.sha512", "System.ComponentModel.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3549,11 +3591,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.ComponentModel.Annotations/4.1.0-rc2-24027": { - "sha512": "BRJ7eUoaukLaxXlaVIOr7SKXQoF6ie54eCTTiWwp8NdIWirlOfPUQUFANPjcosDvKcUQLXksCiH8Wkj7ApRkQw==", + "System.ComponentModel.Annotations/4.1.0": { + "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==", "type": "package", + "path": "System.ComponentModel.Annotations/4.1.0", "files": [ - "System.ComponentModel.Annotations.4.1.0-rc2-24027.nupkg.sha512", + "System.ComponentModel.Annotations.4.1.0.nupkg.sha512", "System.ComponentModel.Annotations.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3625,11 +3668,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Console/4.0.0-rc2-24027": { - "sha512": "ZkOW7ehVR6vnVTfttO0Z1uf3v7mT8cxQZbPHaGDyTt65qh4WzQOXgZYWqDNduyA1xWlvKh28XAhAkK0P39CcAA==", + "System.Console/4.0.0": { + "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", "type": "package", + "path": "System.Console/4.0.0", "files": [ - "System.Console.4.0.0-rc2-24027.nupkg.sha512", + "System.Console.4.0.0.nupkg.sha512", "System.Console.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3660,11 +3704,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Diagnostics.Debug/4.0.11-rc2-24027": { - "sha512": "k0ckwL97zqxiSjRpgmkjUoP51LvEzMshynNuNOyUsKLQTHVieTsrg2YiBnou0AsDnDk/maCmuPJvoJR0qIcOuQ==", + "System.Diagnostics.Debug/4.0.11": { + "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", "type": "package", + "path": "System.Diagnostics.Debug/4.0.11", "files": [ - "System.Diagnostics.Debug.4.0.11-rc2-24027.nupkg.sha512", + "System.Diagnostics.Debug.4.0.11.nupkg.sha512", "System.Diagnostics.Debug.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3725,11 +3770,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Diagnostics.DiagnosticSource/4.0.0-rc2-24027": { - "sha512": "NPjXdTV6+9D0ZaHUn5JI0lxusxZAKOuHIVPmMXV+L4Ypm/nFaH+gDMn0o6ZNb9B3l46DfdxyrZYc0E2AfEHQrA==", + "System.Diagnostics.DiagnosticSource/4.0.0": { + "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==", "type": "package", + "path": "System.Diagnostics.DiagnosticSource/4.0.0", "files": [ - "System.Diagnostics.DiagnosticSource.4.0.0-rc2-24027.nupkg.sha512", + "System.Diagnostics.DiagnosticSource.4.0.0.nupkg.sha512", "System.Diagnostics.DiagnosticSource.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3743,11 +3789,12 @@ "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml" ] }, - "System.Diagnostics.FileVersionInfo/4.0.0-rc2-24027": { - "sha512": "CdQQHji/OYKMwtKRIfSHRKfIIEFisortQ7+n2Qazar4TOSiw68FFIOV5XQc/0VZ/6RVQ0PzbPEPkb9tOCYCF9w==", + "System.Diagnostics.FileVersionInfo/4.0.0": { + "sha512": "qjF74OTAU+mRhLaL4YSfiWy3vj6T3AOz8AW37l5zCwfbBfj0k7E94XnEsRaf2TnhE/7QaV6Hvqakoy2LoV8MVg==", "type": "package", + "path": "System.Diagnostics.FileVersionInfo/4.0.0", "files": [ - "System.Diagnostics.FileVersionInfo.4.0.0-rc2-24027.nupkg.sha512", + "System.Diagnostics.FileVersionInfo.4.0.0.nupkg.sha512", "System.Diagnostics.FileVersionInfo.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3777,15 +3824,17 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", - "runtimes/win7/lib/netcore50/_._", - "runtimes/win7/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll" + "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll" ] }, - "System.Diagnostics.Process/4.1.0-rc2-24027": { - "sha512": "34TctkTL63XRR67BC8WOKY1UtJiE4vJyCsJ4IJx7ktdq6eqClbHqQjuwRgtxN+Yz/vg9uzkQlkZ9ryf+OSYcKQ==", + "System.Diagnostics.Process/4.1.0": { + "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", "type": "package", + "path": "System.Diagnostics.Process/4.1.0", "files": [ - "System.Diagnostics.Process.4.1.0-rc2-24027.nupkg.sha512", + "System.Diagnostics.Process.4.1.0.nupkg.sha512", "System.Diagnostics.Process.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3828,16 +3877,19 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", - "runtimes/osx.10.10/lib/netstandard1.4/System.Diagnostics.Process.dll", - "runtimes/win7/lib/netcore50/_._", - "runtimes/win7/lib/netstandard1.4/System.Diagnostics.Process.dll" + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win/lib/net46/System.Diagnostics.Process.dll", + "runtimes/win/lib/net461/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win7/lib/netcore50/_._" ] }, - "System.Diagnostics.StackTrace/4.0.1-rc2-24027": { - "sha512": "qaPDTZqMcuJgko+V6ZwlZEG7H344T1GkUh6NMKV0L3ISwEeQmA2shVBOyS1tHNyO6RvpL+CuxhlVJdSqGFUT2w==", + "System.Diagnostics.StackTrace/4.0.1": { + "sha512": "6i2EbRq0lgGfiZ+FDf0gVaw9qeEU+7IS2+wbZJmFVpvVzVOgZEt0ScZtyenuBvs6iDYbGiF51bMAa0oDP/tujQ==", "type": "package", + "path": "System.Diagnostics.StackTrace/4.0.1", "files": [ - "System.Diagnostics.StackTrace.4.0.1-rc2-24027.nupkg.sha512", + "System.Diagnostics.StackTrace.4.0.1.nupkg.sha512", "System.Diagnostics.StackTrace.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3870,11 +3922,12 @@ "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll" ] }, - "System.Diagnostics.Tools/4.0.1-rc2-24027": { - "sha512": "Afv5y9mVcMGmcN1YB4RIQdK5glUyL5cOIigi2DMuetSKJykMXxVH8KldkjYFwFKHcx8T1gN6/47knzZU3DtrrA==", + "System.Diagnostics.Tools/4.0.1": { + "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", "type": "package", + "path": "System.Diagnostics.Tools/4.0.1", "files": [ - "System.Diagnostics.Tools.4.0.1-rc2-24027.nupkg.sha512", + "System.Diagnostics.Tools.4.0.1.nupkg.sha512", "System.Diagnostics.Tools.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3924,11 +3977,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Diagnostics.Tracing/4.1.0-rc2-24027": { - "sha512": "ZRR3q7pPGqKc5rcHAhNP9bTjtIILmZu82E86n+mDyMYx+KEpuYpj8P+kQMWeLKYK1U4gxftqyidwm6+j0b+YoQ==", + "System.Diagnostics.Tracing/4.1.0": { + "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", "type": "package", + "path": "System.Diagnostics.Tracing/4.1.0", "files": [ - "System.Diagnostics.Tracing.4.1.0-rc2-24027.nupkg.sha512", + "System.Diagnostics.Tracing.4.1.0.nupkg.sha512", "System.Diagnostics.Tracing.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4011,11 +4065,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Dynamic.Runtime/4.0.11-rc2-24027": { - "sha512": "ZbyJQ3UQSGiB5aotbYN3otZ7vrwimkG6dAN4YYAwH3YvP9X1zF5GHeHuSqX1uDq0hGX+vngi8s1oUKgWHAYYrQ==", + "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-rc2-24027.nupkg.sha512", + "System.Dynamic.Runtime.4.0.11.nupkg.sha512", "System.Dynamic.Runtime.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4079,11 +4134,12 @@ "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll" ] }, - "System.Globalization/4.0.11-rc2-24027": { - "sha512": "RDterYo6tAE2YslHrhvAdrAkTdhGkml7tg5JGX/XwgN2GGkB3NkiqigBSaUEV4S2ftCzCFDIhCxqQy57lAsEIA==", + "System.Globalization/4.0.11": { + "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", "type": "package", + "path": "System.Globalization/4.0.11", "files": [ - "System.Globalization.4.0.11-rc2-24027.nupkg.sha512", + "System.Globalization.4.0.11.nupkg.sha512", "System.Globalization.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4144,11 +4200,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Globalization.Calendars/4.0.1-rc2-24027": { - "sha512": "mVqwlFh2qMNkuQY7KColHE3XkpFhSVLE2GF8J4jiXHmqbeIBh5D1/nPjr4JLVHzO3nyFQE0JwqDsVXtpv/s6iw==", + "System.Globalization.Calendars/4.0.1": { + "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", "type": "package", + "path": "System.Globalization.Calendars/4.0.1", "files": [ - "System.Globalization.Calendars.4.0.1-rc2-24027.nupkg.sha512", + "System.Globalization.Calendars.4.0.1.nupkg.sha512", "System.Globalization.Calendars.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4179,11 +4236,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Globalization.Extensions/4.0.1-rc2-24027": { - "sha512": "BaZplqKspB1c99AV3QybawRhLjzAOmPZGaiGimlCMD3KmztARHW2Im7gD2ECxjk+pGkyML7GuiGEuJae83Ky0w==", + "System.Globalization.Extensions/4.0.1": { + "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", "type": "package", + "path": "System.Globalization.Extensions/4.0.1", "files": [ - "System.Globalization.Extensions.4.0.1-rc2-24027.nupkg.sha512", + "System.Globalization.Extensions.4.0.1.nupkg.sha512", "System.Globalization.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4213,14 +4271,16 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", - "runtimes/win7/lib/netstandard1.3/System.Globalization.Extensions.dll" + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll" ] }, - "System.IO/4.1.0-rc2-24027": { - "sha512": "VQRYN33mwALJ1UWfxxMqXzKCYUDNMUeU6j8YCxVcLCBx3Oa/l7i15NQv/OAebfOVSmBa3LmBTRP4rQqChrCbFg==", + "System.IO/4.1.0": { + "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", "type": "package", + "path": "System.IO/4.1.0", "files": [ - "System.IO.4.1.0-rc2-24027.nupkg.sha512", + "System.IO.4.1.0.nupkg.sha512", "System.IO.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4294,11 +4354,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.IO.Compression/4.1.0-rc2-24027": { - "sha512": "tDUl9OuEauxpXOcWFXLW5nPqE0GqpC4sHOq5KbruncfTsTLQp+/vX156Wm8LpdHmeC35sQmSyYeRGJQHfoPfww==", + "System.IO.Compression/4.1.0": { + "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==", "type": "package", + "path": "System.IO.Compression/4.1.0", "files": [ - "System.IO.Compression.4.1.0-rc2-24027.nupkg.sha512", + "System.IO.Compression.4.1.0.nupkg.sha512", "System.IO.Compression.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4358,14 +4419,16 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", - "runtimes/win7/lib/netstandard1.3/System.IO.Compression.dll" + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll" ] }, - "System.IO.Compression.ZipFile/4.0.1-rc2-24027": { - "sha512": "2rHCcLJ831Jb7qnH0TLNbXzKpEG4cvyC6jXWwc7AS4TkeaLx+4GZP4o3aacIrNHRrLDLIzfCju4w/ZR+NnPk1A==", + "System.IO.Compression.ZipFile/4.0.1": { + "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==", "type": "package", + "path": "System.IO.Compression.ZipFile/4.0.1", "files": [ - "System.IO.Compression.ZipFile.4.0.1-rc2-24027.nupkg.sha512", + "System.IO.Compression.ZipFile.4.0.1.nupkg.sha512", "System.IO.Compression.ZipFile.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4397,11 +4460,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.IO.FileSystem/4.0.1-rc2-24027": { - "sha512": "8iXOvjXDIQJIM881n5423Cy2A8Ajrdr9l9mXUvvsXt6wQNXAi/LBVsFRLPe7hpRUKP23niqinSBoHfMGcuxByQ==", + "System.IO.FileSystem/4.0.1": { + "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", "type": "package", + "path": "System.IO.FileSystem/4.0.1", "files": [ - "System.IO.FileSystem.4.0.1-rc2-24027.nupkg.sha512", + "System.IO.FileSystem.4.0.1.nupkg.sha512", "System.IO.FileSystem.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4432,11 +4496,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.IO.FileSystem.Primitives/4.0.1-rc2-24027": { - "sha512": "SIxgLl6TXmfavhGnp3LF8X/D2zrg0ALhbfk40ntybaW9dO5nJAw7m1kllvlGFBdjefJ5Y8O1AUbbCJggC+p2yw==", + "System.IO.FileSystem.Primitives/4.0.1": { + "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", "type": "package", + "path": "System.IO.FileSystem.Primitives/4.0.1", "files": [ - "System.IO.FileSystem.Primitives.4.0.1-rc2-24027.nupkg.sha512", + "System.IO.FileSystem.Primitives.4.0.1.nupkg.sha512", "System.IO.FileSystem.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4468,11 +4533,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.IO.FileSystem.Watcher/4.0.0-rc2-24027": { - "sha512": "ByuB1AFnjj4VDK2uefLsSCaAeI8GO5skdEpByrds+MuRDXOOK+33lh7eXuABCNfGRWR2wg8cMIw8x4o1qmog8Q==", + "System.IO.FileSystem.Watcher/4.0.0": { + "sha512": "qM4Wr3La+RYb/03B0mZZjbA7tHsGzDffnuXP8Sl48HW2JwCjn3kfD5qdw0sqyNNowUipcJMi9/q6sMUrOIJ6UQ==", "type": "package", + "path": "System.IO.FileSystem.Watcher/4.0.0", "files": [ - "System.IO.FileSystem.Watcher.4.0.0-rc2-24027.nupkg.sha512", + "System.IO.FileSystem.Watcher.4.0.0.nupkg.sha512", "System.IO.FileSystem.Watcher.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4503,15 +4569,17 @@ "ref/xamarinwatchos10/_._", "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll", "runtimes/osx/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll", - "runtimes/win7/lib/netcore50/_._", - "runtimes/win7/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll" + "runtimes/win/lib/net46/System.IO.FileSystem.Watcher.dll", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll", + "runtimes/win7/lib/netcore50/_._" ] }, - "System.IO.MemoryMappedFiles/4.0.0-rc2-24027": { - "sha512": "mnUZdkXZA06Irdeqiy0GMpIux6+KN7Wc0mEPzQTcqeCan41O2UH/dGtChh5M8+IEMi5H9JmCKOSl5+BIQGCraw==", + "System.IO.MemoryMappedFiles/4.0.0": { + "sha512": "Xqj4xaFAnLVpss9ZSUIvB/VdJAA7GxZDnFGDKJfiGAnZ5VnFROn6eOHWepFpujCYTsh6wlZ3B33bqYkF0QJ7Eg==", "type": "package", + "path": "System.IO.MemoryMappedFiles/4.0.0", "files": [ - "System.IO.MemoryMappedFiles.4.0.0-rc2-24027.nupkg.sha512", + "System.IO.MemoryMappedFiles.4.0.0.nupkg.sha512", "System.IO.MemoryMappedFiles.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4541,15 +4609,17 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/unix/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll", - "runtimes/win7/lib/netcore50/_._", - "runtimes/win7/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll" + "runtimes/win/lib/net46/System.IO.MemoryMappedFiles.dll", + "runtimes/win/lib/netcore50/System.IO.MemoryMappedFiles.dll", + "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll" ] }, - "System.IO.UnmanagedMemoryStream/4.0.1-rc2-24027": { - "sha512": "Jh+aa9o2tdLwCe/zOTqofTkmNYFLbz6SJjw8ybmzwnFWRGltdyhvHPT++0lMAd+/DTFxzAA/HD6pTnBDW5Ag5g==", + "System.IO.UnmanagedMemoryStream/4.0.1": { + "sha512": "wcq0kXcpfJwdl1Y4/ZjDk7Dhx5HdLyRYYWYmD8Nn8skoGYYQd2BQWbXwjWSczip8AL4Z57o2dWWXAl4aABAKiQ==", "type": "package", + "path": "System.IO.UnmanagedMemoryStream/4.0.1", "files": [ - "System.IO.UnmanagedMemoryStream.4.0.1-rc2-24027.nupkg.sha512", + "System.IO.UnmanagedMemoryStream.4.0.1.nupkg.sha512", "System.IO.UnmanagedMemoryStream.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4581,20 +4651,21 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Linq/4.1.0-rc2-24027": { - "sha512": "uf9wbc/YWrM4xa6g0T8n1XpY/zRcTHSPw+sCwkdrL2aJbYyLFKs1Yeg8M0zjMX4SwmiNeDiZR2gkAHAPsIfKCg==", + "System.Linq/4.1.0": { + "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", "type": "package", + "path": "System.Linq/4.1.0", "files": [ - "System.Linq.4.1.0-rc2-24027.nupkg.sha512", + "System.Linq.4.1.0.nupkg.sha512", "System.Linq.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", - "lib/net462/System.Linq.dll", + "lib/net463/System.Linq.dll", "lib/netcore50/System.Linq.dll", - "lib/netstandard1.5/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", "lib/portable-net45+win8+wp8+wpa81/_._", "lib/win8/_._", "lib/wp80/_._", @@ -4606,7 +4677,7 @@ "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", - "ref/net462/System.Linq.dll", + "ref/net463/System.Linq.dll", "ref/netcore50/System.Linq.dll", "ref/netcore50/System.Linq.xml", "ref/netcore50/de/System.Linq.xml", @@ -4629,17 +4700,17 @@ "ref/netstandard1.0/ru/System.Linq.xml", "ref/netstandard1.0/zh-hans/System.Linq.xml", "ref/netstandard1.0/zh-hant/System.Linq.xml", - "ref/netstandard1.5/System.Linq.dll", - "ref/netstandard1.5/System.Linq.xml", - "ref/netstandard1.5/de/System.Linq.xml", - "ref/netstandard1.5/es/System.Linq.xml", - "ref/netstandard1.5/fr/System.Linq.xml", - "ref/netstandard1.5/it/System.Linq.xml", - "ref/netstandard1.5/ja/System.Linq.xml", - "ref/netstandard1.5/ko/System.Linq.xml", - "ref/netstandard1.5/ru/System.Linq.xml", - "ref/netstandard1.5/zh-hans/System.Linq.xml", - "ref/netstandard1.5/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", "ref/portable-net45+win8+wp8+wpa81/_._", "ref/win8/_._", "ref/wp80/_._", @@ -4650,19 +4721,21 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Linq.Expressions/4.0.11-rc2-24027": { - "sha512": "CfLNPBWzWdqfRGkdIXNWQ+2zSyaegOL4MAQSry0k6t8CQnPwJLywZLIZAV+cU47gi/7C2eM2I63r2eBZNJDovw==", + "System.Linq.Expressions/4.1.0": { + "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", "type": "package", + "path": "System.Linq.Expressions/4.1.0", "files": [ - "System.Linq.Expressions.4.0.11-rc2-24027.nupkg.sha512", + "System.Linq.Expressions.4.1.0.nupkg.sha512", "System.Linq.Expressions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.3/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", "lib/portable-net45+win8+wp8+wpa81/_._", "lib/win8/_._", "lib/wp80/_._", @@ -4674,6 +4747,7 @@ "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", "ref/netcore50/System.Linq.Expressions.dll", "ref/netcore50/System.Linq.Expressions.xml", "ref/netcore50/de/System.Linq.Expressions.xml", @@ -4707,6 +4781,17 @@ "ref/netstandard1.3/ru/System.Linq.Expressions.xml", "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", "ref/portable-net45+win8+wp8+wpa81/_._", "ref/win8/_._", "ref/wp80/_._", @@ -4718,11 +4803,12 @@ "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll" ] }, - "System.Linq.Parallel/4.0.1-rc2-24027": { - "sha512": "YCTgmWh4dxVijkTOPpAOOBsjYRO4LYoiEm1j6XV2qI1eErQT0NDP3WoWNvt85wfeGeAF5C+3ArShDOgq9Bg0lQ==", + "System.Linq.Parallel/4.0.1": { + "sha512": "J7XCa7n2cFn32uLbtceXfBFhgCk5M++50lylHKNbqTiJkw5y4Tglpi6amuJNPCvj9bLzNSI7rs1fi4joLMNRgg==", "type": "package", + "path": "System.Linq.Parallel/4.0.1", "files": [ - "System.Linq.Parallel.4.0.1-rc2-24027.nupkg.sha512", + "System.Linq.Parallel.4.0.1.nupkg.sha512", "System.Linq.Parallel.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4772,11 +4858,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Linq.Queryable/4.0.1-rc2-24027": { - "sha512": "4D7vMlUik6PWAYE4j89AMRsc8CJERoRC4M7dBPQSwogd+fCblUMehDwBjRXI4lSEwgK2fhbkv46jJu6RlA20QA==", + "System.Linq.Queryable/4.0.1": { + "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", "type": "package", + "path": "System.Linq.Queryable/4.0.1", "files": [ - "System.Linq.Queryable.4.0.1-rc2-24027.nupkg.sha512", + "System.Linq.Queryable.4.0.1.nupkg.sha512", "System.Linq.Queryable.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4828,11 +4915,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Net.Http/4.0.1-rc2-24027": { - "sha512": "5CK9SN0sEFUk7xHiV/8tqTiWuTlO7CkeqGmrfMsKIqcS/XFvRkMDKm2z8+IkLfzV77k6xnYse7n3Y3F9JqXaGw==", + "System.Net.Http/4.1.0": { + "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==", "type": "package", + "path": "System.Net.Http/4.1.0", "files": [ - "System.Net.Http.4.0.1-rc2-24027.nupkg.sha512", + "System.Net.Http.4.1.0.nupkg.sha512", "System.Net.Http.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4840,8 +4928,7 @@ "lib/monoandroid10/_._", "lib/monotouch10/_._", "lib/net45/_._", - "lib/netcore50/System.Net.Http.dll", - "lib/netstandard1.4/System.Net.Http.dll", + "lib/net46/System.Net.Http.dll", "lib/portable-net45+win8+wpa81/_._", "lib/win8/_._", "lib/wpa81/_._", @@ -4852,7 +4939,17 @@ "ref/monoandroid10/_._", "ref/monotouch10/_._", "ref/net45/_._", - "ref/net46/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", "ref/netcore50/System.Net.Http.dll", "ref/netcore50/System.Net.Http.xml", "ref/netcore50/de/System.Net.Http.xml", @@ -4875,22 +4972,35 @@ "ref/netstandard1.1/ru/System.Net.Http.xml", "ref/netstandard1.1/zh-hans/System.Net.Http.xml", "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", "ref/portable-net45+win8+wpa81/_._", "ref/win8/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", - "runtimes/win7/lib/net46/_._", - "runtimes/win7/lib/netcore50/System.Net.Http.dll", - "runtimes/win7/lib/netstandard1.3/System.Net.Http.dll" + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll" ] }, - "System.Net.NameResolution/4.0.0-rc2-24027": { - "sha512": "c5LsVEi57gpr+CgmNKHX/AAS/ydv400yHjm+OM5gqTZ834W/R0M3t/AjdFv+LYBaliAPIUZ/ysBymyyo9ISNFQ==", + "System.Net.NameResolution/4.0.0": { + "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==", "type": "package", + "path": "System.Net.NameResolution/4.0.0", "files": [ - "System.Net.NameResolution.4.0.0-rc2-24027.nupkg.sha512", + "System.Net.NameResolution.4.0.0.nupkg.sha512", "System.Net.NameResolution.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -4920,15 +5030,17 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", - "runtimes/win7/lib/netcore50/System.Net.NameResolution.dll", - "runtimes/win7/lib/netstandard1.3/System.Net.NameResolution.dll" + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll" ] }, - "System.Net.Primitives/4.0.11-rc2-24027": { - "sha512": "K4oOpa82emlHY0QCsWTcgLrZUw2X6BNvOVWiJOKTPxtUhUqru03Ncy0tFXbXyc9hdEvMLL3BDaN1iFTV8u1AhA==", + "System.Net.Primitives/4.0.11": { + "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", "type": "package", + "path": "System.Net.Primitives/4.0.11", "files": [ - "System.Net.Primitives.4.0.11-rc2-24027.nupkg.sha512", + "System.Net.Primitives.4.0.11.nupkg.sha512", "System.Net.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5000,11 +5112,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Net.Requests/4.0.11-rc2-24027": { - "sha512": "hjdU34/tlB7COhCr0QDym338GlYiLAwP1f+J0q4Y18OwijJlbDLx6YUTtlJs8aJpvu6WrmYlD9B9hkWGclWrOg==", + "System.Net.Requests/4.0.11": { + "sha512": "vxGt7C0cZixN+VqoSW4Yakc1Y9WknmxauDqzxgpw/FnBdz4kQNN51l4wxdXX5VY1xjqy//+G+4CvJWp1+f+y6Q==", "type": "package", + "path": "System.Net.Requests/4.0.11", "files": [ - "System.Net.Requests.4.0.11-rc2-24027.nupkg.sha512", + "System.Net.Requests.4.0.11.nupkg.sha512", "System.Net.Requests.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5076,15 +5189,16 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll", - "runtimes/win7/lib/net46/_._", - "runtimes/win7/lib/netstandard1.3/System.Net.Requests.dll" + "runtimes/win/lib/net46/_._", + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll" ] }, - "System.Net.Security/4.0.0-rc2-24027": { - "sha512": "NDppeK2WgQ1nMar+gz2jvnMl7fgLnhUtI9zd8UKf8Xy3GiXAY3k8IcNkGhFTODBGVcu7OF9ZNjJmieDLMYaRwA==", + "System.Net.Security/4.0.0": { + "sha512": "uM1JaYJciCc2w7efD6du0EpQ1n5ZQqE6/P43/aI4H5E59qvP+wt3l70KIUF/Ha7NaeXGoGNFPVO0MB80pVHk2g==", "type": "package", + "path": "System.Net.Security/4.0.0", "files": [ - "System.Net.Security.4.0.0-rc2-24027.nupkg.sha512", + "System.Net.Security.4.0.0.nupkg.sha512", "System.Net.Security.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5113,16 +5227,18 @@ "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.4/System.Net.Security.dll", - "runtimes/win7/lib/netcore50/_._", - "runtimes/win7/lib/netstandard1.3/System.Net.Security.dll" + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll", + "runtimes/win/lib/net46/System.Net.Security.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll", + "runtimes/win7/lib/netcore50/_._" ] }, - "System.Net.Sockets/4.1.0-rc2-24027": { - "sha512": "WJ/Fu0JBpC4FEKL7Jf3Qg20NxQZUQ6EqhssHuN/E5E1Vd67vsu/xyK83no6ofZMBASfJb5Zgm6Nh4E2hXf57nQ==", + "System.Net.Sockets/4.1.0": { + "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", "type": "package", + "path": "System.Net.Sockets/4.1.0", "files": [ - "System.Net.Sockets.4.1.0-rc2-24027.nupkg.sha512", + "System.Net.Sockets.4.1.0.nupkg.sha512", "System.Net.Sockets.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5153,11 +5269,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Net.WebHeaderCollection/4.0.1-rc2-24027": { - "sha512": "BozyPHP7REBLj8QbAf2TuH081CB2E5PIRC3K5MhqacoV4EsK0FmgCzhLyvnbSi8pTKV6NrjTPmdWDD2sCyPf+g==", + "System.Net.WebHeaderCollection/4.0.1": { + "sha512": "XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==", "type": "package", + "path": "System.Net.WebHeaderCollection/4.0.1", "files": [ - "System.Net.WebHeaderCollection.4.0.1-rc2-24027.nupkg.sha512", + "System.Net.WebHeaderCollection.4.0.1.nupkg.sha512", "System.Net.WebHeaderCollection.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5189,11 +5306,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Numerics.Vectors/4.1.1-rc2-24027": { - "sha512": "9G+2IoDcQBas3kdySw4rz7XzI/dbUqPkC0yiOR9YAWZpOH52icM6YxcgTKiI3Weh3w1il/xMrplrTYuE6hqAaA==", + "System.Numerics.Vectors/4.1.1": { + "sha512": "Ex1NSKycC2wi5XBMWUGWPc3lumh6OQWFFmmpZFZz0oLht5lQ+wWPHVZumOrMJuckfUiVMd4p67BrkBos8lcF+Q==", "type": "package", + "path": "System.Numerics.Vectors/4.1.1", "files": [ - "System.Numerics.Vectors.4.1.1-rc2-24027.nupkg.sha512", + "System.Numerics.Vectors.4.1.1.nupkg.sha512", "System.Numerics.Vectors.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5201,11 +5319,10 @@ "lib/MonoTouch10/_._", "lib/net46/System.Numerics.Vectors.dll", "lib/net46/System.Numerics.Vectors.xml", - "lib/net46/_._", - "lib/netstandard1.3/System.Numerics.Vectors.dll", - "lib/netstandard1.3/System.Numerics.Vectors.xml", - "lib/portable-net45+win8/System.Numerics.Vectors.dll", - "lib/portable-net45+win8/System.Numerics.Vectors.xml", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", @@ -5214,20 +5331,20 @@ "ref/MonoTouch10/_._", "ref/net46/System.Numerics.Vectors.dll", "ref/net46/System.Numerics.Vectors.xml", - "ref/net46/_._", - "ref/netstandard1.1/System.Numerics.Vectors.dll", - "ref/portable-net45+win8/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._" ] }, - "System.ObjectModel/4.0.12-rc2-24027": { - "sha512": "8wgKzGVl3RlTMBYsWCjOizWpzH8mm7i0pv2vHwXbpV/rGptDDKzXHyTmdqFdBAfrnsnicwh79hNTc5zzKWKK1A==", + "System.ObjectModel/4.0.12": { + "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", "type": "package", + "path": "System.ObjectModel/4.0.12", "files": [ - "System.ObjectModel.4.0.12-rc2-24027.nupkg.sha512", + "System.ObjectModel.4.0.12.nupkg.sha512", "System.ObjectModel.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5290,11 +5407,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Reflection/4.1.0-rc2-24027": { - "sha512": "RMJrRP3I71J5PLfsX2reWDPltwJs/pJ+CbIqa2ccDVop2WlBq6CuV7FOo7l77nuYFKODI6kpATLXZKiq8V8aEQ==", + "System.Reflection/4.1.0": { + "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", "type": "package", + "path": "System.Reflection/4.1.0", "files": [ - "System.Reflection.4.1.0-rc2-24027.nupkg.sha512", + "System.Reflection.4.1.0.nupkg.sha512", "System.Reflection.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5368,11 +5486,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Reflection.DispatchProxy/4.0.1-rc2-24027": { - "sha512": "lzyB7X/yf4pmPCIqXEQbeKNBl7lX+/c+Shmo1N9qgRNuaZ1vSA3ZvFFXCBsyZSkvbr7MUviNHEc0CLQ8R0IS6g==", + "System.Reflection.DispatchProxy/4.0.1": { + "sha512": "GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==", "type": "package", + "path": "System.Reflection.DispatchProxy/4.0.1", "files": [ - "System.Reflection.DispatchProxy.4.0.1-rc2-24027.nupkg.sha512", + "System.Reflection.DispatchProxy.4.0.1.nupkg.sha512", "System.Reflection.DispatchProxy.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5403,11 +5522,12 @@ "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll" ] }, - "System.Reflection.Emit/4.0.1-rc2-24027": { - "sha512": "C4kvi/Lpj5vgUtCygP0bbBnlYyuDZEU2ofdgGXa8AgV3FkmwNEqJ7zm3OhMFe/kMKRgEkJXkioFdkLHrJJLDTQ==", + "System.Reflection.Emit/4.0.1": { + "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", "type": "package", + "path": "System.Reflection.Emit/4.0.1", "files": [ - "System.Reflection.Emit.4.0.1-rc2-24027.nupkg.sha512", + "System.Reflection.Emit.4.0.1.nupkg.sha512", "System.Reflection.Emit.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5432,11 +5552,12 @@ "ref/xamarinmac20/_._" ] }, - "System.Reflection.Emit.ILGeneration/4.0.1-rc2-24027": { - "sha512": "s7puteOinRV3+sGWDLeuUbSSxwZHqHhXpLwoTlS4L0x7d58j868LbKPSPJVZAs6a/dGkyo02WHVDcEtCBjn8VQ==", + "System.Reflection.Emit.ILGeneration/4.0.1": { + "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", "type": "package", + "path": "System.Reflection.Emit.ILGeneration/4.0.1", "files": [ - "System.Reflection.Emit.ILGeneration.4.0.1-rc2-24027.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.4.0.1.nupkg.sha512", "System.Reflection.Emit.ILGeneration.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5462,11 +5583,12 @@ "runtimes/aot/lib/netcore50/_._" ] }, - "System.Reflection.Emit.Lightweight/4.0.1-rc2-24027": { - "sha512": "kDuurD3Z1bYJrW0VqBEoHWLUCWYtto/SF/dajEj8sXftap3zkqBF+3IMb8l4EfRuzytlS2TlmFxiApbB9C8JEA==", + "System.Reflection.Emit.Lightweight/4.0.1": { + "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", "type": "package", + "path": "System.Reflection.Emit.Lightweight/4.0.1", "files": [ - "System.Reflection.Emit.Lightweight.4.0.1-rc2-24027.nupkg.sha512", + "System.Reflection.Emit.Lightweight.4.0.1.nupkg.sha512", "System.Reflection.Emit.Lightweight.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5492,11 +5614,12 @@ "runtimes/aot/lib/netcore50/_._" ] }, - "System.Reflection.Extensions/4.0.1-rc2-24027": { - "sha512": "5N1tt+n0OHyaZ3Wb73FIfNsRrkFDW1I2fuAzojudgcZ0XcAHqLE0Wb9/JQ2eG6Lp89l2qntx4HvXcIDjVwvYuw==", + "System.Reflection.Extensions/4.0.1": { + "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", "type": "package", + "path": "System.Reflection.Extensions/4.0.1", "files": [ - "System.Reflection.Extensions.4.0.1-rc2-24027.nupkg.sha512", + "System.Reflection.Extensions.4.0.1.nupkg.sha512", "System.Reflection.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5546,11 +5669,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Reflection.Metadata/1.3.0-rc2-24027": { - "sha512": "ADZVzbL6KHwUzqn+BD9cf82ev/ADG1w4Uy7V8G//kx89aImQbbq2pCOpyl8IBC4Qqrq0hUWjgTOrxFo8PNa/pA==", + "System.Reflection.Metadata/1.3.0": { + "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==", "type": "package", + "path": "System.Reflection.Metadata/1.3.0", "files": [ - "System.Reflection.Metadata.1.3.0-rc2-24027.nupkg.sha512", + "System.Reflection.Metadata.1.3.0.nupkg.sha512", "System.Reflection.Metadata.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5560,11 +5684,12 @@ "lib/portable-net45+win8/System.Reflection.Metadata.xml" ] }, - "System.Reflection.Primitives/4.0.1-rc2-24027": { - "sha512": "/FgLaA5DnqSVZVm5+eqhSjezjBCRo7+W5LzUsa3nQul6hHbMGkB2uuN8Tt6UfpLzKZ5QimefeDKkLYmChBnskQ==", + "System.Reflection.Primitives/4.0.1": { + "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", "type": "package", + "path": "System.Reflection.Primitives/4.0.1", "files": [ - "System.Reflection.Primitives.4.0.1-rc2-24027.nupkg.sha512", + "System.Reflection.Primitives.4.0.1.nupkg.sha512", "System.Reflection.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5614,11 +5739,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Reflection.TypeExtensions/4.1.0-rc2-24027": { - "sha512": "1t2V/qaXZjJ2krlf97bGEcqiNjriHZQv5mx3Mez2PJ2+gqJbu0vPWCSNTN8Y+miCuRm+Pwx0ZFAoCQHkij2xcQ==", + "System.Reflection.TypeExtensions/4.1.0": { + "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", "type": "package", + "path": "System.Reflection.TypeExtensions/4.1.0", "files": [ - "System.Reflection.TypeExtensions.4.1.0-rc2-24027.nupkg.sha512", + "System.Reflection.TypeExtensions.4.1.0.nupkg.sha512", "System.Reflection.TypeExtensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5665,22 +5791,24 @@ "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll" ] }, - "System.Resources.Reader/4.0.0-rc2-24027": { - "sha512": "VnZkfhNx3kXVe/wPEVpkVkpj7nuw1fRAlxL1Kyc2dxgJdugyKWFPjNCDXHEL85EB+rOhUC40+Rnodg/ZA60Lyw==", + "System.Resources.Reader/4.0.0": { + "sha512": "VX1iHAoHxgrLZv+nq/9drCZI6Q4SSCzSVyUm1e0U60sqWdj6XhY7wvKmy3RvsSal9h+/vqSWwxxJsm0J4vn/jA==", "type": "package", + "path": "System.Resources.Reader/4.0.0", "files": [ - "System.Resources.Reader.4.0.0-rc2-24027.nupkg.sha512", + "System.Resources.Reader.4.0.0.nupkg.sha512", "System.Resources.Reader.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/netstandard1.0/System.Resources.Reader.dll" ] }, - "System.Resources.ResourceManager/4.0.1-rc2-24027": { - "sha512": "WFDuYprqRWAVcQzArAqgabw9bbGPBaogBG17sGtZ5Iyb7ddOcIs89QYdcxdatPkSYOFNWydwSY2fyOjhIKMIcA==", + "System.Resources.ResourceManager/4.0.1": { + "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", "type": "package", + "path": "System.Resources.ResourceManager/4.0.1", "files": [ - "System.Resources.ResourceManager.4.0.1-rc2-24027.nupkg.sha512", + "System.Resources.ResourceManager.4.0.1.nupkg.sha512", "System.Resources.ResourceManager.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5730,11 +5858,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime/4.1.0-rc2-24027": { - "sha512": "sDyyCeXycMSiNP4z1wyeyXlZSb26/OXIAwqnDsOAjw9PL3r8OgDRJgt4SH6Qid5z6E5IEGTKwjBjrHJGoa8bag==", + "System.Runtime/4.1.0": { + "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", "type": "package", + "path": "System.Runtime/4.1.0", "files": [ - "System.Runtime.4.1.0-rc2-24027.nupkg.sha512", + "System.Runtime.4.1.0.nupkg.sha512", "System.Runtime.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5819,11 +5948,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.Extensions/4.1.0-rc2-24027": { - "sha512": "rHmAgtQY8XlVd4tB/5ta8IzxAL9gpUlkTYQgUXDjdHux2MFmDSJv4vgm/atmwbKZcd0TnzjD2SYpnkWSqDWgFg==", + "System.Runtime.Extensions/4.1.0": { + "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", "type": "package", + "path": "System.Runtime.Extensions/4.1.0", "files": [ - "System.Runtime.Extensions.4.1.0-rc2-24027.nupkg.sha512", + "System.Runtime.Extensions.4.1.0.nupkg.sha512", "System.Runtime.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5897,11 +6027,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.Handles/4.0.1-rc2-24027": { - "sha512": "zAfnDT+YDOnVK2ZSoE+70LU94207gz0AO1B+ELtfsZB6a35yVFBo9XTE/nK9QwsZxnknPIqoQ1CJz434TC5PFA==", + "System.Runtime.Handles/4.0.1": { + "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", "type": "package", + "path": "System.Runtime.Handles/4.0.1", "files": [ - "System.Runtime.Handles.4.0.1-rc2-24027.nupkg.sha512", + "System.Runtime.Handles.4.0.1.nupkg.sha512", "System.Runtime.Handles.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5932,11 +6063,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.InteropServices/4.1.0-rc2-24027": { - "sha512": "HMTGM3YyFBqDSP4STwC2YC51PInAQNMRj4V3rodwhaeAl+DnRKYqRFnd3eO2l99JqrcBIgg48SFGU9zglQC38w==", + "System.Runtime.InteropServices/4.1.0": { + "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", "type": "package", + "path": "System.Runtime.InteropServices/4.1.0", "files": [ - "System.Runtime.InteropServices.4.1.0-rc2-24027.nupkg.sha512", + "System.Runtime.InteropServices.4.1.0.nupkg.sha512", "System.Runtime.InteropServices.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6019,39 +6151,20 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.InteropServices.PInvoke/4.0.0-rc2-24027": { - "sha512": "KS562Uiu5jWEJqIihGZs7P+H/2rasaQC1HE0ZAx6A/2V2G8kFDydYEEB8Zs/M7roRsiCrdaj7chuokiAghShFg==", + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", "type": "package", + "path": "System.Runtime.InteropServices.RuntimeInformation/4.0.0", "files": [ - "System.Runtime.InteropServices.PInvoke.4.0.0-rc2-24027.nupkg.sha512", - "System.Runtime.InteropServices.PInvoke.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Runtime.InteropServices.PInvoke.dll", - "lib/netstandard1.3/System.Runtime.InteropServices.PInvoke.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Runtime.InteropServices.PInvoke.dll", - "ref/netstandard1.3/System.Runtime.InteropServices.PInvoke.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.PInvoke.dll" - ] - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-24027": { - "sha512": "nsKC00hUZY8SbNHMK3RMu62zEmgdB9xKO+7B30DfLLy5R/10ICrfUVUJvvc/HQC/VSObPUdjYUsqAFoQMIaHHA==", - "type": "package", - "files": [ - "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-24027.nupkg.sha512", + "System.Runtime.InteropServices.RuntimeInformation.4.0.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/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", @@ -6062,14 +6175,20 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll" ] }, - "System.Runtime.Loader/4.0.0-rc2-24027": { - "sha512": "fH8ahqrW0BezIY8kAUWcXCpMxTOh3YygEXf7u8HczG/ZHJoDKTEiyMLvyz+6wm+h0y4GswDVr7RKPkvJHr3ktw==", + "System.Runtime.Loader/4.0.0": { + "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", "type": "package", + "path": "System.Runtime.Loader/4.0.0", "files": [ - "System.Runtime.Loader.4.0.0-rc2-24027.nupkg.sha512", + "System.Runtime.Loader.4.0.0.nupkg.sha512", "System.Runtime.Loader.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6088,11 +6207,12 @@ "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml" ] }, - "System.Runtime.Numerics/4.0.1-rc2-24027": { - "sha512": "ZcDlNWYNdyPJruJdoFiQjdD9aj17MUnK9vlShMaqIYtZmn5NuRY5Iyn0yojyA9SgJPaAoQkbvb/rJ7Nafly8sg==", + "System.Runtime.Numerics/4.0.1": { + "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==", "type": "package", + "path": "System.Runtime.Numerics/4.0.1", "files": [ - "System.Runtime.Numerics.4.0.1-rc2-24027.nupkg.sha512", + "System.Runtime.Numerics.4.0.1.nupkg.sha512", "System.Runtime.Numerics.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6142,11 +6262,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.Serialization.Primitives/4.1.1-rc2-24027": { - "sha512": "CatEVkKtMZlBrsdboi2RNediIXkYaiKtseORboHASI96mYtlPvivmHr/nw+pKx7s7enaFvs5Ovfbc8uXs5Qt7Q==", + "System.Runtime.Serialization.Primitives/4.1.1": { + "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", "type": "package", + "path": "System.Runtime.Serialization.Primitives/4.1.1", "files": [ - "System.Runtime.Serialization.Primitives.4.1.1-rc2-24027.nupkg.sha512", + "System.Runtime.Serialization.Primitives.4.1.1.nupkg.sha512", "System.Runtime.Serialization.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6212,11 +6333,12 @@ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll" ] }, - "System.Security.Claims/4.0.1-rc2-24027": { - "sha512": "9oxucsKjs8q2UZHHx6tQm78uXzAiCWE7MVbxUmLlVzCRXLKtzjWCgZqHzCjg37GHMvi326PhblnOI222CGW2GA==", + "System.Security.Claims/4.0.1": { + "sha512": "4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==", "type": "package", + "path": "System.Security.Claims/4.0.1", "files": [ - "System.Security.Claims.4.0.1-rc2-24027.nupkg.sha512", + "System.Security.Claims.4.0.1.nupkg.sha512", "System.Security.Claims.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6248,11 +6370,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Security.Cryptography.Algorithms/4.1.0-rc2-24027": { - "sha512": "oh/g+cyjJ7b1GpLmSHSPAv2o3juedBppGeumF25ELzsyINFCeOGpVOdUr15GLfTpNYHyYML0PCefIW6PrFH2XQ==", + "System.Security.Cryptography.Algorithms/4.2.0": { + "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", "type": "package", + "path": "System.Security.Cryptography.Algorithms/4.2.0", "files": [ - "System.Security.Cryptography.Algorithms.4.1.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.Algorithms.4.2.0.nupkg.sha512", "System.Security.Cryptography.Algorithms.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6260,6 +6383,7 @@ "lib/MonoTouch10/_._", "lib/net46/System.Security.Cryptography.Algorithms.dll", "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", @@ -6268,39 +6392,54 @@ "ref/MonoTouch10/_._", "ref/net46/System.Security.Cryptography.Algorithms.dll", "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.Algorithms.dll", - "runtimes/win7/lib/netstandard1.4/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", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll" ] }, - "System.Security.Cryptography.Cng/4.1.0-rc2-24027": { - "sha512": "QILmzqCpi0F9+DK5Z4/w0VW7gu07CpXksTxhkjqGspxuh7KSd+G2lsIM7vUEZaWvuwJQyQRCNRMALC7u/tgY+g==", + "System.Security.Cryptography.Cng/4.2.0": { + "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==", "type": "package", + "path": "System.Security.Cryptography.Cng/4.2.0", "files": [ - "System.Security.Cryptography.Cng.4.1.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.Cng.4.2.0.nupkg.sha512", "System.Security.Cryptography.Cng.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/net46/System.Security.Cryptography.Cng.dll", "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", "ref/net46/System.Security.Cryptography.Cng.dll", "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll" + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll" ] }, - "System.Security.Cryptography.Csp/4.0.0-rc2-24027": { - "sha512": "fQJkR6jpeLJVmB8z2XFqzRdToriROpb0MhVKvEDIOhPTwafemMe0+hxxTZ2sLJVOeytFxk10rZq05mJgA+SxdA==", + "System.Security.Cryptography.Csp/4.0.0": { + "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==", "type": "package", + "path": "System.Security.Cryptography.Csp/4.0.0", "files": [ - "System.Security.Cryptography.Csp.4.0.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.Csp.4.0.0.nupkg.sha512", "System.Security.Cryptography.Csp.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6320,15 +6459,17 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", "runtimes/win/lib/netcore50/_._", "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll" ] }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-24027": { - "sha512": "71AE+Bd68o0t6R0OEwHNRxcpcCI2kYfY0EOP+mAzIohObJKLoaDW6t8CunWOnr7hzvHI4W2UdNgmZzX2HSSuOA==", + "System.Security.Cryptography.Encoding/4.0.0": { + "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", "type": "package", + "path": "System.Security.Cryptography.Encoding/4.0.0", "files": [ - "System.Security.Cryptography.Encoding.4.0.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.Encoding.4.0.0.nupkg.sha512", "System.Security.Cryptography.Encoding.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6358,27 +6499,30 @@ "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "runtimes/win7/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll" + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll" ] }, - "System.Security.Cryptography.OpenSsl/4.0.0-rc2-24027": { - "sha512": "DZ3OjJC6O1qmYksZ45fuyHpB0julRXuohxGyDg2S4flOb8BIJYtzNZPapkkTNazDVAHohK4J8c7OLx3kFE2LVw==", + "System.Security.Cryptography.OpenSsl/4.0.0": { + "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==", "type": "package", + "path": "System.Security.Cryptography.OpenSsl/4.0.0", "files": [ - "System.Security.Cryptography.OpenSsl.4.0.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.OpenSsl.4.0.0.nupkg.sha512", "System.Security.Cryptography.OpenSsl.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", - "ref/netstandard1.4/System.Security.Cryptography.OpenSsl.dll", - "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.OpenSsl.dll", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.OpenSsl.dll" + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll" ] }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-24027": { - "sha512": "0uZrfk+oxQTpQ/4qTLCTTPXMvjkf0a7YUsYP2GkIeTirphSTZ090LISz4WLXf5AbuO/hYEI7k0MSxp0uqFB0tQ==", + "System.Security.Cryptography.Primitives/4.0.0": { + "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", "type": "package", + "path": "System.Security.Cryptography.Primitives/4.0.0", "files": [ - "System.Security.Cryptography.Primitives.4.0.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.Primitives.4.0.0.nupkg.sha512", "System.Security.Cryptography.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6400,11 +6544,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Security.Cryptography.X509Certificates/4.1.0-rc2-24027": { - "sha512": "nVprbjLjneBgQj9hDlOQqydaZLj/vnBtctLB4Tr5hf9xNP32twD0EDyN75F3/58WB90bMRgWijyQuI6llRs5mQ==", + "System.Security.Cryptography.X509Certificates/4.1.0": { + "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", "type": "package", + "path": "System.Security.Cryptography.X509Certificates/4.1.0", "files": [ - "System.Security.Cryptography.X509Certificates.4.1.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.4.1.0.nupkg.sha512", "System.Security.Cryptography.X509Certificates.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6446,16 +6591,19 @@ "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win7/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win7/lib/netstandard1.4/System.Security.Cryptography.X509Certificates.dll" + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll" ] }, - "System.Security.Principal/4.0.1-rc2-24027": { - "sha512": "L6+kLyQvfqGaJ08G8p84O1XCq5VxdjZmEyRgZjnupcZkB9MVK+1aG6iM6jMUbVz5upRm4WWXPkRbwVpUdeJYsw==", + "System.Security.Principal/4.0.1": { + "sha512": "On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==", "type": "package", + "path": "System.Security.Principal/4.0.1", "files": [ - "System.Security.Principal.4.0.1-rc2-24027.nupkg.sha512", + "System.Security.Principal.4.0.1.nupkg.sha512", "System.Security.Principal.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6507,11 +6655,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Security.Principal.Windows/4.0.0-rc2-24027": { - "sha512": "0zK9NALYpgSfw3oADZFPqtqS9JPHPTMT6RtYawKySlGOnElJG5+hhOsLq+ktG6k10Pyvem8/Pu5CrqJEqhLQFQ==", + "System.Security.Principal.Windows/4.0.0": { + "sha512": "iFx15AF3RMEPZn3COh8+Bb2Thv2zsmLd93RchS1b8Mj5SNYeGqbYNCSn5AES1+gq56p4ujGZPrl0xN7ngkXOHg==", "type": "package", + "path": "System.Security.Principal.Windows/4.0.0", "files": [ - "System.Security.Principal.Windows.4.0.0-rc2-24027.nupkg.sha512", + "System.Security.Principal.Windows.4.0.0.nupkg.sha512", "System.Security.Principal.Windows.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6529,14 +6678,16 @@ "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll" ] }, - "System.Text.Encoding/4.0.11-rc2-24027": { - "sha512": "WyhCB3a669kXgMXEBx+T0G+bulfT0xzhYqZvuIGm22qIFlS85z11df279viqqjkwv2PDQvLjE2YKhRqkvdEd3g==", + "System.Text.Encoding/4.0.11": { + "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", "type": "package", + "path": "System.Text.Encoding/4.0.11", "files": [ - "System.Text.Encoding.4.0.11-rc2-24027.nupkg.sha512", + "System.Text.Encoding.4.0.11.nupkg.sha512", "System.Text.Encoding.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6597,16 +6748,18 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Text.Encoding.CodePages/4.0.1-rc2-24027": { - "sha512": "hoE1NcYMD2fwCotbt/I+B/6p0gyxp82MiKTZ5OKK2O7nMJ8sjF7YtzyVicvxD7e3sBDyCZWdcbMEW09M/C+IAQ==", + "System.Text.Encoding.CodePages/4.0.1": { + "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==", "type": "package", + "path": "System.Text.Encoding.CodePages/4.0.1", "files": [ - "System.Text.Encoding.CodePages.4.0.1-rc2-24027.nupkg.sha512", + "System.Text.Encoding.CodePages.4.0.1.nupkg.sha512", "System.Text.Encoding.CodePages.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", @@ -6632,11 +6785,12 @@ "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll" ] }, - "System.Text.Encoding.Extensions/4.0.11-rc2-24027": { - "sha512": "wj8if+6Wg+2Li3/T/+1+0qkuI7IZfeymtDhTiDThXDwc8+U9ZlZ2QcGHv9v9AEuh1ljWzp6dysuwehWSqAyhpg==", + "System.Text.Encoding.Extensions/4.0.11": { + "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", "type": "package", + "path": "System.Text.Encoding.Extensions/4.0.11", "files": [ - "System.Text.Encoding.Extensions.4.0.11-rc2-24027.nupkg.sha512", + "System.Text.Encoding.Extensions.4.0.11.nupkg.sha512", "System.Text.Encoding.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6697,19 +6851,21 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Text.RegularExpressions/4.0.12-rc2-24027": { - "sha512": "Hot88dwmUASuTWne7upZ1yfnXxZ9tGhRJNtlD9+s3QOqSLPy1a8fGlFIaxBVgAk7kKTb/3Eg4j+1QG6TGXDeDQ==", + "System.Text.RegularExpressions/4.1.0": { + "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", "type": "package", + "path": "System.Text.RegularExpressions/4.1.0", "files": [ - "System.Text.RegularExpressions.4.0.12-rc2-24027.nupkg.sha512", + "System.Text.RegularExpressions.4.1.0.nupkg.sha512", "System.Text.RegularExpressions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/netstandard1.3/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", "lib/portable-net45+win8+wp8+wpa81/_._", "lib/win8/_._", "lib/wp80/_._", @@ -6721,6 +6877,7 @@ "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", "ref/netcore50/System.Text.RegularExpressions.dll", "ref/netcore50/System.Text.RegularExpressions.xml", "ref/netcore50/de/System.Text.RegularExpressions.xml", @@ -6754,6 +6911,17 @@ "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", "ref/portable-net45+win8+wp8+wpa81/_._", "ref/win8/_._", "ref/wp80/_._", @@ -6764,11 +6932,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Threading/4.0.11-rc2-24027": { - "sha512": "JdVfUj82+pkIGfpUeb28HdwxoUMR7lTL5LT2iX9gyKtIo4yv2VirGPFVvohdlN9t9My+dIlYb9W4z1YlZV/RIA==", + "System.Threading/4.0.11": { + "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", "type": "package", + "path": "System.Threading/4.0.11", "files": [ - "System.Threading.4.0.11-rc2-24027.nupkg.sha512", + "System.Threading.4.0.11.nupkg.sha512", "System.Threading.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6832,11 +7001,12 @@ "runtimes/aot/lib/netcore50/System.Threading.dll" ] }, - "System.Threading.Overlapped/4.0.1-rc2-24027": { - "sha512": "FabraxAMMWzA2IgOTTfYz1sX1V1b0KqLntBAkEB3uDiZRN2FZpGK9Puq/Z9Je44ubcBBtSNWPe+wzu+QBiKawg==", + "System.Threading.Overlapped/4.0.1": { + "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==", "type": "package", + "path": "System.Threading.Overlapped/4.0.1", "files": [ - "System.Threading.Overlapped.4.0.1-rc2-24027.nupkg.sha512", + "System.Threading.Overlapped.4.0.1.nupkg.sha512", "System.Threading.Overlapped.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6854,15 +7024,17 @@ "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", + "runtimes/win/lib/net46/System.Threading.Overlapped.dll", "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll" ] }, - "System.Threading.Tasks/4.0.11-rc2-24027": { - "sha512": "BULvVgPxKNzMgAZpaRHREYhbGFTDbwG84mR61gGcajhLo6nn7XS9E1Lzixiv3gANtT7HROH7h3LeMPMRsEvEPQ==", + "System.Threading.Tasks/4.0.11": { + "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", "type": "package", + "path": "System.Threading.Tasks/4.0.11", "files": [ - "System.Threading.Tasks.4.0.11-rc2-24027.nupkg.sha512", + "System.Threading.Tasks.4.0.11.nupkg.sha512", "System.Threading.Tasks.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6923,11 +7095,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Threading.Tasks.Dataflow/4.6.0-rc2-24027": { - "sha512": "pB+qc63BahNZaD7sO2IvXDoekTfvN/bKe/zzjzSh0dhOAcMvTNfDWknuG8EynoOEM9REZ147En2XvH0srAyHMA==", + "System.Threading.Tasks.Dataflow/4.6.0": { + "sha512": "2hRjGu2r2jxRZ55wmcHO/WbdX+YAOz9x6FE8xqkHZgPaoFMKQZRe9dk8xTZIas8fRjxRmzawnTEWIrhlM+Un7w==", "type": "package", + "path": "System.Threading.Tasks.Dataflow/4.6.0", "files": [ - "System.Threading.Tasks.Dataflow.4.6.0-rc2-24027.nupkg.sha512", + "System.Threading.Tasks.Dataflow.4.6.0.nupkg.sha512", "System.Threading.Tasks.Dataflow.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6937,11 +7110,12 @@ "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll" ] }, - "System.Threading.Tasks.Extensions/4.0.0-rc2-24027": { - "sha512": "dfj0Fl7/0KeP1UwQvo7xu7LdRAHfJ/Pdvo2YL+sDHddCLaiu+1yNyijYBocaCgQ4H0t8nEg8he/dWsPpaTdfNg==", + "System.Threading.Tasks.Extensions/4.0.0": { + "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==", "type": "package", + "path": "System.Threading.Tasks.Extensions/4.0.0", "files": [ - "System.Threading.Tasks.Extensions.4.0.0-rc2-24027.nupkg.sha512", + "System.Threading.Tasks.Extensions.4.0.0.nupkg.sha512", "System.Threading.Tasks.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -6951,11 +7125,12 @@ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml" ] }, - "System.Threading.Tasks.Parallel/4.0.1-rc2-24027": { - "sha512": "SNOmVf2OqhpwIEznDWxBO7ZZOnN4Iy9xSVrnT4lsU/A93Zc3zJ/7m9oT7RkkQFUncNIq39xqcuYlJ4u1KjTFJg==", + "System.Threading.Tasks.Parallel/4.0.1": { + "sha512": "7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==", "type": "package", + "path": "System.Threading.Tasks.Parallel/4.0.1", "files": [ - "System.Threading.Tasks.Parallel.4.0.1-rc2-24027.nupkg.sha512", + "System.Threading.Tasks.Parallel.4.0.1.nupkg.sha512", "System.Threading.Tasks.Parallel.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7005,11 +7180,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Threading.Thread/4.0.0-rc2-24027": { - "sha512": "pb71GbyEOz4LIVFjssvJ+xXRXA7dye0TuRfW/H9ocfyHensQCWZIeo89Z4rEqbK+3/mE3avAsCpBYenwop0hQA==", + "System.Threading.Thread/4.0.0": { + "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==", "type": "package", + "path": "System.Threading.Thread/4.0.0", "files": [ - "System.Threading.Thread.4.0.0-rc2-24027.nupkg.sha512", + "System.Threading.Thread.4.0.0.nupkg.sha512", "System.Threading.Thread.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7042,11 +7218,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Threading.ThreadPool/4.0.10-rc2-24027": { - "sha512": "MyuiERgONOnLCD45PQ1rTHYEv6R/2RL1/LxmqJh5/MXYBeh7o8B3VrXlMuxpTZwKg4pbQbLe5uWIueoPwyq8IA==", + "System.Threading.ThreadPool/4.0.10": { + "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", "type": "package", + "path": "System.Threading.ThreadPool/4.0.10", "files": [ - "System.Threading.ThreadPool.4.0.10-rc2-24027.nupkg.sha512", + "System.Threading.ThreadPool.4.0.10.nupkg.sha512", "System.Threading.ThreadPool.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7079,11 +7256,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Threading.Timer/4.0.1-rc2-24027": { - "sha512": "AA9O27bBDE+sNy3PsN3RLoHaQzK7OldejkpXoi3UAeVcR+8Yr4O0UmcdCkucE4KfGk/ID+BxHCWdws4FEDV+4w==", + "System.Threading.Timer/4.0.1": { + "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", "type": "package", + "path": "System.Threading.Timer/4.0.1", "files": [ - "System.Threading.Timer.4.0.1-rc2-24027.nupkg.sha512", + "System.Threading.Timer.4.0.1.nupkg.sha512", "System.Threading.Timer.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7131,11 +7309,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Xml.ReaderWriter/4.0.11-rc2-24027": { - "sha512": "PET0DO5ec5Cp6bAK40aWkv/gq4+/3KslTnkpw8UcYfoNkZafIsmd11UzWY+FnjJIpVxHDG3u4SlQAinKlABxFw==", + "System.Xml.ReaderWriter/4.0.11": { + "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", "type": "package", + "path": "System.Xml.ReaderWriter/4.0.11", "files": [ - "System.Xml.ReaderWriter.4.0.11-rc2-24027.nupkg.sha512", + "System.Xml.ReaderWriter.4.0.11.nupkg.sha512", "System.Xml.ReaderWriter.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7198,11 +7377,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Xml.XDocument/4.0.11-rc2-24027": { - "sha512": "e2rpl8sRIEw2YiizX6CzL/g7BU9OeIRXdsuVAL3DWDFBsYrLac+Wcdn1HM1bHhrZ8Gbw+KmFQBMtnXHzv+xGsA==", + "System.Xml.XDocument/4.0.11": { + "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", "type": "package", + "path": "System.Xml.XDocument/4.0.11", "files": [ - "System.Xml.XDocument.4.0.11-rc2-24027.nupkg.sha512", + "System.Xml.XDocument.4.0.11.nupkg.sha512", "System.Xml.XDocument.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7265,11 +7445,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Xml.XmlDocument/4.0.1-rc2-24027": { - "sha512": "9Dll6QjHF9ECoBG+bPgfiEC0B8URbG+PRuI/QLfemn/OQYG+PBfh+hK/Svfxx8d8AqhXA7pnUzOXRYNlRQ5zAQ==", + "System.Xml.XmlDocument/4.0.1": { + "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==", "type": "package", + "path": "System.Xml.XmlDocument/4.0.1", "files": [ - "System.Xml.XmlDocument.4.0.1-rc2-24027.nupkg.sha512", + "System.Xml.XmlDocument.4.0.1.nupkg.sha512", "System.Xml.XmlDocument.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7301,11 +7482,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Xml.XPath/4.0.1-rc2-24027": { - "sha512": "HlYEV5eowxhA9GQHC0sIAKo7Hhpa2soYkBezc1/7qK1bt0bNnXDdNQXqaSDklxpAJz3xvpkOgdeid44Z/nrGxA==", + "System.Xml.XPath/4.0.1": { + "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==", "type": "package", + "path": "System.Xml.XPath/4.0.1", "files": [ - "System.Xml.XPath.4.0.1-rc2-24027.nupkg.sha512", + "System.Xml.XPath.4.0.1.nupkg.sha512", "System.Xml.XPath.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7337,11 +7519,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Xml.XPath.XDocument/4.0.1-rc2-24027": { - "sha512": "IxOLcwl5A0Lm1s2FIUh5klV+Fi0tUE/5OltvIkZdV7phcWVfgBlCRlgxweaXVrCTI+9TZ8TihVutVaA+PC95lg==", + "System.Xml.XPath.XDocument/4.0.1": { + "sha512": "FLhdYJx4331oGovQypQ8JIw2kEmNzCsjVOVYY/16kZTUoquZG85oVn7yUhBE2OZt1yGPSXAL0HTEfzjlbNpM7Q==", "type": "package", + "path": "System.Xml.XPath.XDocument/4.0.1", "files": [ - "System.Xml.XPath.XDocument.4.0.1-rc2-24027.nupkg.sha512", + "System.Xml.XPath.XDocument.4.0.1.nupkg.sha512", "System.Xml.XPath.XDocument.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -7373,155 +7556,117 @@ "ref/xamarinwatchos10/_._" ] }, - "xunit/2.1.0": { - "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==", + "xunit/2.2.0-beta2-build3300": { + "sha512": "jUMf+Hrw8+XZN56TfO+JjoibR5L806/kgDIkwCg9OXLlfnA4li4JTmH342ifYj1QMR10is8hfYYFTyjHq0+aQg==", "type": "package", + "path": "xunit/2.2.0-beta2-build3300", "files": [ - "xunit.2.1.0.nupkg", - "xunit.2.1.0.nupkg.sha512", + "xunit.2.2.0-beta2-build3300.nupkg.sha512", "xunit.nuspec" ] }, - "xunit.abstractions/2.0.0": { - "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "xunit.abstractions/2.0.1-rc2": { + "sha512": "iUHMlyMDaXJ8N8qozg19tRlW0QiZPJ47ZJyV1fnpppGWdmukyq89/pg4HqpxQ52Co3Leo8NmiiYkB/gN48pZ+A==", "type": "package", + "path": "xunit.abstractions/2.0.1-rc2", "files": [ "lib/net35/xunit.abstractions.dll", "lib/net35/xunit.abstractions.xml", - "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", - "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", - "xunit.abstractions.2.0.0.nupkg", - "xunit.abstractions.2.0.0.nupkg.sha512", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.1-rc2.nupkg.sha512", "xunit.abstractions.nuspec" ] }, - "xunit.assert/2.1.0": { - "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==", + "xunit.assert/2.2.0-beta2-build3300": { + "sha512": "5zsV2UhRQV5Ldme1N/NDhIBvQQTYdxmK87FXWWou1x3z7qpsZwe1YOjb0CY4F+1oXag8i9uTh/nZwv8jM66onA==", "type": "package", + "path": "xunit.assert/2.2.0-beta2-build3300", "files": [ - "lib/dotnet/xunit.assert.dll", - "lib/dotnet/xunit.assert.pdb", - "lib/dotnet/xunit.assert.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml", - "xunit.assert.2.1.0.nupkg", - "xunit.assert.2.1.0.nupkg.sha512", + "lib/netstandard1.0/xunit.assert.dll", + "lib/netstandard1.0/xunit.assert.pdb", + "lib/netstandard1.0/xunit.assert.xml", + "xunit.assert.2.2.0-beta2-build3300.nupkg.sha512", "xunit.assert.nuspec" ] }, - "xunit.core/2.1.0": { - "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==", + "xunit.core/2.2.0-beta2-build3300": { + "sha512": "HgKP6+FUKcIcVFMDgoTCANRKOgGeEDvg2a2AL3mOyBHE//grWL1EO0KybxUw26S8fnNJrhmI5LBWyVUIsPxI5Q==", "type": "package", + "path": "xunit.core/2.2.0-beta2-build3300", "files": [ "build/_desktop/xunit.execution.desktop.dll", - "build/dnx451/_._", - "build/monoandroid/_._", - "build/monotouch/_._", - "build/net45/_._", - "build/portable-net45+win8+wp8+wpa81/xunit.core.props", - "build/win8/_._", + "build/netstandard1.0/_._", + "build/uap10.0/xunit.core.props", "build/win81/xunit.core.props", - "build/wp8/_._", "build/wpa81/xunit.core.props", - "build/xamarinios/_._", - "xunit.core.2.1.0.nupkg", - "xunit.core.2.1.0.nupkg.sha512", + "xunit.core.2.2.0-beta2-build3300.nupkg.sha512", "xunit.core.nuspec" ] }, - "xunit.extensibility.core/2.1.0": { - "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==", - "type": "package", - "files": [ - "lib/dotnet/xunit.core.dll", - "lib/dotnet/xunit.core.dll.tdnet", - "lib/dotnet/xunit.core.pdb", - "lib/dotnet/xunit.core.xml", - "lib/dotnet/xunit.runner.tdnet.dll", - "lib/dotnet/xunit.runner.utility.desktop.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll.tdnet", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll", - "xunit.extensibility.core.2.1.0.nupkg", - "xunit.extensibility.core.2.1.0.nupkg.sha512", + "xunit.extensibility.core/2.2.0-beta2-build3300": { + "sha512": "d+UCqIL8Je3tSdhF7w6NZdzH2jYzNh2LhsMp0gUVAD3NgVEo2oK/3Xr7ZlYZM40Y6fJWoO46UntzrpNlix75mg==", + "type": "package", + "path": "xunit.extensibility.core/2.2.0-beta2-build3300", + "files": [ + "lib/net45/xunit.core.dll", + "lib/net45/xunit.core.dll.tdnet", + "lib/net45/xunit.core.pdb", + "lib/net45/xunit.core.xml", + "lib/net45/xunit.runner.tdnet.dll", + "lib/net45/xunit.runner.utility.desktop.dll", + "lib/netstandard1.0/xunit.core.dll", + "lib/netstandard1.0/xunit.core.pdb", + "lib/netstandard1.0/xunit.core.xml", + "xunit.extensibility.core.2.2.0-beta2-build3300.nupkg.sha512", "xunit.extensibility.core.nuspec" ] }, - "xunit.extensibility.execution/2.1.0": { - "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==", + "xunit.extensibility.execution/2.2.0-beta2-build3300": { + "sha512": "z0DgzvWxQtXaj2qebFkW5f69ZItvY/YRWEbKwL0yIbvhiCViiuHlP+qvvloVlrlsOuo+Y/vfjQb/3Cz+ok/+5A==", "type": "package", + "path": "xunit.extensibility.execution/2.2.0-beta2-build3300", "files": [ - "lib/dnx451/xunit.execution.dotnet.dll", - "lib/dnx451/xunit.execution.dotnet.pdb", - "lib/dnx451/xunit.execution.dotnet.xml", - "lib/dotnet/xunit.execution.dotnet.dll", - "lib/dotnet/xunit.execution.dotnet.pdb", - "lib/dotnet/xunit.execution.dotnet.xml", - "lib/monoandroid/xunit.execution.dotnet.dll", - "lib/monoandroid/xunit.execution.dotnet.pdb", - "lib/monoandroid/xunit.execution.dotnet.xml", - "lib/monotouch/xunit.execution.dotnet.dll", - "lib/monotouch/xunit.execution.dotnet.pdb", - "lib/monotouch/xunit.execution.dotnet.xml", "lib/net45/xunit.execution.desktop.dll", "lib/net45/xunit.execution.desktop.pdb", "lib/net45/xunit.execution.desktop.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml", - "lib/win8/xunit.execution.dotnet.dll", - "lib/win8/xunit.execution.dotnet.pdb", - "lib/win8/xunit.execution.dotnet.xml", - "lib/wp8/xunit.execution.dotnet.dll", - "lib/wp8/xunit.execution.dotnet.pdb", - "lib/wp8/xunit.execution.dotnet.xml", - "lib/wpa81/xunit.execution.dotnet.dll", - "lib/wpa81/xunit.execution.dotnet.pdb", - "lib/wpa81/xunit.execution.dotnet.xml", - "lib/xamarinios/xunit.execution.dotnet.dll", - "lib/xamarinios/xunit.execution.dotnet.pdb", - "lib/xamarinios/xunit.execution.dotnet.xml", - "xunit.extensibility.execution.2.1.0.nupkg", - "xunit.extensibility.execution.2.1.0.nupkg.sha512", + "lib/netstandard1.0/xunit.execution.dotnet.dll", + "lib/netstandard1.0/xunit.execution.dotnet.pdb", + "lib/netstandard1.0/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.2.0-beta2-build3300.nupkg.sha512", "xunit.extensibility.execution.nuspec" ] }, - "xunit.runner.reporters/2.1.0": { - "sha512": "ja0kJrvwSiho2TRFpfHfa+6tGJI5edcyD8fdekTkjn7Us17PbGqglIihRe8sR9YFAmS4ipEC8+7CXOM/b69ENQ==", + "xunit.runner.reporters/2.2.0-beta2-build3300": { + "sha512": "1NqeT2IWfqk9/zBkHbf6SS1bokwu0Mvt70lQp8bJZpvQgi+SDAzuhEwWTcsjMblY2FK8BHDbjauu+IO2GhbhAA==", "type": "package", + "path": "xunit.runner.reporters/2.2.0-beta2-build3300", "files": [ - "lib/dnx451/xunit.runner.reporters.dotnet.dll", - "lib/dotnet/xunit.runner.reporters.dotnet.dll", "lib/net45/xunit.runner.reporters.desktop.dll", - "xunit.runner.reporters.2.1.0.nupkg.sha512", + "lib/netstandard1.1/xunit.runner.reporters.dotnet.dll", + "xunit.runner.reporters.2.2.0-beta2-build3300.nupkg.sha512", "xunit.runner.reporters.nuspec" ] }, - "xunit.runner.utility/2.1.0": { - "sha512": "jJJHROwskIhdQuYw7exe7KaW20dOCa+lzV/lY7Zdh1ZZzdUPpScMi9ReJIutqiyjhemGF8V/GaMIPrcjyZ4ioQ==", + "xunit.runner.utility/2.2.0-beta2-build3300": { + "sha512": "lotqjLPg8NnjZHlRpj0Yj5TI3z/7hzK7+tb6R7qRAREDoH9P88EDCWJyy2xJh/R6PfbS9KYTaT/Z2ob9gx6PgQ==", "type": "package", + "path": "xunit.runner.utility/2.2.0-beta2-build3300", "files": [ - "lib/dnx451/xunit.runner.utility.dotnet.dll", - "lib/dnx451/xunit.runner.utility.dotnet.pdb", - "lib/dnx451/xunit.runner.utility.dotnet.xml", - "lib/dotnet/xunit.runner.utility.dotnet.dll", - "lib/dotnet/xunit.runner.utility.dotnet.pdb", - "lib/dotnet/xunit.runner.utility.dotnet.xml", "lib/net35/xunit.runner.utility.desktop.dll", "lib/net35/xunit.runner.utility.desktop.pdb", "lib/net35/xunit.runner.utility.desktop.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.xml", - "xunit.runner.utility.2.1.0.nupkg.sha512", + "lib/net45/xunit.runner.utility.desktop.dll", + "lib/net45/xunit.runner.utility.desktop.pdb", + "lib/net45/xunit.runner.utility.desktop.xml", + "lib/netstandard1.1/xunit.runner.utility.dotnet.dll", + "lib/netstandard1.1/xunit.runner.utility.dotnet.pdb", + "lib/netstandard1.1/xunit.runner.utility.dotnet.xml", + "xunit.runner.utility.2.2.0-beta2-build3300.nupkg.sha512", "xunit.runner.utility.nuspec" ] }, - "RecurrentTasks/2.1.0": { + "RecurrentTasks/2.3.0": { "type": "project", "path": "../../src/RecurrentTasks/project.json", "msbuildProject": "../../src/RecurrentTasks/RecurrentTasks.xproj" @@ -7529,15 +7674,15 @@ }, "projectFileDependencyGroups": { "": [ - "Microsoft.Extensions.DependencyInjection >= 1.0.0-rc2-final", - "Microsoft.Extensions.Logging >= 1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Console >= 1.0.0-rc2-final", + "Microsoft.Extensions.DependencyInjection >= 1.0.0", + "Microsoft.Extensions.Logging >= 1.0.0", + "Microsoft.Extensions.Logging.Console >= 1.0.0", "RecurrentTasks", - "dotnet-test-xunit >= 1.0.0-rc2-build10015", - "xunit >= 2.1.0" + "dotnet-test-xunit >= 2.2.0-preview2-build1029", + "xunit >= 2.2.0-beta2-build3300" ], ".NETCoreApp,Version=v1.0": [ - "Microsoft.NETCore.App >= 1.0.0-rc2-3002702" + "Microsoft.NETCore.App >= 1.0.0" ] }, "tools": {},