From af24955a4147b8a47654a2a8f25076fd956270ea Mon Sep 17 00:00:00 2001 From: Doug Bunting Date: Mon, 2 Nov 2015 11:22:59 -0800 Subject: [PATCH 01/72] React to new `RequestDelegate` namespace - also remove incorrect `-beta` versions for ASP.NET packages from `project.json` file --- .../Inspectors/DefaultInspectorFunctionManager.cs | 1 + .../Inspectors/IInspectorFunctionManager.cs | 1 + src/Glimpse.Agent.AspNet/project.json | 4 ++-- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Glimpse.Agent.AspNet/Inspectors/DefaultInspectorFunctionManager.cs b/src/Glimpse.Agent.AspNet/Inspectors/DefaultInspectorFunctionManager.cs index 9c001ac0..e34530a6 100644 --- a/src/Glimpse.Agent.AspNet/Inspectors/DefaultInspectorFunctionManager.cs +++ b/src/Glimpse.Agent.AspNet/Inspectors/DefaultInspectorFunctionManager.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; using Glimpse.Initialization; using Microsoft.AspNet.Builder; +using Microsoft.AspNet.Http; namespace Glimpse.Agent.Inspectors { diff --git a/src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunctionManager.cs b/src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunctionManager.cs index 3fce61c9..f38876ae 100644 --- a/src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunctionManager.cs +++ b/src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunctionManager.cs @@ -1,4 +1,5 @@ using Microsoft.AspNet.Builder; +using Microsoft.AspNet.Http; namespace Glimpse.Agent.Inspectors { diff --git a/src/Glimpse.Agent.AspNet/project.json b/src/Glimpse.Agent.AspNet/project.json index 078411a6..cbee5a1f 100644 --- a/src/Glimpse.Agent.AspNet/project.json +++ b/src/Glimpse.Agent.AspNet/project.json @@ -19,8 +19,8 @@ "Microsoft.AspNet.WebApi.Client": "5.2.2", "System.Net.Http": "4.0.0", "System.Diagnostics.DiagnosticSource": "4.0.0-beta-*", - "Microsoft.Extensions.Configuration.Json": "1.0.0-beta-*", - "Microsoft.AspNet.Hosting": "1.0.0-beta-*" + "Microsoft.Extensions.Configuration.Json": "1.0.0-*", + "Microsoft.AspNet.Hosting": "1.0.0-*" }, "frameworks": { "dnx451": { From 2c89deed76b32ae70671bebde1f847f2ede123e1 Mon Sep 17 00:00:00 2001 From: ajtowf Date: Fri, 20 Nov 2015 21:45:50 +0100 Subject: [PATCH 02/72] Getting the broker through RequestServices instead of ApplicationServices which is removed from HttpContext --- src/Glimpse.Agent.AspNet/Inspectors/Tab.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Glimpse.Agent.AspNet/Inspectors/Tab.cs b/src/Glimpse.Agent.AspNet/Inspectors/Tab.cs index 61d432dc..2b6925ba 100644 --- a/src/Glimpse.Agent.AspNet/Inspectors/Tab.cs +++ b/src/Glimpse.Agent.AspNet/Inspectors/Tab.cs @@ -17,7 +17,7 @@ public IAgentBroker Broker if (_broker == null) { var httpContextAccessor = new HttpContextAccessor(); - _broker = httpContextAccessor.HttpContext.ApplicationServices.GetService(); + _broker = httpContextAccessor.HttpContext.RequestServices.GetService(); } return _broker; From 05eb4a0771f583a64bdd2eb6ae524cecb66ac55b Mon Sep 17 00:00:00 2001 From: Anthony van der Hoorn Date: Mon, 23 Nov 2015 13:05:29 -0800 Subject: [PATCH 03/72] Update package dependencies to be setup for dev --- NuGet.config | 1 + .../Glimpse.Agent.AspNet.Sample/project.json | 6 +-- .../project.json | 6 +-- .../project.json | 44 +++++++++---------- .../project.json | 6 +-- .../Glimpse.Server.AspNet.Sample/project.json | 6 +-- src/Glimpse.Agent.AspNet.Mvc/project.json | 4 +- src/Glimpse.Common/project.json | 20 ++++----- src/Glimpse.Server/project.json | 4 +- 9 files changed, 49 insertions(+), 48 deletions(-) diff --git a/NuGet.config b/NuGet.config index 39983a7e..5500f6d5 100644 --- a/NuGet.config +++ b/NuGet.config @@ -1,6 +1,7 @@  + diff --git a/sample/Glimpse.Agent.AspNet.Sample/project.json b/sample/Glimpse.Agent.AspNet.Sample/project.json index 6122609e..84ff943c 100644 --- a/sample/Glimpse.Agent.AspNet.Sample/project.json +++ b/sample/Glimpse.Agent.AspNet.Sample/project.json @@ -15,9 +15,9 @@ }, "dependencies": { "Glimpse.Agent.AspNet": "", - "Microsoft.AspNet.Diagnostics": "1.0.0-rc1-final", - "Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final", - "Microsoft.AspNet.Server.WebListener": "1.0.0-rc1-final" + "Microsoft.AspNet.Diagnostics": "1.0.0-*", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-*", + "Microsoft.AspNet.Server.WebListener": "1.0.0-*" }, "frameworks": { "dnx451": { } diff --git a/sample/Glimpse.AgentServer.AspNet.Sample/project.json b/sample/Glimpse.AgentServer.AspNet.Sample/project.json index fda76983..b8a1d494 100644 --- a/sample/Glimpse.AgentServer.AspNet.Sample/project.json +++ b/sample/Glimpse.AgentServer.AspNet.Sample/project.json @@ -16,9 +16,9 @@ "dependencies": { "Glimpse.Agent.AspNet": "", "Glimpse.Server": "", - "Microsoft.AspNet.Diagnostics": "1.0.0-rc1-final", - "Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final", - "Microsoft.AspNet.Server.WebListener": "1.0.0-rc1-final" + "Microsoft.AspNet.Diagnostics": "1.0.0-*", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-*", + "Microsoft.AspNet.Server.WebListener": "1.0.0-*" }, "frameworks" : { "dnx451": { }, diff --git a/sample/Glimpse.AgentServer.Mvc.Sample/project.json b/sample/Glimpse.AgentServer.Mvc.Sample/project.json index 5e0f4b41..96554b66 100644 --- a/sample/Glimpse.AgentServer.Mvc.Sample/project.json +++ b/sample/Glimpse.AgentServer.Mvc.Sample/project.json @@ -3,31 +3,31 @@ "userSecretsId": "aspnet5-Glimpse.AgentServer.AspNet.Mvc.Sample-13d51bc5-beea-48f5-a33d-0b583120c537", "version": "1.0.0-*", "dependencies": { - "EntityFramework.Commands": "7.0.0-rc1-final", - "EntityFramework.MicrosoftSqlServer": "7.0.0-rc1-final", + "EntityFramework.Commands": "7.0.0-*", + "EntityFramework.MicrosoftSqlServer": "7.0.0-*", "Glimpse.Agent.AspNet": "", "Glimpse.Agent.AspNet.Mvc": "", "Glimpse.Server": "", - "Microsoft.AspNet.Authentication.Cookies": "1.0.0-rc1-final", - "Microsoft.AspNet.Authentication.Facebook": "1.0.0-rc1-final", - "Microsoft.AspNet.Authentication.Google": "1.0.0-rc1-final", - "Microsoft.AspNet.Authentication.MicrosoftAccount": "1.0.0-rc1-final", - "Microsoft.AspNet.Authentication.Twitter": "1.0.0-rc1-final", - "Microsoft.AspNet.Diagnostics": "1.0.0-rc1-final", - "Microsoft.AspNet.Identity.EntityFramework": "3.0.0-rc1-final", - "Microsoft.AspNet.IISPlatformHandler": "1.0.0-rc1-final", - "Microsoft.AspNet.Mvc": "6.0.0-rc1-final", - "Microsoft.AspNet.Mvc.TagHelpers": "6.0.0-rc1-final", - "Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final", - "Microsoft.AspNet.Server.WebListener": "1.0.0-rc1-final", - "Microsoft.AspNet.StaticFiles": "1.0.0-rc1-final", - "Microsoft.AspNet.Tooling.Razor": "1.0.0-rc1-final", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final", - "Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Debug": "1.0.0-rc1-final" + "Microsoft.AspNet.Authentication.Cookies": "1.0.0-*", + "Microsoft.AspNet.Authentication.Facebook": "1.0.0-*", + "Microsoft.AspNet.Authentication.Google": "1.0.0-*", + "Microsoft.AspNet.Authentication.MicrosoftAccount": "1.0.0-*", + "Microsoft.AspNet.Authentication.Twitter": "1.0.0-*", + "Microsoft.AspNet.Diagnostics": "1.0.0-*", + "Microsoft.AspNet.Identity.EntityFramework": "3.0.0-*", + "Microsoft.AspNet.IISPlatformHandler": "1.0.0-*", + "Microsoft.AspNet.Mvc": "6.0.0-*", + "Microsoft.AspNet.Mvc.TagHelpers": "6.0.0-*", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-*", + "Microsoft.AspNet.Server.WebListener": "1.0.0-*", + "Microsoft.AspNet.StaticFiles": "1.0.0-*", + "Microsoft.AspNet.Tooling.Razor": "1.0.0-*", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-*", + "Microsoft.Extensions.Configuration.Json": "1.0.0-*", + "Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-*", + "Microsoft.Extensions.Logging": "1.0.0-*", + "Microsoft.Extensions.Logging.Console": "1.0.0-*", + "Microsoft.Extensions.Logging.Debug": "1.0.0-*" }, "commands": { "web": "Microsoft.AspNet.Server.WebListener", diff --git a/sample/Glimpse.AgentServer.Mvc.Simple.Sample/project.json b/sample/Glimpse.AgentServer.Mvc.Simple.Sample/project.json index d80b6c4f..b6fed53e 100644 --- a/sample/Glimpse.AgentServer.Mvc.Simple.Sample/project.json +++ b/sample/Glimpse.AgentServer.Mvc.Simple.Sample/project.json @@ -7,9 +7,9 @@ "Glimpse.Agent.AspNet": "", "Glimpse.Agent.AspNet.Mvc": "", "Glimpse.Server": "", - "Microsoft.AspNet.Mvc": "6.0.0-rc1-final", - "Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final", - "Microsoft.AspNet.Server.WebListener": "1.0.0-rc1-final" + "Microsoft.AspNet.Mvc": "6.0.0-*", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-*", + "Microsoft.AspNet.Server.WebListener": "1.0.0-*" }, "exclude": [ "wwwroot" diff --git a/sample/Glimpse.Server.AspNet.Sample/project.json b/sample/Glimpse.Server.AspNet.Sample/project.json index c59272c1..72725aec 100644 --- a/sample/Glimpse.Server.AspNet.Sample/project.json +++ b/sample/Glimpse.Server.AspNet.Sample/project.json @@ -15,9 +15,9 @@ }, "dependencies": { "Glimpse.Server": "", - "Microsoft.AspNet.Diagnostics": "1.0.0-rc1-final", - "Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final", - "Microsoft.AspNet.Server.WebListener": "1.0.0-rc1-final" + "Microsoft.AspNet.Diagnostics": "1.0.0-*", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-*", + "Microsoft.AspNet.Server.WebListener": "1.0.0-*" }, "frameworks" : { "dnx451": { }, diff --git a/src/Glimpse.Agent.AspNet.Mvc/project.json b/src/Glimpse.Agent.AspNet.Mvc/project.json index 99d27dbb..9103c577 100644 --- a/src/Glimpse.Agent.AspNet.Mvc/project.json +++ b/src/Glimpse.Agent.AspNet.Mvc/project.json @@ -14,8 +14,8 @@ "dependencies": { "Glimpse.Agent.AspNet": "", - "Microsoft.AspNet.Mvc.Razor.Host": "6.0.0-rc1-final", - "Microsoft.AspNet.Razor": "4.0.0-rc1-final" + "Microsoft.AspNet.Mvc.Razor.Host": "6.0.0-*", + "Microsoft.AspNet.Razor": "4.0.0-*" }, "frameworks": { diff --git a/src/Glimpse.Common/project.json b/src/Glimpse.Common/project.json index 40d0ca02..e12667fc 100644 --- a/src/Glimpse.Common/project.json +++ b/src/Glimpse.Common/project.json @@ -13,11 +13,11 @@ "tags": [ "ASP.NET", "Web", "Debugging", "Diagnostics" ], "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging": "1.0.0-rc1-final", - "Microsoft.Extensions.OptionsModel": "1.0.0-rc1-final", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-*", + "Microsoft.Extensions.DependencyInjection": "1.0.0-*", + "Microsoft.Extensions.Logging": "1.0.0-*", + "Microsoft.Extensions.OptionsModel": "1.0.0-*", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-*", "Newtonsoft.Json": "6.0.6", "Rx-Linq": "2.2.5", "Rx-PlatformServices": "2.2.5" @@ -29,11 +29,11 @@ }, "dotnet5.4": { "dependencies": { - "System.ObjectModel": "4.0.11-beta-23516", - "System.Runtime": "4.0.21-beta-23516", - "System.Security.Cryptography.Algorithms": "4.0.0-beta-23516", - "System.Text.RegularExpressions": "4.0.11-beta-23516", - "System.Threading": "4.0.11-beta-23516" + "System.ObjectModel": "4.0.11-*", + "System.Runtime": "4.0.21-*", + "System.Security.Cryptography.Algorithms": "4.0.0-*", + "System.Text.RegularExpressions": "4.0.11-*", + "System.Threading": "4.0.11-*" } } } diff --git a/src/Glimpse.Server/project.json b/src/Glimpse.Server/project.json index 4ed19cb1..010e2c95 100644 --- a/src/Glimpse.Server/project.json +++ b/src/Glimpse.Server/project.json @@ -14,8 +14,8 @@ "dependencies": { "Glimpse.Common": "", - "Microsoft.AspNet.FileProviders.Embedded": "1.0.0-rc1-final", - "Microsoft.AspNet.StaticFiles": "1.0.0-rc1-final", + "Microsoft.AspNet.FileProviders.Embedded": "1.0.0-*", + "Microsoft.AspNet.StaticFiles": "1.0.0-*", "Tavis.UriTemplates": "0.6.6-beta2" }, "resource": "Internal/Resources/Embeded/**/*.*", From 9d915daba465ec27dd324416e8805fe814966aee Mon Sep 17 00:00:00 2001 From: Anthony van der Hoorn Date: Mon, 23 Nov 2015 13:18:56 -0800 Subject: [PATCH 04/72] Fixup broken tfm reference... most likely bad merge from previous --- src/Glimpse.Agent.AspNet/project.json | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/Glimpse.Agent.AspNet/project.json b/src/Glimpse.Agent.AspNet/project.json index cbee5a1f..ea15a43f 100644 --- a/src/Glimpse.Agent.AspNet/project.json +++ b/src/Glimpse.Agent.AspNet/project.json @@ -23,13 +23,7 @@ "Microsoft.AspNet.Hosting": "1.0.0-*" }, "frameworks": { - "dnx451": { - "dependencies": { - } - }, - "dnxcore50": { - "dependencies": { - } - } + "net451": { }, + "dotnet5.4": { } } } \ No newline at end of file From c10ea2d5266f623145cbffa2babbbf6984b4f504 Mon Sep 17 00:00:00 2001 From: Anthony van der Hoorn Date: Mon, 23 Nov 2015 13:36:05 -0800 Subject: [PATCH 05/72] React to breaking razor teg helper registration change --- sample/Glimpse.AgentServer.Mvc.Sample/Views/_ViewImports.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample/Glimpse.AgentServer.Mvc.Sample/Views/_ViewImports.cshtml b/sample/Glimpse.AgentServer.Mvc.Sample/Views/_ViewImports.cshtml index 2c7c20e1..cc6d7a74 100644 --- a/sample/Glimpse.AgentServer.Mvc.Sample/Views/_ViewImports.cshtml +++ b/sample/Glimpse.AgentServer.Mvc.Sample/Views/_ViewImports.cshtml @@ -3,4 +3,4 @@ @using Glimpse.AgentServer.AspNet.Mvc.Sample.ViewModels.Account @using Glimpse.AgentServer.AspNet.Mvc.Sample.ViewModels.Manage @using Microsoft.AspNet.Identity -@addTagHelper "*, Microsoft.AspNet.Mvc.TagHelpers" +@addTagHelper *, Microsoft.AspNet.Mvc.TagHelpers From 1146ead6fe9cac56b5eac817aa0a32025d1769bc Mon Sep 17 00:00:00 2001 From: Anthony van der Hoorn Date: Wed, 25 Nov 2015 09:37:38 -0800 Subject: [PATCH 06/72] Add a new solution folder to try and clean things up a little --- Glimpse.sln | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Glimpse.sln b/Glimpse.sln index b6a46c30..6879f542 100644 --- a/Glimpse.sln +++ b/Glimpse.sln @@ -44,6 +44,8 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Glimpse.Server.AspNet.Sampl EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Glimpse.Prototype.UnitTest", "test\Glimpse.Prototype.UnitTest\Glimpse.Prototype.UnitTest.xproj", "{C61DDFCD-D875-4C81-B3C2-D3F6943B4CE4}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "support", "support", "{8453FD95-F0D0-4204-9D1D-BFD3DF328353}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -104,7 +106,7 @@ Global EndGlobalSection GlobalSection(NestedProjects) = preSolution {C0FB7983-E851-4567-8540-153F9B7EC42D} = {6AD4BC4F-CA12-4EE0-A6D5-BBE4B9CC56EC} - {F6F1FE30-78DC-4627-B9D7-EF9426E41892} = {6AD4BC4F-CA12-4EE0-A6D5-BBE4B9CC56EC} + {F6F1FE30-78DC-4627-B9D7-EF9426E41892} = {8453FD95-F0D0-4204-9D1D-BFD3DF328353} {D40318AD-88ED-4A8F-80CC-C8C00787FFC9} = {214245A9-D0ED-479C-B514-B482510C5F73} {C316A868-C367-4263-A1C2-5A9E91BCF770} = {214245A9-D0ED-479C-B514-B482510C5F73} {66AEF586-99BC-42E9-BBA7-B06BD5E0C686} = {C316A868-C367-4263-A1C2-5A9E91BCF770} @@ -116,5 +118,6 @@ Global {500237D3-6999-4800-B4DF-07FF8ADA9054} = {4F6B131C-CBEE-44D2-891A-FD88998A3331} {24B423F4-4E7F-4DBA-B998-3F5CB510CAFE} = {4F6B131C-CBEE-44D2-891A-FD88998A3331} {C61DDFCD-D875-4C81-B3C2-D3F6943B4CE4} = {214245A9-D0ED-479C-B514-B482510C5F73} + {8453FD95-F0D0-4204-9D1D-BFD3DF328353} = {6AD4BC4F-CA12-4EE0-A6D5-BBE4B9CC56EC} EndGlobalSection EndGlobal From 421818b8cffaf9b8b3416b27a92d1c2ecb8a3dbc Mon Sep 17 00:00:00 2001 From: Anthony van der Hoorn Date: Wed, 25 Nov 2015 09:40:08 -0800 Subject: [PATCH 07/72] Get project.json's ready for for Systm.Web introduction --- src/Glimpse.Agent.AspNet/project.json | 4 +++- src/Glimpse.Common/project.json | 9 ++++----- src/Glimpse.Server/project.json | 16 ++++++---------- 3 files changed, 13 insertions(+), 16 deletions(-) diff --git a/src/Glimpse.Agent.AspNet/project.json b/src/Glimpse.Agent.AspNet/project.json index ea15a43f..16200ba8 100644 --- a/src/Glimpse.Agent.AspNet/project.json +++ b/src/Glimpse.Agent.AspNet/project.json @@ -11,7 +11,9 @@ "summary": "Glimpse.Agent.AspNet contains infrastructure and extensibility points for gathering diagnostics information from ASP.NET web applications.", "releaseNotes": "Initial release of Glimpse.Agent.AspNet.", "tags": [ "ASP.NET", "Web", "Debugging", "Diagnostics", "Agent", "MVC", "EF", "EntityFramework" ], - + "compilationOptions": { + "define": [ "DNX" ] + }, "dependencies": { "Glimpse.Common": "", "Microsoft.Extensions.DiagnosticAdapter": "1.0.0-*", diff --git a/src/Glimpse.Common/project.json b/src/Glimpse.Common/project.json index e12667fc..8f508f6f 100644 --- a/src/Glimpse.Common/project.json +++ b/src/Glimpse.Common/project.json @@ -11,7 +11,9 @@ "summary": "Glimpse.Common contains common Glimpse interfaces and components, and is not intended for direct consumption.", "releaseNotes": "Initial release of Glimpse.Common.", "tags": [ "ASP.NET", "Web", "Debugging", "Diagnostics" ], - + "compilationOptions": { + "define": ["DNX"] + }, "dependencies": { "Microsoft.AspNet.Http.Abstractions": "1.0.0-*", "Microsoft.Extensions.DependencyInjection": "1.0.0-*", @@ -23,10 +25,7 @@ "Rx-PlatformServices": "2.2.5" }, "frameworks": { - "net451": { - "dependencies": { - } - }, + "net451": { }, "dotnet5.4": { "dependencies": { "System.ObjectModel": "4.0.11-*", diff --git a/src/Glimpse.Server/project.json b/src/Glimpse.Server/project.json index 010e2c95..4535bea1 100644 --- a/src/Glimpse.Server/project.json +++ b/src/Glimpse.Server/project.json @@ -11,22 +11,18 @@ "summary": "Glimpse.Server contains infrastructure and extensibility points for serving Glimpse data and content.", "releaseNotes": "Initial release of Glimpse.Server.", "tags": [ "ASP.NET", "Web", "Debugging", "Diagnostics", "Server" ], - + "resource": "Internal/Resources/Embeded/**/*.*", + "compilationOptions": { + "define": [ "DNX" ] + }, "dependencies": { "Glimpse.Common": "", "Microsoft.AspNet.FileProviders.Embedded": "1.0.0-*", "Microsoft.AspNet.StaticFiles": "1.0.0-*", "Tavis.UriTemplates": "0.6.6-beta2" }, - "resource": "Internal/Resources/Embeded/**/*.*", "frameworks": { - "net451": { - "dependencies": { - } - }, - "dotnet5.4": { - "dependencies": { - } - } + "net451": { }, + "dotnet5.4": { } } } \ No newline at end of file From 3106f1c7eda705f6ea7975b5e8a811b054fc801a Mon Sep 17 00:00:00 2001 From: Anthony van der Hoorn Date: Sat, 28 Nov 2015 18:07:00 -0800 Subject: [PATCH 08/72] Initial commit of SystemWeb project structure --- Glimpse.SystemWeb.sln | 54 + src/Glimpse.Agent.AspNet/AgentServices.cs | 28 +- .../RequestIgnorerOptionsShouldIgnore.cs | 2 +- .../Glimpse.Agent.AspNet.xproj | 2 +- src/Glimpse.Agent.AspNet/Inspectors/Tab.cs | 131 +- .../{ => _DNX}/AgentMiddleware.cs | 4 +- .../{ => _DNX}/GlimpseAgentMiddleware.cs | 4 +- .../GlimpseAgentServiceCollectionBuilder.cs | 6 +- ...GlimpseAgentServiceCollectionExtensions.cs | 7 +- .../DefaultInspectorFunctionManager.cs | 6 +- .../Inspectors/IInspectorFunction.cs | 6 +- .../Inspectors/IInspectorFunctionBuilder.cs | 6 +- .../Inspectors/IInspectorFunctionManager.cs | 6 +- .../Inspectors/InspectorFunctionBuilder.cs | 6 +- .../Inspectors/InspectorsInspectorFunction.cs | 4 +- .../AgentStartupWebDiagnosticsInspector.cs | 4 +- .../Inspectors/AspNet/AjaxInspector.cs | 4 +- .../AspNet/AspNetDiagnosticsInspector.cs | 4 +- .../Inspectors/AspNet/EnvironmentInspector.cs | 4 +- .../Inspectors/AspNet/ExceptionProcessor.cs | 4 +- .../Inspectors/AspNet/IExceptionProcessor.cs | 4 +- .../Inspectors/AspNet/UserInspector.cs | 6 +- .../Inspectors/EF/EFDiagnosticsInspector.cs | 4 +- .../Inspectors/EF/Proxies/IDbCommand.cs | 4 +- .../Inspectors/Mvc/MvcDiagnosticsInspector.cs | 4 +- .../Mvc/Proxies/ActionResultTypes.cs | 4 +- .../Inspectors/Mvc/Proxies/IActionContext.cs | 4 +- .../Mvc/Proxies/IActionDescriptor.cs | 4 +- .../Inspectors/Mvc/Proxies/IActionResult.cs | 3 +- .../Inspectors/Mvc/Proxies/IRouteData.cs | 3 +- .../Internal/Inspectors/Mvc/Proxies/IView.cs | 3 +- .../Mvc/Proxies/IViewComponentContext.cs | 3 +- .../Mvc/Proxies/IViewComponentDescriptor.cs | 6 +- .../Inspectors/Mvc/Proxies/IViewContext.cs | 4 +- .../Inspectors/Mvc/Proxies/ProxyAdapter.cs | 4 +- .../Inspectors/WebDiagnosticsInspector.cs | 4 +- src/Glimpse.Agent.AspNet/_DNX_project.json | 31 + .../_DNX_project.lock.json | 9923 +++++++++++++++++ src/Glimpse.Agent.AspNet/project.json | 12 +- src/Glimpse.Common/Glimpse.Common.xproj | 2 +- src/Glimpse.Common/GlimpseOptions.cs | 5 +- src/Glimpse.Common/GlimpseServices.cs | 11 +- .../Initialization/IRegisterServices.cs | 8 +- .../OptionsResourceOptionsProvider.cs | 2 +- .../ApplicationBuilderExtensions.cs | 4 +- .../GlimpseServiceCollectionBuilder.cs | 6 +- .../GlimpseServiceCollectionExtensions.cs | 6 +- .../Initialization/IRegisterMiddleware.cs | 4 +- .../Reflection/DefaultAssemblyProvider.cs | 6 +- src/Glimpse.Common/_DNX_project.json | 39 + src/Glimpse.Common/_DNX_project.lock.json | 6677 +++++++++++ src/Glimpse.Common/project.json | 14 +- .../Configuration/AllowAgentAccessOptions.cs | 2 +- .../Configuration/AllowClientAccessOptions.cs | 2 +- src/Glimpse.Server/ServerServices.cs | 10 +- .../{ => _DNX}/GlimpseServerMiddleware.cs | 6 +- .../GlimpseServerServiceCollectionBuilder.cs | 6 +- ...limpseServerServiceCollectionExtensions.cs | 6 +- .../{ => _DNX}/ServerMiddleware.cs | 6 +- src/Glimpse.Server/_DNX_project.json | 28 + src/Glimpse.Server/_DNX_project.lock.json | 7747 +++++++++++++ src/Glimpse.Server/project.json | 5 +- systemweb.cmd | 29 + 63 files changed, 24780 insertions(+), 173 deletions(-) create mode 100644 Glimpse.SystemWeb.sln rename src/Glimpse.Agent.AspNet/{ => _DNX}/AgentMiddleware.cs (97%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/GlimpseAgentMiddleware.cs (95%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/GlimpseAgentServiceCollectionBuilder.cs (79%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/GlimpseAgentServiceCollectionExtensions.cs (86%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Inspectors/DefaultInspectorFunctionManager.cs (95%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Inspectors/IInspectorFunction.cs (69%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Inspectors/IInspectorFunctionBuilder.cs (90%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Inspectors/IInspectorFunctionManager.cs (81%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Inspectors/InspectorFunctionBuilder.cs (95%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Inspectors/InspectorsInspectorFunction.cs (94%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/AgentStartupWebDiagnosticsInspector.cs (95%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/AspNet/AjaxInspector.cs (96%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/AspNet/AspNetDiagnosticsInspector.cs (99%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/AspNet/EnvironmentInspector.cs (98%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/AspNet/ExceptionProcessor.cs (99%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/AspNet/IExceptionProcessor.cs (93%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/AspNet/UserInspector.cs (99%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/EF/EFDiagnosticsInspector.cs (98%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/EF/Proxies/IDbCommand.cs (68%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/Mvc/MvcDiagnosticsInspector.cs (99%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/Mvc/Proxies/ActionResultTypes.cs (98%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/Mvc/Proxies/IActionContext.cs (83%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/Mvc/Proxies/IActionDescriptor.cs (91%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/Mvc/Proxies/IActionResult.cs (86%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/Mvc/Proxies/IRouteData.cs (97%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/Mvc/Proxies/IView.cs (88%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/Mvc/Proxies/IViewComponentContext.cs (92%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/Mvc/Proxies/IViewComponentDescriptor.cs (67%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/Mvc/Proxies/IViewContext.cs (93%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/Mvc/Proxies/ProxyAdapter.cs (98%) rename src/Glimpse.Agent.AspNet/{ => _DNX}/Internal/Inspectors/WebDiagnosticsInspector.cs (94%) create mode 100644 src/Glimpse.Agent.AspNet/_DNX_project.json create mode 100644 src/Glimpse.Agent.AspNet/_DNX_project.lock.json rename src/Glimpse.Common/{ => _DNX}/ApplicationBuilderExtensions.cs (92%) rename src/Glimpse.Common/{ => _DNX}/GlimpseServiceCollectionBuilder.cs (87%) rename src/Glimpse.Common/{ => _DNX}/GlimpseServiceCollectionExtensions.cs (93%) rename src/Glimpse.Common/{ => _DNX}/Initialization/IRegisterMiddleware.cs (76%) rename src/Glimpse.Common/{ => _DNX}/Internal/Reflection/DefaultAssemblyProvider.cs (91%) create mode 100644 src/Glimpse.Common/_DNX_project.json create mode 100644 src/Glimpse.Common/_DNX_project.lock.json rename src/Glimpse.Server/{ => _DNX}/GlimpseServerMiddleware.cs (99%) rename src/Glimpse.Server/{ => _DNX}/GlimpseServerServiceCollectionBuilder.cs (79%) rename src/Glimpse.Server/{ => _DNX}/GlimpseServerServiceCollectionExtensions.cs (95%) rename src/Glimpse.Server/{ => _DNX}/ServerMiddleware.cs (84%) create mode 100644 src/Glimpse.Server/_DNX_project.json create mode 100644 src/Glimpse.Server/_DNX_project.lock.json create mode 100644 systemweb.cmd diff --git a/Glimpse.SystemWeb.sln b/Glimpse.SystemWeb.sln new file mode 100644 index 00000000..da45e691 --- /dev/null +++ b/Glimpse.SystemWeb.sln @@ -0,0 +1,54 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.23107.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{6AD4BC4F-CA12-4EE0-A6D5-BBE4B9CC56EC}" + ProjectSection(SolutionItems) = preProject + src\readme.md = src\readme.md + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{618A5846-961D-4DBE-8850-678F01CB61D1}" + ProjectSection(SolutionItems) = preProject + global.json = global.json + NuGet.Config = NuGet.Config + EndProjectSection +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Glimpse.Common", "src\Glimpse.Common\Glimpse.Common.xproj", "{C0FB7983-E851-4567-8540-153F9B7EC42D}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{214245A9-D0ED-479C-B514-B482510C5F73}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Glimpse.Server", "src\Glimpse.Server\Glimpse.Server.xproj", "{C6EFFA30-9D16-412C-8FD7-C87B909E030E}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Glimpse.Agent.AspNet", "src\Glimpse.Agent.AspNet\Glimpse.Agent.AspNet.xproj", "{06F2EF61-61D8-40C9-8BEE-EBF64352DE6F}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "sample", "sample", "{4F6B131C-CBEE-44D2-891A-FD88998A3331}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C0FB7983-E851-4567-8540-153F9B7EC42D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C0FB7983-E851-4567-8540-153F9B7EC42D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C0FB7983-E851-4567-8540-153F9B7EC42D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C0FB7983-E851-4567-8540-153F9B7EC42D}.Release|Any CPU.Build.0 = Release|Any CPU + {C6EFFA30-9D16-412C-8FD7-C87B909E030E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C6EFFA30-9D16-412C-8FD7-C87B909E030E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C6EFFA30-9D16-412C-8FD7-C87B909E030E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C6EFFA30-9D16-412C-8FD7-C87B909E030E}.Release|Any CPU.Build.0 = Release|Any CPU + {06F2EF61-61D8-40C9-8BEE-EBF64352DE6F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {06F2EF61-61D8-40C9-8BEE-EBF64352DE6F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {06F2EF61-61D8-40C9-8BEE-EBF64352DE6F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {06F2EF61-61D8-40C9-8BEE-EBF64352DE6F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {C0FB7983-E851-4567-8540-153F9B7EC42D} = {6AD4BC4F-CA12-4EE0-A6D5-BBE4B9CC56EC} + {C6EFFA30-9D16-412C-8FD7-C87B909E030E} = {6AD4BC4F-CA12-4EE0-A6D5-BBE4B9CC56EC} + {06F2EF61-61D8-40C9-8BEE-EBF64352DE6F} = {6AD4BC4F-CA12-4EE0-A6D5-BBE4B9CC56EC} + EndGlobalSection +EndGlobal diff --git a/src/Glimpse.Agent.AspNet/AgentServices.cs b/src/Glimpse.Agent.AspNet/AgentServices.cs index 6d2691a1..671b7dbc 100644 --- a/src/Glimpse.Agent.AspNet/AgentServices.cs +++ b/src/Glimpse.Agent.AspNet/AgentServices.cs @@ -1,22 +1,24 @@ using System.IO; -using Glimpse.Common.Initialization; +using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.DependencyInjection.Extensions; +using Microsoft.Extensions.OptionsModel; using Glimpse.Agent; using Glimpse.Agent.Internal.Messaging; using Glimpse.Agent.Configuration; using Glimpse.Agent.Inspectors; +using Glimpse.Common.Initialization; using Glimpse.Initialization; -using Microsoft.Extensions.OptionsModel; using System.Linq; +#if DNX using Glimpse.Agent.Internal.Inspectors; -using Microsoft.Extensions.Configuration; -using Microsoft.Extensions.DependencyInjection.Extensions; +#endif namespace Glimpse { public class AgentServices : IRegisterServices { - public void RegisterServices(GlimpseServiceCollectionBuilder services) + public void RegisterServices(IServiceCollection services) { services.AddOptions(); @@ -35,9 +37,11 @@ public void RegisterServices(GlimpseServiceCollectionBuilder services) services.AddSingleton(); services.AddSingleton(); services.AddSingleton, DefaultExtensionProvider>(); - services.AddSingleton, DefaultExtensionProvider>(); services.AddSingleton, DefaultExtensionProvider>(); services.AddSingleton, DefaultExtensionProvider>(); +#if DNX + services.AddSingleton, DefaultExtensionProvider>(); +#endif // // Messages. @@ -52,15 +56,21 @@ public void RegisterServices(GlimpseServiceCollectionBuilder services) // services.AddTransient(); services.AddTransient(); +#if DNX services.AddTransient(); + // TODO: make work outside of DNX services.AddTransient(); services.AddTransient(); +#endif - if (!services.Any(s => s.ServiceType == typeof(IResourceOptionsProvider))) + // TODO: switch to tryadd + if (!services.Any(s => s.ServiceType == typeof (IResourceOptionsProvider))) + { services.AddSingleton(); + } } - - private void RegisterPublisher(GlimpseServiceCollectionBuilder services) + + private void RegisterPublisher(IServiceCollection services) { var configurationBuilder = new ConfigurationBuilder(); var path = Path.Combine(configurationBuilder.GetBasePath(), "glimpse.json"); diff --git a/src/Glimpse.Agent.AspNet/Configuration/RequestIgnorerOptionsShouldIgnore.cs b/src/Glimpse.Agent.AspNet/Configuration/RequestIgnorerOptionsShouldIgnore.cs index 7d8d7991..daa55bc2 100644 --- a/src/Glimpse.Agent.AspNet/Configuration/RequestIgnorerOptionsShouldIgnore.cs +++ b/src/Glimpse.Agent.AspNet/Configuration/RequestIgnorerOptionsShouldIgnore.cs @@ -18,4 +18,4 @@ public bool ShouldIgnore(HttpContext context) return _shouldIgnore != null ? _shouldIgnore(context) : false; } } -} +} \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Glimpse.Agent.AspNet.xproj b/src/Glimpse.Agent.AspNet/Glimpse.Agent.AspNet.xproj index ca395693..98008138 100644 --- a/src/Glimpse.Agent.AspNet/Glimpse.Agent.AspNet.xproj +++ b/src/Glimpse.Agent.AspNet/Glimpse.Agent.AspNet.xproj @@ -15,7 +15,7 @@ - + diff --git a/src/Glimpse.Agent.AspNet/Inspectors/Tab.cs b/src/Glimpse.Agent.AspNet/Inspectors/Tab.cs index 82a95c5b..2cc3ff62 100644 --- a/src/Glimpse.Agent.AspNet/Inspectors/Tab.cs +++ b/src/Glimpse.Agent.AspNet/Inspectors/Tab.cs @@ -1,63 +1,68 @@ -using System; -using Glimpse.Agent.AspNet.Messages; -using Microsoft.AspNet.Http; -using Microsoft.AspNet.Http.Internal; -using Microsoft.Extensions.DependencyInjection; - -namespace Glimpse.Agent.Inspectors -{ - // TODO: Is this what we want to name this type? - public abstract class Tab : Inspector - { - private IAgentBroker _broker; - public IAgentBroker Broker - { - get - { - if (_broker == null) - { - // TODO: this doesn't work - var httpContextAccessor = new HttpContextAccessor(); - _broker = httpContextAccessor.HttpContext.RequestServices.GetService(); - } - - return _broker; - } - set { _broker = value; } - } - - public override void Before(HttpContext context) - { - if (ExecuteWhen == Execute.BeforeResponse) - Publish(context); - } - - public override void After(HttpContext context) - { - if (ExecuteWhen == Execute.AfterResponse) - Publish(context); - } - - private void Publish(HttpContext context) - { - object data = null; - try - { - data = GetData(context); - } - catch (Exception exception) - { - data = exception; - } - - Broker.SendMessage(new TabMessage(Name, data)); - } - - public virtual Execute ExecuteWhen => Execute.AfterResponse; - - public abstract string Name { get; } - - // TODO: Is HttpContext the right type to pass in here? - public abstract object GetData(HttpContext context); - } -} \ No newline at end of file +//using System; +//using Glimpse.Agent.AspNet.Messages; +//using Microsoft.AspNet.Http; +//#if DNX +//using Microsoft.AspNet.Http.Internal; +//using Microsoft.Extensions.DependencyInjection; +//#endif + +//namespace Glimpse.Agent.Inspectors +//{ +// // TODO: Is this what we want to name this type? +// public abstract class Tab : Inspector +// { +//// TODO: Need to fix this up, there should be a better way +//#if DNX +// private IAgentBroker _broker; +// public IAgentBroker Broker +// { +// get +// { +// if (_broker == null) +// { +// // TODO: this doesn't work +// var httpContextAccessor = new HttpContextAccessor(); +// _broker = httpContextAccessor.HttpContext.RequestServices.GetService(); +// } + +// return _broker; +// } +// set { _broker = value; } +// } +//#endif + +// public override void Before(HttpContext context) +// { +// if (ExecuteWhen == Execute.BeforeResponse) +// Publish(context); +// } + +// public override void After(HttpContext context) +// { +// if (ExecuteWhen == Execute.AfterResponse) +// Publish(context); +// } + +// private void Publish(HttpContext context) +// { +// object data = null; +// try +// { +// data = GetData(context); +// } +// catch (Exception exception) +// { +// data = exception; +// } + +// Broker.SendMessage(new TabMessage(Name, data)); +// } + +// public virtual Execute ExecuteWhen => Execute.AfterResponse; + +// public abstract string Name { get; } + +// // TODO: Is HttpContext the right type to pass in here? +// public abstract object GetData(HttpContext context); +// } +//} \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/AgentMiddleware.cs b/src/Glimpse.Agent.AspNet/_DNX/AgentMiddleware.cs similarity index 97% rename from src/Glimpse.Agent.AspNet/AgentMiddleware.cs rename to src/Glimpse.Agent.AspNet/_DNX/AgentMiddleware.cs index b3149db0..5fbf6439 100644 --- a/src/Glimpse.Agent.AspNet/AgentMiddleware.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/AgentMiddleware.cs @@ -1,3 +1,4 @@ +#if DNX using Glimpse.Common.Initialization; using Glimpse.Initialization; using Microsoft.AspNet.Builder; @@ -15,4 +16,5 @@ public void RegisterMiddleware(IApplicationBuilder appBuilder) appBuilder.UseMiddleware(appBuilder); } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/GlimpseAgentMiddleware.cs b/src/Glimpse.Agent.AspNet/_DNX/GlimpseAgentMiddleware.cs similarity index 95% rename from src/Glimpse.Agent.AspNet/GlimpseAgentMiddleware.cs rename to src/Glimpse.Agent.AspNet/_DNX/GlimpseAgentMiddleware.cs index 58444b89..9c270d1b 100644 --- a/src/Glimpse.Agent.AspNet/GlimpseAgentMiddleware.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/GlimpseAgentMiddleware.cs @@ -1,4 +1,5 @@ -using System.Threading.Tasks; +#if DNX +using System.Threading.Tasks; using Glimpse.Agent.Configuration; using Glimpse.Agent.Inspectors; using Microsoft.AspNet.Builder; @@ -32,3 +33,4 @@ public async Task Invoke(HttpContext context) } } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/GlimpseAgentServiceCollectionBuilder.cs b/src/Glimpse.Agent.AspNet/_DNX/GlimpseAgentServiceCollectionBuilder.cs similarity index 79% rename from src/Glimpse.Agent.AspNet/GlimpseAgentServiceCollectionBuilder.cs rename to src/Glimpse.Agent.AspNet/_DNX/GlimpseAgentServiceCollectionBuilder.cs index 2e9dfc91..be410bdc 100644 --- a/src/Glimpse.Agent.AspNet/GlimpseAgentServiceCollectionBuilder.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/GlimpseAgentServiceCollectionBuilder.cs @@ -1,4 +1,5 @@ -using Microsoft.Extensions.DependencyInjection; +#if DNX +using Microsoft.Extensions.DependencyInjection; namespace Glimpse { @@ -9,4 +10,5 @@ public GlimpseAgentServiceCollectionBuilder(IServiceCollection innerCollection) { } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/GlimpseAgentServiceCollectionExtensions.cs b/src/Glimpse.Agent.AspNet/_DNX/GlimpseAgentServiceCollectionExtensions.cs similarity index 86% rename from src/Glimpse.Agent.AspNet/GlimpseAgentServiceCollectionExtensions.cs rename to src/Glimpse.Agent.AspNet/_DNX/GlimpseAgentServiceCollectionExtensions.cs index 4d6adfb5..c40a428a 100644 --- a/src/Glimpse.Agent.AspNet/GlimpseAgentServiceCollectionExtensions.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/GlimpseAgentServiceCollectionExtensions.cs @@ -1,5 +1,5 @@ -using Microsoft.Extensions.DependencyInjection; -using Microsoft.Extensions.DependencyInjection.Extensions; +#if DNX +using Microsoft.Extensions.DependencyInjection; using System; using Glimpse.Agent; @@ -22,4 +22,5 @@ public static GlimpseAgentServiceCollectionBuilder RunningAgentWeb(this GlimpseS return new GlimpseAgentServiceCollectionBuilder(services); } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Inspectors/DefaultInspectorFunctionManager.cs b/src/Glimpse.Agent.AspNet/_DNX/Inspectors/DefaultInspectorFunctionManager.cs similarity index 95% rename from src/Glimpse.Agent.AspNet/Inspectors/DefaultInspectorFunctionManager.cs rename to src/Glimpse.Agent.AspNet/_DNX/Inspectors/DefaultInspectorFunctionManager.cs index e34530a6..8d7dc356 100644 --- a/src/Glimpse.Agent.AspNet/Inspectors/DefaultInspectorFunctionManager.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Inspectors/DefaultInspectorFunctionManager.cs @@ -1,4 +1,5 @@ -using System.Collections.Generic; +#if DNX +using System.Collections.Generic; using Glimpse.Initialization; using Microsoft.AspNet.Builder; using Microsoft.AspNet.Http; @@ -32,4 +33,5 @@ public RequestDelegate BuildInspectorBranch(RequestDelegate next, IApplicationBu return branchBuilder.Build(); } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunction.cs b/src/Glimpse.Agent.AspNet/_DNX/Inspectors/IInspectorFunction.cs similarity index 69% rename from src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunction.cs rename to src/Glimpse.Agent.AspNet/_DNX/Inspectors/IInspectorFunction.cs index ecbe0e41..20eaf13b 100644 --- a/src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunction.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Inspectors/IInspectorFunction.cs @@ -1,7 +1,9 @@ -namespace Glimpse.Agent.Inspectors +#if DNX +namespace Glimpse.Agent.Inspectors { public interface IInspectorFunction { void Configure(IInspectorFunctionBuilder inspectorBuilder); } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunctionBuilder.cs b/src/Glimpse.Agent.AspNet/_DNX/Inspectors/IInspectorFunctionBuilder.cs similarity index 90% rename from src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunctionBuilder.cs rename to src/Glimpse.Agent.AspNet/_DNX/Inspectors/IInspectorFunctionBuilder.cs index 74b12cf6..876519b0 100644 --- a/src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunctionBuilder.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Inspectors/IInspectorFunctionBuilder.cs @@ -1,4 +1,5 @@ -using System; +#if DNX +using System; using System.Threading.Tasks; using Microsoft.AspNet.Builder; using Microsoft.AspNet.Http; @@ -11,4 +12,5 @@ public interface IInspectorFunctionBuilder IInspectorFunctionBuilder Use(Func, Task> middleware); } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunctionManager.cs b/src/Glimpse.Agent.AspNet/_DNX/Inspectors/IInspectorFunctionManager.cs similarity index 81% rename from src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunctionManager.cs rename to src/Glimpse.Agent.AspNet/_DNX/Inspectors/IInspectorFunctionManager.cs index f38876ae..3c613917 100644 --- a/src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunctionManager.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Inspectors/IInspectorFunctionManager.cs @@ -1,4 +1,5 @@ -using Microsoft.AspNet.Builder; +#if DNX +using Microsoft.AspNet.Builder; using Microsoft.AspNet.Http; namespace Glimpse.Agent.Inspectors @@ -7,4 +8,5 @@ public interface IInspectorFunctionManager { RequestDelegate BuildInspectorBranch(RequestDelegate next, IApplicationBuilder app); } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Inspectors/InspectorFunctionBuilder.cs b/src/Glimpse.Agent.AspNet/_DNX/Inspectors/InspectorFunctionBuilder.cs similarity index 95% rename from src/Glimpse.Agent.AspNet/Inspectors/InspectorFunctionBuilder.cs rename to src/Glimpse.Agent.AspNet/_DNX/Inspectors/InspectorFunctionBuilder.cs index d939c649..a40a7097 100644 --- a/src/Glimpse.Agent.AspNet/Inspectors/InspectorFunctionBuilder.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Inspectors/InspectorFunctionBuilder.cs @@ -1,4 +1,5 @@ -using System; +#if DNX +using System; using System.Threading.Tasks; using Microsoft.AspNet.Builder; using Microsoft.AspNet.Http; @@ -20,4 +21,5 @@ public IInspectorFunctionBuilder Use(Func, Task> middlew return (newAppBuilder != AppBuilder) ? new InspectorFunctionBuilder(newAppBuilder) : this; } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Inspectors/InspectorsInspectorFunction.cs b/src/Glimpse.Agent.AspNet/_DNX/Inspectors/InspectorsInspectorFunction.cs similarity index 94% rename from src/Glimpse.Agent.AspNet/Inspectors/InspectorsInspectorFunction.cs rename to src/Glimpse.Agent.AspNet/_DNX/Inspectors/InspectorsInspectorFunction.cs index 787ab7a0..dab1146f 100644 --- a/src/Glimpse.Agent.AspNet/Inspectors/InspectorsInspectorFunction.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Inspectors/InspectorsInspectorFunction.cs @@ -1,4 +1,5 @@ -using System.Collections.Generic; +#if DNX +using System.Collections.Generic; using Glimpse.Initialization; namespace Glimpse.Agent.Inspectors @@ -31,3 +32,4 @@ public void Configure(IInspectorFunctionBuilder builder) } } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/AgentStartupWebDiagnosticsInspector.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AgentStartupWebDiagnosticsInspector.cs similarity index 95% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/AgentStartupWebDiagnosticsInspector.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AgentStartupWebDiagnosticsInspector.cs index 2b4e96b4..7e794ff8 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/AgentStartupWebDiagnosticsInspector.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AgentStartupWebDiagnosticsInspector.cs @@ -1,4 +1,5 @@ -using System.Diagnostics; +#if DNX +using System.Diagnostics; using Glimpse.Agent; using Glimpse.Agent.Configuration; using Glimpse.Initialization; @@ -29,3 +30,4 @@ private bool IsEnabled(string topic) } } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/AjaxInspector.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/AjaxInspector.cs similarity index 96% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/AjaxInspector.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/AjaxInspector.cs index 2f096f38..083748cc 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/AjaxInspector.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/AjaxInspector.cs @@ -1,4 +1,5 @@ -using System; +#if DNX +using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; @@ -28,3 +29,4 @@ public override void Before(HttpContext context) } } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/AspNetDiagnosticsInspector.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/AspNetDiagnosticsInspector.cs similarity index 99% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/AspNetDiagnosticsInspector.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/AspNetDiagnosticsInspector.cs index 054ea829..2f0d29d1 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/AspNetDiagnosticsInspector.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/AspNetDiagnosticsInspector.cs @@ -1,4 +1,5 @@ -using System; +#if DNX +using System; using System.Linq; using Glimpse.Agent.Messages; using Microsoft.AspNet.Http; @@ -117,3 +118,4 @@ private void ProcessException(IExceptionMessage message, Exception exception, bo } } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/EnvironmentInspector.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/EnvironmentInspector.cs similarity index 98% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/EnvironmentInspector.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/EnvironmentInspector.cs index 5b7d64a3..f8ef0b87 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/EnvironmentInspector.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/EnvironmentInspector.cs @@ -1,4 +1,5 @@ -using System; +#if DNX +using System; using Glimpse.Agent.AspNet.Messages; using Glimpse.Agent.Inspectors; using Microsoft.AspNet.Http; @@ -43,3 +44,4 @@ public override void Before(HttpContext context) } } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/ExceptionProcessor.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/ExceptionProcessor.cs similarity index 99% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/ExceptionProcessor.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/ExceptionProcessor.cs index eb108ea8..a5966947 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/ExceptionProcessor.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/ExceptionProcessor.cs @@ -1,3 +1,4 @@ +#if DNX using System; using System.Collections.Generic; using System.Globalization; @@ -210,4 +211,5 @@ public int ToInt32() } } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/IExceptionProcessor.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/IExceptionProcessor.cs similarity index 93% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/IExceptionProcessor.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/IExceptionProcessor.cs index 9fbca6aa..dcae54a0 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/IExceptionProcessor.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/IExceptionProcessor.cs @@ -1,3 +1,4 @@ +#if DNX using System; using System.Collections.Generic; using Glimpse.Agent.Messages; @@ -8,4 +9,5 @@ public interface IExceptionProcessor { IEnumerable GetErrorDetails(Exception ex); } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/UserInspector.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/UserInspector.cs similarity index 99% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/UserInspector.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/UserInspector.cs index e6672484..d268eaf2 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/UserInspector.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/AspNet/UserInspector.cs @@ -1,4 +1,5 @@ -using System.Collections.Concurrent; +#if DNX +using System.Collections.Concurrent; using System.Globalization; using System.Text; using Glimpse.Agent.Inspectors; @@ -171,4 +172,5 @@ private string GenerateUsername(string seed) return builder.ToString().Replace(" ", ""); } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/EF/EFDiagnosticsInspector.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/EF/EFDiagnosticsInspector.cs similarity index 98% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/EF/EFDiagnosticsInspector.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/EF/EFDiagnosticsInspector.cs index 779d61dd..df0e5794 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/EF/EFDiagnosticsInspector.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/EF/EFDiagnosticsInspector.cs @@ -1,4 +1,5 @@ -using System; +#if DNX +using System; using System.Collections.Generic; using System.Linq; using Glimpse.Agent.Internal.Inspectors.EF.Proxies; @@ -75,3 +76,4 @@ public void OnAfterExecuteCommand(IDbCommand command, string executeMethod, bool } } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/EF/Proxies/IDbCommand.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/EF/Proxies/IDbCommand.cs similarity index 68% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/EF/Proxies/IDbCommand.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/EF/Proxies/IDbCommand.cs index c3a5ec97..966234c3 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/EF/Proxies/IDbCommand.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/EF/Proxies/IDbCommand.cs @@ -1,4 +1,5 @@ -namespace Glimpse.Agent.Internal.Inspectors.EF.Proxies +#if DNX +namespace Glimpse.Agent.Internal.Inspectors.EF.Proxies { public interface IDbCommand { @@ -9,3 +10,4 @@ public interface IDbCommand object Parameters { get; } } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/MvcDiagnosticsInspector.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/MvcDiagnosticsInspector.cs similarity index 99% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/MvcDiagnosticsInspector.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/MvcDiagnosticsInspector.cs index 28773f21..d342bcfe 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/MvcDiagnosticsInspector.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/MvcDiagnosticsInspector.cs @@ -1,4 +1,5 @@ -using System; +#if DNX +using System; using System.Collections.Generic; using System.Linq; using Glimpse.Agent.Internal.Inspectors.Mvc.Proxies; @@ -414,3 +415,4 @@ private IActionDescriptor ConvertActionDescriptor(object actionDescriptor) } } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/ActionResultTypes.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/ActionResultTypes.cs similarity index 98% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/ActionResultTypes.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/ActionResultTypes.cs index d78ec3f4..61451085 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/ActionResultTypes.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/ActionResultTypes.cs @@ -1,3 +1,4 @@ +#if DNX using System; using System.Collections.Generic; @@ -36,4 +37,5 @@ public interface IFileResult string ContentType { get; } } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IActionContext.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IActionContext.cs similarity index 83% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IActionContext.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IActionContext.cs index 4cc11929..457e1809 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IActionContext.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IActionContext.cs @@ -1,4 +1,5 @@ -using Microsoft.AspNet.Http; +#if DNX +using Microsoft.AspNet.Http; namespace Glimpse.Agent.Internal.Inspectors.Mvc.Proxies { @@ -9,3 +10,4 @@ public interface IActionContext IRouteData RouteData { get; } } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IActionDescriptor.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IActionDescriptor.cs similarity index 91% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IActionDescriptor.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IActionDescriptor.cs index 440cdffb..c1b29ff9 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IActionDescriptor.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IActionDescriptor.cs @@ -1,4 +1,5 @@ -using System; +#if DNX +using System; using System.Reflection; namespace Glimpse.Agent.Internal.Inspectors.Mvc.Proxies @@ -13,3 +14,4 @@ public interface IActionDescriptor MethodInfo MethodInfo { get; } } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IActionResult.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IActionResult.cs similarity index 86% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IActionResult.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IActionResult.cs index 88403fe3..d233fd33 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IActionResult.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IActionResult.cs @@ -1,7 +1,8 @@ - +#if DNX namespace Glimpse.Agent.Internal.Inspectors.Mvc.Proxies { public interface IActionResult { } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IRouteData.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IRouteData.cs similarity index 97% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IRouteData.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IRouteData.cs index 6eda1cc0..b02fc8f9 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IRouteData.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IRouteData.cs @@ -1,4 +1,4 @@ - +#if DNX using System.Collections.Generic; namespace Glimpse.Agent.Internal.Inspectors.Mvc.Proxies @@ -30,3 +30,4 @@ public interface IRouterTemplatePart bool IsOptional { get; } } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IView.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IView.cs similarity index 88% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IView.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IView.cs index 58c3da6f..26e35edf 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IView.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IView.cs @@ -1,4 +1,4 @@ - +#if DNX namespace Glimpse.Agent.Internal.Inspectors.Mvc.Proxies { public interface IView @@ -6,3 +6,4 @@ public interface IView string Path { get; } } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IViewComponentContext.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IViewComponentContext.cs similarity index 92% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IViewComponentContext.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IViewComponentContext.cs index 1ca9fe15..9605767d 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IViewComponentContext.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IViewComponentContext.cs @@ -1,4 +1,4 @@ - +#if DNX namespace Glimpse.Agent.Internal.Inspectors.Mvc.Proxies { public interface IViewComponentContext @@ -8,3 +8,4 @@ public interface IViewComponentContext object[] Arguments { get; } } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IViewComponentDescriptor.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IViewComponentDescriptor.cs similarity index 67% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IViewComponentDescriptor.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IViewComponentDescriptor.cs index 42b3826b..b6b21b4b 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IViewComponentDescriptor.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IViewComponentDescriptor.cs @@ -1,4 +1,5 @@ -namespace Glimpse.Agent.Internal.Inspectors.Mvc.Proxies +#if DNX +namespace Glimpse.Agent.Internal.Inspectors.Mvc.Proxies { public interface IViewComponentDescriptor { @@ -6,4 +7,5 @@ public interface IViewComponentDescriptor string FullName { get; } string ShortName { get; } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IViewContext.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IViewContext.cs similarity index 93% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IViewContext.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IViewContext.cs index 565c36b4..0e315dfc 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IViewContext.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/IViewContext.cs @@ -1,4 +1,5 @@ -using System; +#if DNX +using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; @@ -15,3 +16,4 @@ public interface IViewContext IDictionary ViewData { get; } } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/ProxyAdapter.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/ProxyAdapter.cs similarity index 98% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/ProxyAdapter.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/ProxyAdapter.cs index d2d39273..3576ce08 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/ProxyAdapter.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/Mvc/Proxies/ProxyAdapter.cs @@ -1,3 +1,4 @@ +#if DNX using System; using System.Collections.Generic; using Microsoft.Extensions.DiagnosticAdapter.Internal; @@ -53,4 +54,5 @@ private class Subscription public Type ProxiedType { get; set; } } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/Internal/Inspectors/WebDiagnosticsInspector.cs b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/WebDiagnosticsInspector.cs similarity index 94% rename from src/Glimpse.Agent.AspNet/Internal/Inspectors/WebDiagnosticsInspector.cs rename to src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/WebDiagnosticsInspector.cs index 53f7676d..cc5e9841 100644 --- a/src/Glimpse.Agent.AspNet/Internal/Inspectors/WebDiagnosticsInspector.cs +++ b/src/Glimpse.Agent.AspNet/_DNX/Internal/Inspectors/WebDiagnosticsInspector.cs @@ -1,4 +1,5 @@ -using Glimpse.Agent.Internal.Inspectors.Mvc.Proxies; +#if DNX +using Glimpse.Agent.Internal.Inspectors.Mvc.Proxies; using Glimpse.Internal; using Microsoft.Extensions.Logging; @@ -33,3 +34,4 @@ public WebDiagnosticsInspector(IExceptionProcessor exceptionProcessor, IAgentBro partial void MvcOnCreated(); } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/_DNX_project.json b/src/Glimpse.Agent.AspNet/_DNX_project.json new file mode 100644 index 00000000..b6ccf7db --- /dev/null +++ b/src/Glimpse.Agent.AspNet/_DNX_project.json @@ -0,0 +1,31 @@ +{ + "version": "2.0.0-*", + "authors": [ "nmolnar", "avanderhoorn" ], + "owners": [ "nmolnar", "avanderhoorn" ], + "title": "Glimpse Agent for ASP.NET", + "licenseUrl": "https://github.com/Glimpse/Glimpse.Prototype/blob/dev/LICENSE.txt", + "projectUrl": "http://getglimpse.com", + "iconUrl": "http://getglimpse.com/content/glimpse100.png", + "requireLicenseAcceptance": false, + "description": "The infrastructure and extensibility points required to enable Glimpse to gather diagnostics information from ASP.NET web applications.", + "summary": "Glimpse.Agent.AspNet contains infrastructure and extensibility points for gathering diagnostics information from ASP.NET web applications.", + "releaseNotes": "Initial release of Glimpse.Agent.AspNet.", + "tags": [ "ASP.NET", "Web", "Debugging", "Diagnostics", "Agent", "MVC", "EF", "EntityFramework" ], + "compilationOptions": { + "define": [ "DNX" ] + }, + "dependencies": { + "Glimpse.Common": "", + "Microsoft.AspNet.Hosting": "1.0.0-*", + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-*", + "Microsoft.AspNet.WebApi.Client": "5.2.2", + "Microsoft.Extensions.DiagnosticAdapter": "1.0.0-*", + "Microsoft.Extensions.Configuration.Json": "1.0.0-*", + "System.Net.Http": "4.0.0", + "System.Diagnostics.DiagnosticSource": "4.0.0-beta-*" + }, + "frameworks": { + "net451": { }, + "dotnet5.4": { } + } +} \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/_DNX_project.lock.json b/src/Glimpse.Agent.AspNet/_DNX_project.lock.json new file mode 100644 index 00000000..48ddb7b0 --- /dev/null +++ b/src/Glimpse.Agent.AspNet/_DNX_project.lock.json @@ -0,0 +1,9923 @@ +{ + "locked": false, + "version": 2, + "targets": { + ".NETFramework,Version=v4.5.1": { + "Glimpse.Common/2.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5.1", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.OptionsModel": "1.0.0", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5" + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15838", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Http": "1.0.0-rc2-16009", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", + "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16237", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging": "1.0.0-rc2-15867", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebApi.Client/5.2.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "6.0.4" + }, + "frameworkAssemblies": [ + "System.Net.Http" + ], + "compile": { + "lib/net45/System.Net.Http.Formatting.dll": {} + }, + "runtime": { + "lib/net45/System.Net.Http.Formatting.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16237": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15866", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15849": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core", + "System.Linq", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/net45/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Diagnostics.Tracing": "4.0.0", + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.IO/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Net.Http/4.0.0": { + "type": "package", + "frameworkAssemblies": [ + "System.Net.Http" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Threading/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + ".NETPlatform,Version=v5.4": { + "Glimpse.Common/2.0.0": { + "type": "project", + "framework": ".NETPlatform,Version=v5.4", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.OptionsModel": "1.0.0", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5", + "System.ObjectModel": "4.0.11", + "System.Runtime": "4.0.21", + "System.Security.Cryptography.Algorithms": "4.0.0", + "System.Text.RegularExpressions": "4.0.11", + "System.Threading": "4.0.11" + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.IO": "4.0.11-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.IO.FileSystem.Primitives": "4.0.1-rc2-23525", + "System.IO.FileSystem.Watcher": "4.0.0-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Text.RegularExpressions": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15838", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Http": "1.0.0-rc2-16009", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", + "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16237", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging": "1.0.0-rc2-15867", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", + "System.Console": "4.0.0-rc2-23525", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525", + "System.Diagnostics.StackTrace": "4.0.1-rc2-23525", + "System.Reflection.Extensions": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Text.Encoding": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Tools": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Globalization.Extensions": "4.0.1-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525", + "System.Text.Encodings.Web": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Collections": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebApi.Client/5.2.2": { + "type": "package", + "dependencies": { + "Microsoft.Net.Http": "2.2.22", + "Newtonsoft.Json": "6.0.4" + }, + "compile": { + "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {} + }, + "runtime": { + "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Bcl/1.1.9": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.Build": "1.0.14" + }, + "compile": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "Microsoft.Bcl.Build/1.0.14": { + "type": "package" + }, + "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16237": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", + "System.IO.FileSystem": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Linq": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "System.AppContext": "4.0.0" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15866", + "Newtonsoft.Json": "6.0.6", + "System.Dynamic.Runtime": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15849": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Emit": "4.0.1-rc2-23525", + "System.Reflection.Emit.Lightweight": "4.0.1-rc2-23525", + "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.0.10", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "dependencies": { + "System.AppContext": "4.0.1-rc2-23525", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Net.Http/2.2.22": { + "type": "package", + "dependencies": { + "Microsoft.Bcl": "1.1.9", + "Microsoft.Bcl.Build": "1.0.14" + }, + "compile": { + "lib/portable-net45+win8/System.Net.Http.Extensions.dll": {}, + "lib/portable-net45+win8/System.Net.Http.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Net.Http.Extensions.dll": {}, + "lib/portable-net45+win8/System.Net.Http.Primitives.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Contracts": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Globalization.Extensions": "4.0.1-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Text.Encoding": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + } + }, + "System.AppContext/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Collections.Concurrent.dll": {} + } + }, + "System.ComponentModel/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.ComponentModel": "4.0.0", + "System.ComponentModel.Primitives": "4.0.0", + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Console.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Diagnostics.Tracing": "4.0.0", + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Linq.Expressions": "4.0.10", + "System.ObjectModel": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Net.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.2/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet5.4/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Security.Claims/4.0.1-rc2-23525": { + "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.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Security.Principal": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Security.Principal.dll": {} + } + }, + "System.Text.Encoding/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.Tasks.dll": {} + } + } + }, + ".NETFramework,Version=v4.5.1/win7-x86": { + "Glimpse.Common/2.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5.1", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.OptionsModel": "1.0.0", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5" + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15838", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Http": "1.0.0-rc2-16009", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", + "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16237", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging": "1.0.0-rc2-15867", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebApi.Client/5.2.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "6.0.4" + }, + "frameworkAssemblies": [ + "System.Net.Http" + ], + "compile": { + "lib/net45/System.Net.Http.Formatting.dll": {} + }, + "runtime": { + "lib/net45/System.Net.Http.Formatting.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16237": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15866", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15849": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core", + "System.Linq", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/net45/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Diagnostics.Tracing": "4.0.0", + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.IO/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Net.Http/4.0.0": { + "type": "package", + "frameworkAssemblies": [ + "System.Net.Http" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Threading/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + ".NETFramework,Version=v4.5.1/win7-x64": { + "Glimpse.Common/2.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5.1", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.OptionsModel": "1.0.0", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5" + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15838", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Http": "1.0.0-rc2-16009", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", + "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16237", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging": "1.0.0-rc2-15867", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebApi.Client/5.2.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "6.0.4" + }, + "frameworkAssemblies": [ + "System.Net.Http" + ], + "compile": { + "lib/net45/System.Net.Http.Formatting.dll": {} + }, + "runtime": { + "lib/net45/System.Net.Http.Formatting.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16237": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15866", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15849": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core", + "System.Linq", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/net45/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Diagnostics.Tracing": "4.0.0", + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.IO/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Net.Http/4.0.0": { + "type": "package", + "frameworkAssemblies": [ + "System.Net.Http" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Threading/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + ".NETPlatform,Version=v5.4/win7-x86": { + "Glimpse.Common/2.0.0": { + "type": "project", + "framework": ".NETPlatform,Version=v5.4", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.OptionsModel": "1.0.0", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5", + "System.ObjectModel": "4.0.11", + "System.Runtime": "4.0.21", + "System.Security.Cryptography.Algorithms": "4.0.0", + "System.Text.RegularExpressions": "4.0.11", + "System.Threading": "4.0.11" + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.IO": "4.0.11-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.IO.FileSystem.Primitives": "4.0.1-rc2-23525", + "System.IO.FileSystem.Watcher": "4.0.0-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Text.RegularExpressions": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15838", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Http": "1.0.0-rc2-16009", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", + "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16237", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging": "1.0.0-rc2-15867", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", + "System.Console": "4.0.0-rc2-23525", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525", + "System.Diagnostics.StackTrace": "4.0.1-rc2-23525", + "System.Reflection.Extensions": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Text.Encoding": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Tools": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Globalization.Extensions": "4.0.1-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525", + "System.Text.Encodings.Web": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Collections": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebApi.Client/5.2.2": { + "type": "package", + "dependencies": { + "Microsoft.Net.Http": "2.2.22", + "Newtonsoft.Json": "6.0.4" + }, + "compile": { + "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {} + }, + "runtime": { + "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Bcl/1.1.9": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.Build": "1.0.14" + }, + "compile": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "Microsoft.Bcl.Build/1.0.14": { + "type": "package" + }, + "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16237": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", + "System.IO.FileSystem": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Linq": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "System.AppContext": "4.0.0" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15866", + "Newtonsoft.Json": "6.0.6", + "System.Dynamic.Runtime": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15849": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Emit": "4.0.1-rc2-23525", + "System.Reflection.Emit.Lightweight": "4.0.1-rc2-23525", + "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.0.10", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "dependencies": { + "System.AppContext": "4.0.1-rc2-23525", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Net.Http/2.2.22": { + "type": "package", + "dependencies": { + "Microsoft.Bcl": "1.1.9", + "Microsoft.Bcl.Build": "1.0.14" + }, + "compile": { + "lib/portable-net45+win8/System.Net.Http.Extensions.dll": {}, + "lib/portable-net45+win8/System.Net.Http.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Net.Http.Extensions.dll": {}, + "lib/portable-net45+win8/System.Net.Http.Primitives.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Contracts": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Globalization.Extensions": "4.0.1-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Text.Encoding": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "runtime.win7.System.Console/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Console.dll": {} + } + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} + } + }, + "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Collections.Concurrent": "4.0.0", + "System.Diagnostics.Debug": "4.0.10", + "System.Linq": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Globalization.Calendars": "4.0.0", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Runtime.Numerics": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Cng": "4.0.0-rc2-23525", + "System.Security.Cryptography.Csp": "4.0.0-rc2-23525", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "runtime.win7.System.Threading/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + } + }, + "System.AppContext/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Collections.Concurrent.dll": {} + } + }, + "System.ComponentModel/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.ComponentModel": "4.0.0", + "System.ComponentModel.Primitives": "4.0.0", + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Console.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Diagnostics.Tracing": "4.0.0", + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Linq.Expressions": "4.0.10", + "System.ObjectModel": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Net.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.2/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet5.4/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.1-rc2-23525": { + "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.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Security.Principal": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Security.Principal.dll": {} + } + }, + "System.Text.Encoding/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.Tasks.dll": {} + } + } + }, + ".NETPlatform,Version=v5.4/win7-x64": { + "Glimpse.Common/2.0.0": { + "type": "project", + "framework": ".NETPlatform,Version=v5.4", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.OptionsModel": "1.0.0", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5", + "System.ObjectModel": "4.0.11", + "System.Runtime": "4.0.21", + "System.Security.Cryptography.Algorithms": "4.0.0", + "System.Text.RegularExpressions": "4.0.11", + "System.Threading": "4.0.11" + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.IO": "4.0.11-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.IO.FileSystem.Primitives": "4.0.1-rc2-23525", + "System.IO.FileSystem.Watcher": "4.0.0-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Text.RegularExpressions": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15838", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Http": "1.0.0-rc2-16009", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", + "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16237", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging": "1.0.0-rc2-15867", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", + "System.Console": "4.0.0-rc2-23525", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525", + "System.Diagnostics.StackTrace": "4.0.1-rc2-23525", + "System.Reflection.Extensions": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Text.Encoding": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Tools": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Globalization.Extensions": "4.0.1-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525", + "System.Text.Encodings.Web": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Collections": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebApi.Client/5.2.2": { + "type": "package", + "dependencies": { + "Microsoft.Net.Http": "2.2.22", + "Newtonsoft.Json": "6.0.4" + }, + "compile": { + "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {} + }, + "runtime": { + "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Bcl/1.1.9": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.Build": "1.0.14" + }, + "compile": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "Microsoft.Bcl.Build/1.0.14": { + "type": "package" + }, + "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16237": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", + "System.IO.FileSystem": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Linq": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "System.AppContext": "4.0.0" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15866", + "Newtonsoft.Json": "6.0.6", + "System.Dynamic.Runtime": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15849": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Emit": "4.0.1-rc2-23525", + "System.Reflection.Emit.Lightweight": "4.0.1-rc2-23525", + "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.0.10", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "dependencies": { + "System.AppContext": "4.0.1-rc2-23525", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Net.Http/2.2.22": { + "type": "package", + "dependencies": { + "Microsoft.Bcl": "1.1.9", + "Microsoft.Bcl.Build": "1.0.14" + }, + "compile": { + "lib/portable-net45+win8/System.Net.Http.Extensions.dll": {}, + "lib/portable-net45+win8/System.Net.Http.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Net.Http.Extensions.dll": {}, + "lib/portable-net45+win8/System.Net.Http.Primitives.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Contracts": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Globalization.Extensions": "4.0.1-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Text.Encoding": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "runtime.win7.System.Console/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Console.dll": {} + } + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} + } + }, + "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Collections.Concurrent": "4.0.0", + "System.Diagnostics.Debug": "4.0.10", + "System.Linq": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Globalization.Calendars": "4.0.0", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Runtime.Numerics": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Cng": "4.0.0-rc2-23525", + "System.Security.Cryptography.Csp": "4.0.0-rc2-23525", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "runtime.win7.System.Threading/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + } + }, + "System.AppContext/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Collections.Concurrent.dll": {} + } + }, + "System.ComponentModel/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.ComponentModel": "4.0.0", + "System.ComponentModel.Primitives": "4.0.0", + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Console.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Diagnostics.Tracing": "4.0.0", + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Linq.Expressions": "4.0.10", + "System.ObjectModel": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Net.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.2/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet5.4/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.1-rc2-23525": { + "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.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Security.Principal": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Security.Principal.dll": {} + } + }, + "System.Text.Encoding/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Glimpse.Common/2.0.0": { + "type": "project", + "path": "../Glimpse.Common/project.json" + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "type": "package", + "serviceable": true, + "sha512": "xroX7pbQ0TvSKSNMjJ2c5OZqekyS9n6ytIKzGUYv7uYUOLDLoxaRFAsalk4Jg5oFdWwEWlqvOSZ8XzWNkr2r2g==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.xml", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc2-15838.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc2-15838.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15838": { + "type": "package", + "serviceable": true, + "sha512": "b1xoB1mY70ut484HmgbbZnu67VX7TKW/YER108xmh9wjN35q/4+AwsIQCNlet41CoRRn+jPr+FTCKpvvmtS9lA==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/net451/Microsoft.AspNet.FileProviders.Physical.xml", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-rc2-15838.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-rc2-15838.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec" + ] + }, + "Microsoft.AspNet.Hosting/1.0.0-rc2-16032": { + "type": "package", + "serviceable": true, + "sha512": "63bIOibiLRIs2glyxS2DPhEqJB3meAi3ygDyg4UXl5SI9yURTvfpc7Q4sOlGCxihadwDYZlcXA9uyGMjQF7pOw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.xml", + "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll", + "lib/dotnet5.4/Microsoft.AspNet.Hosting.xml", + "lib/net451/Microsoft.AspNet.Hosting.dll", + "lib/net451/Microsoft.AspNet.Hosting.xml", + "Microsoft.AspNet.Hosting.1.0.0-rc2-16032.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-rc2-16032.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec" + ] + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "serviceable": true, + "sha512": "C5rsiJAQvewPLq1SXtLp8mj1avE3W44ihYgCPgDjuLTII6X13dsDzoq+tx9Mvrpo0aKLMvkwYXvuISsXNGG8Kw==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.xml", + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.xml", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc2-16032.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc2-16032.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "serviceable": true, + "sha512": "BaOStFGOTmNRwRRUSCinwADLrRpaXhM5ArkRD/XrMcjfnFZnYBjdCnjg33PQtVe2zPh1+5kI0V0tB6ZUT3OE2Q==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-rc2-16032.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-rc2-16032.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Http/1.0.0-rc2-16009": { + "type": "package", + "serviceable": true, + "sha512": "qis1CJr1pHCnIa8XoWuirDY7UtKQy+2RQIz6hbbPU1/MYc1P7SkxUTBoO0m17BtvPZD7Y8lh4q2Ohq+lr4fhaw==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.xml", + "lib/net451/Microsoft.AspNet.Http.dll", + "lib/net451/Microsoft.AspNet.Http.xml", + "Microsoft.AspNet.Http.1.0.0-rc2-16009.nupkg", + "Microsoft.AspNet.Http.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec" + ] + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "serviceable": true, + "sha512": "nTSnUeiLsYx55rbORWX7MP7dM6tKwUN4LGultn5WEshq9sArC6tjmazB5NYxw3PBb7ptiKsupv3icc1FN5FAgg==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.xml", + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll", + "lib/net451/Microsoft.AspNet.Http.Abstractions.xml", + "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16009.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "type": "package", + "serviceable": true, + "sha512": "e2HsZ/mON83GhbQDnVC/9/BtO5/gjQfw6wo9v/J950wGk8EUg7jLIAmEiFcGyv0SLYf/7sy2tGtt756KOWwvQw==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.xml", + "lib/net451/Microsoft.AspNet.Http.Extensions.dll", + "lib/net451/Microsoft.AspNet.Http.Extensions.xml", + "Microsoft.AspNet.Http.Extensions.1.0.0-rc2-16009.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "serviceable": true, + "sha512": "vk/l2BgRDzy2LERj1Oh8Znk6iiPlLlz1O2gREn+cbtiD3P3ATRH1S9MFc7SM1AZR6VSPdZm6exhF1nt3q0EpXg==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.xml", + "lib/net451/Microsoft.AspNet.Http.Features.dll", + "lib/net451/Microsoft.AspNet.Http.Features.xml", + "Microsoft.AspNet.Http.Features.1.0.0-rc2-16009.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec" + ] + }, + "Microsoft.AspNet.WebApi.Client/5.2.2": { + "type": "package", + "serviceable": true, + "sha512": "YVq+s0WeXrPxJk57CoElbtMYf95j76uJcW6nue3Cs4eIer9sgUp4rasSo0gALX3ls1Zf2jMceOLik9X/sJyrwA==", + "files": [ + "lib/net45/System.Net.Http.Formatting.dll", + "lib/net45/System.Net.Http.Formatting.xml", + "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll", + "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.xml", + "Microsoft.AspNet.WebApi.Client.5.2.2.nupkg", + "Microsoft.AspNet.WebApi.Client.5.2.2.nupkg.sha512", + "Microsoft.AspNet.WebApi.Client.nuspec" + ] + }, + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16009": { + "type": "package", + "serviceable": true, + "sha512": "/06OvXZXzmIpB2RhUKSAxeGfgiYYQwuqoHdmukN1A/f6aa4QpKd3PC7KQMl6ey13a71qjlsuAALL5W6WO8pOhQ==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll", + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.xml", + "lib/net451/Microsoft.AspNet.WebUtilities.dll", + "lib/net451/Microsoft.AspNet.WebUtilities.xml", + "Microsoft.AspNet.WebUtilities.1.0.0-rc2-16009.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec" + ] + }, + "Microsoft.Bcl/1.1.9": { + "type": "package", + "sha512": "USQ55innJy8K+tAXvVa1O8dUTp2s7pmJ5cJj6Tl02HtGc2xBDj0P2QH5620HbGXIWKWYhydoeQF8Rm/JRDBGhw==", + "files": [ + "content/monoandroid/_._", + "content/monotouch/_._", + "content/net45/_._", + "content/portable-net45+win8+wp8+wpa81/_._", + "content/portable-net45+win8+wpa81/_._", + "content/portable-net451+win81/_._", + "content/portable-net451+win81+wpa81/_._", + "content/portable-win81+wp81+wpa81/_._", + "content/sl4/_._", + "content/sl5/_._", + "content/win8/_._", + "content/wp8/_._", + "content/wpa81/_._", + "lib/monoandroid/_._", + "lib/monotouch/_._", + "lib/net40/ensureRedirect.xml", + "lib/net40/System.IO.dll", + "lib/net40/System.IO.xml", + "lib/net40/System.Runtime.dll", + "lib/net40/System.Runtime.xml", + "lib/net40/System.Threading.Tasks.dll", + "lib/net40/System.Threading.Tasks.xml", + "lib/net45/_._", + "lib/portable-net40+sl4+win8/ensureRedirect.xml", + "lib/portable-net40+sl4+win8/System.IO.dll", + "lib/portable-net40+sl4+win8/System.IO.xml", + "lib/portable-net40+sl4+win8/System.Runtime.dll", + "lib/portable-net40+sl4+win8/System.Runtime.xml", + "lib/portable-net40+sl4+win8/System.Threading.Tasks.dll", + "lib/portable-net40+sl4+win8/System.Threading.Tasks.xml", + "lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.IO.dll", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.IO.xml", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.Runtime.dll", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.Runtime.xml", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.Threading.Tasks.dll", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.Threading.Tasks.xml", + "lib/portable-net40+sl4+win8+wp8+wpa81/ensureRedirect.xml", + "lib/portable-net40+sl4+win8+wp8+wpa81/System.IO.dll", + "lib/portable-net40+sl4+win8+wp8+wpa81/System.IO.xml", + "lib/portable-net40+sl4+win8+wp8+wpa81/System.Runtime.dll", + "lib/portable-net40+sl4+win8+wp8+wpa81/System.Runtime.xml", + "lib/portable-net40+sl4+win8+wp8+wpa81/System.Threading.Tasks.dll", + "lib/portable-net40+sl4+win8+wp8+wpa81/System.Threading.Tasks.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/ensureRedirect.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/System.IO.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/System.IO.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/System.Runtime.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/System.Runtime.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/System.Threading.Tasks.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/System.Threading.Tasks.xml", + "lib/portable-net40+win8/ensureRedirect.xml", + "lib/portable-net40+win8/System.IO.dll", + "lib/portable-net40+win8/System.IO.xml", + "lib/portable-net40+win8/System.Runtime.dll", + "lib/portable-net40+win8/System.Runtime.xml", + "lib/portable-net40+win8/System.Threading.Tasks.dll", + "lib/portable-net40+win8/System.Threading.Tasks.xml", + "lib/portable-net40+win8+wp8+wpa81/ensureRedirect.xml", + "lib/portable-net40+win8+wp8+wpa81/System.IO.dll", + "lib/portable-net40+win8+wp8+wpa81/System.IO.xml", + "lib/portable-net40+win8+wp8+wpa81/System.Runtime.dll", + "lib/portable-net40+win8+wp8+wpa81/System.Runtime.xml", + "lib/portable-net40+win8+wp8+wpa81/System.Threading.Tasks.dll", + "lib/portable-net40+win8+wp8+wpa81/System.Threading.Tasks.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/portable-net45+win8+wpa81/_._", + "lib/portable-net451+win81/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/portable-win81+wp81+wpa81/_._", + "lib/sl4/System.IO.dll", + "lib/sl4/System.IO.xml", + "lib/sl4/System.Runtime.dll", + "lib/sl4/System.Runtime.xml", + "lib/sl4/System.Threading.Tasks.dll", + "lib/sl4/System.Threading.Tasks.xml", + "lib/sl4-windowsphone71/ensureRedirect.xml", + "lib/sl4-windowsphone71/System.IO.dll", + "lib/sl4-windowsphone71/System.IO.xml", + "lib/sl4-windowsphone71/System.Runtime.dll", + "lib/sl4-windowsphone71/System.Runtime.xml", + "lib/sl4-windowsphone71/System.Threading.Tasks.dll", + "lib/sl4-windowsphone71/System.Threading.Tasks.xml", + "lib/sl5/System.IO.dll", + "lib/sl5/System.IO.xml", + "lib/sl5/System.Runtime.dll", + "lib/sl5/System.Runtime.xml", + "lib/sl5/System.Threading.Tasks.dll", + "lib/sl5/System.Threading.Tasks.xml", + "lib/win8/_._", + "lib/wp8/_._", + "lib/wpa81/_._", + "License-Stable.rtf", + "Microsoft.Bcl.1.1.9.nupkg", + "Microsoft.Bcl.1.1.9.nupkg.sha512", + "Microsoft.Bcl.nuspec" + ] + }, + "Microsoft.Bcl.Build/1.0.14": { + "type": "package", + "sha512": "cDLKSvNvRa519hplsbSoYqO69TjdDIhfjtKUM0g20/nVROoWsGav9KCI9HtnGjLmdV1+TcUUDhbotcllibjPEA==", + "files": [ + "content/net40/_._", + "content/netcore45/_._", + "content/portable-net40+win8+sl4+wp71+wpa81/_._", + "content/sl4/_._", + "content/sl4-windowsphone71/_._", + "License-Stable.rtf", + "Microsoft.Bcl.Build.1.0.14.nupkg", + "Microsoft.Bcl.Build.1.0.14.nupkg.sha512", + "Microsoft.Bcl.Build.nuspec", + "tools/Install.ps1", + "tools/Microsoft.Bcl.Build.targets", + "tools/Microsoft.Bcl.Build.Tasks.dll", + "tools/Uninstall.ps1" + ] + }, + "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16237": { + "type": "package", + "serviceable": true, + "sha512": "SbnHCBvCqFU6UVGL/KSaaFkW/0787z6Rq6qgusYenZikTTkWMTAUjrtE/wiSKlm40SL2H1A15wJYRKWa8Y6+zw==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.xml", + "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll", + "lib/net451/Microsoft.Extensions.CompilationAbstractions.xml", + "Microsoft.Extensions.CompilationAbstractions.1.0.0-rc2-16237.nupkg", + "Microsoft.Extensions.CompilationAbstractions.1.0.0-rc2-16237.nupkg.sha512", + "Microsoft.Extensions.CompilationAbstractions.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "serviceable": true, + "sha512": "MOYgTTWkUXDE2bS76CFIH6E+TytMilisgAJYAcRxRRYAYh/7I45KCuJDCP5l/2NA4mIgfecVUeXTe9EHn7etdA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.xml", + "lib/net451/Microsoft.Extensions.Configuration.dll", + "lib/net451/Microsoft.Extensions.Configuration.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.xml", + "Microsoft.Extensions.Configuration.1.0.0-rc2-15866.nupkg", + "Microsoft.Extensions.Configuration.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "serviceable": true, + "sha512": "mCbiKPorBDupxnYahPCdAMbEr+5j8mzuZVrUzjhPAnnFA94POhZ2US+gdf2exDhLzIM0cDy0mUSVWIjlcIr1QA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.xml", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15866.nupkg", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "serviceable": true, + "sha512": "2wI+qIu9YedvCLfep2RxBTYyAqy6Mkr9bVJwzZBHw7yg/GEpCXeOhppWvEXEd/I6sqWWUB+fYNnZtm5h9NlH8A==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net451/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.Binder.xml", + "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15866.nupkg", + "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.Binder.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15866": { + "type": "package", + "serviceable": true, + "sha512": "fGAWrjoUaCS8u9o9/cfvkbQncDHHfj+dtt3xyK/nadORPlZK0KihI9m4dCelNVUJypGL/l6skWJ6MQemYUYc6g==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net451/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.CommandLine.xml", + "Microsoft.Extensions.Configuration.CommandLine.1.0.0-rc2-15866.nupkg", + "Microsoft.Extensions.Configuration.CommandLine.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.CommandLine.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15866": { + "type": "package", + "serviceable": true, + "sha512": "395LAk6wMQRjJduuoQndFbNZ+54GdR4ix7V0klbNChrJOacDFZLoklIfZL31AcHDFhjgdfz/Yj54CW03mDRmbA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0-rc2-15866.nupkg", + "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.EnvironmentVariables.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15866": { + "type": "package", + "serviceable": true, + "sha512": "/xJLXXsnSJfOGgEZSfEuhba7Tkjics1aTSWM2kHU/rmhrT3Q4s6z6IyiTQRT5UKN9w6KjeLfhMUn9/BXIcXFqQ==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.FileExtensions.xml", + "Microsoft.Extensions.Configuration.FileExtensions.1.0.0-rc2-15866.nupkg", + "Microsoft.Extensions.Configuration.FileExtensions.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.FileExtensions.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15866": { + "type": "package", + "serviceable": true, + "sha512": "vjhu58czkKnU4YNpHiK9nk0crekirHGR31yGpB757fnMCMeOIrfijgR+y+t0MZTyAJITj0NGWOrXLrQM09hgUg==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.xml", + "lib/net451/Microsoft.Extensions.Configuration.Json.dll", + "lib/net451/Microsoft.Extensions.Configuration.Json.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.Json.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.Json.xml", + "Microsoft.Extensions.Configuration.Json.1.0.0-rc2-15866.nupkg", + "Microsoft.Extensions.Configuration.Json.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.Json.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "serviceable": true, + "sha512": "cuFxC3SPMIOIX+uUHo9QEri+P9DC6CPkLltJRq2qwgjFIMQ8uJ9nJI6HUYZpEU2Kyh6nm2DIrVSnjG5ycsk9cQ==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll", + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.xml", + "lib/net451/Microsoft.Extensions.DependencyInjection.dll", + "lib/net451/Microsoft.Extensions.DependencyInjection.xml", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.dll", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.xml", + "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15839.nupkg", + "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15839.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "serviceable": true, + "sha512": "JxM3ERvmmjQqRNfQlTeXnjWAqrIzoe+x5alZLuSOw2b5p/191vObRKi0SuFmFvBi/mPoHYqth6cLwSLTASeD3Q==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15839.nupkg", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15839.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15849": { + "type": "package", + "serviceable": true, + "sha512": "YDraz9d4XGfwXELp9UYbJ8TBviMj6yF13a5nBGaprokkf09bGYFWGyIkOprelqpjHIXh7dy65b4UnxzZ8P1gYg==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll", + "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.xml", + "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll", + "lib/net451/Microsoft.Extensions.DiagnosticAdapter.xml", + "Microsoft.Extensions.DiagnosticAdapter.1.0.0-rc2-15849.nupkg", + "Microsoft.Extensions.DiagnosticAdapter.1.0.0-rc2-15849.nupkg.sha512", + "Microsoft.Extensions.DiagnosticAdapter.nuspec" + ] + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "serviceable": true, + "sha512": "jwr1ZH/IUqG6kLpSi8lUueZB/JFQWJUNMjPgpfObmaW7/mfl83/6qDhm7I6Z9Ix0ULjWDEAGmaHTykE06bB/eA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll", + "lib/dotnet5.4/Microsoft.Extensions.Logging.xml", + "lib/net451/Microsoft.Extensions.Logging.dll", + "lib/net451/Microsoft.Extensions.Logging.xml", + "lib/netcore50/Microsoft.Extensions.Logging.dll", + "lib/netcore50/Microsoft.Extensions.Logging.xml", + "Microsoft.Extensions.Logging.1.0.0-rc2-15867.nupkg", + "Microsoft.Extensions.Logging.1.0.0-rc2-15867.nupkg.sha512", + "Microsoft.Extensions.Logging.nuspec" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "serviceable": true, + "sha512": "f37cph4Ec/2fSoy1kQUVICI7vx7JT+aPrBoePXVncsoFssNWzLbOpQ4Jwb9Gntd1qRKpAWyH/OsSdGHjV3rCSA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net451/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.xml", + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15867.nupkg", + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15867.nupkg.sha512", + "Microsoft.Extensions.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "serviceable": true, + "sha512": "YHgRu79p6vbxr5BvnwD0vb2j96EQiNlZjMpra0VdUWYx7jB1Z8M9qB5OBF1ZUgiUVaGmwKFukd4EDqw4sS8MDA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll", + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.xml", + "lib/net451/Microsoft.Extensions.OptionsModel.dll", + "lib/net451/Microsoft.Extensions.OptionsModel.xml", + "lib/netcore50/Microsoft.Extensions.OptionsModel.dll", + "lib/netcore50/Microsoft.Extensions.OptionsModel.xml", + "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15848.nupkg", + "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15848.nupkg.sha512", + "Microsoft.Extensions.OptionsModel.nuspec" + ] + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "serviceable": true, + "sha512": "BtXxSh8IrQDGNjuLago+2LQ2UEC7Up8oHS6U30HY4sR2UlOauY5RGNafffLz5DzMoHfs02eDeu9saRViXjxBxQ==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.xml", + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll", + "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml", + "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16237.nupkg", + "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16237.nupkg.sha512", + "Microsoft.Extensions.PlatformAbstractions.nuspec" + ] + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "serviceable": true, + "sha512": "ImxZgBrbQStbBlGvR59w7euRE4pKIaKURQT8v70SwWZgrvecl9qXFxuJeoyLhwDBxErF1vdW2QJU7GHFdKZTaA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll", + "lib/dotnet5.4/Microsoft.Extensions.Primitives.xml", + "lib/net451/Microsoft.Extensions.Primitives.dll", + "lib/net451/Microsoft.Extensions.Primitives.xml", + "lib/netcore50/Microsoft.Extensions.Primitives.dll", + "lib/netcore50/Microsoft.Extensions.Primitives.xml", + "Microsoft.Extensions.Primitives.1.0.0-rc2-15889.nupkg", + "Microsoft.Extensions.Primitives.1.0.0-rc2-15889.nupkg.sha512", + "Microsoft.Extensions.Primitives.nuspec" + ] + }, + "Microsoft.Net.Http/2.2.22": { + "type": "package", + "serviceable": true, + "sha512": "bqVLJ2UimlAEs2bn3y28lB1pmFRxuysv9pFyB0A86WEMYGYTfDyfjAGjm0fiaSRjlMNU1jVnp8Mxt8qe4OmpXQ==", + "files": [ + "lib/monoandroid/System.Net.Http.Extensions.dll", + "lib/monoandroid/System.Net.Http.Extensions.XML", + "lib/monoandroid/System.Net.Http.Primitives.dll", + "lib/monoandroid/System.Net.Http.Primitives.xml", + "lib/monotouch/System.Net.Http.Extensions.dll", + "lib/monotouch/System.Net.Http.Extensions.XML", + "lib/monotouch/System.Net.Http.Primitives.dll", + "lib/monotouch/System.Net.Http.Primitives.xml", + "lib/net40/ensureRedirect.xml", + "lib/net40/System.Net.Http.dll", + "lib/net40/System.Net.Http.Extensions.dll", + "lib/net40/System.Net.Http.Extensions.XML", + "lib/net40/System.Net.Http.Primitives.dll", + "lib/net40/System.Net.Http.Primitives.xml", + "lib/net40/System.Net.Http.WebRequest.dll", + "lib/net40/System.Net.Http.WebRequest.xml", + "lib/net40/System.Net.Http.xml", + "lib/net45/ensureRedirect.xml", + "lib/net45/System.Net.Http.Extensions.dll", + "lib/net45/System.Net.Http.Extensions.XML", + "lib/net45/System.Net.Http.Primitives.dll", + "lib/net45/System.Net.Http.Primitives.xml", + "lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.dll", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Extensions.dll", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Extensions.XML", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Primitives.dll", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Primitives.XML", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.xml", + "lib/portable-net45+win8/ensureRedirect.xml", + "lib/portable-net45+win8/System.Net.Http.Extensions.dll", + "lib/portable-net45+win8/System.Net.Http.Extensions.XML", + "lib/portable-net45+win8/System.Net.Http.Primitives.dll", + "lib/portable-net45+win8/System.Net.Http.Primitives.xml", + "lib/portable-net45+win8+wpa81/ensureRedirect.xml", + "lib/portable-net45+win8+wpa81/System.Net.Http.Extensions.dll", + "lib/portable-net45+win8+wpa81/System.Net.Http.Extensions.XML", + "lib/portable-net45+win8+wpa81/System.Net.Http.Primitives.dll", + "lib/portable-net45+win8+wpa81/System.Net.Http.Primitives.xml", + "lib/sl4-windowsphone71/System.Net.Http.dll", + "lib/sl4-windowsphone71/System.Net.Http.Extensions.dll", + "lib/sl4-windowsphone71/System.Net.Http.Extensions.XML", + "lib/sl4-windowsphone71/System.Net.Http.Primitives.dll", + "lib/sl4-windowsphone71/System.Net.Http.Primitives.XML", + "lib/sl4-windowsphone71/System.Net.Http.xml", + "lib/win8/System.Net.Http.Extensions.dll", + "lib/win8/System.Net.Http.Extensions.XML", + "lib/win8/System.Net.Http.Primitives.dll", + "lib/win8/System.Net.Http.Primitives.xml", + "lib/wpa81/System.Net.Http.Extensions.dll", + "lib/wpa81/System.Net.Http.Extensions.XML", + "lib/wpa81/System.Net.Http.Primitives.dll", + "lib/wpa81/System.Net.Http.Primitives.xml", + "License-Stable.rtf", + "Microsoft.Net.Http.2.2.22.nupkg", + "Microsoft.Net.Http.2.2.22.nupkg.sha512", + "Microsoft.Net.Http.nuspec" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "type": "package", + "serviceable": true, + "sha512": "MeGgbca6En71j+SG34w3Xk4wlOyBdrw/wKpJd15z5DtWqUWVMyPCN2xxeWKhsxmP76wj3fngL4QrgubYN27tzw==", + "files": [ + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll", + "lib/dotnet5.4/Microsoft.Net.Http.Headers.xml", + "lib/net451/Microsoft.Net.Http.Headers.dll", + "lib/net451/Microsoft.Net.Http.Headers.xml", + "Microsoft.Net.Http.Headers.1.0.0-rc2-16009.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "Microsoft.Win32.Primitives.4.0.0.nupkg", + "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._" + ] + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "m2rDRsf1hcnaUlhKgF9op2UmADh1/5nJpfBJHkKPK46C6s2dI3LAJ0LpAIw1arW9xJDd2P//5gdvUFRGBRRang==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/_._", + "runtime.any.System.Linq.Expressions.4.0.11-rc2-23525.nupkg", + "runtime.any.System.Linq.Expressions.4.0.11-rc2-23525.nupkg.sha512", + "runtime.any.System.Linq.Expressions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "H8lMtaHAPFEjWCfOZyPwN7ctkAxC3vN65x+gzaUfcPBLrHMLaqT3qsNy5H3c66oFGt3NOCm4WEYlvjeYjd8/sQ==", + "files": [ + "ref/dotnet/_._", + "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg", + "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win.System.Runtime.InteropServices.RuntimeInformation.nuspec", + "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll" + ] + }, + "runtime.win7.System.Console/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "61pTms2XLekse3lSpQ5fvs98Rgs1ydk18TgPmy6fq9jfP2uuLWyRbxul1Kb/keI3BygVabUvwly9Bjg0Vu94jQ==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Console.4.0.0-rc2-23525.nupkg", + "runtime.win7.System.Console.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win7.System.Console.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Console.dll", + "runtimes/win7/lib/net/_._" + ] + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "6txhz00DQayySs37jFHBE7C0O5dpTmlZrCxJLDdukcyKpHnyhNCOEKz6r+93mFeziRY6Lf4f3K7XgnvN/1vPJQ==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg", + "runtime.win7.System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg.sha512", + "runtime.win7.System.Diagnostics.Debug.nuspec", + "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll", + "runtimes/win7/lib/netcore50/System.Diagnostics.Debug.dll", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "KjAFrVUkamkrAYajk+bpM5qhZ5UzAMVS1jlR4fW6keFk8ltp57PfivcBGRDbQDhCMzUVIjEFQ5RHXIsLOgpZHg==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Globalization.Extensions.4.0.1-rc2-23525.nupkg", + "runtime.win7.System.Globalization.Extensions.4.0.1-rc2-23525.nupkg.sha512", + "runtime.win7.System.Globalization.Extensions.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll", + "runtimes/win7/lib/net/_._" + ] + }, + "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Rk2nN279viCiNX+a05TDaZAWxtp1Kl/NytR4jT75dM24niwhNtLVpDq3mZ6L8AV0lSnkd6UeHhMOrcbMhoiHyg==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.IO.FileSystem.4.0.1-rc2-23525.nupkg", + "runtime.win7.System.IO.FileSystem.4.0.1-rc2-23525.nupkg.sha512", + "runtime.win7.System.IO.FileSystem.nuspec", + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll", + "runtimes/win7/lib/net/_._", + "runtimes/win7/lib/netcore50/System.IO.FileSystem.dll", + "runtimes/win7/lib/win8/_._", + "runtimes/win7/lib/wp8/_._", + "runtimes/win7/lib/wpa81/_._" + ] + }, + "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "P7gihPiu9v9V9TzAmY/+9532/HOIRTyViksJFf+08dRz882ugN96vR8halkcr+1kP2PvYEr35rNCp2ZffrWzHg==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.IO.FileSystem.Watcher.4.0.0-rc2-23525.nupkg", + "runtime.win7.System.IO.FileSystem.Watcher.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win7.System.IO.FileSystem.Watcher.nuspec", + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.Watcher.dll", + "runtimes/win7/lib/net/_._", + "runtimes/win7/lib/netcore50/_._", + "runtimes/win7/lib/win8/_._", + "runtimes/win7/lib/wp8/_._", + "runtimes/win7/lib/wpa81/_._" + ] + }, + "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "fQXiEWBBAf85oQrn/PhE5h0x1Bz2MsQLzFnsmPHXK3F52aCXSfA8XG7d9/P4M635T6YuZz4Hl4RmJdFYoO84Ww==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "ref/dotnet/_._", + "runtime.win7.System.Net.Primitives.4.0.11-rc2-23525.nupkg", + "runtime.win7.System.Net.Primitives.4.0.11-rc2-23525.nupkg.sha512", + "runtime.win7.System.Net.Primitives.nuspec", + "runtimes/win7/lib/netcore50/System.Net.Primitives.dll" + ] + }, + "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "o9yhni1ibV4TZ8pDXnGWrbdYUN0vDTqjC08fBoNF/iHtg4m5TNATIaEVDXOF1ny1ymyfZE/6VRC7m2twuWD/+A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/_._", + "runtime.win7.System.Runtime.Extensions.4.0.11-rc2-23525.nupkg", + "runtime.win7.System.Runtime.Extensions.4.0.11-rc2-23525.nupkg.sha512", + "runtime.win7.System.Runtime.Extensions.nuspec", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "OZghF4dY+gj/IhXj1FOrlDI//lEb0q9/Y/5GPftSotrk/sDRMpiflbAzVziNCkvOnDPowaU+kayZGCLU9zMRqA==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg", + "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.Algorithms.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll", + "runtimes/win7/lib/net/_._" + ] + }, + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "fwjrSecPvxUhksPU8iIxjY8z5akm/KqTTCUWEETuka9WkaFCU1ktrqJI/UJrn+ImXBv87MbLYBblixdAYAr75g==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg", + "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.Encoding.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll", + "runtimes/win7/lib/net/_._" + ] + }, + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "MstJY/cwJg4HYbUk+z+m8r1Ffw14Nsm8DD7QNxtNfXI99eFfvjDhn7ur8S7m5nTBk23EPsUfN9VAFESXTrv2fw==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg", + "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.X509Certificates.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win7/lib/net/_._", + "runtimes/win7/lib/netcore50/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "runtime.win7.System.Threading/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "gYFmKqjSPB2E2PpyEehCvovB6pPiRJbw04DwViGE7FGyrE0J9VsdeFTeIpzWcKiTg5pzdlvmUg100MIxfYWrjA==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Threading.4.0.11-rc2-23525.nupkg", + "runtime.win7.System.Threading.4.0.11-rc2-23525.nupkg.sha512", + "runtime.win7.System.Threading.nuspec", + "runtimes/win7/lib/DNXCore50/System.Threading.dll", + "runtimes/win7/lib/netcore50/System.Threading.dll", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "Rx-Core/2.2.5": { + "type": "package", + "sha512": "DfWVTfW6tvRkkqpnRHKxPIvaRZyDJGADuqrE6J2nwejOQbLRWi0rNUwXkViDWz++25BGDy3iRE5OE6Dv8mJxYQ==", + "files": [ + "lib/net40/System.Reactive.Core.dll", + "lib/net40/System.Reactive.Core.XML", + "lib/net45/System.Reactive.Core.dll", + "lib/net45/System.Reactive.Core.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.XML", + "lib/portable-win81+wpa81/System.Reactive.Core.dll", + "lib/portable-win81+wpa81/System.Reactive.Core.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Core.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Core.XML", + "lib/sl5/System.Reactive.Core.dll", + "lib/sl5/System.Reactive.Core.XML", + "lib/windows8/System.Reactive.Core.dll", + "lib/windows8/System.Reactive.Core.XML", + "lib/windowsphone71/System.Reactive.Core.dll", + "lib/windowsphone71/System.Reactive.Core.XML", + "lib/windowsphone8/System.Reactive.Core.dll", + "lib/windowsphone8/System.Reactive.Core.XML", + "Rx-Core.2.2.5.nupkg", + "Rx-Core.2.2.5.nupkg.sha512", + "Rx-Core.nuspec" + ] + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "sha512": "FKtG2QfMIeUcfB7r3a89VoAiszX3DTvYETkpC6U0FzWpxRK/mcHyzYOsniDfag+NsDG0P1k1c8yNSefXKp3t2A==", + "files": [ + "lib/net40/System.Reactive.Interfaces.dll", + "lib/net40/System.Reactive.Interfaces.XML", + "lib/net45/System.Reactive.Interfaces.dll", + "lib/net45/System.Reactive.Interfaces.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.XML", + "lib/portable-win81+wpa81/System.Reactive.Interfaces.dll", + "lib/portable-win81+wpa81/System.Reactive.Interfaces.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.XML", + "lib/sl5/System.Reactive.Interfaces.dll", + "lib/sl5/System.Reactive.Interfaces.XML", + "lib/windows8/System.Reactive.Interfaces.dll", + "lib/windows8/System.Reactive.Interfaces.XML", + "lib/windowsphone71/System.Reactive.Interfaces.dll", + "lib/windowsphone71/System.Reactive.Interfaces.XML", + "lib/windowsphone8/System.Reactive.Interfaces.dll", + "lib/windowsphone8/System.Reactive.Interfaces.XML", + "Rx-Interfaces.2.2.5.nupkg", + "Rx-Interfaces.2.2.5.nupkg.sha512", + "Rx-Interfaces.nuspec" + ] + }, + "Rx-Linq/2.2.5": { + "type": "package", + "sha512": "UTeCIu3cWPExxmTzdiVq7SalqTBhUaomBTaAC9LpYPoAopjlFwA3hjVWXoLkGlDc/44wqJemJuEwFP00KphiFg==", + "files": [ + "lib/net40/System.Reactive.Linq.dll", + "lib/net40/System.Reactive.Linq.XML", + "lib/net45/System.Reactive.Linq.dll", + "lib/net45/System.Reactive.Linq.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.XML", + "lib/portable-win81+wpa81/System.Reactive.Linq.dll", + "lib/portable-win81+wpa81/System.Reactive.Linq.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Linq.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Linq.XML", + "lib/sl5/System.Reactive.Linq.dll", + "lib/sl5/System.Reactive.Linq.XML", + "lib/windows8/System.Reactive.Linq.dll", + "lib/windows8/System.Reactive.Linq.XML", + "lib/windowsphone71/System.Reactive.Linq.dll", + "lib/windowsphone71/System.Reactive.Linq.XML", + "lib/windowsphone8/System.Reactive.Linq.dll", + "lib/windowsphone8/System.Reactive.Linq.XML", + "Rx-Linq.2.2.5.nupkg", + "Rx-Linq.2.2.5.nupkg.sha512", + "Rx-Linq.nuspec" + ] + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "sha512": "pMnNEvJVjT+wuDib+W/bi5hhIYcre7dW5yxvKrJxnR4iKJ1VLA/dY2FTtjDriHGx7OeGn12lQewXlH2oHiWFPA==", + "files": [ + "lib/net40/System.Reactive.PlatformServices.dll", + "lib/net40/System.Reactive.PlatformServices.XML", + "lib/net45/System.Reactive.PlatformServices.dll", + "lib/net45/System.Reactive.PlatformServices.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.XML", + "lib/portable-win81+wpa81/System.Reactive.PlatformServices.dll", + "lib/portable-win81+wpa81/System.Reactive.PlatformServices.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.XML", + "lib/sl5/System.Reactive.PlatformServices.dll", + "lib/sl5/System.Reactive.PlatformServices.XML", + "lib/windows8/System.Reactive.PlatformServices.dll", + "lib/windows8/System.Reactive.PlatformServices.XML", + "lib/windowsphone71/System.Reactive.PlatformServices.dll", + "lib/windowsphone71/System.Reactive.PlatformServices.XML", + "lib/windowsphone8/System.Reactive.PlatformServices.dll", + "lib/windowsphone8/System.Reactive.PlatformServices.XML", + "Rx-PlatformServices.2.2.5.nupkg", + "Rx-PlatformServices.2.2.5.nupkg.sha512", + "Rx-PlatformServices.nuspec" + ] + }, + "System.AppContext/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "1AErxnp8ORCt1JmFgddMK5xYzIgfFE8yPRXXLRAHv43Dj6oHGsdE0sz4eB+lBkbLrzd+MWd/FJc6/t0It6qJxw==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.AppContext.xml", + "ref/dotnet5.4/es/System.AppContext.xml", + "ref/dotnet5.4/fr/System.AppContext.xml", + "ref/dotnet5.4/it/System.AppContext.xml", + "ref/dotnet5.4/ja/System.AppContext.xml", + "ref/dotnet5.4/ko/System.AppContext.xml", + "ref/dotnet5.4/ru/System.AppContext.xml", + "ref/dotnet5.4/System.AppContext.dll", + "ref/dotnet5.4/System.AppContext.xml", + "ref/dotnet5.4/zh-hans/System.AppContext.xml", + "ref/dotnet5.4/zh-hant/System.AppContext.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.AppContext.4.0.1-rc2-23525.nupkg", + "System.AppContext.4.0.1-rc2-23525.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "xJmMbyH4afnSkGiOhTiSyAWL6j45yYDG3l63D3peganrFKvzln1ks7SGfERzBEPqKFHBDoJ7TlRpJQp40wJNUA==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Collections.xml", + "ref/dotnet5.1/es/System.Collections.xml", + "ref/dotnet5.1/fr/System.Collections.xml", + "ref/dotnet5.1/it/System.Collections.xml", + "ref/dotnet5.1/ja/System.Collections.xml", + "ref/dotnet5.1/ko/System.Collections.xml", + "ref/dotnet5.1/ru/System.Collections.xml", + "ref/dotnet5.1/System.Collections.dll", + "ref/dotnet5.1/System.Collections.xml", + "ref/dotnet5.1/zh-hans/System.Collections.xml", + "ref/dotnet5.1/zh-hant/System.Collections.xml", + "ref/dotnet5.4/de/System.Collections.xml", + "ref/dotnet5.4/es/System.Collections.xml", + "ref/dotnet5.4/fr/System.Collections.xml", + "ref/dotnet5.4/it/System.Collections.xml", + "ref/dotnet5.4/ja/System.Collections.xml", + "ref/dotnet5.4/ko/System.Collections.xml", + "ref/dotnet5.4/ru/System.Collections.xml", + "ref/dotnet5.4/System.Collections.dll", + "ref/dotnet5.4/System.Collections.xml", + "ref/dotnet5.4/zh-hans/System.Collections.xml", + "ref/dotnet5.4/zh-hant/System.Collections.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.11-rc2-23525.nupkg", + "System.Collections.4.0.11-rc2-23525.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "rJUILubHbGrHU1CNoZwUpJQjTL5XgG7BNT5hwQbN9fNLIWh/8t6jqUNE6pGoEg/N/l8vBeFXwfVnzrjAlFfTHA==", + "files": [ + "lib/dotnet5.4/System.Collections.Concurrent.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.2/de/System.Collections.Concurrent.xml", + "ref/dotnet5.2/es/System.Collections.Concurrent.xml", + "ref/dotnet5.2/fr/System.Collections.Concurrent.xml", + "ref/dotnet5.2/it/System.Collections.Concurrent.xml", + "ref/dotnet5.2/ja/System.Collections.Concurrent.xml", + "ref/dotnet5.2/ko/System.Collections.Concurrent.xml", + "ref/dotnet5.2/ru/System.Collections.Concurrent.xml", + "ref/dotnet5.2/System.Collections.Concurrent.dll", + "ref/dotnet5.2/System.Collections.Concurrent.xml", + "ref/dotnet5.2/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet5.2/zh-hant/System.Collections.Concurrent.xml", + "ref/dotnet5.4/de/System.Collections.Concurrent.xml", + "ref/dotnet5.4/es/System.Collections.Concurrent.xml", + "ref/dotnet5.4/fr/System.Collections.Concurrent.xml", + "ref/dotnet5.4/it/System.Collections.Concurrent.xml", + "ref/dotnet5.4/ja/System.Collections.Concurrent.xml", + "ref/dotnet5.4/ko/System.Collections.Concurrent.xml", + "ref/dotnet5.4/ru/System.Collections.Concurrent.xml", + "ref/dotnet5.4/System.Collections.Concurrent.dll", + "ref/dotnet5.4/System.Collections.Concurrent.xml", + "ref/dotnet5.4/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet5.4/zh-hant/System.Collections.Concurrent.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Collections.Concurrent.4.0.11-rc2-23525.nupkg", + "System.Collections.Concurrent.4.0.11-rc2-23525.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.ComponentModel/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "QJ3RnKbTPqJ64NH+VQ15URBa0XlJHUdM6whX1C12nLhdJ48c4P1lMpJCWHxPbUJuj4MCn+0eAqUxi4UZ/hzokA==", + "files": [ + "lib/dotnet5.4/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.ComponentModel.xml", + "ref/dotnet5.1/es/System.ComponentModel.xml", + "ref/dotnet5.1/fr/System.ComponentModel.xml", + "ref/dotnet5.1/it/System.ComponentModel.xml", + "ref/dotnet5.1/ja/System.ComponentModel.xml", + "ref/dotnet5.1/ko/System.ComponentModel.xml", + "ref/dotnet5.1/ru/System.ComponentModel.xml", + "ref/dotnet5.1/System.ComponentModel.dll", + "ref/dotnet5.1/System.ComponentModel.xml", + "ref/dotnet5.1/zh-hans/System.ComponentModel.xml", + "ref/dotnet5.1/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.1-rc2-23525.nupkg", + "System.ComponentModel.4.0.1-rc2-23525.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "8xElzEmEH5G6XK7qqxRLQ/2r1IuhXlkz0ZdgKNp6ViDD1ukadd+5hccqg1G/L4AYRy96ddMdvgyJjFW87Cegbw==", + "files": [ + "lib/dotnet/System.ComponentModel.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.ComponentModel.Primitives.xml", + "ref/dotnet/es/System.ComponentModel.Primitives.xml", + "ref/dotnet/fr/System.ComponentModel.Primitives.xml", + "ref/dotnet/it/System.ComponentModel.Primitives.xml", + "ref/dotnet/ja/System.ComponentModel.Primitives.xml", + "ref/dotnet/ko/System.ComponentModel.Primitives.xml", + "ref/dotnet/ru/System.ComponentModel.Primitives.xml", + "ref/dotnet/System.ComponentModel.Primitives.dll", + "ref/dotnet/System.ComponentModel.Primitives.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Primitives.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.ComponentModel.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.Primitives.4.0.0.nupkg", + "System.ComponentModel.Primitives.4.0.0.nupkg.sha512", + "System.ComponentModel.Primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "ZLOBeLIwqn7QcQvcy87DUJIfYtToNkp7mqzw9j27FKFG4C6oeiM63aPj41D4B78t6VNp9N1dUGybApOaIhrX5A==", + "files": [ + "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/es/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/fr/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/it/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/ja/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/ko/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/ru/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll", + "ref/dotnet5.1/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.TypeConverter.4.0.1-rc2-23525.nupkg", + "System.ComponentModel.TypeConverter.4.0.1-rc2-23525.nupkg.sha512", + "System.ComponentModel.TypeConverter.nuspec" + ] + }, + "System.Console/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "ayoM54TltBsmGiH4U4vq4OukgUWesBraaMpaRlA1epjQgDVIVCrtSCsUr603ICPJqU2EdpX4/rFnQFys0DEtqg==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Console.xml", + "ref/dotnet5.4/es/System.Console.xml", + "ref/dotnet5.4/fr/System.Console.xml", + "ref/dotnet5.4/it/System.Console.xml", + "ref/dotnet5.4/ja/System.Console.xml", + "ref/dotnet5.4/ko/System.Console.xml", + "ref/dotnet5.4/ru/System.Console.xml", + "ref/dotnet5.4/System.Console.dll", + "ref/dotnet5.4/System.Console.xml", + "ref/dotnet5.4/zh-hans/System.Console.xml", + "ref/dotnet5.4/zh-hant/System.Console.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Console.4.0.0-rc2-23525.nupkg", + "System.Console.4.0.0-rc2-23525.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "uhZEFk/Gp276noaTo3R2xwQsrA/k0Sq3O/ov4D4Io4OHmCzXwRXOk24y9J/ZgwuSn0PMaoxiYH7knPvgPeYMTQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/es/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/fr/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/it/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/ja/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/ko/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/ru/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/System.Diagnostics.Contracts.dll", + "ref/dotnet5.1/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/zh-hans/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/zh-hant/System.Diagnostics.Contracts.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Contracts.xml", + "ref/netcore50/es/System.Diagnostics.Contracts.xml", + "ref/netcore50/fr/System.Diagnostics.Contracts.xml", + "ref/netcore50/it/System.Diagnostics.Contracts.xml", + "ref/netcore50/ja/System.Diagnostics.Contracts.xml", + "ref/netcore50/ko/System.Diagnostics.Contracts.xml", + "ref/netcore50/ru/System.Diagnostics.Contracts.xml", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/netcore50/System.Diagnostics.Contracts.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "System.Diagnostics.Contracts.4.0.1-rc2-23525.nupkg", + "System.Diagnostics.Contracts.4.0.1-rc2-23525.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0": { + "type": "package", + "sha512": "AYJsLLGDVTC/nyURjgAo7Lpye0+HuSkcQujUf+NgQVdC/C/ky5NyamQHCforHJzgqspitMMtBe8B4UBdGXy1zQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Diagnostics.Debug.4.0.0.nupkg", + "System.Diagnostics.Debug.4.0.0.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "T/wq74JBg48B5FU5R1bOW0cTyclAXL5GAqF/jehLxM65Sc8cNmJ8GMAQvjmmIa6mwmRF27U63Gs1UeiV0QtkjQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/es/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/fr/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/it/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/ja/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/ko/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/ru/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/System.Diagnostics.Debug.dll", + "ref/dotnet5.1/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/zh-hant/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/de/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/es/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/fr/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/it/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/ja/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/ko/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/ru/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/System.Diagnostics.Debug.dll", + "ref/dotnet5.4/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/zh-hant/System.Diagnostics.Debug.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg", + "System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "WHVhr5/p8UDjqNV7l9PCxZgOufE2tO4XOWva9pau9c7PzJJTdB1By6scO5dgHLpmlB/u4y27Y9AzT8AqtG8sxw==", + "files": [ + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll", + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "System.Diagnostics.DiagnosticSource.4.0.0-beta-23516.nupkg", + "System.Diagnostics.DiagnosticSource.4.0.0-beta-23516.nupkg.sha512", + "System.Diagnostics.DiagnosticSource.nuspec" + ] + }, + "System.Diagnostics.StackTrace/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "PGYnviu3fGe8kseJAVMjVbFS2rwJ1QmGUJdNB/TTfj4pFodisoJRvLw3RIKTKiW2WbwXPy7leB14+MGqIRUPRA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.StackTrace.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.StackTrace.dll", + "lib/netcore50/System.Diagnostics.StackTrace.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.4/es/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.4/fr/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.4/it/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.4/ja/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.4/ko/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.4/ru/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.4/System.Diagnostics.StackTrace.dll", + "ref/dotnet5.4/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.4/zh-hans/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.4/zh-hant/System.Diagnostics.StackTrace.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.StackTrace.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll", + "System.Diagnostics.StackTrace.4.0.1-rc2-23525.nupkg", + "System.Diagnostics.StackTrace.4.0.1-rc2-23525.nupkg.sha512", + "System.Diagnostics.StackTrace.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Bh9ra6Wpewj2XAkbCjrSemxNqLqCCoAO/1+l/RQZuQlSZ2v9x/bpnA6IEgan8JX35gJpGJc1rmgAdQl2KFpWwA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/es/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/fr/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/it/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/ja/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/ko/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/ru/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/System.Diagnostics.Tools.dll", + "ref/dotnet5.1/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.1-rc2-23525.nupkg", + "System.Diagnostics.Tools.4.0.1-rc2-23525.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.0": { + "type": "package", + "sha512": "tzqQJPgD4bKs0eE5Gx9HEsxiHSBGcL42PImkjhwXTQK6iQbLTTB9mi+G7mUyEjlH8LUcm7F5QHEs+O+LpruOrQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Diagnostics.Tracing.4.0.0.nupkg", + "System.Diagnostics.Tracing.4.0.0.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "serviceable": true, + "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20.nupkg", + "System.Diagnostics.Tracing.4.0.20.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "+OMQBIOXgovK8BPkqIFi95NRT+bYiHaixL3WwPVohqex4Hp4UuEYsJPS91ljtEkBMYO8a34B2FeSRqecWOCMLg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/es/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/fr/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/it/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/ja/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/ko/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/ru/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/System.Dynamic.Runtime.dll", + "ref/dotnet5.1/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/zh-hans/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/zh-hant/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/de/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/es/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/fr/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/it/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/ja/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/ko/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/ru/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/System.Dynamic.Runtime.dll", + "ref/dotnet5.4/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/zh-hans/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/zh-hant/System.Dynamic.Runtime.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.11-rc2-23525.nupkg", + "System.Dynamic.Runtime.4.0.11-rc2-23525.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "oy7h7UsvcRRdmRL0vzNHwCSqQVP6Np80oRKRPJplTFtpfxnjj1O7nkkxl0So7nQnSE6lrE4a5SH7dFAjEH6Ncg==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Globalization.xml", + "ref/dotnet5.1/es/System.Globalization.xml", + "ref/dotnet5.1/fr/System.Globalization.xml", + "ref/dotnet5.1/it/System.Globalization.xml", + "ref/dotnet5.1/ja/System.Globalization.xml", + "ref/dotnet5.1/ko/System.Globalization.xml", + "ref/dotnet5.1/ru/System.Globalization.xml", + "ref/dotnet5.1/System.Globalization.dll", + "ref/dotnet5.1/System.Globalization.xml", + "ref/dotnet5.1/zh-hans/System.Globalization.xml", + "ref/dotnet5.1/zh-hant/System.Globalization.xml", + "ref/dotnet5.4/de/System.Globalization.xml", + "ref/dotnet5.4/es/System.Globalization.xml", + "ref/dotnet5.4/fr/System.Globalization.xml", + "ref/dotnet5.4/it/System.Globalization.xml", + "ref/dotnet5.4/ja/System.Globalization.xml", + "ref/dotnet5.4/ko/System.Globalization.xml", + "ref/dotnet5.4/ru/System.Globalization.xml", + "ref/dotnet5.4/System.Globalization.dll", + "ref/dotnet5.4/System.Globalization.xml", + "ref/dotnet5.4/zh-hans/System.Globalization.xml", + "ref/dotnet5.4/zh-hant/System.Globalization.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.11-rc2-23525.nupkg", + "System.Globalization.4.0.11-rc2-23525.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Globalization.Calendars.xml", + "ref/dotnet/es/System.Globalization.Calendars.xml", + "ref/dotnet/fr/System.Globalization.Calendars.xml", + "ref/dotnet/it/System.Globalization.Calendars.xml", + "ref/dotnet/ja/System.Globalization.Calendars.xml", + "ref/dotnet/ko/System.Globalization.Calendars.xml", + "ref/dotnet/ru/System.Globalization.Calendars.xml", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0.nupkg", + "System.Globalization.Calendars.4.0.0.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "WcX9wVjeAPI6Aiuz0UGdIS7abeu/XQRm0yK/ff8nr7cJn5wx69ACoF0/SHkfB1HrW4WDUQiKzgRpE8DDl6VSDw==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Globalization.Extensions.xml", + "ref/dotnet5.4/es/System.Globalization.Extensions.xml", + "ref/dotnet5.4/fr/System.Globalization.Extensions.xml", + "ref/dotnet5.4/it/System.Globalization.Extensions.xml", + "ref/dotnet5.4/ja/System.Globalization.Extensions.xml", + "ref/dotnet5.4/ko/System.Globalization.Extensions.xml", + "ref/dotnet5.4/ru/System.Globalization.Extensions.xml", + "ref/dotnet5.4/System.Globalization.Extensions.dll", + "ref/dotnet5.4/System.Globalization.Extensions.xml", + "ref/dotnet5.4/zh-hans/System.Globalization.Extensions.xml", + "ref/dotnet5.4/zh-hant/System.Globalization.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Globalization.Extensions.4.0.1-rc2-23525.nupkg", + "System.Globalization.Extensions.4.0.1-rc2-23525.nupkg.sha512", + "System.Globalization.Extensions.nuspec" + ] + }, + "System.IO/4.0.0": { + "type": "package", + "sha512": "MoCHQ0u5n0OMwUS8OX4Gl48qKiQziSW5cXvt82d+MmAcsLq9OL90+ihnu/aJ1h6OOYcBswrZAEuApfZha9w2lg==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.4.0.0.nupkg", + "System.IO.4.0.0.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Brlv6E7ndUEBPH28OXf9EULgyMXTu6I3+NwbXiVneltgClANm/tmjZIAvJZpkCW2WQPMxRgaJlhngXqaYOM4ww==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.IO.xml", + "ref/dotnet5.1/es/System.IO.xml", + "ref/dotnet5.1/fr/System.IO.xml", + "ref/dotnet5.1/it/System.IO.xml", + "ref/dotnet5.1/ja/System.IO.xml", + "ref/dotnet5.1/ko/System.IO.xml", + "ref/dotnet5.1/ru/System.IO.xml", + "ref/dotnet5.1/System.IO.dll", + "ref/dotnet5.1/System.IO.xml", + "ref/dotnet5.1/zh-hans/System.IO.xml", + "ref/dotnet5.1/zh-hant/System.IO.xml", + "ref/dotnet5.4/de/System.IO.xml", + "ref/dotnet5.4/es/System.IO.xml", + "ref/dotnet5.4/fr/System.IO.xml", + "ref/dotnet5.4/it/System.IO.xml", + "ref/dotnet5.4/ja/System.IO.xml", + "ref/dotnet5.4/ko/System.IO.xml", + "ref/dotnet5.4/ru/System.IO.xml", + "ref/dotnet5.4/System.IO.dll", + "ref/dotnet5.4/System.IO.xml", + "ref/dotnet5.4/zh-hans/System.IO.xml", + "ref/dotnet5.4/zh-hant/System.IO.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.11-rc2-23525.nupkg", + "System.IO.4.0.11-rc2-23525.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "5x8A7ETeRtOmeqfUr36T20yJR+JHkd9M8275UTOyUylO1RRFDdIDiNYeCnZlFJpDCFMDxDa6g8OgiWYxJzAqfw==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.IO.FileSystem.xml", + "ref/dotnet5.4/es/System.IO.FileSystem.xml", + "ref/dotnet5.4/fr/System.IO.FileSystem.xml", + "ref/dotnet5.4/it/System.IO.FileSystem.xml", + "ref/dotnet5.4/ja/System.IO.FileSystem.xml", + "ref/dotnet5.4/ko/System.IO.FileSystem.xml", + "ref/dotnet5.4/ru/System.IO.FileSystem.xml", + "ref/dotnet5.4/System.IO.FileSystem.dll", + "ref/dotnet5.4/System.IO.FileSystem.xml", + "ref/dotnet5.4/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet5.4/zh-hant/System.IO.FileSystem.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.IO.FileSystem.4.0.1-rc2-23525.nupkg", + "System.IO.FileSystem.4.0.1-rc2-23525.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "fV65b2r3pwlWSSWApSrYxGKCYNmAinm+Oesaq29llzw0MrxhzltVGCV+ck4LPcAbrTr4vU6gXe0xtg26lWa5Uw==", + "files": [ + "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.4/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.4/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.4/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.4/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.4/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.4/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.4/System.IO.FileSystem.Primitives.dll", + "ref/dotnet5.4/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.4/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.4/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.FileSystem.Primitives.4.0.1-rc2-23525.nupkg", + "System.IO.FileSystem.Primitives.4.0.1-rc2-23525.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "uR9aLtA94ZLN205daRhvvvWVy1GwvqhsHpkvTQAgtAjbX5oZgR4VrOzNVubWjmKTTU8fZluxzL4oiNLqqzxqjA==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.4/es/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.4/fr/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.4/it/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.4/ja/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.4/ko/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.4/ru/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.4/System.IO.FileSystem.Watcher.dll", + "ref/dotnet5.4/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.4/zh-hans/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.4/zh-hant/System.IO.FileSystem.Watcher.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.IO.FileSystem.Watcher.4.0.0-rc2-23525.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-rc2-23525.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "nxeyB3ycuQRIyRb/EVh+IEBN4heKR5LGo3+NvQl0/nJs/nIJym4Yb+pqHjhMAFwv9L7KoUIanhg1uRES7+IaQQ==", + "files": [ + "lib/dotnet5.4/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Linq.xml", + "ref/dotnet5.1/es/System.Linq.xml", + "ref/dotnet5.1/fr/System.Linq.xml", + "ref/dotnet5.1/it/System.Linq.xml", + "ref/dotnet5.1/ja/System.Linq.xml", + "ref/dotnet5.1/ko/System.Linq.xml", + "ref/dotnet5.1/ru/System.Linq.xml", + "ref/dotnet5.1/System.Linq.dll", + "ref/dotnet5.1/System.Linq.xml", + "ref/dotnet5.1/zh-hans/System.Linq.xml", + "ref/dotnet5.1/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.1-rc2-23525.nupkg", + "System.Linq.4.0.1-rc2-23525.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "nUZs+huGwB8yM+RhJSCP1pDooGAjVhe2kEzSu2M7I8A9kwOF8WFgmMDwhfvW8UdnvcEVMbmtM9VtAYoZIBLs4w==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Linq.Expressions.xml", + "ref/dotnet5.1/es/System.Linq.Expressions.xml", + "ref/dotnet5.1/fr/System.Linq.Expressions.xml", + "ref/dotnet5.1/it/System.Linq.Expressions.xml", + "ref/dotnet5.1/ja/System.Linq.Expressions.xml", + "ref/dotnet5.1/ko/System.Linq.Expressions.xml", + "ref/dotnet5.1/ru/System.Linq.Expressions.xml", + "ref/dotnet5.1/System.Linq.Expressions.dll", + "ref/dotnet5.1/System.Linq.Expressions.xml", + "ref/dotnet5.1/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet5.1/zh-hant/System.Linq.Expressions.xml", + "ref/dotnet5.4/de/System.Linq.Expressions.xml", + "ref/dotnet5.4/es/System.Linq.Expressions.xml", + "ref/dotnet5.4/fr/System.Linq.Expressions.xml", + "ref/dotnet5.4/it/System.Linq.Expressions.xml", + "ref/dotnet5.4/ja/System.Linq.Expressions.xml", + "ref/dotnet5.4/ko/System.Linq.Expressions.xml", + "ref/dotnet5.4/ru/System.Linq.Expressions.xml", + "ref/dotnet5.4/System.Linq.Expressions.dll", + "ref/dotnet5.4/System.Linq.Expressions.xml", + "ref/dotnet5.4/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet5.4/zh-hant/System.Linq.Expressions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Linq.Expressions.4.0.11-rc2-23525.nupkg", + "System.Linq.Expressions.4.0.11-rc2-23525.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Net.Http/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==", + "files": [ + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Net.Http.xml", + "ref/dotnet/es/System.Net.Http.xml", + "ref/dotnet/fr/System.Net.Http.xml", + "ref/dotnet/it/System.Net.Http.xml", + "ref/dotnet/ja/System.Net.Http.xml", + "ref/dotnet/ko/System.Net.Http.xml", + "ref/dotnet/ru/System.Net.Http.xml", + "ref/dotnet/System.Net.Http.dll", + "ref/dotnet/System.Net.Http.xml", + "ref/dotnet/zh-hans/System.Net.Http.xml", + "ref/dotnet/zh-hant/System.Net.Http.xml", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Net.Http.4.0.0.nupkg", + "System.Net.Http.4.0.0.nupkg.sha512", + "System.Net.Http.nuspec" + ] + }, + "System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "tPl7aprrM0gnQa24GbIy+Swf+9+hEj+oy1I+OkeG/flSEGT3mCtrSAgfmLCr1FmN9lfn9XKkCgPYh8wJC2g8+w==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Net.Primitives.xml", + "ref/dotnet5.1/es/System.Net.Primitives.xml", + "ref/dotnet5.1/fr/System.Net.Primitives.xml", + "ref/dotnet5.1/it/System.Net.Primitives.xml", + "ref/dotnet5.1/ja/System.Net.Primitives.xml", + "ref/dotnet5.1/ko/System.Net.Primitives.xml", + "ref/dotnet5.1/ru/System.Net.Primitives.xml", + "ref/dotnet5.1/System.Net.Primitives.dll", + "ref/dotnet5.1/System.Net.Primitives.xml", + "ref/dotnet5.1/zh-hans/System.Net.Primitives.xml", + "ref/dotnet5.1/zh-hant/System.Net.Primitives.xml", + "ref/dotnet5.2/de/System.Net.Primitives.xml", + "ref/dotnet5.2/es/System.Net.Primitives.xml", + "ref/dotnet5.2/fr/System.Net.Primitives.xml", + "ref/dotnet5.2/it/System.Net.Primitives.xml", + "ref/dotnet5.2/ja/System.Net.Primitives.xml", + "ref/dotnet5.2/ko/System.Net.Primitives.xml", + "ref/dotnet5.2/ru/System.Net.Primitives.xml", + "ref/dotnet5.2/System.Net.Primitives.dll", + "ref/dotnet5.2/System.Net.Primitives.xml", + "ref/dotnet5.2/zh-hans/System.Net.Primitives.xml", + "ref/dotnet5.2/zh-hant/System.Net.Primitives.xml", + "ref/dotnet5.4/de/System.Net.Primitives.xml", + "ref/dotnet5.4/es/System.Net.Primitives.xml", + "ref/dotnet5.4/fr/System.Net.Primitives.xml", + "ref/dotnet5.4/it/System.Net.Primitives.xml", + "ref/dotnet5.4/ja/System.Net.Primitives.xml", + "ref/dotnet5.4/ko/System.Net.Primitives.xml", + "ref/dotnet5.4/ru/System.Net.Primitives.xml", + "ref/dotnet5.4/System.Net.Primitives.dll", + "ref/dotnet5.4/System.Net.Primitives.xml", + "ref/dotnet5.4/zh-hans/System.Net.Primitives.xml", + "ref/dotnet5.4/zh-hant/System.Net.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Net.Primitives.4.0.11-rc2-23525.nupkg", + "System.Net.Primitives.4.0.11-rc2-23525.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.WebSockets/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "QykOhQUn7S0rJYPbKflEWOf3Cpr6Ku5UhGmJY5s14t0g14H/5ibVg3KuLySGYvrRmxxx7s6Ydx/b7AcuwDA9hQ==", + "files": [ + "lib/dotnet5.4/System.Net.WebSockets.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.WebSockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Net.WebSockets.xml", + "ref/dotnet5.4/es/System.Net.WebSockets.xml", + "ref/dotnet5.4/fr/System.Net.WebSockets.xml", + "ref/dotnet5.4/it/System.Net.WebSockets.xml", + "ref/dotnet5.4/ja/System.Net.WebSockets.xml", + "ref/dotnet5.4/ko/System.Net.WebSockets.xml", + "ref/dotnet5.4/ru/System.Net.WebSockets.xml", + "ref/dotnet5.4/System.Net.WebSockets.dll", + "ref/dotnet5.4/System.Net.WebSockets.xml", + "ref/dotnet5.4/zh-hans/System.Net.WebSockets.xml", + "ref/dotnet5.4/zh-hant/System.Net.WebSockets.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.WebSockets.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.WebSockets.4.0.0-rc2-23525.nupkg", + "System.Net.WebSockets.4.0.0-rc2-23525.nupkg.sha512", + "System.Net.WebSockets.nuspec" + ] + }, + "System.ObjectModel/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "IJJ5i3tnyDWnrjK3GH81Bu3I+ie/MyKr7/V/LjYkVpKHlTaT1EdjLX40CqXaw3ObgqkLqSYz6iRJKaYkmGesXg==", + "files": [ + "lib/dotnet5.4/System.ObjectModel.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.ObjectModel.xml", + "ref/dotnet5.1/es/System.ObjectModel.xml", + "ref/dotnet5.1/fr/System.ObjectModel.xml", + "ref/dotnet5.1/it/System.ObjectModel.xml", + "ref/dotnet5.1/ja/System.ObjectModel.xml", + "ref/dotnet5.1/ko/System.ObjectModel.xml", + "ref/dotnet5.1/ru/System.ObjectModel.xml", + "ref/dotnet5.1/System.ObjectModel.dll", + "ref/dotnet5.1/System.ObjectModel.xml", + "ref/dotnet5.1/zh-hans/System.ObjectModel.xml", + "ref/dotnet5.1/zh-hant/System.ObjectModel.xml", + "ref/dotnet5.4/de/System.ObjectModel.xml", + "ref/dotnet5.4/es/System.ObjectModel.xml", + "ref/dotnet5.4/fr/System.ObjectModel.xml", + "ref/dotnet5.4/it/System.ObjectModel.xml", + "ref/dotnet5.4/ja/System.ObjectModel.xml", + "ref/dotnet5.4/ko/System.ObjectModel.xml", + "ref/dotnet5.4/ru/System.ObjectModel.xml", + "ref/dotnet5.4/System.ObjectModel.dll", + "ref/dotnet5.4/System.ObjectModel.xml", + "ref/dotnet5.4/zh-hans/System.ObjectModel.xml", + "ref/dotnet5.4/zh-hant/System.ObjectModel.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "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/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ObjectModel.4.0.11-rc2-23525.nupkg", + "System.ObjectModel.4.0.11-rc2-23525.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Reflection/4.0.0": { + "type": "package", + "sha512": "g96Rn8XuG7y4VfxPj/jnXroRJdQ8L3iN3k3zqsuzk4k3Nq4KMXARYiIO4BLW4GwX06uQpuYwRMcAC/aF117knQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Reflection.4.0.0.nupkg", + "System.Reflection.4.0.0.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "WbLtaCxoe5XdqEyZuGpemSQ8YBJ8cj11zx+yxOxJfHbNrmu7oMQ29+J50swaqg3soUc3BVBMqfIhb/7gocDHQA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Reflection.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.1.0-beta-23225.nupkg", + "System.Reflection.4.1.0-beta-23225.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "TwJEe1ecGUBSnuwbK/5Otg240Pkusu1SykDl1ZlmiqyL2RbmvKIMe//OcaaVajaq5IZI9XdSPqVIvhTzYHHQig==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/MonoAndroid10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/xamarinmac20/_._", + "ref/dotnet5.2/de/System.Reflection.Emit.xml", + "ref/dotnet5.2/es/System.Reflection.Emit.xml", + "ref/dotnet5.2/fr/System.Reflection.Emit.xml", + "ref/dotnet5.2/it/System.Reflection.Emit.xml", + "ref/dotnet5.2/ja/System.Reflection.Emit.xml", + "ref/dotnet5.2/ko/System.Reflection.Emit.xml", + "ref/dotnet5.2/ru/System.Reflection.Emit.xml", + "ref/dotnet5.2/System.Reflection.Emit.dll", + "ref/dotnet5.2/System.Reflection.Emit.xml", + "ref/dotnet5.2/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet5.2/zh-hant/System.Reflection.Emit.xml", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/xamarinmac20/_._", + "runtimes/aot/lib/netcore50/_._", + "System.Reflection.Emit.4.0.1-rc2-23525.nupkg", + "System.Reflection.Emit.4.0.1-rc2-23525.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", + "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "yemFBcrKv5b9UFu3dY0eFpzGan6arWNeecvD4Nvbua9OMqJTy9JevZw3S8tpFd84LLxJ8PuWdp7eylTjkHas5w==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/wp80/_._", + "ref/dotnet5.1/de/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet5.1/es/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet5.1/fr/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet5.1/it/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet5.1/ja/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet5.1/ko/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet5.1/ru/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet5.1/System.Reflection.Emit.Lightweight.dll", + "ref/dotnet5.1/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet5.1/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet5.1/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/net45/_._", + "ref/wp80/_._", + "runtimes/aot/lib/netcore50/_._", + "System.Reflection.Emit.Lightweight.4.0.1-rc2-23525.nupkg", + "System.Reflection.Emit.Lightweight.4.0.1-rc2-23525.nupkg.sha512", + "System.Reflection.Emit.Lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "S2zlLFK7KGY+vmP2idf9baP1vd3FSRhiRrDpzaDu57f0mqsMuXkbbtqxSncaN8SzvHbLu1OSp1ERiwSzCtcskw==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Reflection.Extensions.xml", + "ref/dotnet5.1/es/System.Reflection.Extensions.xml", + "ref/dotnet5.1/fr/System.Reflection.Extensions.xml", + "ref/dotnet5.1/it/System.Reflection.Extensions.xml", + "ref/dotnet5.1/ja/System.Reflection.Extensions.xml", + "ref/dotnet5.1/ko/System.Reflection.Extensions.xml", + "ref/dotnet5.1/ru/System.Reflection.Extensions.xml", + "ref/dotnet5.1/System.Reflection.Extensions.dll", + "ref/dotnet5.1/System.Reflection.Extensions.xml", + "ref/dotnet5.1/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet5.1/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "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/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.1-rc2-23525.nupkg", + "System.Reflection.Extensions.4.0.1-rc2-23525.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0.nupkg", + "System.Reflection.Primitives.4.0.0.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "n8m144jjCwhN/qtLih35a2sO33fLWm1U3eg51KxqAcAjJcw0nq1zWie8FZognBTPv7BXdW/G8xGbbvDGFoJwZA==", + "files": [ + "lib/DNXCore50/de/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/es/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/fr/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/it/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/ja/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/ko/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/ru/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/DNXCore50/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/zh-hans/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/zh-hant/System.Reflection.TypeExtensions.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/de/System.Reflection.TypeExtensions.xml", + "lib/net46/es/System.Reflection.TypeExtensions.xml", + "lib/net46/fr/System.Reflection.TypeExtensions.xml", + "lib/net46/it/System.Reflection.TypeExtensions.xml", + "lib/net46/ja/System.Reflection.TypeExtensions.xml", + "lib/net46/ko/System.Reflection.TypeExtensions.xml", + "lib/net46/ru/System.Reflection.TypeExtensions.xml", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.xml", + "lib/net46/zh-hans/System.Reflection.TypeExtensions.xml", + "lib/net46/zh-hant/System.Reflection.TypeExtensions.xml", + "lib/netcore50/de/System.Reflection.TypeExtensions.xml", + "lib/netcore50/es/System.Reflection.TypeExtensions.xml", + "lib/netcore50/fr/System.Reflection.TypeExtensions.xml", + "lib/netcore50/it/System.Reflection.TypeExtensions.xml", + "lib/netcore50/ja/System.Reflection.TypeExtensions.xml", + "lib/netcore50/ko/System.Reflection.TypeExtensions.xml", + "lib/netcore50/ru/System.Reflection.TypeExtensions.xml", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.xml", + "lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml", + "lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/de/System.Reflection.TypeExtensions.xml", + "ref/net46/es/System.Reflection.TypeExtensions.xml", + "ref/net46/fr/System.Reflection.TypeExtensions.xml", + "ref/net46/it/System.Reflection.TypeExtensions.xml", + "ref/net46/ja/System.Reflection.TypeExtensions.xml", + "ref/net46/ko/System.Reflection.TypeExtensions.xml", + "ref/net46/ru/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.xml", + "ref/net46/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/net46/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml", + "System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg", + "System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0.nupkg", + "System.Resources.ResourceManager.4.0.0.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Pp+0DOwNu+L6fYGLejweNbbxXYW9EZTA9UpVBLvWTAldWsTWQ15J1LYuDIULWP3G2JBnKDtzZzQj4VIjzW4zxQ==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/es/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/fr/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/it/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/ja/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/ko/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/ru/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/System.Resources.ResourceManager.dll", + "ref/dotnet5.1/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.1-rc2-23525.nupkg", + "System.Resources.ResourceManager.4.0.1-rc2-23525.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0": { + "type": "package", + "sha512": "Uq9epame8hEqJlj4KaWb67dDJvj4IM37jRFGVeFbugRdPz48bR0voyBhrbf3iSa2tAmlkg4lsa6BUOL9iwlMew==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Runtime.4.0.0.nupkg", + "System.Runtime.4.0.0.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.21-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "LycbvHHYEuhrvcrwJ7JW1uKOXWUSC1gMn+M5zCTMYRrBomqYJnUu2Ej+oNJZibV4pdvjOSNdnLRBjy0VS0pJHQ==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Runtime.xml", + "ref/dotnet5.1/es/System.Runtime.xml", + "ref/dotnet5.1/fr/System.Runtime.xml", + "ref/dotnet5.1/it/System.Runtime.xml", + "ref/dotnet5.1/ja/System.Runtime.xml", + "ref/dotnet5.1/ko/System.Runtime.xml", + "ref/dotnet5.1/ru/System.Runtime.xml", + "ref/dotnet5.1/System.Runtime.dll", + "ref/dotnet5.1/System.Runtime.xml", + "ref/dotnet5.1/zh-hans/System.Runtime.xml", + "ref/dotnet5.1/zh-hant/System.Runtime.xml", + "ref/dotnet5.3/de/System.Runtime.xml", + "ref/dotnet5.3/es/System.Runtime.xml", + "ref/dotnet5.3/fr/System.Runtime.xml", + "ref/dotnet5.3/it/System.Runtime.xml", + "ref/dotnet5.3/ja/System.Runtime.xml", + "ref/dotnet5.3/ko/System.Runtime.xml", + "ref/dotnet5.3/ru/System.Runtime.xml", + "ref/dotnet5.3/System.Runtime.dll", + "ref/dotnet5.3/System.Runtime.xml", + "ref/dotnet5.3/zh-hans/System.Runtime.xml", + "ref/dotnet5.3/zh-hant/System.Runtime.xml", + "ref/dotnet5.4/de/System.Runtime.xml", + "ref/dotnet5.4/es/System.Runtime.xml", + "ref/dotnet5.4/fr/System.Runtime.xml", + "ref/dotnet5.4/it/System.Runtime.xml", + "ref/dotnet5.4/ja/System.Runtime.xml", + "ref/dotnet5.4/ko/System.Runtime.xml", + "ref/dotnet5.4/ru/System.Runtime.xml", + "ref/dotnet5.4/System.Runtime.dll", + "ref/dotnet5.4/System.Runtime.xml", + "ref/dotnet5.4/zh-hans/System.Runtime.xml", + "ref/dotnet5.4/zh-hant/System.Runtime.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.21-rc2-23525.nupkg", + "System.Runtime.4.0.21-rc2-23525.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0": { + "type": "package", + "sha512": "zPzwoJcA7qar/b5Ihhzfcdr3vBOR8FIg7u//Qc5mqyAriasXuMFVraBZ5vOQq5asfun9ryNEL8Z2BOlUK5QRqA==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Runtime.Extensions.4.0.0.nupkg", + "System.Runtime.Extensions.4.0.0.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "R6crzqPfrw8M1hohRtO9ae8CngdmbmB6DLMt4asm0KiP7i4ufliJcGRpn++mxJwPYgiLw757t1KN5sBDnyvvkw==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Runtime.Extensions.xml", + "ref/dotnet5.1/es/System.Runtime.Extensions.xml", + "ref/dotnet5.1/fr/System.Runtime.Extensions.xml", + "ref/dotnet5.1/it/System.Runtime.Extensions.xml", + "ref/dotnet5.1/ja/System.Runtime.Extensions.xml", + "ref/dotnet5.1/ko/System.Runtime.Extensions.xml", + "ref/dotnet5.1/ru/System.Runtime.Extensions.xml", + "ref/dotnet5.1/System.Runtime.Extensions.dll", + "ref/dotnet5.1/System.Runtime.Extensions.xml", + "ref/dotnet5.1/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet5.1/zh-hant/System.Runtime.Extensions.xml", + "ref/dotnet5.4/de/System.Runtime.Extensions.xml", + "ref/dotnet5.4/es/System.Runtime.Extensions.xml", + "ref/dotnet5.4/fr/System.Runtime.Extensions.xml", + "ref/dotnet5.4/it/System.Runtime.Extensions.xml", + "ref/dotnet5.4/ja/System.Runtime.Extensions.xml", + "ref/dotnet5.4/ko/System.Runtime.Extensions.xml", + "ref/dotnet5.4/ru/System.Runtime.Extensions.xml", + "ref/dotnet5.4/System.Runtime.Extensions.dll", + "ref/dotnet5.4/System.Runtime.Extensions.xml", + "ref/dotnet5.4/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet5.4/zh-hant/System.Runtime.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Runtime.Extensions.4.0.11-rc2-23525.nupkg", + "System.Runtime.Extensions.4.0.11-rc2-23525.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0.nupkg", + "System.Runtime.Handles.4.0.0.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.21-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "rWJNPZVqqjGxOhwWLdDh20vbH1OHXMqydO2QDO2vJApFCKEgyR2ySG2w6Ls665jGeUYzT2mQ+ZGTkcyzKOJdyg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.2/de/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/es/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/fr/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/it/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/ja/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/ko/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/ru/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/System.Runtime.InteropServices.dll", + "ref/dotnet5.2/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/de/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/es/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/fr/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/it/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/ja/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/ko/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/ru/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/System.Runtime.InteropServices.dll", + "ref/dotnet5.3/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/de/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/es/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/fr/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/it/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/ja/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/ko/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/ru/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/System.Runtime.InteropServices.dll", + "ref/dotnet5.4/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/zh-hant/System.Runtime.InteropServices.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.21-rc2-23525.nupkg", + "System.Runtime.InteropServices.4.0.21-rc2-23525.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Ha25KM/Db3dmbZz9UWgn7ChGPmqFHLDyWTxuvoJtaUq8ziwTW4hP0tlUfEKZBa3FwEB6Nero7VLX4h0TQs0k6Q==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg", + "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg.sha512", + "System.Runtime.InteropServices.RuntimeInformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Runtime.Numerics.xml", + "ref/dotnet/es/System.Runtime.Numerics.xml", + "ref/dotnet/fr/System.Runtime.Numerics.xml", + "ref/dotnet/it/System.Runtime.Numerics.xml", + "ref/dotnet/ja/System.Runtime.Numerics.xml", + "ref/dotnet/ko/System.Runtime.Numerics.xml", + "ref/dotnet/ru/System.Runtime.Numerics.xml", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/dotnet/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Runtime.Numerics.4.0.0.nupkg", + "System.Runtime.Numerics.4.0.0.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "QQRiGO33X/l9n5rikQfRoHPtX+0k4m3dxWFIZyH+63qsshU7S89QqmVsEjFYhHhEtsTbiKdkyNKrqTA7aj9XPQ==", + "files": [ + "lib/dotnet5.4/System.Security.Claims.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Security.Claims.xml", + "ref/dotnet5.4/es/System.Security.Claims.xml", + "ref/dotnet5.4/fr/System.Security.Claims.xml", + "ref/dotnet5.4/it/System.Security.Claims.xml", + "ref/dotnet5.4/ja/System.Security.Claims.xml", + "ref/dotnet5.4/ko/System.Security.Claims.xml", + "ref/dotnet5.4/ru/System.Security.Claims.xml", + "ref/dotnet5.4/System.Security.Claims.dll", + "ref/dotnet5.4/System.Security.Claims.xml", + "ref/dotnet5.4/zh-hans/System.Security.Claims.xml", + "ref/dotnet5.4/zh-hant/System.Security.Claims.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Claims.4.0.1-rc2-23525.nupkg", + "System.Security.Claims.4.0.1-rc2-23525.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "YG9pKBlPiXYSElZ2Yz8K9WuKO9/pjiypOZC44Ovjh8LUFBRCrMoikR3MQBefkqc4pQPDcY42YowcjkvfNU31Ew==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "H4fSJsMPMOM5SmfTMJ9AD0CgYshIPYnCf+2gJ9px0eg/Xjm9Q6JsVpTgbl6osdgXWNlwA45voiq4DRsniku5eg==", + "files": [ + "lib/dotnet5.4/System.Security.Cryptography.Cng.dll", + "lib/net46/System.Security.Cryptography.Cng.dll", + "ref/dotnet5.4/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "System.Security.Cryptography.Cng.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.Cng.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "5s7Sz0yUhfBjnJxIZdKxtM/WevPg36jnaUHFji4SFDYFHLkiV6xrEP8HhemZqW5ix7IfiaCDKqGBOceugqxarQ==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Csp.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/System.Security.Cryptography.Csp.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Csp.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.Csp.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "w7S6YFfl1dDdfm2dEJVsKBGBgB65CD/AyEzPXrPladnuUl4AJffUIAGf9MnWbUR//qraMUaTluzWQmUs6bE5KA==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/es/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/fr/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/it/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/ja/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/ko/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/ru/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll", + "ref/dotnet5.4/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "4XctVVQ8Ma2eDOiWjE6iUo44unjourG7k5Zr91Bm74DpMVEn3+lmZj9pJn3cthp/WgpRRJXaQRfE7mKEiEUjog==", + "files": [ + "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Primitives.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.Primitives.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Xzho0jNobWUb3UZtos0Pv/WI6PzBTOxLrisrgKE3xsZhKtevpThJ+1g1OhegeSy5cDpFy0x8bw8sr8qzumNBXQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Xw8pvBLIpmqA1TOK2FNI9sORMgxtcrqP+XGI/pKiny7iu0G+jKeQUQqd/qWCNjT0BGougN+a4ygXzMCFGp7Mog==", + "files": [ + "lib/dotnet5.1/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Security.Principal.xml", + "ref/dotnet5.1/es/System.Security.Principal.xml", + "ref/dotnet5.1/fr/System.Security.Principal.xml", + "ref/dotnet5.1/it/System.Security.Principal.xml", + "ref/dotnet5.1/ja/System.Security.Principal.xml", + "ref/dotnet5.1/ko/System.Security.Principal.xml", + "ref/dotnet5.1/ru/System.Security.Principal.xml", + "ref/dotnet5.1/System.Security.Principal.dll", + "ref/dotnet5.1/System.Security.Principal.xml", + "ref/dotnet5.1/zh-hans/System.Security.Principal.xml", + "ref/dotnet5.1/zh-hant/System.Security.Principal.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.1-rc2-23525.nupkg", + "System.Security.Principal.4.0.1-rc2-23525.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Text.Encoding/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "M1k26o4qE9PGxYyO0Q17houEVrE+iPk8wnnA1Z+sbWGRTeXZxWCKEr7K6yH9GXaV/zcNAPM4KM5RAnuHAN5QdQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Text.Encoding.xml", + "ref/dotnet5.1/es/System.Text.Encoding.xml", + "ref/dotnet5.1/fr/System.Text.Encoding.xml", + "ref/dotnet5.1/it/System.Text.Encoding.xml", + "ref/dotnet5.1/ja/System.Text.Encoding.xml", + "ref/dotnet5.1/ko/System.Text.Encoding.xml", + "ref/dotnet5.1/ru/System.Text.Encoding.xml", + "ref/dotnet5.1/System.Text.Encoding.dll", + "ref/dotnet5.1/System.Text.Encoding.xml", + "ref/dotnet5.1/zh-hans/System.Text.Encoding.xml", + "ref/dotnet5.1/zh-hant/System.Text.Encoding.xml", + "ref/dotnet5.4/de/System.Text.Encoding.xml", + "ref/dotnet5.4/es/System.Text.Encoding.xml", + "ref/dotnet5.4/fr/System.Text.Encoding.xml", + "ref/dotnet5.4/it/System.Text.Encoding.xml", + "ref/dotnet5.4/ja/System.Text.Encoding.xml", + "ref/dotnet5.4/ko/System.Text.Encoding.xml", + "ref/dotnet5.4/ru/System.Text.Encoding.xml", + "ref/dotnet5.4/System.Text.Encoding.dll", + "ref/dotnet5.4/System.Text.Encoding.xml", + "ref/dotnet5.4/zh-hans/System.Text.Encoding.xml", + "ref/dotnet5.4/zh-hant/System.Text.Encoding.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.11-rc2-23525.nupkg", + "System.Text.Encoding.4.0.11-rc2-23525.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", + "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10.nupkg", + "System.Text.Encoding.Extensions.4.0.10.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "1xpCMiJZBhbDNi7QoIZvU3+XHDlOr6E7N3zvoWjdzdXTnpnU6dgYZ0qrRrGN8sC4p2tRcbx4F+jA2uQAqqOA+g==", + "files": [ + "lib/dotnet5.1/System.Text.Encodings.Web.dll", + "System.Text.Encodings.Web.4.0.0-rc2-23525.nupkg", + "System.Text.Encodings.Web.4.0.0-rc2-23525.nupkg.sha512", + "System.Text.Encodings.Web.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "M1JdxnEZ1Mnv6jro+SvVI2ldrEEYhqP7LdhcX0uGm94q1Mg46Y9P27l6g1yz+Qgy2b3oi3tky5aF8+2VJwTuUA==", + "files": [ + "lib/dotnet5.4/System.Text.RegularExpressions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/es/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/fr/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/it/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/ja/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/ko/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/ru/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/System.Text.RegularExpressions.dll", + "ref/dotnet5.1/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/zh-hant/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/de/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/es/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/fr/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/it/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/ja/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/ko/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/ru/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/System.Text.RegularExpressions.dll", + "ref/dotnet5.4/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/zh-hant/System.Text.RegularExpressions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Text.RegularExpressions.4.0.11-rc2-23525.nupkg", + "System.Text.RegularExpressions.4.0.11-rc2-23525.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0": { + "type": "package", + "sha512": "H6O/9gUrjPDNYanh/7OFGAZHjVXvEuITD0RcnjfvIV04HOGrOPqUBU0kmz9RIX/7YGgCQn1o1S2DX6Cuv8kVGQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Threading.4.0.0.nupkg", + "System.Threading.4.0.0.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Vb+NknoSeJKz8FT6nCpDfjtZGOQOfoQAmi/kZxeXgdKwppTMp+Ytv5yqvvnYQDtBQcO3OnrnxUDg8WMTtU/v6w==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Threading.xml", + "ref/dotnet5.1/es/System.Threading.xml", + "ref/dotnet5.1/fr/System.Threading.xml", + "ref/dotnet5.1/it/System.Threading.xml", + "ref/dotnet5.1/ja/System.Threading.xml", + "ref/dotnet5.1/ko/System.Threading.xml", + "ref/dotnet5.1/ru/System.Threading.xml", + "ref/dotnet5.1/System.Threading.dll", + "ref/dotnet5.1/System.Threading.xml", + "ref/dotnet5.1/zh-hans/System.Threading.xml", + "ref/dotnet5.1/zh-hant/System.Threading.xml", + "ref/dotnet5.4/de/System.Threading.xml", + "ref/dotnet5.4/es/System.Threading.xml", + "ref/dotnet5.4/fr/System.Threading.xml", + "ref/dotnet5.4/it/System.Threading.xml", + "ref/dotnet5.4/ja/System.Threading.xml", + "ref/dotnet5.4/ko/System.Threading.xml", + "ref/dotnet5.4/ru/System.Threading.xml", + "ref/dotnet5.4/System.Threading.dll", + "ref/dotnet5.4/System.Threading.xml", + "ref/dotnet5.4/zh-hans/System.Threading.xml", + "ref/dotnet5.4/zh-hant/System.Threading.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Threading.4.0.11-rc2-23525.nupkg", + "System.Threading.4.0.11-rc2-23525.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0.nupkg", + "System.Threading.Overlapped.4.0.0.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "AnTRum7I9zd11FK9QxLsCWmt0VyxWyJjj2b/dFCQIFXh9iOPCkApf4sDcgRN7c6e/97CZSGHIKCvTO/zxeuGcA==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Threading.Tasks.xml", + "ref/dotnet5.1/es/System.Threading.Tasks.xml", + "ref/dotnet5.1/fr/System.Threading.Tasks.xml", + "ref/dotnet5.1/it/System.Threading.Tasks.xml", + "ref/dotnet5.1/ja/System.Threading.Tasks.xml", + "ref/dotnet5.1/ko/System.Threading.Tasks.xml", + "ref/dotnet5.1/ru/System.Threading.Tasks.xml", + "ref/dotnet5.1/System.Threading.Tasks.dll", + "ref/dotnet5.1/System.Threading.Tasks.xml", + "ref/dotnet5.1/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet5.1/zh-hant/System.Threading.Tasks.xml", + "ref/dotnet5.4/de/System.Threading.Tasks.xml", + "ref/dotnet5.4/es/System.Threading.Tasks.xml", + "ref/dotnet5.4/fr/System.Threading.Tasks.xml", + "ref/dotnet5.4/it/System.Threading.Tasks.xml", + "ref/dotnet5.4/ja/System.Threading.Tasks.xml", + "ref/dotnet5.4/ko/System.Threading.Tasks.xml", + "ref/dotnet5.4/ru/System.Threading.Tasks.xml", + "ref/dotnet5.4/System.Threading.Tasks.dll", + "ref/dotnet5.4/System.Threading.Tasks.xml", + "ref/dotnet5.4/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet5.4/zh-hant/System.Threading.Tasks.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.11-rc2-23525.nupkg", + "System.Threading.Tasks.4.0.11-rc2-23525.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Glimpse.Common ", + "Microsoft.Extensions.DiagnosticAdapter >= 1.0.0-*", + "Microsoft.AspNet.FileProviders.Physical >= 1.0.0-*", + "Microsoft.AspNet.WebApi.Client >= 5.2.2", + "System.Net.Http >= 4.0.0", + "System.Diagnostics.DiagnosticSource >= 4.0.0-beta-*", + "Microsoft.Extensions.Configuration.Json >= 1.0.0-*", + "Microsoft.AspNet.Hosting >= 1.0.0-*" + ], + ".NETFramework,Version=v4.5.1": [], + ".NETPlatform,Version=v5.4": [] + } +} \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/project.json b/src/Glimpse.Agent.AspNet/project.json index 16200ba8..ac67bfd9 100644 --- a/src/Glimpse.Agent.AspNet/project.json +++ b/src/Glimpse.Agent.AspNet/project.json @@ -1,4 +1,4 @@ -{ +{ "version": "2.0.0-*", "authors": [ "nmolnar", "avanderhoorn" ], "owners": [ "nmolnar", "avanderhoorn" ], @@ -12,20 +12,16 @@ "releaseNotes": "Initial release of Glimpse.Agent.AspNet.", "tags": [ "ASP.NET", "Web", "Debugging", "Diagnostics", "Agent", "MVC", "EF", "EntityFramework" ], "compilationOptions": { - "define": [ "DNX" ] + "define": [ "SystemWeb" ] }, "dependencies": { "Glimpse.Common": "", - "Microsoft.Extensions.DiagnosticAdapter": "1.0.0-*", "Microsoft.AspNet.FileProviders.Physical": "1.0.0-*", "Microsoft.AspNet.WebApi.Client": "5.2.2", - "System.Net.Http": "4.0.0", - "System.Diagnostics.DiagnosticSource": "4.0.0-beta-*", "Microsoft.Extensions.Configuration.Json": "1.0.0-*", - "Microsoft.AspNet.Hosting": "1.0.0-*" + "System.Net.Http": "4.0.0" }, "frameworks": { - "net451": { }, - "dotnet5.4": { } + "net451": { } } } \ No newline at end of file diff --git a/src/Glimpse.Common/Glimpse.Common.xproj b/src/Glimpse.Common/Glimpse.Common.xproj index a93ff1df..01d02a6f 100644 --- a/src/Glimpse.Common/Glimpse.Common.xproj +++ b/src/Glimpse.Common/Glimpse.Common.xproj @@ -18,7 +18,7 @@ - + diff --git a/src/Glimpse.Common/GlimpseOptions.cs b/src/Glimpse.Common/GlimpseOptions.cs index 9ac66c42..899107a1 100644 --- a/src/Glimpse.Common/GlimpseOptions.cs +++ b/src/Glimpse.Common/GlimpseOptions.cs @@ -1,9 +1,6 @@ -using System; - -namespace Glimpse +namespace Glimpse { public class GlimpseOptions { - } } \ No newline at end of file diff --git a/src/Glimpse.Common/GlimpseServices.cs b/src/Glimpse.Common/GlimpseServices.cs index b59d43d8..4a41fba9 100644 --- a/src/Glimpse.Common/GlimpseServices.cs +++ b/src/Glimpse.Common/GlimpseServices.cs @@ -18,14 +18,21 @@ public static IEnumerable GetDefaultServices() // // Discovery & Reflection. // + // TODO: consider making above singleton +#if DNX + services.AddTransient(); +#endif services.AddTransient(); services.AddTransient(); - services.AddTransient(); services.AddTransient(); - // TODO: consider making above singleton + // + // Extensions + // services.AddSingleton, DefaultExtensionProvider>(); +#if DNX services.AddSingleton, DefaultExtensionProvider>(); +#endif // // Context. diff --git a/src/Glimpse.Common/Initialization/IRegisterServices.cs b/src/Glimpse.Common/Initialization/IRegisterServices.cs index 7c8b1c51..019be284 100644 --- a/src/Glimpse.Common/Initialization/IRegisterServices.cs +++ b/src/Glimpse.Common/Initialization/IRegisterServices.cs @@ -1,7 +1,9 @@ -namespace Glimpse.Common.Initialization +using Microsoft.Extensions.DependencyInjection; + +namespace Glimpse.Common.Initialization { public interface IRegisterServices { - void RegisterServices(GlimpseServiceCollectionBuilder services); + void RegisterServices(IServiceCollection services); } -} +} \ No newline at end of file diff --git a/src/Glimpse.Common/Initialization/OptionsResourceOptionsProvider.cs b/src/Glimpse.Common/Initialization/OptionsResourceOptionsProvider.cs index 931182d5..4b026b5a 100644 --- a/src/Glimpse.Common/Initialization/OptionsResourceOptionsProvider.cs +++ b/src/Glimpse.Common/Initialization/OptionsResourceOptionsProvider.cs @@ -16,4 +16,4 @@ public ResourceOptions BuildInstance() return _resourceOptions; } } -} +} \ No newline at end of file diff --git a/src/Glimpse.Common/ApplicationBuilderExtensions.cs b/src/Glimpse.Common/_DNX/ApplicationBuilderExtensions.cs similarity index 92% rename from src/Glimpse.Common/ApplicationBuilderExtensions.cs rename to src/Glimpse.Common/_DNX/ApplicationBuilderExtensions.cs index 42dfe808..84d97952 100644 --- a/src/Glimpse.Common/ApplicationBuilderExtensions.cs +++ b/src/Glimpse.Common/_DNX/ApplicationBuilderExtensions.cs @@ -1,4 +1,5 @@ -using Glimpse.Common.Initialization; +#if DNX +using Glimpse.Common.Initialization; using Glimpse.Initialization; using Microsoft.AspNet.Builder; using Microsoft.Extensions.DependencyInjection; @@ -20,3 +21,4 @@ public static IApplicationBuilder UseGlimpse(this IApplicationBuilder appBuilder } } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Common/GlimpseServiceCollectionBuilder.cs b/src/Glimpse.Common/_DNX/GlimpseServiceCollectionBuilder.cs similarity index 87% rename from src/Glimpse.Common/GlimpseServiceCollectionBuilder.cs rename to src/Glimpse.Common/_DNX/GlimpseServiceCollectionBuilder.cs index 031cd006..a3c88f3a 100644 --- a/src/Glimpse.Common/GlimpseServiceCollectionBuilder.cs +++ b/src/Glimpse.Common/_DNX/GlimpseServiceCollectionBuilder.cs @@ -1,4 +1,5 @@ -using Glimpse.Internal; +#if DNX +using Glimpse.Internal; using Microsoft.Extensions.DependencyInjection; namespace Glimpse @@ -10,4 +11,5 @@ public GlimpseServiceCollectionBuilder(IServiceCollection innerCollection) { } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Common/GlimpseServiceCollectionExtensions.cs b/src/Glimpse.Common/_DNX/GlimpseServiceCollectionExtensions.cs similarity index 93% rename from src/Glimpse.Common/GlimpseServiceCollectionExtensions.cs rename to src/Glimpse.Common/_DNX/GlimpseServiceCollectionExtensions.cs index 4b08ed6c..baa3797a 100644 --- a/src/Glimpse.Common/GlimpseServiceCollectionExtensions.cs +++ b/src/Glimpse.Common/_DNX/GlimpseServiceCollectionExtensions.cs @@ -1,4 +1,5 @@ -using Glimpse.Common.Initialization; +#if DNX +using Glimpse.Common.Initialization; using Glimpse.Initialization; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection.Extensions; @@ -23,4 +24,5 @@ public static GlimpseServiceCollectionBuilder AddGlimpse(this IServiceCollection return glimpseServiceCollectionBuilder; } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Common/Initialization/IRegisterMiddleware.cs b/src/Glimpse.Common/_DNX/Initialization/IRegisterMiddleware.cs similarity index 76% rename from src/Glimpse.Common/Initialization/IRegisterMiddleware.cs rename to src/Glimpse.Common/_DNX/Initialization/IRegisterMiddleware.cs index c961d6bc..5f6a66f4 100644 --- a/src/Glimpse.Common/Initialization/IRegisterMiddleware.cs +++ b/src/Glimpse.Common/_DNX/Initialization/IRegisterMiddleware.cs @@ -1,4 +1,5 @@ -using Microsoft.AspNet.Builder; +#if DNX +using Microsoft.AspNet.Builder; namespace Glimpse.Common.Initialization { @@ -7,3 +8,4 @@ public interface IRegisterMiddleware void RegisterMiddleware(IApplicationBuilder appBuilder); } } +#endif \ No newline at end of file diff --git a/src/Glimpse.Common/Internal/Reflection/DefaultAssemblyProvider.cs b/src/Glimpse.Common/_DNX/Internal/Reflection/DefaultAssemblyProvider.cs similarity index 91% rename from src/Glimpse.Common/Internal/Reflection/DefaultAssemblyProvider.cs rename to src/Glimpse.Common/_DNX/Internal/Reflection/DefaultAssemblyProvider.cs index adfa6fec..f17b1b19 100644 --- a/src/Glimpse.Common/Internal/Reflection/DefaultAssemblyProvider.cs +++ b/src/Glimpse.Common/_DNX/Internal/Reflection/DefaultAssemblyProvider.cs @@ -1,4 +1,5 @@ -using Microsoft.Extensions.PlatformAbstractions; +#if DNX +using Microsoft.Extensions.PlatformAbstractions; using System.Collections.Generic; using System.Linq; using System.Reflection; @@ -23,4 +24,5 @@ public IEnumerable GetCandidateAssemblies(string coreLibrary) return assemblies; } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Common/_DNX_project.json b/src/Glimpse.Common/_DNX_project.json new file mode 100644 index 00000000..8f508f6f --- /dev/null +++ b/src/Glimpse.Common/_DNX_project.json @@ -0,0 +1,39 @@ +{ + "version": "2.0.0-*", + "authors": [ "nmolnar", "avanderhoorn" ], + "owners": [ "nmolnar", "avanderhoorn" ], + "title": "Glimpse Common", + "licenseUrl": "https://github.com/Glimpse/Glimpse.Prototype/blob/dev/LICENSE.txt", + "projectUrl": "http://getglimpse.com", + "iconUrl": "http://getglimpse.com/content/glimpse100.png", + "requireLicenseAcceptance": false, + "description": "This package contains common Glimpse interfaces and components, and is not intended for direct consumption.", + "summary": "Glimpse.Common contains common Glimpse interfaces and components, and is not intended for direct consumption.", + "releaseNotes": "Initial release of Glimpse.Common.", + "tags": [ "ASP.NET", "Web", "Debugging", "Diagnostics" ], + "compilationOptions": { + "define": ["DNX"] + }, + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-*", + "Microsoft.Extensions.DependencyInjection": "1.0.0-*", + "Microsoft.Extensions.Logging": "1.0.0-*", + "Microsoft.Extensions.OptionsModel": "1.0.0-*", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-*", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5" + }, + "frameworks": { + "net451": { }, + "dotnet5.4": { + "dependencies": { + "System.ObjectModel": "4.0.11-*", + "System.Runtime": "4.0.21-*", + "System.Security.Cryptography.Algorithms": "4.0.0-*", + "System.Text.RegularExpressions": "4.0.11-*", + "System.Threading": "4.0.11-*" + } + } + } +} \ No newline at end of file diff --git a/src/Glimpse.Common/_DNX_project.lock.json b/src/Glimpse.Common/_DNX_project.lock.json new file mode 100644 index 00000000..7ee6c52c --- /dev/null +++ b/src/Glimpse.Common/_DNX_project.lock.json @@ -0,0 +1,6677 @@ +{ + "locked": false, + "version": 2, + "targets": { + ".NETFramework,Version=v4.5.1": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/net45/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.IO/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Threading/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + ".NETPlatform,Version=v5.4": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Tools": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Globalization.Extensions": "4.0.1-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525", + "System.Text.Encodings.Web": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Collections": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Linq": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.0.10", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "dependencies": { + "System.AppContext": "4.0.1-rc2-23525", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + } + }, + "System.AppContext/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Collections.Concurrent.dll": {} + } + }, + "System.ComponentModel/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.ComponentModel": "4.0.0", + "System.ComponentModel.Primitives": "4.0.0", + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet5.4/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Security.Claims/4.0.1-rc2-23525": { + "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.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Security.Principal": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Security.Principal.dll": {} + } + }, + "System.Text.Encoding/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.Tasks.dll": {} + } + } + }, + ".NETFramework,Version=v4.5.1/win7-x86": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/net45/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.IO/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Threading/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + ".NETFramework,Version=v4.5.1/win7-x64": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/net45/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.IO/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Threading/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + ".NETPlatform,Version=v5.4/win7-x86": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Tools": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Globalization.Extensions": "4.0.1-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525", + "System.Text.Encodings.Web": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Collections": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Linq": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.0.10", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "dependencies": { + "System.AppContext": "4.0.1-rc2-23525", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Collections.Concurrent": "4.0.0", + "System.Diagnostics.Debug": "4.0.10", + "System.Linq": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Globalization.Calendars": "4.0.0", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Runtime.Numerics": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Cng": "4.0.0-rc2-23525", + "System.Security.Cryptography.Csp": "4.0.0-rc2-23525", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "runtime.win7.System.Threading/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + } + }, + "System.AppContext/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Collections.Concurrent.dll": {} + } + }, + "System.ComponentModel/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.ComponentModel": "4.0.0", + "System.ComponentModel.Primitives": "4.0.0", + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet5.4/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.1-rc2-23525": { + "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.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Security.Principal": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Security.Principal.dll": {} + } + }, + "System.Text.Encoding/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.Tasks.dll": {} + } + } + }, + ".NETPlatform,Version=v5.4/win7-x64": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Tools": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Globalization.Extensions": "4.0.1-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525", + "System.Text.Encodings.Web": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Collections": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Linq": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.0.10", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "dependencies": { + "System.AppContext": "4.0.1-rc2-23525", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Collections.Concurrent": "4.0.0", + "System.Diagnostics.Debug": "4.0.10", + "System.Linq": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Globalization.Calendars": "4.0.0", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Runtime.Numerics": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Cng": "4.0.0-rc2-23525", + "System.Security.Cryptography.Csp": "4.0.0-rc2-23525", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "runtime.win7.System.Threading/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + } + }, + "System.AppContext/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Collections.Concurrent.dll": {} + } + }, + "System.ComponentModel/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.ComponentModel": "4.0.0", + "System.ComponentModel.Primitives": "4.0.0", + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet5.4/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.1-rc2-23525": { + "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.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Security.Principal": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Security.Principal.dll": {} + } + }, + "System.Text.Encoding/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "serviceable": true, + "sha512": "nTSnUeiLsYx55rbORWX7MP7dM6tKwUN4LGultn5WEshq9sArC6tjmazB5NYxw3PBb7ptiKsupv3icc1FN5FAgg==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.xml", + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll", + "lib/net451/Microsoft.AspNet.Http.Abstractions.xml", + "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16009.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "serviceable": true, + "sha512": "vk/l2BgRDzy2LERj1Oh8Znk6iiPlLlz1O2gREn+cbtiD3P3ATRH1S9MFc7SM1AZR6VSPdZm6exhF1nt3q0EpXg==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.xml", + "lib/net451/Microsoft.AspNet.Http.Features.dll", + "lib/net451/Microsoft.AspNet.Http.Features.xml", + "Microsoft.AspNet.Http.Features.1.0.0-rc2-16009.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "serviceable": true, + "sha512": "MOYgTTWkUXDE2bS76CFIH6E+TytMilisgAJYAcRxRRYAYh/7I45KCuJDCP5l/2NA4mIgfecVUeXTe9EHn7etdA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.xml", + "lib/net451/Microsoft.Extensions.Configuration.dll", + "lib/net451/Microsoft.Extensions.Configuration.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.xml", + "Microsoft.Extensions.Configuration.1.0.0-rc2-15866.nupkg", + "Microsoft.Extensions.Configuration.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "serviceable": true, + "sha512": "mCbiKPorBDupxnYahPCdAMbEr+5j8mzuZVrUzjhPAnnFA94POhZ2US+gdf2exDhLzIM0cDy0mUSVWIjlcIr1QA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.xml", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15866.nupkg", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "serviceable": true, + "sha512": "2wI+qIu9YedvCLfep2RxBTYyAqy6Mkr9bVJwzZBHw7yg/GEpCXeOhppWvEXEd/I6sqWWUB+fYNnZtm5h9NlH8A==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net451/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.Binder.xml", + "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15866.nupkg", + "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.Binder.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "serviceable": true, + "sha512": "cuFxC3SPMIOIX+uUHo9QEri+P9DC6CPkLltJRq2qwgjFIMQ8uJ9nJI6HUYZpEU2Kyh6nm2DIrVSnjG5ycsk9cQ==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll", + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.xml", + "lib/net451/Microsoft.Extensions.DependencyInjection.dll", + "lib/net451/Microsoft.Extensions.DependencyInjection.xml", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.dll", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.xml", + "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15839.nupkg", + "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15839.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "serviceable": true, + "sha512": "JxM3ERvmmjQqRNfQlTeXnjWAqrIzoe+x5alZLuSOw2b5p/191vObRKi0SuFmFvBi/mPoHYqth6cLwSLTASeD3Q==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15839.nupkg", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15839.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "serviceable": true, + "sha512": "jwr1ZH/IUqG6kLpSi8lUueZB/JFQWJUNMjPgpfObmaW7/mfl83/6qDhm7I6Z9Ix0ULjWDEAGmaHTykE06bB/eA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll", + "lib/dotnet5.4/Microsoft.Extensions.Logging.xml", + "lib/net451/Microsoft.Extensions.Logging.dll", + "lib/net451/Microsoft.Extensions.Logging.xml", + "lib/netcore50/Microsoft.Extensions.Logging.dll", + "lib/netcore50/Microsoft.Extensions.Logging.xml", + "Microsoft.Extensions.Logging.1.0.0-rc2-15867.nupkg", + "Microsoft.Extensions.Logging.1.0.0-rc2-15867.nupkg.sha512", + "Microsoft.Extensions.Logging.nuspec" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "serviceable": true, + "sha512": "f37cph4Ec/2fSoy1kQUVICI7vx7JT+aPrBoePXVncsoFssNWzLbOpQ4Jwb9Gntd1qRKpAWyH/OsSdGHjV3rCSA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net451/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.xml", + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15867.nupkg", + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15867.nupkg.sha512", + "Microsoft.Extensions.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "serviceable": true, + "sha512": "YHgRu79p6vbxr5BvnwD0vb2j96EQiNlZjMpra0VdUWYx7jB1Z8M9qB5OBF1ZUgiUVaGmwKFukd4EDqw4sS8MDA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll", + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.xml", + "lib/net451/Microsoft.Extensions.OptionsModel.dll", + "lib/net451/Microsoft.Extensions.OptionsModel.xml", + "lib/netcore50/Microsoft.Extensions.OptionsModel.dll", + "lib/netcore50/Microsoft.Extensions.OptionsModel.xml", + "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15848.nupkg", + "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15848.nupkg.sha512", + "Microsoft.Extensions.OptionsModel.nuspec" + ] + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "serviceable": true, + "sha512": "BtXxSh8IrQDGNjuLago+2LQ2UEC7Up8oHS6U30HY4sR2UlOauY5RGNafffLz5DzMoHfs02eDeu9saRViXjxBxQ==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.xml", + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll", + "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml", + "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16237.nupkg", + "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16237.nupkg.sha512", + "Microsoft.Extensions.PlatformAbstractions.nuspec" + ] + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "serviceable": true, + "sha512": "ImxZgBrbQStbBlGvR59w7euRE4pKIaKURQT8v70SwWZgrvecl9qXFxuJeoyLhwDBxErF1vdW2QJU7GHFdKZTaA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll", + "lib/dotnet5.4/Microsoft.Extensions.Primitives.xml", + "lib/net451/Microsoft.Extensions.Primitives.dll", + "lib/net451/Microsoft.Extensions.Primitives.xml", + "lib/netcore50/Microsoft.Extensions.Primitives.dll", + "lib/netcore50/Microsoft.Extensions.Primitives.xml", + "Microsoft.Extensions.Primitives.1.0.0-rc2-15889.nupkg", + "Microsoft.Extensions.Primitives.1.0.0-rc2-15889.nupkg.sha512", + "Microsoft.Extensions.Primitives.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "Microsoft.Win32.Primitives.4.0.0.nupkg", + "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._" + ] + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "m2rDRsf1hcnaUlhKgF9op2UmADh1/5nJpfBJHkKPK46C6s2dI3LAJ0LpAIw1arW9xJDd2P//5gdvUFRGBRRang==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/_._", + "runtime.any.System.Linq.Expressions.4.0.11-rc2-23525.nupkg", + "runtime.any.System.Linq.Expressions.4.0.11-rc2-23525.nupkg.sha512", + "runtime.any.System.Linq.Expressions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "H8lMtaHAPFEjWCfOZyPwN7ctkAxC3vN65x+gzaUfcPBLrHMLaqT3qsNy5H3c66oFGt3NOCm4WEYlvjeYjd8/sQ==", + "files": [ + "ref/dotnet/_._", + "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg", + "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win.System.Runtime.InteropServices.RuntimeInformation.nuspec", + "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll" + ] + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "6txhz00DQayySs37jFHBE7C0O5dpTmlZrCxJLDdukcyKpHnyhNCOEKz6r+93mFeziRY6Lf4f3K7XgnvN/1vPJQ==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg", + "runtime.win7.System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg.sha512", + "runtime.win7.System.Diagnostics.Debug.nuspec", + "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll", + "runtimes/win7/lib/netcore50/System.Diagnostics.Debug.dll", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "KjAFrVUkamkrAYajk+bpM5qhZ5UzAMVS1jlR4fW6keFk8ltp57PfivcBGRDbQDhCMzUVIjEFQ5RHXIsLOgpZHg==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Globalization.Extensions.4.0.1-rc2-23525.nupkg", + "runtime.win7.System.Globalization.Extensions.4.0.1-rc2-23525.nupkg.sha512", + "runtime.win7.System.Globalization.Extensions.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll", + "runtimes/win7/lib/net/_._" + ] + }, + "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Rk2nN279viCiNX+a05TDaZAWxtp1Kl/NytR4jT75dM24niwhNtLVpDq3mZ6L8AV0lSnkd6UeHhMOrcbMhoiHyg==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.IO.FileSystem.4.0.1-rc2-23525.nupkg", + "runtime.win7.System.IO.FileSystem.4.0.1-rc2-23525.nupkg.sha512", + "runtime.win7.System.IO.FileSystem.nuspec", + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll", + "runtimes/win7/lib/net/_._", + "runtimes/win7/lib/netcore50/System.IO.FileSystem.dll", + "runtimes/win7/lib/win8/_._", + "runtimes/win7/lib/wp8/_._", + "runtimes/win7/lib/wpa81/_._" + ] + }, + "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "fQXiEWBBAf85oQrn/PhE5h0x1Bz2MsQLzFnsmPHXK3F52aCXSfA8XG7d9/P4M635T6YuZz4Hl4RmJdFYoO84Ww==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "ref/dotnet/_._", + "runtime.win7.System.Net.Primitives.4.0.11-rc2-23525.nupkg", + "runtime.win7.System.Net.Primitives.4.0.11-rc2-23525.nupkg.sha512", + "runtime.win7.System.Net.Primitives.nuspec", + "runtimes/win7/lib/netcore50/System.Net.Primitives.dll" + ] + }, + "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "o9yhni1ibV4TZ8pDXnGWrbdYUN0vDTqjC08fBoNF/iHtg4m5TNATIaEVDXOF1ny1ymyfZE/6VRC7m2twuWD/+A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/_._", + "runtime.win7.System.Runtime.Extensions.4.0.11-rc2-23525.nupkg", + "runtime.win7.System.Runtime.Extensions.4.0.11-rc2-23525.nupkg.sha512", + "runtime.win7.System.Runtime.Extensions.nuspec", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "OZghF4dY+gj/IhXj1FOrlDI//lEb0q9/Y/5GPftSotrk/sDRMpiflbAzVziNCkvOnDPowaU+kayZGCLU9zMRqA==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg", + "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.Algorithms.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll", + "runtimes/win7/lib/net/_._" + ] + }, + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "fwjrSecPvxUhksPU8iIxjY8z5akm/KqTTCUWEETuka9WkaFCU1ktrqJI/UJrn+ImXBv87MbLYBblixdAYAr75g==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg", + "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.Encoding.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll", + "runtimes/win7/lib/net/_._" + ] + }, + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "MstJY/cwJg4HYbUk+z+m8r1Ffw14Nsm8DD7QNxtNfXI99eFfvjDhn7ur8S7m5nTBk23EPsUfN9VAFESXTrv2fw==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg", + "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.X509Certificates.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win7/lib/net/_._", + "runtimes/win7/lib/netcore50/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "runtime.win7.System.Threading/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "gYFmKqjSPB2E2PpyEehCvovB6pPiRJbw04DwViGE7FGyrE0J9VsdeFTeIpzWcKiTg5pzdlvmUg100MIxfYWrjA==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Threading.4.0.11-rc2-23525.nupkg", + "runtime.win7.System.Threading.4.0.11-rc2-23525.nupkg.sha512", + "runtime.win7.System.Threading.nuspec", + "runtimes/win7/lib/DNXCore50/System.Threading.dll", + "runtimes/win7/lib/netcore50/System.Threading.dll", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "Rx-Core/2.2.5": { + "type": "package", + "sha512": "DfWVTfW6tvRkkqpnRHKxPIvaRZyDJGADuqrE6J2nwejOQbLRWi0rNUwXkViDWz++25BGDy3iRE5OE6Dv8mJxYQ==", + "files": [ + "lib/net40/System.Reactive.Core.dll", + "lib/net40/System.Reactive.Core.XML", + "lib/net45/System.Reactive.Core.dll", + "lib/net45/System.Reactive.Core.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.XML", + "lib/portable-win81+wpa81/System.Reactive.Core.dll", + "lib/portable-win81+wpa81/System.Reactive.Core.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Core.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Core.XML", + "lib/sl5/System.Reactive.Core.dll", + "lib/sl5/System.Reactive.Core.XML", + "lib/windows8/System.Reactive.Core.dll", + "lib/windows8/System.Reactive.Core.XML", + "lib/windowsphone71/System.Reactive.Core.dll", + "lib/windowsphone71/System.Reactive.Core.XML", + "lib/windowsphone8/System.Reactive.Core.dll", + "lib/windowsphone8/System.Reactive.Core.XML", + "Rx-Core.2.2.5.nupkg", + "Rx-Core.2.2.5.nupkg.sha512", + "Rx-Core.nuspec" + ] + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "sha512": "FKtG2QfMIeUcfB7r3a89VoAiszX3DTvYETkpC6U0FzWpxRK/mcHyzYOsniDfag+NsDG0P1k1c8yNSefXKp3t2A==", + "files": [ + "lib/net40/System.Reactive.Interfaces.dll", + "lib/net40/System.Reactive.Interfaces.XML", + "lib/net45/System.Reactive.Interfaces.dll", + "lib/net45/System.Reactive.Interfaces.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.XML", + "lib/portable-win81+wpa81/System.Reactive.Interfaces.dll", + "lib/portable-win81+wpa81/System.Reactive.Interfaces.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.XML", + "lib/sl5/System.Reactive.Interfaces.dll", + "lib/sl5/System.Reactive.Interfaces.XML", + "lib/windows8/System.Reactive.Interfaces.dll", + "lib/windows8/System.Reactive.Interfaces.XML", + "lib/windowsphone71/System.Reactive.Interfaces.dll", + "lib/windowsphone71/System.Reactive.Interfaces.XML", + "lib/windowsphone8/System.Reactive.Interfaces.dll", + "lib/windowsphone8/System.Reactive.Interfaces.XML", + "Rx-Interfaces.2.2.5.nupkg", + "Rx-Interfaces.2.2.5.nupkg.sha512", + "Rx-Interfaces.nuspec" + ] + }, + "Rx-Linq/2.2.5": { + "type": "package", + "sha512": "UTeCIu3cWPExxmTzdiVq7SalqTBhUaomBTaAC9LpYPoAopjlFwA3hjVWXoLkGlDc/44wqJemJuEwFP00KphiFg==", + "files": [ + "lib/net40/System.Reactive.Linq.dll", + "lib/net40/System.Reactive.Linq.XML", + "lib/net45/System.Reactive.Linq.dll", + "lib/net45/System.Reactive.Linq.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.XML", + "lib/portable-win81+wpa81/System.Reactive.Linq.dll", + "lib/portable-win81+wpa81/System.Reactive.Linq.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Linq.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Linq.XML", + "lib/sl5/System.Reactive.Linq.dll", + "lib/sl5/System.Reactive.Linq.XML", + "lib/windows8/System.Reactive.Linq.dll", + "lib/windows8/System.Reactive.Linq.XML", + "lib/windowsphone71/System.Reactive.Linq.dll", + "lib/windowsphone71/System.Reactive.Linq.XML", + "lib/windowsphone8/System.Reactive.Linq.dll", + "lib/windowsphone8/System.Reactive.Linq.XML", + "Rx-Linq.2.2.5.nupkg", + "Rx-Linq.2.2.5.nupkg.sha512", + "Rx-Linq.nuspec" + ] + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "sha512": "pMnNEvJVjT+wuDib+W/bi5hhIYcre7dW5yxvKrJxnR4iKJ1VLA/dY2FTtjDriHGx7OeGn12lQewXlH2oHiWFPA==", + "files": [ + "lib/net40/System.Reactive.PlatformServices.dll", + "lib/net40/System.Reactive.PlatformServices.XML", + "lib/net45/System.Reactive.PlatformServices.dll", + "lib/net45/System.Reactive.PlatformServices.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.XML", + "lib/portable-win81+wpa81/System.Reactive.PlatformServices.dll", + "lib/portable-win81+wpa81/System.Reactive.PlatformServices.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.XML", + "lib/sl5/System.Reactive.PlatformServices.dll", + "lib/sl5/System.Reactive.PlatformServices.XML", + "lib/windows8/System.Reactive.PlatformServices.dll", + "lib/windows8/System.Reactive.PlatformServices.XML", + "lib/windowsphone71/System.Reactive.PlatformServices.dll", + "lib/windowsphone71/System.Reactive.PlatformServices.XML", + "lib/windowsphone8/System.Reactive.PlatformServices.dll", + "lib/windowsphone8/System.Reactive.PlatformServices.XML", + "Rx-PlatformServices.2.2.5.nupkg", + "Rx-PlatformServices.2.2.5.nupkg.sha512", + "Rx-PlatformServices.nuspec" + ] + }, + "System.AppContext/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "1AErxnp8ORCt1JmFgddMK5xYzIgfFE8yPRXXLRAHv43Dj6oHGsdE0sz4eB+lBkbLrzd+MWd/FJc6/t0It6qJxw==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.AppContext.xml", + "ref/dotnet5.4/es/System.AppContext.xml", + "ref/dotnet5.4/fr/System.AppContext.xml", + "ref/dotnet5.4/it/System.AppContext.xml", + "ref/dotnet5.4/ja/System.AppContext.xml", + "ref/dotnet5.4/ko/System.AppContext.xml", + "ref/dotnet5.4/ru/System.AppContext.xml", + "ref/dotnet5.4/System.AppContext.dll", + "ref/dotnet5.4/System.AppContext.xml", + "ref/dotnet5.4/zh-hans/System.AppContext.xml", + "ref/dotnet5.4/zh-hant/System.AppContext.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.AppContext.4.0.1-rc2-23525.nupkg", + "System.AppContext.4.0.1-rc2-23525.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "xJmMbyH4afnSkGiOhTiSyAWL6j45yYDG3l63D3peganrFKvzln1ks7SGfERzBEPqKFHBDoJ7TlRpJQp40wJNUA==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Collections.xml", + "ref/dotnet5.1/es/System.Collections.xml", + "ref/dotnet5.1/fr/System.Collections.xml", + "ref/dotnet5.1/it/System.Collections.xml", + "ref/dotnet5.1/ja/System.Collections.xml", + "ref/dotnet5.1/ko/System.Collections.xml", + "ref/dotnet5.1/ru/System.Collections.xml", + "ref/dotnet5.1/System.Collections.dll", + "ref/dotnet5.1/System.Collections.xml", + "ref/dotnet5.1/zh-hans/System.Collections.xml", + "ref/dotnet5.1/zh-hant/System.Collections.xml", + "ref/dotnet5.4/de/System.Collections.xml", + "ref/dotnet5.4/es/System.Collections.xml", + "ref/dotnet5.4/fr/System.Collections.xml", + "ref/dotnet5.4/it/System.Collections.xml", + "ref/dotnet5.4/ja/System.Collections.xml", + "ref/dotnet5.4/ko/System.Collections.xml", + "ref/dotnet5.4/ru/System.Collections.xml", + "ref/dotnet5.4/System.Collections.dll", + "ref/dotnet5.4/System.Collections.xml", + "ref/dotnet5.4/zh-hans/System.Collections.xml", + "ref/dotnet5.4/zh-hant/System.Collections.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.11-rc2-23525.nupkg", + "System.Collections.4.0.11-rc2-23525.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "rJUILubHbGrHU1CNoZwUpJQjTL5XgG7BNT5hwQbN9fNLIWh/8t6jqUNE6pGoEg/N/l8vBeFXwfVnzrjAlFfTHA==", + "files": [ + "lib/dotnet5.4/System.Collections.Concurrent.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.2/de/System.Collections.Concurrent.xml", + "ref/dotnet5.2/es/System.Collections.Concurrent.xml", + "ref/dotnet5.2/fr/System.Collections.Concurrent.xml", + "ref/dotnet5.2/it/System.Collections.Concurrent.xml", + "ref/dotnet5.2/ja/System.Collections.Concurrent.xml", + "ref/dotnet5.2/ko/System.Collections.Concurrent.xml", + "ref/dotnet5.2/ru/System.Collections.Concurrent.xml", + "ref/dotnet5.2/System.Collections.Concurrent.dll", + "ref/dotnet5.2/System.Collections.Concurrent.xml", + "ref/dotnet5.2/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet5.2/zh-hant/System.Collections.Concurrent.xml", + "ref/dotnet5.4/de/System.Collections.Concurrent.xml", + "ref/dotnet5.4/es/System.Collections.Concurrent.xml", + "ref/dotnet5.4/fr/System.Collections.Concurrent.xml", + "ref/dotnet5.4/it/System.Collections.Concurrent.xml", + "ref/dotnet5.4/ja/System.Collections.Concurrent.xml", + "ref/dotnet5.4/ko/System.Collections.Concurrent.xml", + "ref/dotnet5.4/ru/System.Collections.Concurrent.xml", + "ref/dotnet5.4/System.Collections.Concurrent.dll", + "ref/dotnet5.4/System.Collections.Concurrent.xml", + "ref/dotnet5.4/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet5.4/zh-hant/System.Collections.Concurrent.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Collections.Concurrent.4.0.11-rc2-23525.nupkg", + "System.Collections.Concurrent.4.0.11-rc2-23525.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.ComponentModel/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "QJ3RnKbTPqJ64NH+VQ15URBa0XlJHUdM6whX1C12nLhdJ48c4P1lMpJCWHxPbUJuj4MCn+0eAqUxi4UZ/hzokA==", + "files": [ + "lib/dotnet5.4/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.ComponentModel.xml", + "ref/dotnet5.1/es/System.ComponentModel.xml", + "ref/dotnet5.1/fr/System.ComponentModel.xml", + "ref/dotnet5.1/it/System.ComponentModel.xml", + "ref/dotnet5.1/ja/System.ComponentModel.xml", + "ref/dotnet5.1/ko/System.ComponentModel.xml", + "ref/dotnet5.1/ru/System.ComponentModel.xml", + "ref/dotnet5.1/System.ComponentModel.dll", + "ref/dotnet5.1/System.ComponentModel.xml", + "ref/dotnet5.1/zh-hans/System.ComponentModel.xml", + "ref/dotnet5.1/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.1-rc2-23525.nupkg", + "System.ComponentModel.4.0.1-rc2-23525.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "8xElzEmEH5G6XK7qqxRLQ/2r1IuhXlkz0ZdgKNp6ViDD1ukadd+5hccqg1G/L4AYRy96ddMdvgyJjFW87Cegbw==", + "files": [ + "lib/dotnet/System.ComponentModel.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.ComponentModel.Primitives.xml", + "ref/dotnet/es/System.ComponentModel.Primitives.xml", + "ref/dotnet/fr/System.ComponentModel.Primitives.xml", + "ref/dotnet/it/System.ComponentModel.Primitives.xml", + "ref/dotnet/ja/System.ComponentModel.Primitives.xml", + "ref/dotnet/ko/System.ComponentModel.Primitives.xml", + "ref/dotnet/ru/System.ComponentModel.Primitives.xml", + "ref/dotnet/System.ComponentModel.Primitives.dll", + "ref/dotnet/System.ComponentModel.Primitives.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Primitives.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.ComponentModel.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.Primitives.4.0.0.nupkg", + "System.ComponentModel.Primitives.4.0.0.nupkg.sha512", + "System.ComponentModel.Primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "ZLOBeLIwqn7QcQvcy87DUJIfYtToNkp7mqzw9j27FKFG4C6oeiM63aPj41D4B78t6VNp9N1dUGybApOaIhrX5A==", + "files": [ + "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/es/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/fr/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/it/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/ja/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/ko/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/ru/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll", + "ref/dotnet5.1/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.TypeConverter.4.0.1-rc2-23525.nupkg", + "System.ComponentModel.TypeConverter.4.0.1-rc2-23525.nupkg.sha512", + "System.ComponentModel.TypeConverter.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0": { + "type": "package", + "sha512": "AYJsLLGDVTC/nyURjgAo7Lpye0+HuSkcQujUf+NgQVdC/C/ky5NyamQHCforHJzgqspitMMtBe8B4UBdGXy1zQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Diagnostics.Debug.4.0.0.nupkg", + "System.Diagnostics.Debug.4.0.0.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "T/wq74JBg48B5FU5R1bOW0cTyclAXL5GAqF/jehLxM65Sc8cNmJ8GMAQvjmmIa6mwmRF27U63Gs1UeiV0QtkjQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/es/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/fr/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/it/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/ja/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/ko/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/ru/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/System.Diagnostics.Debug.dll", + "ref/dotnet5.1/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/zh-hant/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/de/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/es/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/fr/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/it/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/ja/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/ko/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/ru/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/System.Diagnostics.Debug.dll", + "ref/dotnet5.4/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/zh-hant/System.Diagnostics.Debug.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg", + "System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Bh9ra6Wpewj2XAkbCjrSemxNqLqCCoAO/1+l/RQZuQlSZ2v9x/bpnA6IEgan8JX35gJpGJc1rmgAdQl2KFpWwA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/es/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/fr/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/it/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/ja/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/ko/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/ru/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/System.Diagnostics.Tools.dll", + "ref/dotnet5.1/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.1-rc2-23525.nupkg", + "System.Diagnostics.Tools.4.0.1-rc2-23525.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "serviceable": true, + "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20.nupkg", + "System.Diagnostics.Tracing.4.0.20.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Globalization/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "oy7h7UsvcRRdmRL0vzNHwCSqQVP6Np80oRKRPJplTFtpfxnjj1O7nkkxl0So7nQnSE6lrE4a5SH7dFAjEH6Ncg==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Globalization.xml", + "ref/dotnet5.1/es/System.Globalization.xml", + "ref/dotnet5.1/fr/System.Globalization.xml", + "ref/dotnet5.1/it/System.Globalization.xml", + "ref/dotnet5.1/ja/System.Globalization.xml", + "ref/dotnet5.1/ko/System.Globalization.xml", + "ref/dotnet5.1/ru/System.Globalization.xml", + "ref/dotnet5.1/System.Globalization.dll", + "ref/dotnet5.1/System.Globalization.xml", + "ref/dotnet5.1/zh-hans/System.Globalization.xml", + "ref/dotnet5.1/zh-hant/System.Globalization.xml", + "ref/dotnet5.4/de/System.Globalization.xml", + "ref/dotnet5.4/es/System.Globalization.xml", + "ref/dotnet5.4/fr/System.Globalization.xml", + "ref/dotnet5.4/it/System.Globalization.xml", + "ref/dotnet5.4/ja/System.Globalization.xml", + "ref/dotnet5.4/ko/System.Globalization.xml", + "ref/dotnet5.4/ru/System.Globalization.xml", + "ref/dotnet5.4/System.Globalization.dll", + "ref/dotnet5.4/System.Globalization.xml", + "ref/dotnet5.4/zh-hans/System.Globalization.xml", + "ref/dotnet5.4/zh-hant/System.Globalization.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.11-rc2-23525.nupkg", + "System.Globalization.4.0.11-rc2-23525.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Globalization.Calendars.xml", + "ref/dotnet/es/System.Globalization.Calendars.xml", + "ref/dotnet/fr/System.Globalization.Calendars.xml", + "ref/dotnet/it/System.Globalization.Calendars.xml", + "ref/dotnet/ja/System.Globalization.Calendars.xml", + "ref/dotnet/ko/System.Globalization.Calendars.xml", + "ref/dotnet/ru/System.Globalization.Calendars.xml", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0.nupkg", + "System.Globalization.Calendars.4.0.0.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "WcX9wVjeAPI6Aiuz0UGdIS7abeu/XQRm0yK/ff8nr7cJn5wx69ACoF0/SHkfB1HrW4WDUQiKzgRpE8DDl6VSDw==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Globalization.Extensions.xml", + "ref/dotnet5.4/es/System.Globalization.Extensions.xml", + "ref/dotnet5.4/fr/System.Globalization.Extensions.xml", + "ref/dotnet5.4/it/System.Globalization.Extensions.xml", + "ref/dotnet5.4/ja/System.Globalization.Extensions.xml", + "ref/dotnet5.4/ko/System.Globalization.Extensions.xml", + "ref/dotnet5.4/ru/System.Globalization.Extensions.xml", + "ref/dotnet5.4/System.Globalization.Extensions.dll", + "ref/dotnet5.4/System.Globalization.Extensions.xml", + "ref/dotnet5.4/zh-hans/System.Globalization.Extensions.xml", + "ref/dotnet5.4/zh-hant/System.Globalization.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Globalization.Extensions.4.0.1-rc2-23525.nupkg", + "System.Globalization.Extensions.4.0.1-rc2-23525.nupkg.sha512", + "System.Globalization.Extensions.nuspec" + ] + }, + "System.IO/4.0.0": { + "type": "package", + "sha512": "MoCHQ0u5n0OMwUS8OX4Gl48qKiQziSW5cXvt82d+MmAcsLq9OL90+ihnu/aJ1h6OOYcBswrZAEuApfZha9w2lg==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.4.0.0.nupkg", + "System.IO.4.0.0.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Brlv6E7ndUEBPH28OXf9EULgyMXTu6I3+NwbXiVneltgClANm/tmjZIAvJZpkCW2WQPMxRgaJlhngXqaYOM4ww==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.IO.xml", + "ref/dotnet5.1/es/System.IO.xml", + "ref/dotnet5.1/fr/System.IO.xml", + "ref/dotnet5.1/it/System.IO.xml", + "ref/dotnet5.1/ja/System.IO.xml", + "ref/dotnet5.1/ko/System.IO.xml", + "ref/dotnet5.1/ru/System.IO.xml", + "ref/dotnet5.1/System.IO.dll", + "ref/dotnet5.1/System.IO.xml", + "ref/dotnet5.1/zh-hans/System.IO.xml", + "ref/dotnet5.1/zh-hant/System.IO.xml", + "ref/dotnet5.4/de/System.IO.xml", + "ref/dotnet5.4/es/System.IO.xml", + "ref/dotnet5.4/fr/System.IO.xml", + "ref/dotnet5.4/it/System.IO.xml", + "ref/dotnet5.4/ja/System.IO.xml", + "ref/dotnet5.4/ko/System.IO.xml", + "ref/dotnet5.4/ru/System.IO.xml", + "ref/dotnet5.4/System.IO.dll", + "ref/dotnet5.4/System.IO.xml", + "ref/dotnet5.4/zh-hans/System.IO.xml", + "ref/dotnet5.4/zh-hant/System.IO.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.11-rc2-23525.nupkg", + "System.IO.4.0.11-rc2-23525.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "5x8A7ETeRtOmeqfUr36T20yJR+JHkd9M8275UTOyUylO1RRFDdIDiNYeCnZlFJpDCFMDxDa6g8OgiWYxJzAqfw==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.IO.FileSystem.xml", + "ref/dotnet5.4/es/System.IO.FileSystem.xml", + "ref/dotnet5.4/fr/System.IO.FileSystem.xml", + "ref/dotnet5.4/it/System.IO.FileSystem.xml", + "ref/dotnet5.4/ja/System.IO.FileSystem.xml", + "ref/dotnet5.4/ko/System.IO.FileSystem.xml", + "ref/dotnet5.4/ru/System.IO.FileSystem.xml", + "ref/dotnet5.4/System.IO.FileSystem.dll", + "ref/dotnet5.4/System.IO.FileSystem.xml", + "ref/dotnet5.4/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet5.4/zh-hant/System.IO.FileSystem.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.IO.FileSystem.4.0.1-rc2-23525.nupkg", + "System.IO.FileSystem.4.0.1-rc2-23525.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.FileSystem.Primitives.4.0.0.nupkg", + "System.IO.FileSystem.Primitives.4.0.0.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "nxeyB3ycuQRIyRb/EVh+IEBN4heKR5LGo3+NvQl0/nJs/nIJym4Yb+pqHjhMAFwv9L7KoUIanhg1uRES7+IaQQ==", + "files": [ + "lib/dotnet5.4/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Linq.xml", + "ref/dotnet5.1/es/System.Linq.xml", + "ref/dotnet5.1/fr/System.Linq.xml", + "ref/dotnet5.1/it/System.Linq.xml", + "ref/dotnet5.1/ja/System.Linq.xml", + "ref/dotnet5.1/ko/System.Linq.xml", + "ref/dotnet5.1/ru/System.Linq.xml", + "ref/dotnet5.1/System.Linq.dll", + "ref/dotnet5.1/System.Linq.xml", + "ref/dotnet5.1/zh-hans/System.Linq.xml", + "ref/dotnet5.1/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.1-rc2-23525.nupkg", + "System.Linq.4.0.1-rc2-23525.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "nUZs+huGwB8yM+RhJSCP1pDooGAjVhe2kEzSu2M7I8A9kwOF8WFgmMDwhfvW8UdnvcEVMbmtM9VtAYoZIBLs4w==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Linq.Expressions.xml", + "ref/dotnet5.1/es/System.Linq.Expressions.xml", + "ref/dotnet5.1/fr/System.Linq.Expressions.xml", + "ref/dotnet5.1/it/System.Linq.Expressions.xml", + "ref/dotnet5.1/ja/System.Linq.Expressions.xml", + "ref/dotnet5.1/ko/System.Linq.Expressions.xml", + "ref/dotnet5.1/ru/System.Linq.Expressions.xml", + "ref/dotnet5.1/System.Linq.Expressions.dll", + "ref/dotnet5.1/System.Linq.Expressions.xml", + "ref/dotnet5.1/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet5.1/zh-hant/System.Linq.Expressions.xml", + "ref/dotnet5.4/de/System.Linq.Expressions.xml", + "ref/dotnet5.4/es/System.Linq.Expressions.xml", + "ref/dotnet5.4/fr/System.Linq.Expressions.xml", + "ref/dotnet5.4/it/System.Linq.Expressions.xml", + "ref/dotnet5.4/ja/System.Linq.Expressions.xml", + "ref/dotnet5.4/ko/System.Linq.Expressions.xml", + "ref/dotnet5.4/ru/System.Linq.Expressions.xml", + "ref/dotnet5.4/System.Linq.Expressions.dll", + "ref/dotnet5.4/System.Linq.Expressions.xml", + "ref/dotnet5.4/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet5.4/zh-hant/System.Linq.Expressions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Linq.Expressions.4.0.11-rc2-23525.nupkg", + "System.Linq.Expressions.4.0.11-rc2-23525.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "tPl7aprrM0gnQa24GbIy+Swf+9+hEj+oy1I+OkeG/flSEGT3mCtrSAgfmLCr1FmN9lfn9XKkCgPYh8wJC2g8+w==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Net.Primitives.xml", + "ref/dotnet5.1/es/System.Net.Primitives.xml", + "ref/dotnet5.1/fr/System.Net.Primitives.xml", + "ref/dotnet5.1/it/System.Net.Primitives.xml", + "ref/dotnet5.1/ja/System.Net.Primitives.xml", + "ref/dotnet5.1/ko/System.Net.Primitives.xml", + "ref/dotnet5.1/ru/System.Net.Primitives.xml", + "ref/dotnet5.1/System.Net.Primitives.dll", + "ref/dotnet5.1/System.Net.Primitives.xml", + "ref/dotnet5.1/zh-hans/System.Net.Primitives.xml", + "ref/dotnet5.1/zh-hant/System.Net.Primitives.xml", + "ref/dotnet5.2/de/System.Net.Primitives.xml", + "ref/dotnet5.2/es/System.Net.Primitives.xml", + "ref/dotnet5.2/fr/System.Net.Primitives.xml", + "ref/dotnet5.2/it/System.Net.Primitives.xml", + "ref/dotnet5.2/ja/System.Net.Primitives.xml", + "ref/dotnet5.2/ko/System.Net.Primitives.xml", + "ref/dotnet5.2/ru/System.Net.Primitives.xml", + "ref/dotnet5.2/System.Net.Primitives.dll", + "ref/dotnet5.2/System.Net.Primitives.xml", + "ref/dotnet5.2/zh-hans/System.Net.Primitives.xml", + "ref/dotnet5.2/zh-hant/System.Net.Primitives.xml", + "ref/dotnet5.4/de/System.Net.Primitives.xml", + "ref/dotnet5.4/es/System.Net.Primitives.xml", + "ref/dotnet5.4/fr/System.Net.Primitives.xml", + "ref/dotnet5.4/it/System.Net.Primitives.xml", + "ref/dotnet5.4/ja/System.Net.Primitives.xml", + "ref/dotnet5.4/ko/System.Net.Primitives.xml", + "ref/dotnet5.4/ru/System.Net.Primitives.xml", + "ref/dotnet5.4/System.Net.Primitives.dll", + "ref/dotnet5.4/System.Net.Primitives.xml", + "ref/dotnet5.4/zh-hans/System.Net.Primitives.xml", + "ref/dotnet5.4/zh-hant/System.Net.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Net.Primitives.4.0.11-rc2-23525.nupkg", + "System.Net.Primitives.4.0.11-rc2-23525.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.WebSockets/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "QykOhQUn7S0rJYPbKflEWOf3Cpr6Ku5UhGmJY5s14t0g14H/5ibVg3KuLySGYvrRmxxx7s6Ydx/b7AcuwDA9hQ==", + "files": [ + "lib/dotnet5.4/System.Net.WebSockets.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.WebSockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Net.WebSockets.xml", + "ref/dotnet5.4/es/System.Net.WebSockets.xml", + "ref/dotnet5.4/fr/System.Net.WebSockets.xml", + "ref/dotnet5.4/it/System.Net.WebSockets.xml", + "ref/dotnet5.4/ja/System.Net.WebSockets.xml", + "ref/dotnet5.4/ko/System.Net.WebSockets.xml", + "ref/dotnet5.4/ru/System.Net.WebSockets.xml", + "ref/dotnet5.4/System.Net.WebSockets.dll", + "ref/dotnet5.4/System.Net.WebSockets.xml", + "ref/dotnet5.4/zh-hans/System.Net.WebSockets.xml", + "ref/dotnet5.4/zh-hant/System.Net.WebSockets.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.WebSockets.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.WebSockets.4.0.0-rc2-23525.nupkg", + "System.Net.WebSockets.4.0.0-rc2-23525.nupkg.sha512", + "System.Net.WebSockets.nuspec" + ] + }, + "System.ObjectModel/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "IJJ5i3tnyDWnrjK3GH81Bu3I+ie/MyKr7/V/LjYkVpKHlTaT1EdjLX40CqXaw3ObgqkLqSYz6iRJKaYkmGesXg==", + "files": [ + "lib/dotnet5.4/System.ObjectModel.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.ObjectModel.xml", + "ref/dotnet5.1/es/System.ObjectModel.xml", + "ref/dotnet5.1/fr/System.ObjectModel.xml", + "ref/dotnet5.1/it/System.ObjectModel.xml", + "ref/dotnet5.1/ja/System.ObjectModel.xml", + "ref/dotnet5.1/ko/System.ObjectModel.xml", + "ref/dotnet5.1/ru/System.ObjectModel.xml", + "ref/dotnet5.1/System.ObjectModel.dll", + "ref/dotnet5.1/System.ObjectModel.xml", + "ref/dotnet5.1/zh-hans/System.ObjectModel.xml", + "ref/dotnet5.1/zh-hant/System.ObjectModel.xml", + "ref/dotnet5.4/de/System.ObjectModel.xml", + "ref/dotnet5.4/es/System.ObjectModel.xml", + "ref/dotnet5.4/fr/System.ObjectModel.xml", + "ref/dotnet5.4/it/System.ObjectModel.xml", + "ref/dotnet5.4/ja/System.ObjectModel.xml", + "ref/dotnet5.4/ko/System.ObjectModel.xml", + "ref/dotnet5.4/ru/System.ObjectModel.xml", + "ref/dotnet5.4/System.ObjectModel.dll", + "ref/dotnet5.4/System.ObjectModel.xml", + "ref/dotnet5.4/zh-hans/System.ObjectModel.xml", + "ref/dotnet5.4/zh-hant/System.ObjectModel.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "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/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ObjectModel.4.0.11-rc2-23525.nupkg", + "System.ObjectModel.4.0.11-rc2-23525.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Reflection/4.0.0": { + "type": "package", + "sha512": "g96Rn8XuG7y4VfxPj/jnXroRJdQ8L3iN3k3zqsuzk4k3Nq4KMXARYiIO4BLW4GwX06uQpuYwRMcAC/aF117knQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Reflection.4.0.0.nupkg", + "System.Reflection.4.0.0.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "WbLtaCxoe5XdqEyZuGpemSQ8YBJ8cj11zx+yxOxJfHbNrmu7oMQ29+J50swaqg3soUc3BVBMqfIhb/7gocDHQA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Reflection.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.1.0-beta-23225.nupkg", + "System.Reflection.4.1.0-beta-23225.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "S2zlLFK7KGY+vmP2idf9baP1vd3FSRhiRrDpzaDu57f0mqsMuXkbbtqxSncaN8SzvHbLu1OSp1ERiwSzCtcskw==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Reflection.Extensions.xml", + "ref/dotnet5.1/es/System.Reflection.Extensions.xml", + "ref/dotnet5.1/fr/System.Reflection.Extensions.xml", + "ref/dotnet5.1/it/System.Reflection.Extensions.xml", + "ref/dotnet5.1/ja/System.Reflection.Extensions.xml", + "ref/dotnet5.1/ko/System.Reflection.Extensions.xml", + "ref/dotnet5.1/ru/System.Reflection.Extensions.xml", + "ref/dotnet5.1/System.Reflection.Extensions.dll", + "ref/dotnet5.1/System.Reflection.Extensions.xml", + "ref/dotnet5.1/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet5.1/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "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/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.1-rc2-23525.nupkg", + "System.Reflection.Extensions.4.0.1-rc2-23525.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0.nupkg", + "System.Reflection.Primitives.4.0.0.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "n8m144jjCwhN/qtLih35a2sO33fLWm1U3eg51KxqAcAjJcw0nq1zWie8FZognBTPv7BXdW/G8xGbbvDGFoJwZA==", + "files": [ + "lib/DNXCore50/de/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/es/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/fr/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/it/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/ja/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/ko/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/ru/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/DNXCore50/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/zh-hans/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/zh-hant/System.Reflection.TypeExtensions.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/de/System.Reflection.TypeExtensions.xml", + "lib/net46/es/System.Reflection.TypeExtensions.xml", + "lib/net46/fr/System.Reflection.TypeExtensions.xml", + "lib/net46/it/System.Reflection.TypeExtensions.xml", + "lib/net46/ja/System.Reflection.TypeExtensions.xml", + "lib/net46/ko/System.Reflection.TypeExtensions.xml", + "lib/net46/ru/System.Reflection.TypeExtensions.xml", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.xml", + "lib/net46/zh-hans/System.Reflection.TypeExtensions.xml", + "lib/net46/zh-hant/System.Reflection.TypeExtensions.xml", + "lib/netcore50/de/System.Reflection.TypeExtensions.xml", + "lib/netcore50/es/System.Reflection.TypeExtensions.xml", + "lib/netcore50/fr/System.Reflection.TypeExtensions.xml", + "lib/netcore50/it/System.Reflection.TypeExtensions.xml", + "lib/netcore50/ja/System.Reflection.TypeExtensions.xml", + "lib/netcore50/ko/System.Reflection.TypeExtensions.xml", + "lib/netcore50/ru/System.Reflection.TypeExtensions.xml", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.xml", + "lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml", + "lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/de/System.Reflection.TypeExtensions.xml", + "ref/net46/es/System.Reflection.TypeExtensions.xml", + "ref/net46/fr/System.Reflection.TypeExtensions.xml", + "ref/net46/it/System.Reflection.TypeExtensions.xml", + "ref/net46/ja/System.Reflection.TypeExtensions.xml", + "ref/net46/ko/System.Reflection.TypeExtensions.xml", + "ref/net46/ru/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.xml", + "ref/net46/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/net46/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml", + "System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg", + "System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0.nupkg", + "System.Resources.ResourceManager.4.0.0.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Pp+0DOwNu+L6fYGLejweNbbxXYW9EZTA9UpVBLvWTAldWsTWQ15J1LYuDIULWP3G2JBnKDtzZzQj4VIjzW4zxQ==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/es/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/fr/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/it/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/ja/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/ko/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/ru/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/System.Resources.ResourceManager.dll", + "ref/dotnet5.1/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.1-rc2-23525.nupkg", + "System.Resources.ResourceManager.4.0.1-rc2-23525.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0": { + "type": "package", + "sha512": "Uq9epame8hEqJlj4KaWb67dDJvj4IM37jRFGVeFbugRdPz48bR0voyBhrbf3iSa2tAmlkg4lsa6BUOL9iwlMew==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Runtime.4.0.0.nupkg", + "System.Runtime.4.0.0.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.21-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "LycbvHHYEuhrvcrwJ7JW1uKOXWUSC1gMn+M5zCTMYRrBomqYJnUu2Ej+oNJZibV4pdvjOSNdnLRBjy0VS0pJHQ==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Runtime.xml", + "ref/dotnet5.1/es/System.Runtime.xml", + "ref/dotnet5.1/fr/System.Runtime.xml", + "ref/dotnet5.1/it/System.Runtime.xml", + "ref/dotnet5.1/ja/System.Runtime.xml", + "ref/dotnet5.1/ko/System.Runtime.xml", + "ref/dotnet5.1/ru/System.Runtime.xml", + "ref/dotnet5.1/System.Runtime.dll", + "ref/dotnet5.1/System.Runtime.xml", + "ref/dotnet5.1/zh-hans/System.Runtime.xml", + "ref/dotnet5.1/zh-hant/System.Runtime.xml", + "ref/dotnet5.3/de/System.Runtime.xml", + "ref/dotnet5.3/es/System.Runtime.xml", + "ref/dotnet5.3/fr/System.Runtime.xml", + "ref/dotnet5.3/it/System.Runtime.xml", + "ref/dotnet5.3/ja/System.Runtime.xml", + "ref/dotnet5.3/ko/System.Runtime.xml", + "ref/dotnet5.3/ru/System.Runtime.xml", + "ref/dotnet5.3/System.Runtime.dll", + "ref/dotnet5.3/System.Runtime.xml", + "ref/dotnet5.3/zh-hans/System.Runtime.xml", + "ref/dotnet5.3/zh-hant/System.Runtime.xml", + "ref/dotnet5.4/de/System.Runtime.xml", + "ref/dotnet5.4/es/System.Runtime.xml", + "ref/dotnet5.4/fr/System.Runtime.xml", + "ref/dotnet5.4/it/System.Runtime.xml", + "ref/dotnet5.4/ja/System.Runtime.xml", + "ref/dotnet5.4/ko/System.Runtime.xml", + "ref/dotnet5.4/ru/System.Runtime.xml", + "ref/dotnet5.4/System.Runtime.dll", + "ref/dotnet5.4/System.Runtime.xml", + "ref/dotnet5.4/zh-hans/System.Runtime.xml", + "ref/dotnet5.4/zh-hant/System.Runtime.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.21-rc2-23525.nupkg", + "System.Runtime.4.0.21-rc2-23525.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0": { + "type": "package", + "sha512": "zPzwoJcA7qar/b5Ihhzfcdr3vBOR8FIg7u//Qc5mqyAriasXuMFVraBZ5vOQq5asfun9ryNEL8Z2BOlUK5QRqA==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Runtime.Extensions.4.0.0.nupkg", + "System.Runtime.Extensions.4.0.0.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "R6crzqPfrw8M1hohRtO9ae8CngdmbmB6DLMt4asm0KiP7i4ufliJcGRpn++mxJwPYgiLw757t1KN5sBDnyvvkw==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Runtime.Extensions.xml", + "ref/dotnet5.1/es/System.Runtime.Extensions.xml", + "ref/dotnet5.1/fr/System.Runtime.Extensions.xml", + "ref/dotnet5.1/it/System.Runtime.Extensions.xml", + "ref/dotnet5.1/ja/System.Runtime.Extensions.xml", + "ref/dotnet5.1/ko/System.Runtime.Extensions.xml", + "ref/dotnet5.1/ru/System.Runtime.Extensions.xml", + "ref/dotnet5.1/System.Runtime.Extensions.dll", + "ref/dotnet5.1/System.Runtime.Extensions.xml", + "ref/dotnet5.1/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet5.1/zh-hant/System.Runtime.Extensions.xml", + "ref/dotnet5.4/de/System.Runtime.Extensions.xml", + "ref/dotnet5.4/es/System.Runtime.Extensions.xml", + "ref/dotnet5.4/fr/System.Runtime.Extensions.xml", + "ref/dotnet5.4/it/System.Runtime.Extensions.xml", + "ref/dotnet5.4/ja/System.Runtime.Extensions.xml", + "ref/dotnet5.4/ko/System.Runtime.Extensions.xml", + "ref/dotnet5.4/ru/System.Runtime.Extensions.xml", + "ref/dotnet5.4/System.Runtime.Extensions.dll", + "ref/dotnet5.4/System.Runtime.Extensions.xml", + "ref/dotnet5.4/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet5.4/zh-hant/System.Runtime.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Runtime.Extensions.4.0.11-rc2-23525.nupkg", + "System.Runtime.Extensions.4.0.11-rc2-23525.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0.nupkg", + "System.Runtime.Handles.4.0.0.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.21-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "rWJNPZVqqjGxOhwWLdDh20vbH1OHXMqydO2QDO2vJApFCKEgyR2ySG2w6Ls665jGeUYzT2mQ+ZGTkcyzKOJdyg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.2/de/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/es/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/fr/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/it/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/ja/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/ko/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/ru/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/System.Runtime.InteropServices.dll", + "ref/dotnet5.2/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/de/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/es/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/fr/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/it/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/ja/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/ko/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/ru/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/System.Runtime.InteropServices.dll", + "ref/dotnet5.3/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/de/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/es/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/fr/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/it/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/ja/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/ko/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/ru/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/System.Runtime.InteropServices.dll", + "ref/dotnet5.4/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/zh-hant/System.Runtime.InteropServices.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.21-rc2-23525.nupkg", + "System.Runtime.InteropServices.4.0.21-rc2-23525.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Ha25KM/Db3dmbZz9UWgn7ChGPmqFHLDyWTxuvoJtaUq8ziwTW4hP0tlUfEKZBa3FwEB6Nero7VLX4h0TQs0k6Q==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg", + "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg.sha512", + "System.Runtime.InteropServices.RuntimeInformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Runtime.Numerics.xml", + "ref/dotnet/es/System.Runtime.Numerics.xml", + "ref/dotnet/fr/System.Runtime.Numerics.xml", + "ref/dotnet/it/System.Runtime.Numerics.xml", + "ref/dotnet/ja/System.Runtime.Numerics.xml", + "ref/dotnet/ko/System.Runtime.Numerics.xml", + "ref/dotnet/ru/System.Runtime.Numerics.xml", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/dotnet/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Runtime.Numerics.4.0.0.nupkg", + "System.Runtime.Numerics.4.0.0.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "QQRiGO33X/l9n5rikQfRoHPtX+0k4m3dxWFIZyH+63qsshU7S89QqmVsEjFYhHhEtsTbiKdkyNKrqTA7aj9XPQ==", + "files": [ + "lib/dotnet5.4/System.Security.Claims.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Security.Claims.xml", + "ref/dotnet5.4/es/System.Security.Claims.xml", + "ref/dotnet5.4/fr/System.Security.Claims.xml", + "ref/dotnet5.4/it/System.Security.Claims.xml", + "ref/dotnet5.4/ja/System.Security.Claims.xml", + "ref/dotnet5.4/ko/System.Security.Claims.xml", + "ref/dotnet5.4/ru/System.Security.Claims.xml", + "ref/dotnet5.4/System.Security.Claims.dll", + "ref/dotnet5.4/System.Security.Claims.xml", + "ref/dotnet5.4/zh-hans/System.Security.Claims.xml", + "ref/dotnet5.4/zh-hant/System.Security.Claims.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Claims.4.0.1-rc2-23525.nupkg", + "System.Security.Claims.4.0.1-rc2-23525.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "YG9pKBlPiXYSElZ2Yz8K9WuKO9/pjiypOZC44Ovjh8LUFBRCrMoikR3MQBefkqc4pQPDcY42YowcjkvfNU31Ew==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "H4fSJsMPMOM5SmfTMJ9AD0CgYshIPYnCf+2gJ9px0eg/Xjm9Q6JsVpTgbl6osdgXWNlwA45voiq4DRsniku5eg==", + "files": [ + "lib/dotnet5.4/System.Security.Cryptography.Cng.dll", + "lib/net46/System.Security.Cryptography.Cng.dll", + "ref/dotnet5.4/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "System.Security.Cryptography.Cng.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.Cng.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "5s7Sz0yUhfBjnJxIZdKxtM/WevPg36jnaUHFji4SFDYFHLkiV6xrEP8HhemZqW5ix7IfiaCDKqGBOceugqxarQ==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Csp.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/System.Security.Cryptography.Csp.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Csp.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.Csp.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "w7S6YFfl1dDdfm2dEJVsKBGBgB65CD/AyEzPXrPladnuUl4AJffUIAGf9MnWbUR//qraMUaTluzWQmUs6bE5KA==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/es/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/fr/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/it/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/ja/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/ko/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/ru/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll", + "ref/dotnet5.4/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "4XctVVQ8Ma2eDOiWjE6iUo44unjourG7k5Zr91Bm74DpMVEn3+lmZj9pJn3cthp/WgpRRJXaQRfE7mKEiEUjog==", + "files": [ + "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Primitives.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.Primitives.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Xzho0jNobWUb3UZtos0Pv/WI6PzBTOxLrisrgKE3xsZhKtevpThJ+1g1OhegeSy5cDpFy0x8bw8sr8qzumNBXQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Xw8pvBLIpmqA1TOK2FNI9sORMgxtcrqP+XGI/pKiny7iu0G+jKeQUQqd/qWCNjT0BGougN+a4ygXzMCFGp7Mog==", + "files": [ + "lib/dotnet5.1/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Security.Principal.xml", + "ref/dotnet5.1/es/System.Security.Principal.xml", + "ref/dotnet5.1/fr/System.Security.Principal.xml", + "ref/dotnet5.1/it/System.Security.Principal.xml", + "ref/dotnet5.1/ja/System.Security.Principal.xml", + "ref/dotnet5.1/ko/System.Security.Principal.xml", + "ref/dotnet5.1/ru/System.Security.Principal.xml", + "ref/dotnet5.1/System.Security.Principal.dll", + "ref/dotnet5.1/System.Security.Principal.xml", + "ref/dotnet5.1/zh-hans/System.Security.Principal.xml", + "ref/dotnet5.1/zh-hant/System.Security.Principal.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.1-rc2-23525.nupkg", + "System.Security.Principal.4.0.1-rc2-23525.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Text.Encoding/4.0.0": { + "type": "package", + "sha512": "AMxFNOXpA6Ab8swULbXuJmoT2K5w6TnV3ObF5wsmEcIHQUJghoZtDVfVHb08O2wW15mOSI1i9Wg0Dx0pY13o8g==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Text.Encoding.4.0.0.nupkg", + "System.Text.Encoding.4.0.0.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding/4.0.10": { + "type": "package", + "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10.nupkg", + "System.Text.Encoding.4.0.10.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", + "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10.nupkg", + "System.Text.Encoding.Extensions.4.0.10.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "1xpCMiJZBhbDNi7QoIZvU3+XHDlOr6E7N3zvoWjdzdXTnpnU6dgYZ0qrRrGN8sC4p2tRcbx4F+jA2uQAqqOA+g==", + "files": [ + "lib/dotnet5.1/System.Text.Encodings.Web.dll", + "System.Text.Encodings.Web.4.0.0-rc2-23525.nupkg", + "System.Text.Encodings.Web.4.0.0-rc2-23525.nupkg.sha512", + "System.Text.Encodings.Web.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "M1JdxnEZ1Mnv6jro+SvVI2ldrEEYhqP7LdhcX0uGm94q1Mg46Y9P27l6g1yz+Qgy2b3oi3tky5aF8+2VJwTuUA==", + "files": [ + "lib/dotnet5.4/System.Text.RegularExpressions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/es/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/fr/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/it/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/ja/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/ko/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/ru/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/System.Text.RegularExpressions.dll", + "ref/dotnet5.1/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/zh-hant/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/de/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/es/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/fr/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/it/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/ja/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/ko/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/ru/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/System.Text.RegularExpressions.dll", + "ref/dotnet5.4/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/zh-hant/System.Text.RegularExpressions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Text.RegularExpressions.4.0.11-rc2-23525.nupkg", + "System.Text.RegularExpressions.4.0.11-rc2-23525.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0": { + "type": "package", + "sha512": "H6O/9gUrjPDNYanh/7OFGAZHjVXvEuITD0RcnjfvIV04HOGrOPqUBU0kmz9RIX/7YGgCQn1o1S2DX6Cuv8kVGQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Threading.4.0.0.nupkg", + "System.Threading.4.0.0.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Vb+NknoSeJKz8FT6nCpDfjtZGOQOfoQAmi/kZxeXgdKwppTMp+Ytv5yqvvnYQDtBQcO3OnrnxUDg8WMTtU/v6w==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Threading.xml", + "ref/dotnet5.1/es/System.Threading.xml", + "ref/dotnet5.1/fr/System.Threading.xml", + "ref/dotnet5.1/it/System.Threading.xml", + "ref/dotnet5.1/ja/System.Threading.xml", + "ref/dotnet5.1/ko/System.Threading.xml", + "ref/dotnet5.1/ru/System.Threading.xml", + "ref/dotnet5.1/System.Threading.dll", + "ref/dotnet5.1/System.Threading.xml", + "ref/dotnet5.1/zh-hans/System.Threading.xml", + "ref/dotnet5.1/zh-hant/System.Threading.xml", + "ref/dotnet5.4/de/System.Threading.xml", + "ref/dotnet5.4/es/System.Threading.xml", + "ref/dotnet5.4/fr/System.Threading.xml", + "ref/dotnet5.4/it/System.Threading.xml", + "ref/dotnet5.4/ja/System.Threading.xml", + "ref/dotnet5.4/ko/System.Threading.xml", + "ref/dotnet5.4/ru/System.Threading.xml", + "ref/dotnet5.4/System.Threading.dll", + "ref/dotnet5.4/System.Threading.xml", + "ref/dotnet5.4/zh-hans/System.Threading.xml", + "ref/dotnet5.4/zh-hant/System.Threading.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Threading.4.0.11-rc2-23525.nupkg", + "System.Threading.4.0.11-rc2-23525.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0.nupkg", + "System.Threading.Overlapped.4.0.0.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "AnTRum7I9zd11FK9QxLsCWmt0VyxWyJjj2b/dFCQIFXh9iOPCkApf4sDcgRN7c6e/97CZSGHIKCvTO/zxeuGcA==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Threading.Tasks.xml", + "ref/dotnet5.1/es/System.Threading.Tasks.xml", + "ref/dotnet5.1/fr/System.Threading.Tasks.xml", + "ref/dotnet5.1/it/System.Threading.Tasks.xml", + "ref/dotnet5.1/ja/System.Threading.Tasks.xml", + "ref/dotnet5.1/ko/System.Threading.Tasks.xml", + "ref/dotnet5.1/ru/System.Threading.Tasks.xml", + "ref/dotnet5.1/System.Threading.Tasks.dll", + "ref/dotnet5.1/System.Threading.Tasks.xml", + "ref/dotnet5.1/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet5.1/zh-hant/System.Threading.Tasks.xml", + "ref/dotnet5.4/de/System.Threading.Tasks.xml", + "ref/dotnet5.4/es/System.Threading.Tasks.xml", + "ref/dotnet5.4/fr/System.Threading.Tasks.xml", + "ref/dotnet5.4/it/System.Threading.Tasks.xml", + "ref/dotnet5.4/ja/System.Threading.Tasks.xml", + "ref/dotnet5.4/ko/System.Threading.Tasks.xml", + "ref/dotnet5.4/ru/System.Threading.Tasks.xml", + "ref/dotnet5.4/System.Threading.Tasks.dll", + "ref/dotnet5.4/System.Threading.Tasks.xml", + "ref/dotnet5.4/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet5.4/zh-hant/System.Threading.Tasks.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.11-rc2-23525.nupkg", + "System.Threading.Tasks.4.0.11-rc2-23525.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Http.Abstractions >= 1.0.0-*", + "Microsoft.Extensions.DependencyInjection >= 1.0.0-*", + "Microsoft.Extensions.Logging >= 1.0.0-*", + "Microsoft.Extensions.OptionsModel >= 1.0.0-*", + "Microsoft.Extensions.PlatformAbstractions >= 1.0.0-*", + "Newtonsoft.Json >= 6.0.6", + "Rx-Linq >= 2.2.5", + "Rx-PlatformServices >= 2.2.5" + ], + ".NETFramework,Version=v4.5.1": [], + ".NETPlatform,Version=v5.4": [ + "System.ObjectModel >= 4.0.11-*", + "System.Runtime >= 4.0.21-*", + "System.Security.Cryptography.Algorithms >= 4.0.0-*", + "System.Text.RegularExpressions >= 4.0.11-*", + "System.Threading >= 4.0.11-*" + ] + } +} \ No newline at end of file diff --git a/src/Glimpse.Common/project.json b/src/Glimpse.Common/project.json index 8f508f6f..5c8aa304 100644 --- a/src/Glimpse.Common/project.json +++ b/src/Glimpse.Common/project.json @@ -12,28 +12,18 @@ "releaseNotes": "Initial release of Glimpse.Common.", "tags": [ "ASP.NET", "Web", "Debugging", "Diagnostics" ], "compilationOptions": { - "define": ["DNX"] + "define": ["SystemWeb"] }, "dependencies": { "Microsoft.AspNet.Http.Abstractions": "1.0.0-*", "Microsoft.Extensions.DependencyInjection": "1.0.0-*", "Microsoft.Extensions.Logging": "1.0.0-*", "Microsoft.Extensions.OptionsModel": "1.0.0-*", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-*", "Newtonsoft.Json": "6.0.6", "Rx-Linq": "2.2.5", "Rx-PlatformServices": "2.2.5" }, "frameworks": { - "net451": { }, - "dotnet5.4": { - "dependencies": { - "System.ObjectModel": "4.0.11-*", - "System.Runtime": "4.0.21-*", - "System.Security.Cryptography.Algorithms": "4.0.0-*", - "System.Text.RegularExpressions": "4.0.11-*", - "System.Threading": "4.0.11-*" - } - } + "net451": { } } } \ No newline at end of file diff --git a/src/Glimpse.Server/Configuration/AllowAgentAccessOptions.cs b/src/Glimpse.Server/Configuration/AllowAgentAccessOptions.cs index 40a7a82b..de09333e 100644 --- a/src/Glimpse.Server/Configuration/AllowAgentAccessOptions.cs +++ b/src/Glimpse.Server/Configuration/AllowAgentAccessOptions.cs @@ -19,4 +19,4 @@ public bool AllowAgent(HttpContext context) return _allowAgentAccess != null ? _allowAgentAccess(context) : true; } } -} +} \ No newline at end of file diff --git a/src/Glimpse.Server/Configuration/AllowClientAccessOptions.cs b/src/Glimpse.Server/Configuration/AllowClientAccessOptions.cs index 1c66c0ed..9ebc7464 100644 --- a/src/Glimpse.Server/Configuration/AllowClientAccessOptions.cs +++ b/src/Glimpse.Server/Configuration/AllowClientAccessOptions.cs @@ -19,4 +19,4 @@ public bool AllowUser(HttpContext context) return _allowAccess != null ? _allowAccess(context) : true; } } -} +} \ No newline at end of file diff --git a/src/Glimpse.Server/ServerServices.cs b/src/Glimpse.Server/ServerServices.cs index 3c82af15..93b4c61d 100644 --- a/src/Glimpse.Server/ServerServices.cs +++ b/src/Glimpse.Server/ServerServices.cs @@ -14,7 +14,7 @@ namespace Glimpse { public class ServerServices : IRegisterServices { - public void RegisterServices(GlimpseServiceCollectionBuilder services) + public void RegisterServices(IServiceCollection services) { services.AddOptions(); @@ -36,18 +36,16 @@ public void RegisterServices(GlimpseServiceCollectionBuilder services) services.AddSingleton(); services.AddSingleton(); + // TODO: switch to TryAdd if (!services.Any(s => s.ServiceType == typeof (IMessagePublisher))) { services.AddSingleton(); } - + // TODO: switch to TryAdd if (services.Any(s => s.ServiceType == typeof(IResourceOptionsProvider))) { - services.Replace(new ServiceDescriptor( - typeof(IResourceOptionsProvider), - typeof(DefaultResourceOptionsProvider), - ServiceLifetime.Singleton)); + services.Replace(new ServiceDescriptor(typeof(IResourceOptionsProvider), typeof(DefaultResourceOptionsProvider), ServiceLifetime.Singleton)); } else { diff --git a/src/Glimpse.Server/GlimpseServerMiddleware.cs b/src/Glimpse.Server/_DNX/GlimpseServerMiddleware.cs similarity index 99% rename from src/Glimpse.Server/GlimpseServerMiddleware.cs rename to src/Glimpse.Server/_DNX/GlimpseServerMiddleware.cs index 4673acf8..db6696eb 100644 --- a/src/Glimpse.Server/GlimpseServerMiddleware.cs +++ b/src/Glimpse.Server/_DNX/GlimpseServerMiddleware.cs @@ -1,4 +1,5 @@ -using System.Threading.Tasks; +#if DNX +using System.Threading.Tasks; using Microsoft.AspNet.Builder; using Microsoft.AspNet.Http; using System.Collections.Generic; @@ -127,4 +128,5 @@ private bool AllowAgentAccess(HttpContext context) return true; } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Server/GlimpseServerServiceCollectionBuilder.cs b/src/Glimpse.Server/_DNX/GlimpseServerServiceCollectionBuilder.cs similarity index 79% rename from src/Glimpse.Server/GlimpseServerServiceCollectionBuilder.cs rename to src/Glimpse.Server/_DNX/GlimpseServerServiceCollectionBuilder.cs index 5b1c52f7..b9d842c7 100644 --- a/src/Glimpse.Server/GlimpseServerServiceCollectionBuilder.cs +++ b/src/Glimpse.Server/_DNX/GlimpseServerServiceCollectionBuilder.cs @@ -1,4 +1,5 @@ -using Microsoft.Extensions.DependencyInjection; +#if DNX +using Microsoft.Extensions.DependencyInjection; namespace Glimpse { @@ -9,4 +10,5 @@ public GlimpseServerServiceCollectionBuilder(IServiceCollection innerCollection) { } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Server/GlimpseServerServiceCollectionExtensions.cs b/src/Glimpse.Server/_DNX/GlimpseServerServiceCollectionExtensions.cs similarity index 95% rename from src/Glimpse.Server/GlimpseServerServiceCollectionExtensions.cs rename to src/Glimpse.Server/_DNX/GlimpseServerServiceCollectionExtensions.cs index 920baf7d..bba8394b 100644 --- a/src/Glimpse.Server/GlimpseServerServiceCollectionExtensions.cs +++ b/src/Glimpse.Server/_DNX/GlimpseServerServiceCollectionExtensions.cs @@ -1,4 +1,5 @@ -using System; +#if DNX +using System; using Glimpse.Server; using Microsoft.Extensions.DependencyInjection; @@ -21,4 +22,5 @@ public static GlimpseServerServiceCollectionBuilder RunningServerWeb(this Glimps return new GlimpseServerServiceCollectionBuilder(services); } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Server/ServerMiddleware.cs b/src/Glimpse.Server/_DNX/ServerMiddleware.cs similarity index 84% rename from src/Glimpse.Server/ServerMiddleware.cs rename to src/Glimpse.Server/_DNX/ServerMiddleware.cs index 0e36709a..932e872d 100644 --- a/src/Glimpse.Server/ServerMiddleware.cs +++ b/src/Glimpse.Server/_DNX/ServerMiddleware.cs @@ -1,4 +1,5 @@ -using Glimpse.Common.Initialization; +#if DNX +using Glimpse.Common.Initialization; using Microsoft.AspNet.Builder; namespace Glimpse.Server @@ -10,4 +11,5 @@ public void RegisterMiddleware(IApplicationBuilder appBuilder) appBuilder.UseMiddleware(appBuilder); } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/src/Glimpse.Server/_DNX_project.json b/src/Glimpse.Server/_DNX_project.json new file mode 100644 index 00000000..4535bea1 --- /dev/null +++ b/src/Glimpse.Server/_DNX_project.json @@ -0,0 +1,28 @@ +{ + "version": "2.0.0-*", + "authors": [ "nmolnar", "avanderhoorn" ], + "owners": [ "nmolnar", "avanderhoorn" ], + "title": "Glimpse Server", + "licenseUrl": "https://github.com/Glimpse/Glimpse.Prototype/blob/dev/LICENSE.txt", + "projectUrl": "http://getglimpse.com", + "iconUrl": "http://getglimpse.com/content/glimpse100.png", + "requireLicenseAcceptance": false, + "description": "The infrastructure and extensibility points required to enable Glimpse to serve data and content.", + "summary": "Glimpse.Server contains infrastructure and extensibility points for serving Glimpse data and content.", + "releaseNotes": "Initial release of Glimpse.Server.", + "tags": [ "ASP.NET", "Web", "Debugging", "Diagnostics", "Server" ], + "resource": "Internal/Resources/Embeded/**/*.*", + "compilationOptions": { + "define": [ "DNX" ] + }, + "dependencies": { + "Glimpse.Common": "", + "Microsoft.AspNet.FileProviders.Embedded": "1.0.0-*", + "Microsoft.AspNet.StaticFiles": "1.0.0-*", + "Tavis.UriTemplates": "0.6.6-beta2" + }, + "frameworks": { + "net451": { }, + "dotnet5.4": { } + } +} \ No newline at end of file diff --git a/src/Glimpse.Server/_DNX_project.lock.json b/src/Glimpse.Server/_DNX_project.lock.json new file mode 100644 index 00000000..00131e3d --- /dev/null +++ b/src/Glimpse.Server/_DNX_project.lock.json @@ -0,0 +1,7747 @@ +{ + "locked": false, + "version": 2, + "targets": { + ".NETFramework,Version=v4.5.1": { + "Glimpse.Common/2.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5.1", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.OptionsModel": "1.0.0", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5" + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15977": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", + "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-16009" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.OptionsModel": "1.0.0-rc2-15848", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/net45/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.IO/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Threading/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "Tavis.UriTemplates/0.6.6-beta2": { + "type": "package", + "compile": { + "lib/Net45/Tavis.UriTemplates.dll": {} + }, + "runtime": { + "lib/Net45/Tavis.UriTemplates.dll": {} + } + } + }, + ".NETPlatform,Version=v5.4": { + "Glimpse.Common/2.0.0": { + "type": "project", + "framework": ".NETPlatform,Version=v5.4", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.OptionsModel": "1.0.0", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5", + "System.ObjectModel": "4.0.11", + "System.Runtime": "4.0.21", + "System.Security.Cryptography.Algorithms": "4.0.0", + "System.Text.RegularExpressions": "4.0.11", + "System.Threading": "4.0.11" + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.IO": "4.0.11-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "System.Collections": "4.0.11-rc2-23525", + "System.Reflection": "4.0.10", + "System.Runtime.Extensions": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Tools": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Globalization.Extensions": "4.0.1-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525", + "System.Text.Encodings.Web": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Collections": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15977": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", + "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-16009" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Linq": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.0.10", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "dependencies": { + "System.AppContext": "4.0.1-rc2-23525", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.OptionsModel": "1.0.0-rc2-15848", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Contracts": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Globalization.Extensions": "4.0.1-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Text.Encoding": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + } + }, + "System.AppContext/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Collections.Concurrent.dll": {} + } + }, + "System.ComponentModel/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.ComponentModel": "4.0.0", + "System.ComponentModel.Primitives": "4.0.0", + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet5.4/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Security.Claims/4.0.1-rc2-23525": { + "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.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Security.Principal": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Security.Principal.dll": {} + } + }, + "System.Text.Encoding/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.Tasks.dll": {} + } + }, + "Tavis.UriTemplates/0.6.6-beta2": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Linq": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Text.RegularExpressions": "4.0.0" + }, + "compile": { + "lib/dotnet/Tavis.UriTemplates.dll": {} + }, + "runtime": { + "lib/dotnet/Tavis.UriTemplates.dll": {} + } + } + }, + ".NETFramework,Version=v4.5.1/win7-x86": { + "Glimpse.Common/2.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5.1", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.OptionsModel": "1.0.0", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5" + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15977": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", + "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-16009" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.OptionsModel": "1.0.0-rc2-15848", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/net45/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.IO/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Threading/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "Tavis.UriTemplates/0.6.6-beta2": { + "type": "package", + "compile": { + "lib/Net45/Tavis.UriTemplates.dll": {} + }, + "runtime": { + "lib/Net45/Tavis.UriTemplates.dll": {} + } + } + }, + ".NETFramework,Version=v4.5.1/win7-x64": { + "Glimpse.Common/2.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5.1", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.OptionsModel": "1.0.0", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5" + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15977": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", + "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-16009" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.OptionsModel": "1.0.0-rc2-15848", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/net45/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.IO/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Threading/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "Tavis.UriTemplates/0.6.6-beta2": { + "type": "package", + "compile": { + "lib/Net45/Tavis.UriTemplates.dll": {} + }, + "runtime": { + "lib/Net45/Tavis.UriTemplates.dll": {} + } + } + }, + ".NETPlatform,Version=v5.4/win7-x86": { + "Glimpse.Common/2.0.0": { + "type": "project", + "framework": ".NETPlatform,Version=v5.4", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.OptionsModel": "1.0.0", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5", + "System.ObjectModel": "4.0.11", + "System.Runtime": "4.0.21", + "System.Security.Cryptography.Algorithms": "4.0.0", + "System.Text.RegularExpressions": "4.0.11", + "System.Threading": "4.0.11" + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.IO": "4.0.11-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "System.Collections": "4.0.11-rc2-23525", + "System.Reflection": "4.0.10", + "System.Runtime.Extensions": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Tools": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Globalization.Extensions": "4.0.1-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525", + "System.Text.Encodings.Web": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Collections": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15977": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", + "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-16009" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Linq": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.0.10", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "dependencies": { + "System.AppContext": "4.0.1-rc2-23525", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.OptionsModel": "1.0.0-rc2-15848", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Contracts": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Globalization.Extensions": "4.0.1-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Text.Encoding": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Collections.Concurrent": "4.0.0", + "System.Diagnostics.Debug": "4.0.10", + "System.Linq": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Globalization.Calendars": "4.0.0", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Runtime.Numerics": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Cng": "4.0.0-rc2-23525", + "System.Security.Cryptography.Csp": "4.0.0-rc2-23525", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "runtime.win7.System.Threading/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + } + }, + "System.AppContext/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Collections.Concurrent.dll": {} + } + }, + "System.ComponentModel/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.ComponentModel": "4.0.0", + "System.ComponentModel.Primitives": "4.0.0", + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet5.4/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.1-rc2-23525": { + "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.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Security.Principal": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Security.Principal.dll": {} + } + }, + "System.Text.Encoding/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.Tasks.dll": {} + } + }, + "Tavis.UriTemplates/0.6.6-beta2": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Linq": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Text.RegularExpressions": "4.0.0" + }, + "compile": { + "lib/dotnet/Tavis.UriTemplates.dll": {} + }, + "runtime": { + "lib/dotnet/Tavis.UriTemplates.dll": {} + } + } + }, + ".NETPlatform,Version=v5.4/win7-x64": { + "Glimpse.Common/2.0.0": { + "type": "project", + "framework": ".NETPlatform,Version=v5.4", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.OptionsModel": "1.0.0", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5", + "System.ObjectModel": "4.0.11", + "System.Runtime": "4.0.21", + "System.Security.Cryptography.Algorithms": "4.0.0", + "System.Text.RegularExpressions": "4.0.11", + "System.Threading": "4.0.11" + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.IO": "4.0.11-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15838": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "System.Collections": "4.0.11-rc2-23525", + "System.Reflection": "4.0.10", + "System.Runtime.Extensions": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Tools": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Globalization.Extensions": "4.0.1-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525", + "System.Text.Encodings.Web": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Collections": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Net.Primitives": "4.0.11-rc2-23525", + "System.Net.WebSockets": "4.0.0-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Security.Claims": "4.0.1-rc2-23525", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", + "System.Security.Principal": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15977": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", + "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-16009" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.IO.FileSystem": "4.0.1-rc2-23525", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", + "System.Linq": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", + "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-23525", + "System.Collections.Concurrent": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.Diagnostics.Debug": "4.0.11-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.Reflection": "4.0.10", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Threading": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "dependencies": { + "System.AppContext": "4.0.1-rc2-23525", + "System.Collections": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23525", + "System.IO": "4.0.11-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-rc2-23525", + "System.Runtime.Extensions": "4.0.11-rc2-23525", + "System.Runtime.InteropServices": "4.0.21-rc2-23525", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", + "System.Threading.Tasks": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", + "Microsoft.Extensions.OptionsModel": "1.0.0-rc2-15848", + "System.Text.Encodings.Web": "4.0.0-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-23525", + "System.Diagnostics.Contracts": "4.0.1-rc2-23525", + "System.Globalization": "4.0.11-rc2-23525", + "System.Globalization.Extensions": "4.0.1-rc2-23525", + "System.Linq": "4.0.1-rc2-23525", + "System.Runtime": "4.0.21-rc2-23525", + "System.Text.Encoding": "4.0.11-rc2-23525" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Collections.Concurrent": "4.0.0", + "System.Diagnostics.Debug": "4.0.10", + "System.Linq": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Globalization.Calendars": "4.0.0", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Runtime.Numerics": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Cng": "4.0.0-rc2-23525", + "System.Security.Cryptography.Csp": "4.0.0-rc2-23525", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "runtime.win7.System.Threading/4.0.11-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + } + }, + "System.AppContext/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Collections.Concurrent.dll": {} + } + }, + "System.ComponentModel/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.ComponentModel": "4.0.0", + "System.ComponentModel.Primitives": "4.0.0", + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-rc2-23525": { + "type": "package", + "compile": { + "ref/dotnet5.4/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-rc2-23525": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.1-rc2-23525": { + "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.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Security.Principal": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Text.Encoding": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Security.Principal.dll": {} + } + }, + "System.Text.Encoding/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-rc2-23525": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.Tasks.dll": {} + } + }, + "Tavis.UriTemplates/0.6.6-beta2": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Linq": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Text.RegularExpressions": "4.0.0" + }, + "compile": { + "lib/dotnet/Tavis.UriTemplates.dll": {} + }, + "runtime": { + "lib/dotnet/Tavis.UriTemplates.dll": {} + } + } + } + }, + "libraries": { + "Glimpse.Common/2.0.0": { + "type": "project", + "path": "../Glimpse.Common/project.json" + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "type": "package", + "serviceable": true, + "sha512": "xroX7pbQ0TvSKSNMjJ2c5OZqekyS9n6ytIKzGUYv7uYUOLDLoxaRFAsalk4Jg5oFdWwEWlqvOSZ8XzWNkr2r2g==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.xml", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc2-15838.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc2-15838.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15838": { + "type": "package", + "serviceable": true, + "sha512": "2lP9C9m9L31nfJcCsIhqOHh0MdA7Ww6cMwo6tG8dqmOpOscWZ63tZsEa3gd1YinplCLj8eelmaAONUw105Wh3Q==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.dll", + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.xml", + "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll", + "lib/net451/Microsoft.AspNet.FileProviders.Embedded.xml", + "Microsoft.AspNet.FileProviders.Embedded.1.0.0-rc2-15838.nupkg", + "Microsoft.AspNet.FileProviders.Embedded.1.0.0-rc2-15838.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Embedded.nuspec" + ] + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "type": "package", + "serviceable": true, + "sha512": "C5rsiJAQvewPLq1SXtLp8mj1avE3W44ihYgCPgDjuLTII6X13dsDzoq+tx9Mvrpo0aKLMvkwYXvuISsXNGG8Kw==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.xml", + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.xml", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc2-16032.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc2-16032.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "type": "package", + "serviceable": true, + "sha512": "nTSnUeiLsYx55rbORWX7MP7dM6tKwUN4LGultn5WEshq9sArC6tjmazB5NYxw3PBb7ptiKsupv3icc1FN5FAgg==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.xml", + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll", + "lib/net451/Microsoft.AspNet.Http.Abstractions.xml", + "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16009.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "type": "package", + "serviceable": true, + "sha512": "e2HsZ/mON83GhbQDnVC/9/BtO5/gjQfw6wo9v/J950wGk8EUg7jLIAmEiFcGyv0SLYf/7sy2tGtt756KOWwvQw==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.xml", + "lib/net451/Microsoft.AspNet.Http.Extensions.dll", + "lib/net451/Microsoft.AspNet.Http.Extensions.xml", + "Microsoft.AspNet.Http.Extensions.1.0.0-rc2-16009.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "type": "package", + "serviceable": true, + "sha512": "vk/l2BgRDzy2LERj1Oh8Znk6iiPlLlz1O2gREn+cbtiD3P3ATRH1S9MFc7SM1AZR6VSPdZm6exhF1nt3q0EpXg==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.xml", + "lib/net451/Microsoft.AspNet.Http.Features.dll", + "lib/net451/Microsoft.AspNet.Http.Features.xml", + "Microsoft.AspNet.Http.Features.1.0.0-rc2-16009.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec" + ] + }, + "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15977": { + "type": "package", + "serviceable": true, + "sha512": "oa6eVv4pxc22Rk/XqMLoWfpAQgasJVxMfCRNHsoD2wPiI19EN97kQfgf+ebZIb+tUc1lhNR99kKf4YFWo44poA==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.dll", + "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.xml", + "lib/net451/Microsoft.AspNet.StaticFiles.dll", + "lib/net451/Microsoft.AspNet.StaticFiles.xml", + "Microsoft.AspNet.StaticFiles.1.0.0-rc2-15977.nupkg", + "Microsoft.AspNet.StaticFiles.1.0.0-rc2-15977.nupkg.sha512", + "Microsoft.AspNet.StaticFiles.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "type": "package", + "serviceable": true, + "sha512": "MOYgTTWkUXDE2bS76CFIH6E+TytMilisgAJYAcRxRRYAYh/7I45KCuJDCP5l/2NA4mIgfecVUeXTe9EHn7etdA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.xml", + "lib/net451/Microsoft.Extensions.Configuration.dll", + "lib/net451/Microsoft.Extensions.Configuration.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.xml", + "Microsoft.Extensions.Configuration.1.0.0-rc2-15866.nupkg", + "Microsoft.Extensions.Configuration.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "type": "package", + "serviceable": true, + "sha512": "mCbiKPorBDupxnYahPCdAMbEr+5j8mzuZVrUzjhPAnnFA94POhZ2US+gdf2exDhLzIM0cDy0mUSVWIjlcIr1QA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.xml", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15866.nupkg", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "type": "package", + "serviceable": true, + "sha512": "2wI+qIu9YedvCLfep2RxBTYyAqy6Mkr9bVJwzZBHw7yg/GEpCXeOhppWvEXEd/I6sqWWUB+fYNnZtm5h9NlH8A==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net451/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.Binder.xml", + "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15866.nupkg", + "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.Binder.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "type": "package", + "serviceable": true, + "sha512": "cuFxC3SPMIOIX+uUHo9QEri+P9DC6CPkLltJRq2qwgjFIMQ8uJ9nJI6HUYZpEU2Kyh6nm2DIrVSnjG5ycsk9cQ==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll", + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.xml", + "lib/net451/Microsoft.Extensions.DependencyInjection.dll", + "lib/net451/Microsoft.Extensions.DependencyInjection.xml", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.dll", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.xml", + "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15839.nupkg", + "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15839.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "type": "package", + "serviceable": true, + "sha512": "JxM3ERvmmjQqRNfQlTeXnjWAqrIzoe+x5alZLuSOw2b5p/191vObRKi0SuFmFvBi/mPoHYqth6cLwSLTASeD3Q==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15839.nupkg", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15839.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "type": "package", + "serviceable": true, + "sha512": "jwr1ZH/IUqG6kLpSi8lUueZB/JFQWJUNMjPgpfObmaW7/mfl83/6qDhm7I6Z9Ix0ULjWDEAGmaHTykE06bB/eA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll", + "lib/dotnet5.4/Microsoft.Extensions.Logging.xml", + "lib/net451/Microsoft.Extensions.Logging.dll", + "lib/net451/Microsoft.Extensions.Logging.xml", + "lib/netcore50/Microsoft.Extensions.Logging.dll", + "lib/netcore50/Microsoft.Extensions.Logging.xml", + "Microsoft.Extensions.Logging.1.0.0-rc2-15867.nupkg", + "Microsoft.Extensions.Logging.1.0.0-rc2-15867.nupkg.sha512", + "Microsoft.Extensions.Logging.nuspec" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "type": "package", + "serviceable": true, + "sha512": "f37cph4Ec/2fSoy1kQUVICI7vx7JT+aPrBoePXVncsoFssNWzLbOpQ4Jwb9Gntd1qRKpAWyH/OsSdGHjV3rCSA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net451/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.xml", + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15867.nupkg", + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15867.nupkg.sha512", + "Microsoft.Extensions.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "type": "package", + "serviceable": true, + "sha512": "YHgRu79p6vbxr5BvnwD0vb2j96EQiNlZjMpra0VdUWYx7jB1Z8M9qB5OBF1ZUgiUVaGmwKFukd4EDqw4sS8MDA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll", + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.xml", + "lib/net451/Microsoft.Extensions.OptionsModel.dll", + "lib/net451/Microsoft.Extensions.OptionsModel.xml", + "lib/netcore50/Microsoft.Extensions.OptionsModel.dll", + "lib/netcore50/Microsoft.Extensions.OptionsModel.xml", + "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15848.nupkg", + "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15848.nupkg.sha512", + "Microsoft.Extensions.OptionsModel.nuspec" + ] + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "type": "package", + "serviceable": true, + "sha512": "BtXxSh8IrQDGNjuLago+2LQ2UEC7Up8oHS6U30HY4sR2UlOauY5RGNafffLz5DzMoHfs02eDeu9saRViXjxBxQ==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.xml", + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll", + "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml", + "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16237.nupkg", + "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16237.nupkg.sha512", + "Microsoft.Extensions.PlatformAbstractions.nuspec" + ] + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "type": "package", + "serviceable": true, + "sha512": "ImxZgBrbQStbBlGvR59w7euRE4pKIaKURQT8v70SwWZgrvecl9qXFxuJeoyLhwDBxErF1vdW2QJU7GHFdKZTaA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll", + "lib/dotnet5.4/Microsoft.Extensions.Primitives.xml", + "lib/net451/Microsoft.Extensions.Primitives.dll", + "lib/net451/Microsoft.Extensions.Primitives.xml", + "lib/netcore50/Microsoft.Extensions.Primitives.dll", + "lib/netcore50/Microsoft.Extensions.Primitives.xml", + "Microsoft.Extensions.Primitives.1.0.0-rc2-15889.nupkg", + "Microsoft.Extensions.Primitives.1.0.0-rc2-15889.nupkg.sha512", + "Microsoft.Extensions.Primitives.nuspec" + ] + }, + "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16009": { + "type": "package", + "serviceable": true, + "sha512": "mt2LNdF3Emk1DyVqLTZqDuZ7NZf6I8AA2YaZzcRmOANuQ3GUWiYX/dqNqqykZ6MMXH/sPjLEKexzUtFYGd7V6A==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.dll", + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.xml", + "lib/net451/Microsoft.Extensions.WebEncoders.dll", + "lib/net451/Microsoft.Extensions.WebEncoders.xml", + "Microsoft.Extensions.WebEncoders.1.0.0-rc2-16009.nupkg", + "Microsoft.Extensions.WebEncoders.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.Extensions.WebEncoders.nuspec" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "type": "package", + "serviceable": true, + "sha512": "MeGgbca6En71j+SG34w3Xk4wlOyBdrw/wKpJd15z5DtWqUWVMyPCN2xxeWKhsxmP76wj3fngL4QrgubYN27tzw==", + "files": [ + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll", + "lib/dotnet5.4/Microsoft.Net.Http.Headers.xml", + "lib/net451/Microsoft.Net.Http.Headers.dll", + "lib/net451/Microsoft.Net.Http.Headers.xml", + "Microsoft.Net.Http.Headers.1.0.0-rc2-16009.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "Microsoft.Win32.Primitives.4.0.0.nupkg", + "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._" + ] + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "m2rDRsf1hcnaUlhKgF9op2UmADh1/5nJpfBJHkKPK46C6s2dI3LAJ0LpAIw1arW9xJDd2P//5gdvUFRGBRRang==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/_._", + "runtime.any.System.Linq.Expressions.4.0.11-rc2-23525.nupkg", + "runtime.any.System.Linq.Expressions.4.0.11-rc2-23525.nupkg.sha512", + "runtime.any.System.Linq.Expressions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "H8lMtaHAPFEjWCfOZyPwN7ctkAxC3vN65x+gzaUfcPBLrHMLaqT3qsNy5H3c66oFGt3NOCm4WEYlvjeYjd8/sQ==", + "files": [ + "ref/dotnet/_._", + "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg", + "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win.System.Runtime.InteropServices.RuntimeInformation.nuspec", + "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll" + ] + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "6txhz00DQayySs37jFHBE7C0O5dpTmlZrCxJLDdukcyKpHnyhNCOEKz6r+93mFeziRY6Lf4f3K7XgnvN/1vPJQ==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg", + "runtime.win7.System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg.sha512", + "runtime.win7.System.Diagnostics.Debug.nuspec", + "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll", + "runtimes/win7/lib/netcore50/System.Diagnostics.Debug.dll", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "KjAFrVUkamkrAYajk+bpM5qhZ5UzAMVS1jlR4fW6keFk8ltp57PfivcBGRDbQDhCMzUVIjEFQ5RHXIsLOgpZHg==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Globalization.Extensions.4.0.1-rc2-23525.nupkg", + "runtime.win7.System.Globalization.Extensions.4.0.1-rc2-23525.nupkg.sha512", + "runtime.win7.System.Globalization.Extensions.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll", + "runtimes/win7/lib/net/_._" + ] + }, + "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Rk2nN279viCiNX+a05TDaZAWxtp1Kl/NytR4jT75dM24niwhNtLVpDq3mZ6L8AV0lSnkd6UeHhMOrcbMhoiHyg==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.IO.FileSystem.4.0.1-rc2-23525.nupkg", + "runtime.win7.System.IO.FileSystem.4.0.1-rc2-23525.nupkg.sha512", + "runtime.win7.System.IO.FileSystem.nuspec", + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll", + "runtimes/win7/lib/net/_._", + "runtimes/win7/lib/netcore50/System.IO.FileSystem.dll", + "runtimes/win7/lib/win8/_._", + "runtimes/win7/lib/wp8/_._", + "runtimes/win7/lib/wpa81/_._" + ] + }, + "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "fQXiEWBBAf85oQrn/PhE5h0x1Bz2MsQLzFnsmPHXK3F52aCXSfA8XG7d9/P4M635T6YuZz4Hl4RmJdFYoO84Ww==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "ref/dotnet/_._", + "runtime.win7.System.Net.Primitives.4.0.11-rc2-23525.nupkg", + "runtime.win7.System.Net.Primitives.4.0.11-rc2-23525.nupkg.sha512", + "runtime.win7.System.Net.Primitives.nuspec", + "runtimes/win7/lib/netcore50/System.Net.Primitives.dll" + ] + }, + "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "o9yhni1ibV4TZ8pDXnGWrbdYUN0vDTqjC08fBoNF/iHtg4m5TNATIaEVDXOF1ny1ymyfZE/6VRC7m2twuWD/+A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/_._", + "runtime.win7.System.Runtime.Extensions.4.0.11-rc2-23525.nupkg", + "runtime.win7.System.Runtime.Extensions.4.0.11-rc2-23525.nupkg.sha512", + "runtime.win7.System.Runtime.Extensions.nuspec", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "OZghF4dY+gj/IhXj1FOrlDI//lEb0q9/Y/5GPftSotrk/sDRMpiflbAzVziNCkvOnDPowaU+kayZGCLU9zMRqA==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg", + "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.Algorithms.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll", + "runtimes/win7/lib/net/_._" + ] + }, + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "fwjrSecPvxUhksPU8iIxjY8z5akm/KqTTCUWEETuka9WkaFCU1ktrqJI/UJrn+ImXBv87MbLYBblixdAYAr75g==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg", + "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.Encoding.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll", + "runtimes/win7/lib/net/_._" + ] + }, + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "MstJY/cwJg4HYbUk+z+m8r1Ffw14Nsm8DD7QNxtNfXI99eFfvjDhn7ur8S7m5nTBk23EPsUfN9VAFESXTrv2fw==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg", + "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.X509Certificates.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win7/lib/net/_._", + "runtimes/win7/lib/netcore50/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "runtime.win7.System.Threading/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "gYFmKqjSPB2E2PpyEehCvovB6pPiRJbw04DwViGE7FGyrE0J9VsdeFTeIpzWcKiTg5pzdlvmUg100MIxfYWrjA==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Threading.4.0.11-rc2-23525.nupkg", + "runtime.win7.System.Threading.4.0.11-rc2-23525.nupkg.sha512", + "runtime.win7.System.Threading.nuspec", + "runtimes/win7/lib/DNXCore50/System.Threading.dll", + "runtimes/win7/lib/netcore50/System.Threading.dll", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "Rx-Core/2.2.5": { + "type": "package", + "sha512": "DfWVTfW6tvRkkqpnRHKxPIvaRZyDJGADuqrE6J2nwejOQbLRWi0rNUwXkViDWz++25BGDy3iRE5OE6Dv8mJxYQ==", + "files": [ + "lib/net40/System.Reactive.Core.dll", + "lib/net40/System.Reactive.Core.XML", + "lib/net45/System.Reactive.Core.dll", + "lib/net45/System.Reactive.Core.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.XML", + "lib/portable-win81+wpa81/System.Reactive.Core.dll", + "lib/portable-win81+wpa81/System.Reactive.Core.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Core.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Core.XML", + "lib/sl5/System.Reactive.Core.dll", + "lib/sl5/System.Reactive.Core.XML", + "lib/windows8/System.Reactive.Core.dll", + "lib/windows8/System.Reactive.Core.XML", + "lib/windowsphone71/System.Reactive.Core.dll", + "lib/windowsphone71/System.Reactive.Core.XML", + "lib/windowsphone8/System.Reactive.Core.dll", + "lib/windowsphone8/System.Reactive.Core.XML", + "Rx-Core.2.2.5.nupkg", + "Rx-Core.2.2.5.nupkg.sha512", + "Rx-Core.nuspec" + ] + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "sha512": "FKtG2QfMIeUcfB7r3a89VoAiszX3DTvYETkpC6U0FzWpxRK/mcHyzYOsniDfag+NsDG0P1k1c8yNSefXKp3t2A==", + "files": [ + "lib/net40/System.Reactive.Interfaces.dll", + "lib/net40/System.Reactive.Interfaces.XML", + "lib/net45/System.Reactive.Interfaces.dll", + "lib/net45/System.Reactive.Interfaces.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.XML", + "lib/portable-win81+wpa81/System.Reactive.Interfaces.dll", + "lib/portable-win81+wpa81/System.Reactive.Interfaces.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.XML", + "lib/sl5/System.Reactive.Interfaces.dll", + "lib/sl5/System.Reactive.Interfaces.XML", + "lib/windows8/System.Reactive.Interfaces.dll", + "lib/windows8/System.Reactive.Interfaces.XML", + "lib/windowsphone71/System.Reactive.Interfaces.dll", + "lib/windowsphone71/System.Reactive.Interfaces.XML", + "lib/windowsphone8/System.Reactive.Interfaces.dll", + "lib/windowsphone8/System.Reactive.Interfaces.XML", + "Rx-Interfaces.2.2.5.nupkg", + "Rx-Interfaces.2.2.5.nupkg.sha512", + "Rx-Interfaces.nuspec" + ] + }, + "Rx-Linq/2.2.5": { + "type": "package", + "sha512": "UTeCIu3cWPExxmTzdiVq7SalqTBhUaomBTaAC9LpYPoAopjlFwA3hjVWXoLkGlDc/44wqJemJuEwFP00KphiFg==", + "files": [ + "lib/net40/System.Reactive.Linq.dll", + "lib/net40/System.Reactive.Linq.XML", + "lib/net45/System.Reactive.Linq.dll", + "lib/net45/System.Reactive.Linq.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.XML", + "lib/portable-win81+wpa81/System.Reactive.Linq.dll", + "lib/portable-win81+wpa81/System.Reactive.Linq.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Linq.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Linq.XML", + "lib/sl5/System.Reactive.Linq.dll", + "lib/sl5/System.Reactive.Linq.XML", + "lib/windows8/System.Reactive.Linq.dll", + "lib/windows8/System.Reactive.Linq.XML", + "lib/windowsphone71/System.Reactive.Linq.dll", + "lib/windowsphone71/System.Reactive.Linq.XML", + "lib/windowsphone8/System.Reactive.Linq.dll", + "lib/windowsphone8/System.Reactive.Linq.XML", + "Rx-Linq.2.2.5.nupkg", + "Rx-Linq.2.2.5.nupkg.sha512", + "Rx-Linq.nuspec" + ] + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "sha512": "pMnNEvJVjT+wuDib+W/bi5hhIYcre7dW5yxvKrJxnR4iKJ1VLA/dY2FTtjDriHGx7OeGn12lQewXlH2oHiWFPA==", + "files": [ + "lib/net40/System.Reactive.PlatformServices.dll", + "lib/net40/System.Reactive.PlatformServices.XML", + "lib/net45/System.Reactive.PlatformServices.dll", + "lib/net45/System.Reactive.PlatformServices.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.XML", + "lib/portable-win81+wpa81/System.Reactive.PlatformServices.dll", + "lib/portable-win81+wpa81/System.Reactive.PlatformServices.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.XML", + "lib/sl5/System.Reactive.PlatformServices.dll", + "lib/sl5/System.Reactive.PlatformServices.XML", + "lib/windows8/System.Reactive.PlatformServices.dll", + "lib/windows8/System.Reactive.PlatformServices.XML", + "lib/windowsphone71/System.Reactive.PlatformServices.dll", + "lib/windowsphone71/System.Reactive.PlatformServices.XML", + "lib/windowsphone8/System.Reactive.PlatformServices.dll", + "lib/windowsphone8/System.Reactive.PlatformServices.XML", + "Rx-PlatformServices.2.2.5.nupkg", + "Rx-PlatformServices.2.2.5.nupkg.sha512", + "Rx-PlatformServices.nuspec" + ] + }, + "System.AppContext/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "1AErxnp8ORCt1JmFgddMK5xYzIgfFE8yPRXXLRAHv43Dj6oHGsdE0sz4eB+lBkbLrzd+MWd/FJc6/t0It6qJxw==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.AppContext.xml", + "ref/dotnet5.4/es/System.AppContext.xml", + "ref/dotnet5.4/fr/System.AppContext.xml", + "ref/dotnet5.4/it/System.AppContext.xml", + "ref/dotnet5.4/ja/System.AppContext.xml", + "ref/dotnet5.4/ko/System.AppContext.xml", + "ref/dotnet5.4/ru/System.AppContext.xml", + "ref/dotnet5.4/System.AppContext.dll", + "ref/dotnet5.4/System.AppContext.xml", + "ref/dotnet5.4/zh-hans/System.AppContext.xml", + "ref/dotnet5.4/zh-hant/System.AppContext.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.AppContext.4.0.1-rc2-23525.nupkg", + "System.AppContext.4.0.1-rc2-23525.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "xJmMbyH4afnSkGiOhTiSyAWL6j45yYDG3l63D3peganrFKvzln1ks7SGfERzBEPqKFHBDoJ7TlRpJQp40wJNUA==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Collections.xml", + "ref/dotnet5.1/es/System.Collections.xml", + "ref/dotnet5.1/fr/System.Collections.xml", + "ref/dotnet5.1/it/System.Collections.xml", + "ref/dotnet5.1/ja/System.Collections.xml", + "ref/dotnet5.1/ko/System.Collections.xml", + "ref/dotnet5.1/ru/System.Collections.xml", + "ref/dotnet5.1/System.Collections.dll", + "ref/dotnet5.1/System.Collections.xml", + "ref/dotnet5.1/zh-hans/System.Collections.xml", + "ref/dotnet5.1/zh-hant/System.Collections.xml", + "ref/dotnet5.4/de/System.Collections.xml", + "ref/dotnet5.4/es/System.Collections.xml", + "ref/dotnet5.4/fr/System.Collections.xml", + "ref/dotnet5.4/it/System.Collections.xml", + "ref/dotnet5.4/ja/System.Collections.xml", + "ref/dotnet5.4/ko/System.Collections.xml", + "ref/dotnet5.4/ru/System.Collections.xml", + "ref/dotnet5.4/System.Collections.dll", + "ref/dotnet5.4/System.Collections.xml", + "ref/dotnet5.4/zh-hans/System.Collections.xml", + "ref/dotnet5.4/zh-hant/System.Collections.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.11-rc2-23525.nupkg", + "System.Collections.4.0.11-rc2-23525.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "rJUILubHbGrHU1CNoZwUpJQjTL5XgG7BNT5hwQbN9fNLIWh/8t6jqUNE6pGoEg/N/l8vBeFXwfVnzrjAlFfTHA==", + "files": [ + "lib/dotnet5.4/System.Collections.Concurrent.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.2/de/System.Collections.Concurrent.xml", + "ref/dotnet5.2/es/System.Collections.Concurrent.xml", + "ref/dotnet5.2/fr/System.Collections.Concurrent.xml", + "ref/dotnet5.2/it/System.Collections.Concurrent.xml", + "ref/dotnet5.2/ja/System.Collections.Concurrent.xml", + "ref/dotnet5.2/ko/System.Collections.Concurrent.xml", + "ref/dotnet5.2/ru/System.Collections.Concurrent.xml", + "ref/dotnet5.2/System.Collections.Concurrent.dll", + "ref/dotnet5.2/System.Collections.Concurrent.xml", + "ref/dotnet5.2/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet5.2/zh-hant/System.Collections.Concurrent.xml", + "ref/dotnet5.4/de/System.Collections.Concurrent.xml", + "ref/dotnet5.4/es/System.Collections.Concurrent.xml", + "ref/dotnet5.4/fr/System.Collections.Concurrent.xml", + "ref/dotnet5.4/it/System.Collections.Concurrent.xml", + "ref/dotnet5.4/ja/System.Collections.Concurrent.xml", + "ref/dotnet5.4/ko/System.Collections.Concurrent.xml", + "ref/dotnet5.4/ru/System.Collections.Concurrent.xml", + "ref/dotnet5.4/System.Collections.Concurrent.dll", + "ref/dotnet5.4/System.Collections.Concurrent.xml", + "ref/dotnet5.4/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet5.4/zh-hant/System.Collections.Concurrent.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Collections.Concurrent.4.0.11-rc2-23525.nupkg", + "System.Collections.Concurrent.4.0.11-rc2-23525.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.ComponentModel/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "QJ3RnKbTPqJ64NH+VQ15URBa0XlJHUdM6whX1C12nLhdJ48c4P1lMpJCWHxPbUJuj4MCn+0eAqUxi4UZ/hzokA==", + "files": [ + "lib/dotnet5.4/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.ComponentModel.xml", + "ref/dotnet5.1/es/System.ComponentModel.xml", + "ref/dotnet5.1/fr/System.ComponentModel.xml", + "ref/dotnet5.1/it/System.ComponentModel.xml", + "ref/dotnet5.1/ja/System.ComponentModel.xml", + "ref/dotnet5.1/ko/System.ComponentModel.xml", + "ref/dotnet5.1/ru/System.ComponentModel.xml", + "ref/dotnet5.1/System.ComponentModel.dll", + "ref/dotnet5.1/System.ComponentModel.xml", + "ref/dotnet5.1/zh-hans/System.ComponentModel.xml", + "ref/dotnet5.1/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.1-rc2-23525.nupkg", + "System.ComponentModel.4.0.1-rc2-23525.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "8xElzEmEH5G6XK7qqxRLQ/2r1IuhXlkz0ZdgKNp6ViDD1ukadd+5hccqg1G/L4AYRy96ddMdvgyJjFW87Cegbw==", + "files": [ + "lib/dotnet/System.ComponentModel.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.ComponentModel.Primitives.xml", + "ref/dotnet/es/System.ComponentModel.Primitives.xml", + "ref/dotnet/fr/System.ComponentModel.Primitives.xml", + "ref/dotnet/it/System.ComponentModel.Primitives.xml", + "ref/dotnet/ja/System.ComponentModel.Primitives.xml", + "ref/dotnet/ko/System.ComponentModel.Primitives.xml", + "ref/dotnet/ru/System.ComponentModel.Primitives.xml", + "ref/dotnet/System.ComponentModel.Primitives.dll", + "ref/dotnet/System.ComponentModel.Primitives.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Primitives.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.ComponentModel.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.Primitives.4.0.0.nupkg", + "System.ComponentModel.Primitives.4.0.0.nupkg.sha512", + "System.ComponentModel.Primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "ZLOBeLIwqn7QcQvcy87DUJIfYtToNkp7mqzw9j27FKFG4C6oeiM63aPj41D4B78t6VNp9N1dUGybApOaIhrX5A==", + "files": [ + "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/es/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/fr/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/it/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/ja/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/ko/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/ru/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll", + "ref/dotnet5.1/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.TypeConverter.4.0.1-rc2-23525.nupkg", + "System.ComponentModel.TypeConverter.4.0.1-rc2-23525.nupkg.sha512", + "System.ComponentModel.TypeConverter.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "uhZEFk/Gp276noaTo3R2xwQsrA/k0Sq3O/ov4D4Io4OHmCzXwRXOk24y9J/ZgwuSn0PMaoxiYH7knPvgPeYMTQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/es/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/fr/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/it/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/ja/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/ko/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/ru/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/System.Diagnostics.Contracts.dll", + "ref/dotnet5.1/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/zh-hans/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/zh-hant/System.Diagnostics.Contracts.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Contracts.xml", + "ref/netcore50/es/System.Diagnostics.Contracts.xml", + "ref/netcore50/fr/System.Diagnostics.Contracts.xml", + "ref/netcore50/it/System.Diagnostics.Contracts.xml", + "ref/netcore50/ja/System.Diagnostics.Contracts.xml", + "ref/netcore50/ko/System.Diagnostics.Contracts.xml", + "ref/netcore50/ru/System.Diagnostics.Contracts.xml", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/netcore50/System.Diagnostics.Contracts.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "System.Diagnostics.Contracts.4.0.1-rc2-23525.nupkg", + "System.Diagnostics.Contracts.4.0.1-rc2-23525.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0": { + "type": "package", + "sha512": "AYJsLLGDVTC/nyURjgAo7Lpye0+HuSkcQujUf+NgQVdC/C/ky5NyamQHCforHJzgqspitMMtBe8B4UBdGXy1zQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Diagnostics.Debug.4.0.0.nupkg", + "System.Diagnostics.Debug.4.0.0.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "T/wq74JBg48B5FU5R1bOW0cTyclAXL5GAqF/jehLxM65Sc8cNmJ8GMAQvjmmIa6mwmRF27U63Gs1UeiV0QtkjQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/es/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/fr/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/it/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/ja/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/ko/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/ru/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/System.Diagnostics.Debug.dll", + "ref/dotnet5.1/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/zh-hant/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/de/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/es/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/fr/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/it/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/ja/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/ko/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/ru/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/System.Diagnostics.Debug.dll", + "ref/dotnet5.4/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/zh-hant/System.Diagnostics.Debug.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg", + "System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Bh9ra6Wpewj2XAkbCjrSemxNqLqCCoAO/1+l/RQZuQlSZ2v9x/bpnA6IEgan8JX35gJpGJc1rmgAdQl2KFpWwA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/es/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/fr/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/it/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/ja/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/ko/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/ru/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/System.Diagnostics.Tools.dll", + "ref/dotnet5.1/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.1-rc2-23525.nupkg", + "System.Diagnostics.Tools.4.0.1-rc2-23525.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "serviceable": true, + "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20.nupkg", + "System.Diagnostics.Tracing.4.0.20.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Globalization/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "oy7h7UsvcRRdmRL0vzNHwCSqQVP6Np80oRKRPJplTFtpfxnjj1O7nkkxl0So7nQnSE6lrE4a5SH7dFAjEH6Ncg==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Globalization.xml", + "ref/dotnet5.1/es/System.Globalization.xml", + "ref/dotnet5.1/fr/System.Globalization.xml", + "ref/dotnet5.1/it/System.Globalization.xml", + "ref/dotnet5.1/ja/System.Globalization.xml", + "ref/dotnet5.1/ko/System.Globalization.xml", + "ref/dotnet5.1/ru/System.Globalization.xml", + "ref/dotnet5.1/System.Globalization.dll", + "ref/dotnet5.1/System.Globalization.xml", + "ref/dotnet5.1/zh-hans/System.Globalization.xml", + "ref/dotnet5.1/zh-hant/System.Globalization.xml", + "ref/dotnet5.4/de/System.Globalization.xml", + "ref/dotnet5.4/es/System.Globalization.xml", + "ref/dotnet5.4/fr/System.Globalization.xml", + "ref/dotnet5.4/it/System.Globalization.xml", + "ref/dotnet5.4/ja/System.Globalization.xml", + "ref/dotnet5.4/ko/System.Globalization.xml", + "ref/dotnet5.4/ru/System.Globalization.xml", + "ref/dotnet5.4/System.Globalization.dll", + "ref/dotnet5.4/System.Globalization.xml", + "ref/dotnet5.4/zh-hans/System.Globalization.xml", + "ref/dotnet5.4/zh-hant/System.Globalization.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.11-rc2-23525.nupkg", + "System.Globalization.4.0.11-rc2-23525.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Globalization.Calendars.xml", + "ref/dotnet/es/System.Globalization.Calendars.xml", + "ref/dotnet/fr/System.Globalization.Calendars.xml", + "ref/dotnet/it/System.Globalization.Calendars.xml", + "ref/dotnet/ja/System.Globalization.Calendars.xml", + "ref/dotnet/ko/System.Globalization.Calendars.xml", + "ref/dotnet/ru/System.Globalization.Calendars.xml", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0.nupkg", + "System.Globalization.Calendars.4.0.0.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "WcX9wVjeAPI6Aiuz0UGdIS7abeu/XQRm0yK/ff8nr7cJn5wx69ACoF0/SHkfB1HrW4WDUQiKzgRpE8DDl6VSDw==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Globalization.Extensions.xml", + "ref/dotnet5.4/es/System.Globalization.Extensions.xml", + "ref/dotnet5.4/fr/System.Globalization.Extensions.xml", + "ref/dotnet5.4/it/System.Globalization.Extensions.xml", + "ref/dotnet5.4/ja/System.Globalization.Extensions.xml", + "ref/dotnet5.4/ko/System.Globalization.Extensions.xml", + "ref/dotnet5.4/ru/System.Globalization.Extensions.xml", + "ref/dotnet5.4/System.Globalization.Extensions.dll", + "ref/dotnet5.4/System.Globalization.Extensions.xml", + "ref/dotnet5.4/zh-hans/System.Globalization.Extensions.xml", + "ref/dotnet5.4/zh-hant/System.Globalization.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Globalization.Extensions.4.0.1-rc2-23525.nupkg", + "System.Globalization.Extensions.4.0.1-rc2-23525.nupkg.sha512", + "System.Globalization.Extensions.nuspec" + ] + }, + "System.IO/4.0.0": { + "type": "package", + "sha512": "MoCHQ0u5n0OMwUS8OX4Gl48qKiQziSW5cXvt82d+MmAcsLq9OL90+ihnu/aJ1h6OOYcBswrZAEuApfZha9w2lg==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.4.0.0.nupkg", + "System.IO.4.0.0.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Brlv6E7ndUEBPH28OXf9EULgyMXTu6I3+NwbXiVneltgClANm/tmjZIAvJZpkCW2WQPMxRgaJlhngXqaYOM4ww==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.IO.xml", + "ref/dotnet5.1/es/System.IO.xml", + "ref/dotnet5.1/fr/System.IO.xml", + "ref/dotnet5.1/it/System.IO.xml", + "ref/dotnet5.1/ja/System.IO.xml", + "ref/dotnet5.1/ko/System.IO.xml", + "ref/dotnet5.1/ru/System.IO.xml", + "ref/dotnet5.1/System.IO.dll", + "ref/dotnet5.1/System.IO.xml", + "ref/dotnet5.1/zh-hans/System.IO.xml", + "ref/dotnet5.1/zh-hant/System.IO.xml", + "ref/dotnet5.4/de/System.IO.xml", + "ref/dotnet5.4/es/System.IO.xml", + "ref/dotnet5.4/fr/System.IO.xml", + "ref/dotnet5.4/it/System.IO.xml", + "ref/dotnet5.4/ja/System.IO.xml", + "ref/dotnet5.4/ko/System.IO.xml", + "ref/dotnet5.4/ru/System.IO.xml", + "ref/dotnet5.4/System.IO.dll", + "ref/dotnet5.4/System.IO.xml", + "ref/dotnet5.4/zh-hans/System.IO.xml", + "ref/dotnet5.4/zh-hant/System.IO.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.11-rc2-23525.nupkg", + "System.IO.4.0.11-rc2-23525.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "5x8A7ETeRtOmeqfUr36T20yJR+JHkd9M8275UTOyUylO1RRFDdIDiNYeCnZlFJpDCFMDxDa6g8OgiWYxJzAqfw==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.IO.FileSystem.xml", + "ref/dotnet5.4/es/System.IO.FileSystem.xml", + "ref/dotnet5.4/fr/System.IO.FileSystem.xml", + "ref/dotnet5.4/it/System.IO.FileSystem.xml", + "ref/dotnet5.4/ja/System.IO.FileSystem.xml", + "ref/dotnet5.4/ko/System.IO.FileSystem.xml", + "ref/dotnet5.4/ru/System.IO.FileSystem.xml", + "ref/dotnet5.4/System.IO.FileSystem.dll", + "ref/dotnet5.4/System.IO.FileSystem.xml", + "ref/dotnet5.4/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet5.4/zh-hant/System.IO.FileSystem.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.IO.FileSystem.4.0.1-rc2-23525.nupkg", + "System.IO.FileSystem.4.0.1-rc2-23525.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.FileSystem.Primitives.4.0.0.nupkg", + "System.IO.FileSystem.Primitives.4.0.0.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "nxeyB3ycuQRIyRb/EVh+IEBN4heKR5LGo3+NvQl0/nJs/nIJym4Yb+pqHjhMAFwv9L7KoUIanhg1uRES7+IaQQ==", + "files": [ + "lib/dotnet5.4/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Linq.xml", + "ref/dotnet5.1/es/System.Linq.xml", + "ref/dotnet5.1/fr/System.Linq.xml", + "ref/dotnet5.1/it/System.Linq.xml", + "ref/dotnet5.1/ja/System.Linq.xml", + "ref/dotnet5.1/ko/System.Linq.xml", + "ref/dotnet5.1/ru/System.Linq.xml", + "ref/dotnet5.1/System.Linq.dll", + "ref/dotnet5.1/System.Linq.xml", + "ref/dotnet5.1/zh-hans/System.Linq.xml", + "ref/dotnet5.1/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.1-rc2-23525.nupkg", + "System.Linq.4.0.1-rc2-23525.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "nUZs+huGwB8yM+RhJSCP1pDooGAjVhe2kEzSu2M7I8A9kwOF8WFgmMDwhfvW8UdnvcEVMbmtM9VtAYoZIBLs4w==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Linq.Expressions.xml", + "ref/dotnet5.1/es/System.Linq.Expressions.xml", + "ref/dotnet5.1/fr/System.Linq.Expressions.xml", + "ref/dotnet5.1/it/System.Linq.Expressions.xml", + "ref/dotnet5.1/ja/System.Linq.Expressions.xml", + "ref/dotnet5.1/ko/System.Linq.Expressions.xml", + "ref/dotnet5.1/ru/System.Linq.Expressions.xml", + "ref/dotnet5.1/System.Linq.Expressions.dll", + "ref/dotnet5.1/System.Linq.Expressions.xml", + "ref/dotnet5.1/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet5.1/zh-hant/System.Linq.Expressions.xml", + "ref/dotnet5.4/de/System.Linq.Expressions.xml", + "ref/dotnet5.4/es/System.Linq.Expressions.xml", + "ref/dotnet5.4/fr/System.Linq.Expressions.xml", + "ref/dotnet5.4/it/System.Linq.Expressions.xml", + "ref/dotnet5.4/ja/System.Linq.Expressions.xml", + "ref/dotnet5.4/ko/System.Linq.Expressions.xml", + "ref/dotnet5.4/ru/System.Linq.Expressions.xml", + "ref/dotnet5.4/System.Linq.Expressions.dll", + "ref/dotnet5.4/System.Linq.Expressions.xml", + "ref/dotnet5.4/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet5.4/zh-hant/System.Linq.Expressions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Linq.Expressions.4.0.11-rc2-23525.nupkg", + "System.Linq.Expressions.4.0.11-rc2-23525.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Net.Primitives/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "tPl7aprrM0gnQa24GbIy+Swf+9+hEj+oy1I+OkeG/flSEGT3mCtrSAgfmLCr1FmN9lfn9XKkCgPYh8wJC2g8+w==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Net.Primitives.xml", + "ref/dotnet5.1/es/System.Net.Primitives.xml", + "ref/dotnet5.1/fr/System.Net.Primitives.xml", + "ref/dotnet5.1/it/System.Net.Primitives.xml", + "ref/dotnet5.1/ja/System.Net.Primitives.xml", + "ref/dotnet5.1/ko/System.Net.Primitives.xml", + "ref/dotnet5.1/ru/System.Net.Primitives.xml", + "ref/dotnet5.1/System.Net.Primitives.dll", + "ref/dotnet5.1/System.Net.Primitives.xml", + "ref/dotnet5.1/zh-hans/System.Net.Primitives.xml", + "ref/dotnet5.1/zh-hant/System.Net.Primitives.xml", + "ref/dotnet5.2/de/System.Net.Primitives.xml", + "ref/dotnet5.2/es/System.Net.Primitives.xml", + "ref/dotnet5.2/fr/System.Net.Primitives.xml", + "ref/dotnet5.2/it/System.Net.Primitives.xml", + "ref/dotnet5.2/ja/System.Net.Primitives.xml", + "ref/dotnet5.2/ko/System.Net.Primitives.xml", + "ref/dotnet5.2/ru/System.Net.Primitives.xml", + "ref/dotnet5.2/System.Net.Primitives.dll", + "ref/dotnet5.2/System.Net.Primitives.xml", + "ref/dotnet5.2/zh-hans/System.Net.Primitives.xml", + "ref/dotnet5.2/zh-hant/System.Net.Primitives.xml", + "ref/dotnet5.4/de/System.Net.Primitives.xml", + "ref/dotnet5.4/es/System.Net.Primitives.xml", + "ref/dotnet5.4/fr/System.Net.Primitives.xml", + "ref/dotnet5.4/it/System.Net.Primitives.xml", + "ref/dotnet5.4/ja/System.Net.Primitives.xml", + "ref/dotnet5.4/ko/System.Net.Primitives.xml", + "ref/dotnet5.4/ru/System.Net.Primitives.xml", + "ref/dotnet5.4/System.Net.Primitives.dll", + "ref/dotnet5.4/System.Net.Primitives.xml", + "ref/dotnet5.4/zh-hans/System.Net.Primitives.xml", + "ref/dotnet5.4/zh-hant/System.Net.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Net.Primitives.4.0.11-rc2-23525.nupkg", + "System.Net.Primitives.4.0.11-rc2-23525.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.WebSockets/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "QykOhQUn7S0rJYPbKflEWOf3Cpr6Ku5UhGmJY5s14t0g14H/5ibVg3KuLySGYvrRmxxx7s6Ydx/b7AcuwDA9hQ==", + "files": [ + "lib/dotnet5.4/System.Net.WebSockets.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.WebSockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Net.WebSockets.xml", + "ref/dotnet5.4/es/System.Net.WebSockets.xml", + "ref/dotnet5.4/fr/System.Net.WebSockets.xml", + "ref/dotnet5.4/it/System.Net.WebSockets.xml", + "ref/dotnet5.4/ja/System.Net.WebSockets.xml", + "ref/dotnet5.4/ko/System.Net.WebSockets.xml", + "ref/dotnet5.4/ru/System.Net.WebSockets.xml", + "ref/dotnet5.4/System.Net.WebSockets.dll", + "ref/dotnet5.4/System.Net.WebSockets.xml", + "ref/dotnet5.4/zh-hans/System.Net.WebSockets.xml", + "ref/dotnet5.4/zh-hant/System.Net.WebSockets.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.WebSockets.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.WebSockets.4.0.0-rc2-23525.nupkg", + "System.Net.WebSockets.4.0.0-rc2-23525.nupkg.sha512", + "System.Net.WebSockets.nuspec" + ] + }, + "System.ObjectModel/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "IJJ5i3tnyDWnrjK3GH81Bu3I+ie/MyKr7/V/LjYkVpKHlTaT1EdjLX40CqXaw3ObgqkLqSYz6iRJKaYkmGesXg==", + "files": [ + "lib/dotnet5.4/System.ObjectModel.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.ObjectModel.xml", + "ref/dotnet5.1/es/System.ObjectModel.xml", + "ref/dotnet5.1/fr/System.ObjectModel.xml", + "ref/dotnet5.1/it/System.ObjectModel.xml", + "ref/dotnet5.1/ja/System.ObjectModel.xml", + "ref/dotnet5.1/ko/System.ObjectModel.xml", + "ref/dotnet5.1/ru/System.ObjectModel.xml", + "ref/dotnet5.1/System.ObjectModel.dll", + "ref/dotnet5.1/System.ObjectModel.xml", + "ref/dotnet5.1/zh-hans/System.ObjectModel.xml", + "ref/dotnet5.1/zh-hant/System.ObjectModel.xml", + "ref/dotnet5.4/de/System.ObjectModel.xml", + "ref/dotnet5.4/es/System.ObjectModel.xml", + "ref/dotnet5.4/fr/System.ObjectModel.xml", + "ref/dotnet5.4/it/System.ObjectModel.xml", + "ref/dotnet5.4/ja/System.ObjectModel.xml", + "ref/dotnet5.4/ko/System.ObjectModel.xml", + "ref/dotnet5.4/ru/System.ObjectModel.xml", + "ref/dotnet5.4/System.ObjectModel.dll", + "ref/dotnet5.4/System.ObjectModel.xml", + "ref/dotnet5.4/zh-hans/System.ObjectModel.xml", + "ref/dotnet5.4/zh-hant/System.ObjectModel.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "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/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ObjectModel.4.0.11-rc2-23525.nupkg", + "System.ObjectModel.4.0.11-rc2-23525.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Reflection/4.0.0": { + "type": "package", + "sha512": "g96Rn8XuG7y4VfxPj/jnXroRJdQ8L3iN3k3zqsuzk4k3Nq4KMXARYiIO4BLW4GwX06uQpuYwRMcAC/aF117knQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Reflection.4.0.0.nupkg", + "System.Reflection.4.0.0.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "WbLtaCxoe5XdqEyZuGpemSQ8YBJ8cj11zx+yxOxJfHbNrmu7oMQ29+J50swaqg3soUc3BVBMqfIhb/7gocDHQA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Reflection.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.1.0-beta-23225.nupkg", + "System.Reflection.4.1.0-beta-23225.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "S2zlLFK7KGY+vmP2idf9baP1vd3FSRhiRrDpzaDu57f0mqsMuXkbbtqxSncaN8SzvHbLu1OSp1ERiwSzCtcskw==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Reflection.Extensions.xml", + "ref/dotnet5.1/es/System.Reflection.Extensions.xml", + "ref/dotnet5.1/fr/System.Reflection.Extensions.xml", + "ref/dotnet5.1/it/System.Reflection.Extensions.xml", + "ref/dotnet5.1/ja/System.Reflection.Extensions.xml", + "ref/dotnet5.1/ko/System.Reflection.Extensions.xml", + "ref/dotnet5.1/ru/System.Reflection.Extensions.xml", + "ref/dotnet5.1/System.Reflection.Extensions.dll", + "ref/dotnet5.1/System.Reflection.Extensions.xml", + "ref/dotnet5.1/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet5.1/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "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/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.1-rc2-23525.nupkg", + "System.Reflection.Extensions.4.0.1-rc2-23525.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0.nupkg", + "System.Reflection.Primitives.4.0.0.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "n8m144jjCwhN/qtLih35a2sO33fLWm1U3eg51KxqAcAjJcw0nq1zWie8FZognBTPv7BXdW/G8xGbbvDGFoJwZA==", + "files": [ + "lib/DNXCore50/de/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/es/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/fr/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/it/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/ja/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/ko/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/ru/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/DNXCore50/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/zh-hans/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/zh-hant/System.Reflection.TypeExtensions.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/de/System.Reflection.TypeExtensions.xml", + "lib/net46/es/System.Reflection.TypeExtensions.xml", + "lib/net46/fr/System.Reflection.TypeExtensions.xml", + "lib/net46/it/System.Reflection.TypeExtensions.xml", + "lib/net46/ja/System.Reflection.TypeExtensions.xml", + "lib/net46/ko/System.Reflection.TypeExtensions.xml", + "lib/net46/ru/System.Reflection.TypeExtensions.xml", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.xml", + "lib/net46/zh-hans/System.Reflection.TypeExtensions.xml", + "lib/net46/zh-hant/System.Reflection.TypeExtensions.xml", + "lib/netcore50/de/System.Reflection.TypeExtensions.xml", + "lib/netcore50/es/System.Reflection.TypeExtensions.xml", + "lib/netcore50/fr/System.Reflection.TypeExtensions.xml", + "lib/netcore50/it/System.Reflection.TypeExtensions.xml", + "lib/netcore50/ja/System.Reflection.TypeExtensions.xml", + "lib/netcore50/ko/System.Reflection.TypeExtensions.xml", + "lib/netcore50/ru/System.Reflection.TypeExtensions.xml", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.xml", + "lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml", + "lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/de/System.Reflection.TypeExtensions.xml", + "ref/net46/es/System.Reflection.TypeExtensions.xml", + "ref/net46/fr/System.Reflection.TypeExtensions.xml", + "ref/net46/it/System.Reflection.TypeExtensions.xml", + "ref/net46/ja/System.Reflection.TypeExtensions.xml", + "ref/net46/ko/System.Reflection.TypeExtensions.xml", + "ref/net46/ru/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.xml", + "ref/net46/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/net46/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml", + "System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg", + "System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0.nupkg", + "System.Resources.ResourceManager.4.0.0.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Pp+0DOwNu+L6fYGLejweNbbxXYW9EZTA9UpVBLvWTAldWsTWQ15J1LYuDIULWP3G2JBnKDtzZzQj4VIjzW4zxQ==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/es/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/fr/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/it/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/ja/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/ko/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/ru/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/System.Resources.ResourceManager.dll", + "ref/dotnet5.1/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.1-rc2-23525.nupkg", + "System.Resources.ResourceManager.4.0.1-rc2-23525.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0": { + "type": "package", + "sha512": "Uq9epame8hEqJlj4KaWb67dDJvj4IM37jRFGVeFbugRdPz48bR0voyBhrbf3iSa2tAmlkg4lsa6BUOL9iwlMew==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Runtime.4.0.0.nupkg", + "System.Runtime.4.0.0.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.21-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "LycbvHHYEuhrvcrwJ7JW1uKOXWUSC1gMn+M5zCTMYRrBomqYJnUu2Ej+oNJZibV4pdvjOSNdnLRBjy0VS0pJHQ==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Runtime.xml", + "ref/dotnet5.1/es/System.Runtime.xml", + "ref/dotnet5.1/fr/System.Runtime.xml", + "ref/dotnet5.1/it/System.Runtime.xml", + "ref/dotnet5.1/ja/System.Runtime.xml", + "ref/dotnet5.1/ko/System.Runtime.xml", + "ref/dotnet5.1/ru/System.Runtime.xml", + "ref/dotnet5.1/System.Runtime.dll", + "ref/dotnet5.1/System.Runtime.xml", + "ref/dotnet5.1/zh-hans/System.Runtime.xml", + "ref/dotnet5.1/zh-hant/System.Runtime.xml", + "ref/dotnet5.3/de/System.Runtime.xml", + "ref/dotnet5.3/es/System.Runtime.xml", + "ref/dotnet5.3/fr/System.Runtime.xml", + "ref/dotnet5.3/it/System.Runtime.xml", + "ref/dotnet5.3/ja/System.Runtime.xml", + "ref/dotnet5.3/ko/System.Runtime.xml", + "ref/dotnet5.3/ru/System.Runtime.xml", + "ref/dotnet5.3/System.Runtime.dll", + "ref/dotnet5.3/System.Runtime.xml", + "ref/dotnet5.3/zh-hans/System.Runtime.xml", + "ref/dotnet5.3/zh-hant/System.Runtime.xml", + "ref/dotnet5.4/de/System.Runtime.xml", + "ref/dotnet5.4/es/System.Runtime.xml", + "ref/dotnet5.4/fr/System.Runtime.xml", + "ref/dotnet5.4/it/System.Runtime.xml", + "ref/dotnet5.4/ja/System.Runtime.xml", + "ref/dotnet5.4/ko/System.Runtime.xml", + "ref/dotnet5.4/ru/System.Runtime.xml", + "ref/dotnet5.4/System.Runtime.dll", + "ref/dotnet5.4/System.Runtime.xml", + "ref/dotnet5.4/zh-hans/System.Runtime.xml", + "ref/dotnet5.4/zh-hant/System.Runtime.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.21-rc2-23525.nupkg", + "System.Runtime.4.0.21-rc2-23525.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0": { + "type": "package", + "sha512": "zPzwoJcA7qar/b5Ihhzfcdr3vBOR8FIg7u//Qc5mqyAriasXuMFVraBZ5vOQq5asfun9ryNEL8Z2BOlUK5QRqA==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Runtime.Extensions.4.0.0.nupkg", + "System.Runtime.Extensions.4.0.0.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "R6crzqPfrw8M1hohRtO9ae8CngdmbmB6DLMt4asm0KiP7i4ufliJcGRpn++mxJwPYgiLw757t1KN5sBDnyvvkw==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Runtime.Extensions.xml", + "ref/dotnet5.1/es/System.Runtime.Extensions.xml", + "ref/dotnet5.1/fr/System.Runtime.Extensions.xml", + "ref/dotnet5.1/it/System.Runtime.Extensions.xml", + "ref/dotnet5.1/ja/System.Runtime.Extensions.xml", + "ref/dotnet5.1/ko/System.Runtime.Extensions.xml", + "ref/dotnet5.1/ru/System.Runtime.Extensions.xml", + "ref/dotnet5.1/System.Runtime.Extensions.dll", + "ref/dotnet5.1/System.Runtime.Extensions.xml", + "ref/dotnet5.1/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet5.1/zh-hant/System.Runtime.Extensions.xml", + "ref/dotnet5.4/de/System.Runtime.Extensions.xml", + "ref/dotnet5.4/es/System.Runtime.Extensions.xml", + "ref/dotnet5.4/fr/System.Runtime.Extensions.xml", + "ref/dotnet5.4/it/System.Runtime.Extensions.xml", + "ref/dotnet5.4/ja/System.Runtime.Extensions.xml", + "ref/dotnet5.4/ko/System.Runtime.Extensions.xml", + "ref/dotnet5.4/ru/System.Runtime.Extensions.xml", + "ref/dotnet5.4/System.Runtime.Extensions.dll", + "ref/dotnet5.4/System.Runtime.Extensions.xml", + "ref/dotnet5.4/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet5.4/zh-hant/System.Runtime.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Runtime.Extensions.4.0.11-rc2-23525.nupkg", + "System.Runtime.Extensions.4.0.11-rc2-23525.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0.nupkg", + "System.Runtime.Handles.4.0.0.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.21-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "rWJNPZVqqjGxOhwWLdDh20vbH1OHXMqydO2QDO2vJApFCKEgyR2ySG2w6Ls665jGeUYzT2mQ+ZGTkcyzKOJdyg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.2/de/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/es/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/fr/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/it/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/ja/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/ko/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/ru/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/System.Runtime.InteropServices.dll", + "ref/dotnet5.2/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/de/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/es/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/fr/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/it/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/ja/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/ko/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/ru/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/System.Runtime.InteropServices.dll", + "ref/dotnet5.3/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/de/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/es/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/fr/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/it/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/ja/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/ko/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/ru/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/System.Runtime.InteropServices.dll", + "ref/dotnet5.4/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/zh-hant/System.Runtime.InteropServices.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.21-rc2-23525.nupkg", + "System.Runtime.InteropServices.4.0.21-rc2-23525.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Ha25KM/Db3dmbZz9UWgn7ChGPmqFHLDyWTxuvoJtaUq8ziwTW4hP0tlUfEKZBa3FwEB6Nero7VLX4h0TQs0k6Q==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg", + "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg.sha512", + "System.Runtime.InteropServices.RuntimeInformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Runtime.Numerics.xml", + "ref/dotnet/es/System.Runtime.Numerics.xml", + "ref/dotnet/fr/System.Runtime.Numerics.xml", + "ref/dotnet/it/System.Runtime.Numerics.xml", + "ref/dotnet/ja/System.Runtime.Numerics.xml", + "ref/dotnet/ko/System.Runtime.Numerics.xml", + "ref/dotnet/ru/System.Runtime.Numerics.xml", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/dotnet/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Runtime.Numerics.4.0.0.nupkg", + "System.Runtime.Numerics.4.0.0.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "QQRiGO33X/l9n5rikQfRoHPtX+0k4m3dxWFIZyH+63qsshU7S89QqmVsEjFYhHhEtsTbiKdkyNKrqTA7aj9XPQ==", + "files": [ + "lib/dotnet5.4/System.Security.Claims.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Security.Claims.xml", + "ref/dotnet5.4/es/System.Security.Claims.xml", + "ref/dotnet5.4/fr/System.Security.Claims.xml", + "ref/dotnet5.4/it/System.Security.Claims.xml", + "ref/dotnet5.4/ja/System.Security.Claims.xml", + "ref/dotnet5.4/ko/System.Security.Claims.xml", + "ref/dotnet5.4/ru/System.Security.Claims.xml", + "ref/dotnet5.4/System.Security.Claims.dll", + "ref/dotnet5.4/System.Security.Claims.xml", + "ref/dotnet5.4/zh-hans/System.Security.Claims.xml", + "ref/dotnet5.4/zh-hant/System.Security.Claims.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Claims.4.0.1-rc2-23525.nupkg", + "System.Security.Claims.4.0.1-rc2-23525.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "YG9pKBlPiXYSElZ2Yz8K9WuKO9/pjiypOZC44Ovjh8LUFBRCrMoikR3MQBefkqc4pQPDcY42YowcjkvfNU31Ew==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "H4fSJsMPMOM5SmfTMJ9AD0CgYshIPYnCf+2gJ9px0eg/Xjm9Q6JsVpTgbl6osdgXWNlwA45voiq4DRsniku5eg==", + "files": [ + "lib/dotnet5.4/System.Security.Cryptography.Cng.dll", + "lib/net46/System.Security.Cryptography.Cng.dll", + "ref/dotnet5.4/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "System.Security.Cryptography.Cng.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.Cng.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "5s7Sz0yUhfBjnJxIZdKxtM/WevPg36jnaUHFji4SFDYFHLkiV6xrEP8HhemZqW5ix7IfiaCDKqGBOceugqxarQ==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Csp.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/System.Security.Cryptography.Csp.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Csp.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.Csp.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "w7S6YFfl1dDdfm2dEJVsKBGBgB65CD/AyEzPXrPladnuUl4AJffUIAGf9MnWbUR//qraMUaTluzWQmUs6bE5KA==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/es/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/fr/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/it/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/ja/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/ko/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/ru/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll", + "ref/dotnet5.4/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.4/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "4XctVVQ8Ma2eDOiWjE6iUo44unjourG7k5Zr91Bm74DpMVEn3+lmZj9pJn3cthp/WgpRRJXaQRfE7mKEiEUjog==", + "files": [ + "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Primitives.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.Primitives.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Xzho0jNobWUb3UZtos0Pv/WI6PzBTOxLrisrgKE3xsZhKtevpThJ+1g1OhegeSy5cDpFy0x8bw8sr8qzumNBXQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet5.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.1-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Xw8pvBLIpmqA1TOK2FNI9sORMgxtcrqP+XGI/pKiny7iu0G+jKeQUQqd/qWCNjT0BGougN+a4ygXzMCFGp7Mog==", + "files": [ + "lib/dotnet5.1/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Security.Principal.xml", + "ref/dotnet5.1/es/System.Security.Principal.xml", + "ref/dotnet5.1/fr/System.Security.Principal.xml", + "ref/dotnet5.1/it/System.Security.Principal.xml", + "ref/dotnet5.1/ja/System.Security.Principal.xml", + "ref/dotnet5.1/ko/System.Security.Principal.xml", + "ref/dotnet5.1/ru/System.Security.Principal.xml", + "ref/dotnet5.1/System.Security.Principal.dll", + "ref/dotnet5.1/System.Security.Principal.xml", + "ref/dotnet5.1/zh-hans/System.Security.Principal.xml", + "ref/dotnet5.1/zh-hant/System.Security.Principal.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.1-rc2-23525.nupkg", + "System.Security.Principal.4.0.1-rc2-23525.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Text.Encoding/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "M1k26o4qE9PGxYyO0Q17houEVrE+iPk8wnnA1Z+sbWGRTeXZxWCKEr7K6yH9GXaV/zcNAPM4KM5RAnuHAN5QdQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Text.Encoding.xml", + "ref/dotnet5.1/es/System.Text.Encoding.xml", + "ref/dotnet5.1/fr/System.Text.Encoding.xml", + "ref/dotnet5.1/it/System.Text.Encoding.xml", + "ref/dotnet5.1/ja/System.Text.Encoding.xml", + "ref/dotnet5.1/ko/System.Text.Encoding.xml", + "ref/dotnet5.1/ru/System.Text.Encoding.xml", + "ref/dotnet5.1/System.Text.Encoding.dll", + "ref/dotnet5.1/System.Text.Encoding.xml", + "ref/dotnet5.1/zh-hans/System.Text.Encoding.xml", + "ref/dotnet5.1/zh-hant/System.Text.Encoding.xml", + "ref/dotnet5.4/de/System.Text.Encoding.xml", + "ref/dotnet5.4/es/System.Text.Encoding.xml", + "ref/dotnet5.4/fr/System.Text.Encoding.xml", + "ref/dotnet5.4/it/System.Text.Encoding.xml", + "ref/dotnet5.4/ja/System.Text.Encoding.xml", + "ref/dotnet5.4/ko/System.Text.Encoding.xml", + "ref/dotnet5.4/ru/System.Text.Encoding.xml", + "ref/dotnet5.4/System.Text.Encoding.dll", + "ref/dotnet5.4/System.Text.Encoding.xml", + "ref/dotnet5.4/zh-hans/System.Text.Encoding.xml", + "ref/dotnet5.4/zh-hant/System.Text.Encoding.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.11-rc2-23525.nupkg", + "System.Text.Encoding.4.0.11-rc2-23525.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", + "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10.nupkg", + "System.Text.Encoding.Extensions.4.0.10.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "1xpCMiJZBhbDNi7QoIZvU3+XHDlOr6E7N3zvoWjdzdXTnpnU6dgYZ0qrRrGN8sC4p2tRcbx4F+jA2uQAqqOA+g==", + "files": [ + "lib/dotnet5.1/System.Text.Encodings.Web.dll", + "System.Text.Encodings.Web.4.0.0-rc2-23525.nupkg", + "System.Text.Encodings.Web.4.0.0-rc2-23525.nupkg.sha512", + "System.Text.Encodings.Web.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "M1JdxnEZ1Mnv6jro+SvVI2ldrEEYhqP7LdhcX0uGm94q1Mg46Y9P27l6g1yz+Qgy2b3oi3tky5aF8+2VJwTuUA==", + "files": [ + "lib/dotnet5.4/System.Text.RegularExpressions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/es/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/fr/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/it/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/ja/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/ko/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/ru/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/System.Text.RegularExpressions.dll", + "ref/dotnet5.1/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/zh-hant/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/de/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/es/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/fr/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/it/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/ja/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/ko/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/ru/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/System.Text.RegularExpressions.dll", + "ref/dotnet5.4/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/zh-hant/System.Text.RegularExpressions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Text.RegularExpressions.4.0.11-rc2-23525.nupkg", + "System.Text.RegularExpressions.4.0.11-rc2-23525.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0": { + "type": "package", + "sha512": "H6O/9gUrjPDNYanh/7OFGAZHjVXvEuITD0RcnjfvIV04HOGrOPqUBU0kmz9RIX/7YGgCQn1o1S2DX6Cuv8kVGQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Threading.4.0.0.nupkg", + "System.Threading.4.0.0.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "Vb+NknoSeJKz8FT6nCpDfjtZGOQOfoQAmi/kZxeXgdKwppTMp+Ytv5yqvvnYQDtBQcO3OnrnxUDg8WMTtU/v6w==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Threading.xml", + "ref/dotnet5.1/es/System.Threading.xml", + "ref/dotnet5.1/fr/System.Threading.xml", + "ref/dotnet5.1/it/System.Threading.xml", + "ref/dotnet5.1/ja/System.Threading.xml", + "ref/dotnet5.1/ko/System.Threading.xml", + "ref/dotnet5.1/ru/System.Threading.xml", + "ref/dotnet5.1/System.Threading.dll", + "ref/dotnet5.1/System.Threading.xml", + "ref/dotnet5.1/zh-hans/System.Threading.xml", + "ref/dotnet5.1/zh-hant/System.Threading.xml", + "ref/dotnet5.4/de/System.Threading.xml", + "ref/dotnet5.4/es/System.Threading.xml", + "ref/dotnet5.4/fr/System.Threading.xml", + "ref/dotnet5.4/it/System.Threading.xml", + "ref/dotnet5.4/ja/System.Threading.xml", + "ref/dotnet5.4/ko/System.Threading.xml", + "ref/dotnet5.4/ru/System.Threading.xml", + "ref/dotnet5.4/System.Threading.dll", + "ref/dotnet5.4/System.Threading.xml", + "ref/dotnet5.4/zh-hans/System.Threading.xml", + "ref/dotnet5.4/zh-hant/System.Threading.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Threading.4.0.11-rc2-23525.nupkg", + "System.Threading.4.0.11-rc2-23525.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0.nupkg", + "System.Threading.Overlapped.4.0.0.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.11-rc2-23525": { + "type": "package", + "serviceable": true, + "sha512": "AnTRum7I9zd11FK9QxLsCWmt0VyxWyJjj2b/dFCQIFXh9iOPCkApf4sDcgRN7c6e/97CZSGHIKCvTO/zxeuGcA==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Threading.Tasks.xml", + "ref/dotnet5.1/es/System.Threading.Tasks.xml", + "ref/dotnet5.1/fr/System.Threading.Tasks.xml", + "ref/dotnet5.1/it/System.Threading.Tasks.xml", + "ref/dotnet5.1/ja/System.Threading.Tasks.xml", + "ref/dotnet5.1/ko/System.Threading.Tasks.xml", + "ref/dotnet5.1/ru/System.Threading.Tasks.xml", + "ref/dotnet5.1/System.Threading.Tasks.dll", + "ref/dotnet5.1/System.Threading.Tasks.xml", + "ref/dotnet5.1/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet5.1/zh-hant/System.Threading.Tasks.xml", + "ref/dotnet5.4/de/System.Threading.Tasks.xml", + "ref/dotnet5.4/es/System.Threading.Tasks.xml", + "ref/dotnet5.4/fr/System.Threading.Tasks.xml", + "ref/dotnet5.4/it/System.Threading.Tasks.xml", + "ref/dotnet5.4/ja/System.Threading.Tasks.xml", + "ref/dotnet5.4/ko/System.Threading.Tasks.xml", + "ref/dotnet5.4/ru/System.Threading.Tasks.xml", + "ref/dotnet5.4/System.Threading.Tasks.dll", + "ref/dotnet5.4/System.Threading.Tasks.xml", + "ref/dotnet5.4/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet5.4/zh-hant/System.Threading.Tasks.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.11-rc2-23525.nupkg", + "System.Threading.Tasks.4.0.11-rc2-23525.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "Tavis.UriTemplates/0.6.6-beta2": { + "type": "package", + "sha512": "n8VCZpuTZT6m7iMLICJFkEYFCB6orYh1ttZr0qCqcD+3LhHhx5tJ0PTDlVi3WYAHjpUu7BYBNMY1TNtkmbU4SA==", + "files": [ + "lib/dotnet/Tavis.UriTemplates.dll", + "lib/dotnet/Tavis.UriTemplates.pdb", + "lib/Net35/Tavis.UriTemplates.dll", + "lib/Net35/Tavis.UriTemplates.pdb", + "lib/Net40/Tavis.UriTemplates.dll", + "lib/Net40/Tavis.UriTemplates.pdb", + "lib/Net45/Tavis.UriTemplates.dll", + "lib/Net45/Tavis.UriTemplates.pdb", + "lib/portable-net4+netcore45+wpa81/Tavis.UriTemplates.dll", + "lib/portable-net4+netcore45+wpa81/Tavis.UriTemplates.pdb", + "lib/portable-net45+netcore45+wpa81+wp8/Tavis.UriTemplates.dll", + "lib/portable-net45+netcore45+wpa81+wp8/Tavis.UriTemplates.pdb", + "Tavis.UriTemplates.0.6.6-beta2.nupkg", + "Tavis.UriTemplates.0.6.6-beta2.nupkg.sha512", + "Tavis.UriTemplates.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Glimpse.Common ", + "Microsoft.AspNet.FileProviders.Embedded >= 1.0.0-*", + "Microsoft.AspNet.StaticFiles >= 1.0.0-*", + "Tavis.UriTemplates >= 0.6.6-beta2" + ], + ".NETFramework,Version=v4.5.1": [], + ".NETPlatform,Version=v5.4": [] + } +} \ No newline at end of file diff --git a/src/Glimpse.Server/project.json b/src/Glimpse.Server/project.json index 4535bea1..ec6e7296 100644 --- a/src/Glimpse.Server/project.json +++ b/src/Glimpse.Server/project.json @@ -13,7 +13,7 @@ "tags": [ "ASP.NET", "Web", "Debugging", "Diagnostics", "Server" ], "resource": "Internal/Resources/Embeded/**/*.*", "compilationOptions": { - "define": [ "DNX" ] + "define": [ "SystemWeb" ] }, "dependencies": { "Glimpse.Common": "", @@ -22,7 +22,6 @@ "Tavis.UriTemplates": "0.6.6-beta2" }, "frameworks": { - "net451": { }, - "dotnet5.4": { } + "net451": { } } } \ No newline at end of file diff --git a/systemweb.cmd b/systemweb.cmd new file mode 100644 index 00000000..b66382de --- /dev/null +++ b/systemweb.cmd @@ -0,0 +1,29 @@ +if exist "src\Glimpse.Agent.AspNet\_DNX_project.json" ( + echo "Switching to DNX project.json" + + echo "src\Glimpse.Agent.AspNet" + ren "src\Glimpse.Agent.AspNet\project.*" "_SystemWeb_project.*" + ren "src\Glimpse.Agent.AspNet\_DNX_project.*" "project.*" + + echo "src\Glimpse.Server" + ren "src\Glimpse.Server\project.*" "_SystemWeb_project.*" + ren "src\Glimpse.Server\_DNX_project.*" "project.*" + + echo "src\Glimpse.Common" + ren "src\Glimpse.Common\project.*" "_SystemWeb_project.*" + ren "src\Glimpse.Common\_DNX_project.*" "project.*" +) else ( + echo "Switching to SystemWeb project.json" + + echo "src\Glimpse.Agent.AspNet" + ren "src\Glimpse.Agent.AspNet\project.*" "_DNX_project.*" + ren "src\Glimpse.Agent.AspNet\_SystemWeb_project.*" "project.*" + + echo "src\Glimpse.Server" + ren "src\Glimpse.Server\project.*" "_DNX_project.*" + ren "src\Glimpse.Server\_SystemWeb_project.*" "project.*" + + echo "src\Glimpse.Common" + ren "src\Glimpse.Common\project.*" "_DNX_project.*" + ren "src\Glimpse.Common\_SystemWeb_project.*" "project.*" +) \ No newline at end of file From 03899f38d54c23b197d1855cf40d592e8613184f Mon Sep 17 00:00:00 2001 From: Damien Pontifex Date: Mon, 30 Nov 2015 12:32:29 +0800 Subject: [PATCH 09/72] Resolves #91 by appending html to post content rather than overwriting with setcontent --- src/Glimpse.Agent.AspNet.Mvc/Razor/ScriptInjector.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Glimpse.Agent.AspNet.Mvc/Razor/ScriptInjector.cs b/src/Glimpse.Agent.AspNet.Mvc/Razor/ScriptInjector.cs index e6061611..6312fa9d 100644 --- a/src/Glimpse.Agent.AspNet.Mvc/Razor/ScriptInjector.cs +++ b/src/Glimpse.Agent.AspNet.Mvc/Razor/ScriptInjector.cs @@ -21,7 +21,7 @@ public ScriptInjector(IGlimpseContextAccessor context, IResourceOptionsProvider public override void Process(TagHelperContext context, TagHelperOutput output) { - output.PostContent.SetHtmlContent( + output.PostContent.AppendHtml( $@" "); } From c946be76d460773464c1f2da273b9c1a99bc5d3a Mon Sep 17 00:00:00 2001 From: Anthony van der Hoorn Date: Mon, 30 Nov 2015 10:32:24 -0800 Subject: [PATCH 10/72] Missed update to RazorServices to capture interface update --- src/Glimpse.Agent.AspNet.Mvc/Razor/RazorServices.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Glimpse.Agent.AspNet.Mvc/Razor/RazorServices.cs b/src/Glimpse.Agent.AspNet.Mvc/Razor/RazorServices.cs index 82677081..1b577e73 100644 --- a/src/Glimpse.Agent.AspNet.Mvc/Razor/RazorServices.cs +++ b/src/Glimpse.Agent.AspNet.Mvc/Razor/RazorServices.cs @@ -7,7 +7,7 @@ namespace Glimpse.Agent.AspNet.Mvc.Razor { public class RazorServices : IRegisterServices { - public void RegisterServices(GlimpseServiceCollectionBuilder services) + public void RegisterServices(IServiceCollection services) { services.AddTransient(); } From b3c7d6a6ebf1d1f62acf8d651005eeb15cbc666b Mon Sep 17 00:00:00 2001 From: Anthony van der Hoorn Date: Tue, 1 Dec 2015 17:38:57 -0800 Subject: [PATCH 11/72] Switch default project.json's over to be DNX --- ...X_project.json => _SystemWeb_project.json} | 12 +- ...lock.json => _SystemWeb_project.lock.json} | 3138 +++---- src/Glimpse.Agent.AspNet/project.json | 12 +- src/Glimpse.Common/_DNX_project.lock.json | 6677 -------------- ...X_project.json => _SystemWeb_project.json} | 14 +- .../_SystemWeb_project.lock.json | 1132 +++ src/Glimpse.Common/project.json | 14 +- src/Glimpse.Server/_DNX_project.lock.json | 7747 ----------------- ...X_project.json => _SystemWeb_project.json} | 5 +- .../_SystemWeb_project.lock.json | 1720 ++++ src/Glimpse.Server/project.json | 5 +- 11 files changed, 4286 insertions(+), 16190 deletions(-) rename src/Glimpse.Agent.AspNet/{_DNX_project.json => _SystemWeb_project.json} (81%) rename src/Glimpse.Agent.AspNet/{_DNX_project.lock.json => _SystemWeb_project.lock.json} (78%) delete mode 100644 src/Glimpse.Common/_DNX_project.lock.json rename src/Glimpse.Common/{_DNX_project.json => _SystemWeb_project.json} (73%) create mode 100644 src/Glimpse.Common/_SystemWeb_project.lock.json delete mode 100644 src/Glimpse.Server/_DNX_project.lock.json rename src/Glimpse.Server/{_DNX_project.json => _SystemWeb_project.json} (94%) create mode 100644 src/Glimpse.Server/_SystemWeb_project.lock.json diff --git a/src/Glimpse.Agent.AspNet/_DNX_project.json b/src/Glimpse.Agent.AspNet/_SystemWeb_project.json similarity index 81% rename from src/Glimpse.Agent.AspNet/_DNX_project.json rename to src/Glimpse.Agent.AspNet/_SystemWeb_project.json index b6ccf7db..ac67bfd9 100644 --- a/src/Glimpse.Agent.AspNet/_DNX_project.json +++ b/src/Glimpse.Agent.AspNet/_SystemWeb_project.json @@ -1,4 +1,4 @@ -{ +{ "version": "2.0.0-*", "authors": [ "nmolnar", "avanderhoorn" ], "owners": [ "nmolnar", "avanderhoorn" ], @@ -12,20 +12,16 @@ "releaseNotes": "Initial release of Glimpse.Agent.AspNet.", "tags": [ "ASP.NET", "Web", "Debugging", "Diagnostics", "Agent", "MVC", "EF", "EntityFramework" ], "compilationOptions": { - "define": [ "DNX" ] + "define": [ "SystemWeb" ] }, "dependencies": { "Glimpse.Common": "", - "Microsoft.AspNet.Hosting": "1.0.0-*", "Microsoft.AspNet.FileProviders.Physical": "1.0.0-*", "Microsoft.AspNet.WebApi.Client": "5.2.2", - "Microsoft.Extensions.DiagnosticAdapter": "1.0.0-*", "Microsoft.Extensions.Configuration.Json": "1.0.0-*", - "System.Net.Http": "4.0.0", - "System.Diagnostics.DiagnosticSource": "4.0.0-beta-*" + "System.Net.Http": "4.0.0" }, "frameworks": { - "net451": { }, - "dotnet5.4": { } + "net451": { } } } \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/_DNX_project.lock.json b/src/Glimpse.Agent.AspNet/_SystemWeb_project.lock.json similarity index 78% rename from src/Glimpse.Agent.AspNet/_DNX_project.lock.json rename to src/Glimpse.Agent.AspNet/_SystemWeb_project.lock.json index 48ddb7b0..baabcc7d 100644 --- a/src/Glimpse.Agent.AspNet/_DNX_project.lock.json +++ b/src/Glimpse.Agent.AspNet/_SystemWeb_project.lock.json @@ -17,10 +17,10 @@ "Rx-PlatformServices": "2.2.5" } }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -35,10 +35,10 @@ "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} } }, - "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15838": { + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15850": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838" + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -53,23 +53,23 @@ "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} } }, - "Microsoft.AspNet.Hosting/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15838", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Http": "1.0.0-rc2-16009", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", - "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16237", - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging": "1.0.0-rc2-15867", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525" + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15850", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16044", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16044", + "Microsoft.AspNet.Http": "1.0.0-rc2-16017", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16017", + "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16251", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging": "1.0.0-rc2-15878", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -84,12 +84,12 @@ "lib/net451/Microsoft.AspNet.Hosting.dll": {} } }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -104,11 +104,11 @@ "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} } }, - "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -123,12 +123,12 @@ "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} } }, - "Microsoft.AspNet.Http/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16017", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -143,11 +143,11 @@ "lib/net451/Microsoft.AspNet.Http.dll": {} } }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -164,11 +164,11 @@ "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} } }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -183,10 +183,10 @@ "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} } }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -216,11 +216,11 @@ "lib/net45/System.Net.Http.Formatting.dll": {} } }, - "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16009": { + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -236,10 +236,10 @@ "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} } }, - "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16237": { + "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16251": { "type": "package", "dependencies": { - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237" + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -254,10 +254,10 @@ "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {} } }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -272,10 +272,10 @@ "lib/net451/Microsoft.Extensions.Configuration.dll": {} } }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -290,10 +290,10 @@ "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} } }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -308,10 +308,10 @@ "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} } }, - "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -326,10 +326,10 @@ "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} } }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -344,10 +344,10 @@ "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} } }, - "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -362,11 +362,11 @@ "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} } }, - "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15878", "Newtonsoft.Json": "6.0.6" }, "frameworkAssemblies": [ @@ -382,10 +382,10 @@ "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} } }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -400,7 +400,7 @@ "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -415,11 +415,11 @@ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} } }, - "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15849": { + "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15858": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -437,11 +437,11 @@ "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll": {} } }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -457,7 +457,7 @@ "lib/net451/Microsoft.Extensions.Logging.dll": {} } }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -472,12 +472,12 @@ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} } }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -492,7 +492,7 @@ "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} } }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16251": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -507,7 +507,7 @@ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} } }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -522,7 +522,7 @@ "lib/net451/Microsoft.Extensions.Primitives.dll": {} } }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -593,15 +593,6 @@ "lib/net45/System.Reactive.PlatformServices.dll": {} } }, - "System.Diagnostics.Debug/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { "type": "package", "dependencies": { @@ -625,15 +616,6 @@ "lib/net45/_._": {} } }, - "System.IO/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, "System.Net.Http/4.0.0": { "type": "package", "frameworkAssemblies": [ @@ -646,24 +628,6 @@ "lib/net45/_._": {} } }, - "System.Reflection/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, "System.Runtime/4.0.0": { "type": "package", "compile": { @@ -673,26 +637,8 @@ "lib/net45/_._": {} } }, - "System.Runtime.Extensions/4.0.0": { + "System.Text.Encodings.Web/4.0.0-rc2-23601": { "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, "compile": { "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} }, @@ -730,12 +676,12 @@ "System.Threading": "4.0.11" } }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.IO": "4.0.11-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", + "System.IO": "4.0.11-rc2-23601", + "System.Resources.ResourceManager": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} @@ -744,18 +690,18 @@ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} } }, - "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15838": { + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15850": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-23525", - "System.IO.FileSystem.Watcher": "4.0.0-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Text.RegularExpressions": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", + "System.Collections": "4.0.11-rc2-23601", + "System.Collections.Concurrent": "4.0.11-rc2-23601", + "System.IO.FileSystem": "4.0.1-rc2-23601", + "System.IO.FileSystem.Primitives": "4.0.1-rc2-23601", + "System.IO.FileSystem.Watcher": "4.0.0-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Text.RegularExpressions": "4.0.11-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} @@ -764,26 +710,26 @@ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} } }, - "Microsoft.AspNet.Hosting/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15838", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Http": "1.0.0-rc2-16009", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", - "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16237", - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging": "1.0.0-rc2-15867", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", - "System.Console": "4.0.0-rc2-23525", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525", - "System.Diagnostics.StackTrace": "4.0.1-rc2-23525", - "System.Reflection.Extensions": "4.0.1-rc2-23525" + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15850", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16044", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16044", + "Microsoft.AspNet.Http": "1.0.0-rc2-16017", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16017", + "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16251", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging": "1.0.0-rc2-15878", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", + "System.Console": "4.0.0-rc2-23601", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601", + "System.Diagnostics.StackTrace": "4.0.1-rc2-23601", + "System.Reflection.Extensions": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} @@ -792,12 +738,12 @@ "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} } }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} @@ -806,11 +752,11 @@ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} } }, - "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} @@ -819,15 +765,15 @@ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} } }, - "Microsoft.AspNet.Http/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Text.Encoding": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16017", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.Text.Encoding": "4.0.11-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} @@ -836,27 +782,27 @@ "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} } }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Tools": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Globalization.Extensions": "4.0.1-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", + "System.Collections": "4.0.11-rc2-23601", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.Diagnostics.Tools": "4.0.1-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Globalization.Extensions": "4.0.1-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Linq.Expressions": "4.0.11-rc2-23601", + "System.Net.Primitives": "4.0.11-rc2-23601", + "System.Net.WebSockets": "4.0.0-rc2-23601", "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525", - "System.Text.Encodings.Web": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.InteropServices": "4.0.21-rc2-23601", + "System.Security.Claims": "4.0.1-rc2-23601", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23601", + "System.Security.Principal": "4.0.1-rc2-23601", + "System.Text.Encodings.Web": "4.0.0-rc2-23601", + "System.Threading.Tasks": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} @@ -865,14 +811,14 @@ "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} } }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017", + "System.IO.FileSystem": "4.0.1-rc2-23601", + "System.Resources.ResourceManager": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} @@ -881,18 +827,18 @@ "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} } }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Collections": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", + "System.Collections": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Net.Primitives": "4.0.11-rc2-23601", + "System.Net.WebSockets": "4.0.0-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Security.Claims": "4.0.1-rc2-23601", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23601", + "System.Security.Principal": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} @@ -914,17 +860,17 @@ "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {} } }, - "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16009": { + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", + "System.Collections": "4.0.11-rc2-23601", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.IO": "4.0.11-rc2-23601", + "System.IO.FileSystem": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} @@ -948,11 +894,11 @@ "Microsoft.Bcl.Build/1.0.14": { "type": "package" }, - "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16237": { + "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16251": { "type": "package", "dependencies": { - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", - "System.IO.FileSystem": "4.0.1-rc2-23525" + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", + "System.IO.FileSystem": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} @@ -961,18 +907,18 @@ "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} } }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", + "System.Collections": "4.0.11-rc2-23601", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.IO": "4.0.11-rc2-23601", + "System.IO.FileSystem": "4.0.1-rc2-23601", + "System.Resources.ResourceManager": "4.0.1-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Runtime.InteropServices": "4.0.21-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} @@ -981,11 +927,11 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} } }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Linq": "4.0.1-rc2-23525" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", + "System.Linq": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} @@ -994,11 +940,11 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} } }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", + "System.ComponentModel.TypeConverter": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} @@ -1007,10 +953,10 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} } }, - "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} @@ -1019,10 +965,10 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} } }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} @@ -1031,10 +977,10 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} } }, - "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", "System.AppContext": "4.0.0" }, "compile": { @@ -1044,13 +990,13 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} } }, - "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15878", "Newtonsoft.Json": "6.0.6", - "System.Dynamic.Runtime": "4.0.11-rc2-23525" + "System.Dynamic.Runtime": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} @@ -1059,14 +1005,14 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} } }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "System.Collections": "4.0.11-rc2-23601", + "System.Collections.Concurrent": "4.0.11-rc2-23601", + "System.Threading": "4.0.11-rc2-23601", + "System.Threading.Tasks": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} @@ -1075,16 +1021,16 @@ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { "type": "package", "dependencies": { - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Linq.Expressions": "4.0.11-rc2-23601", "System.Reflection": "4.1.0-beta-23225", - "System.Resources.ResourceManager": "4.0.1-rc2-23525" + "System.Resources.ResourceManager": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} @@ -1093,27 +1039,27 @@ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} } }, - "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15849": { + "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15858": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "System.Collections": "4.0.11-rc2-23601", + "System.Collections.Concurrent": "4.0.11-rc2-23601", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Linq.Expressions": "4.0.11-rc2-23601", "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Emit": "4.0.1-rc2-23525", - "System.Reflection.Emit.Lightweight": "4.0.1-rc2-23525", - "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.Emit": "4.0.1-rc2-23601", + "System.Reflection.Emit.Lightweight": "4.0.1-rc2-23601", + "System.Reflection.Extensions": "4.0.1-rc2-23601", "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "System.Resources.ResourceManager": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} @@ -1122,17 +1068,17 @@ "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} } }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878", + "System.Collections": "4.0.11-rc2-23601", + "System.Collections.Concurrent": "4.0.11-rc2-23601", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} @@ -1141,17 +1087,17 @@ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} } }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", + "System.Collections": "4.0.11-rc2-23601", + "System.Collections.Concurrent": "4.0.11-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", "System.Reflection": "4.1.0-beta-23225", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525" + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Runtime.InteropServices": "4.0.21-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} @@ -1160,23 +1106,23 @@ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} } }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Linq.Expressions": "4.0.11-rc2-23601", "System.Reflection": "4.0.10", "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "System.Resources.ResourceManager": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} @@ -1185,22 +1131,22 @@ "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} } }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16251": { "type": "package", "dependencies": { - "System.AppContext": "4.0.1-rc2-23525", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", + "System.AppContext": "4.0.1-rc2-23601", + "System.Collections": "4.0.11-rc2-23601", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.IO": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.Extensions": "4.0.1-rc2-23601", "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Runtime.InteropServices": "4.0.21-rc2-23601", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23601", + "System.Threading.Tasks": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} @@ -1209,11 +1155,11 @@ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} } }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { "type": "package", "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525" + "System.Resources.ResourceManager": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} @@ -1237,16 +1183,16 @@ "lib/portable-net45+win8/System.Net.Http.Primitives.dll": {} } }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Contracts": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Globalization.Extensions": "4.0.1-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Text.Encoding": "4.0.11-rc2-23525" + "System.Collections": "4.0.11-rc2-23601", + "System.Diagnostics.Contracts": "4.0.1-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Globalization.Extensions": "4.0.1-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601", + "System.Text.Encoding": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} @@ -1324,7 +1270,7 @@ "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} } }, - "System.AppContext/4.0.1-rc2-23525": { + "System.AppContext/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -1333,7 +1279,7 @@ "ref/dotnet5.4/System.AppContext.dll": {} } }, - "System.Collections/4.0.11-rc2-23525": { + "System.Collections/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -1342,7 +1288,7 @@ "ref/dotnet5.4/System.Collections.dll": {} } }, - "System.Collections.Concurrent/4.0.11-rc2-23525": { + "System.Collections.Concurrent/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.10", @@ -1362,7 +1308,7 @@ "lib/dotnet5.4/System.Collections.Concurrent.dll": {} } }, - "System.ComponentModel/4.0.1-rc2-23525": { + "System.ComponentModel/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.20" @@ -1387,7 +1333,7 @@ "lib/dotnet/System.ComponentModel.Primitives.dll": {} } }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { + "System.ComponentModel.TypeConverter/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.0", @@ -1409,7 +1355,7 @@ "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} } }, - "System.Console/4.0.0-rc2-23525": { + "System.Console/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.0", @@ -1419,7 +1365,7 @@ "ref/dotnet5.4/System.Console.dll": {} } }, - "System.Diagnostics.Contracts/4.0.1-rc2-23525": { + "System.Diagnostics.Contracts/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -1428,7 +1374,7 @@ "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} } }, - "System.Diagnostics.Debug/4.0.11-rc2-23525": { + "System.Diagnostics.Debug/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -1451,7 +1397,7 @@ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} } }, - "System.Diagnostics.StackTrace/4.0.1-rc2-23525": { + "System.Diagnostics.StackTrace/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Reflection": "4.0.0", @@ -1461,7 +1407,7 @@ "ref/dotnet5.4/System.Diagnostics.StackTrace.dll": {} } }, - "System.Diagnostics.Tools/4.0.1-rc2-23525": { + "System.Diagnostics.Tools/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -1479,7 +1425,7 @@ "ref/dotnet/System.Diagnostics.Tracing.dll": {} } }, - "System.Dynamic.Runtime/4.0.11-rc2-23525": { + "System.Dynamic.Runtime/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Linq.Expressions": "4.0.10", @@ -1491,7 +1437,7 @@ "ref/dotnet5.4/System.Dynamic.Runtime.dll": {} } }, - "System.Globalization/4.0.11-rc2-23525": { + "System.Globalization/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -1500,7 +1446,7 @@ "ref/dotnet5.4/System.Globalization.dll": {} } }, - "System.Globalization.Extensions/4.0.1-rc2-23525": { + "System.Globalization.Extensions/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Globalization": "4.0.0", @@ -1511,7 +1457,7 @@ "ref/dotnet5.4/System.Globalization.Extensions.dll": {} } }, - "System.IO/4.0.11-rc2-23525": { + "System.IO/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.20", @@ -1522,7 +1468,7 @@ "ref/dotnet5.4/System.IO.dll": {} } }, - "System.IO.FileSystem/4.0.1-rc2-23525": { + "System.IO.FileSystem/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.0", @@ -1536,7 +1482,7 @@ "ref/dotnet5.4/System.IO.FileSystem.dll": {} } }, - "System.IO.FileSystem.Primitives/4.0.1-rc2-23525": { + "System.IO.FileSystem.Primitives/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.20" @@ -1548,7 +1494,7 @@ "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} } }, - "System.IO.FileSystem.Watcher/4.0.0-rc2-23525": { + "System.IO.FileSystem.Watcher/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -1557,7 +1503,7 @@ "ref/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} } }, - "System.Linq/4.0.1-rc2-23525": { + "System.Linq/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.10", @@ -1573,7 +1519,7 @@ "lib/dotnet5.4/System.Linq.dll": {} } }, - "System.Linq.Expressions/4.0.11-rc2-23525": { + "System.Linq.Expressions/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Reflection": "4.0.0", @@ -1596,7 +1542,7 @@ "ref/dotnet/System.Net.Http.dll": {} } }, - "System.Net.Primitives/4.0.11-rc2-23525": { + "System.Net.Primitives/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0", @@ -1606,7 +1552,7 @@ "ref/dotnet5.4/System.Net.Primitives.dll": {} } }, - "System.Net.WebSockets/4.0.0-rc2-23525": { + "System.Net.WebSockets/4.0.0-rc2-23601": { "type": "package", "dependencies": { "Microsoft.Win32.Primitives": "4.0.0", @@ -1621,7 +1567,7 @@ "lib/dotnet5.4/System.Net.WebSockets.dll": {} } }, - "System.ObjectModel/4.0.11-rc2-23525": { + "System.ObjectModel/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.10", @@ -1648,7 +1594,7 @@ "ref/dotnet/System.Reflection.dll": {} } }, - "System.Reflection.Emit/4.0.1-rc2-23525": { + "System.Reflection.Emit/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.0", @@ -1672,7 +1618,7 @@ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} } }, - "System.Reflection.Emit.Lightweight/4.0.1-rc2-23525": { + "System.Reflection.Emit.Lightweight/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Reflection": "4.0.0", @@ -1684,7 +1630,7 @@ "ref/dotnet5.1/System.Reflection.Emit.Lightweight.dll": {} } }, - "System.Reflection.Extensions/4.0.1-rc2-23525": { + "System.Reflection.Extensions/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Reflection": "4.0.0", @@ -1713,7 +1659,7 @@ "ref/dotnet/System.Reflection.TypeExtensions.dll": {} } }, - "System.Resources.ResourceManager/4.0.1-rc2-23525": { + "System.Resources.ResourceManager/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Globalization": "4.0.0", @@ -1724,13 +1670,13 @@ "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} } }, - "System.Runtime/4.0.21-rc2-23525": { + "System.Runtime/4.0.21-rc2-23601": { "type": "package", "compile": { "ref/dotnet5.4/System.Runtime.dll": {} } }, - "System.Runtime.Extensions/4.0.11-rc2-23525": { + "System.Runtime.Extensions/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.20" @@ -1748,7 +1694,7 @@ "ref/dotnet/System.Runtime.Handles.dll": {} } }, - "System.Runtime.InteropServices/4.0.21-rc2-23525": { + "System.Runtime.InteropServices/4.0.21-rc2-23601": { "type": "package", "dependencies": { "System.Reflection": "4.0.0", @@ -1760,7 +1706,7 @@ "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} } }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -1769,7 +1715,7 @@ "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} } }, - "System.Security.Claims/4.0.1-rc2-23525": { + "System.Security.Claims/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.0", @@ -1788,18 +1734,18 @@ "lib/dotnet5.4/System.Security.Claims.dll": {} } }, - "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "System.Security.Cryptography.Algorithms/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Runtime": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601" }, "compile": { "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} } }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "System.Security.Cryptography.Encoding/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -1808,7 +1754,7 @@ "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} } }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { + "System.Security.Cryptography.Primitives/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.0", @@ -1826,19 +1772,19 @@ "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} } }, - "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23601" }, "compile": { "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} } }, - "System.Security.Principal/4.0.1-rc2-23525": { + "System.Security.Principal/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -1850,7 +1796,7 @@ "lib/dotnet5.1/System.Security.Principal.dll": {} } }, - "System.Text.Encoding/4.0.11-rc2-23525": { + "System.Text.Encoding/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -1859,7 +1805,7 @@ "ref/dotnet5.4/System.Text.Encoding.dll": {} } }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "System.Text.Encodings.Web/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.0", @@ -1877,7 +1823,7 @@ "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} } }, - "System.Text.RegularExpressions/4.0.11-rc2-23525": { + "System.Text.RegularExpressions/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.10", @@ -1894,7 +1840,7 @@ "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} } }, - "System.Threading/4.0.11-rc2-23525": { + "System.Threading/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0", @@ -1904,7 +1850,7 @@ "ref/dotnet5.4/System.Threading.dll": {} } }, - "System.Threading.Tasks/4.0.11-rc2-23525": { + "System.Threading.Tasks/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -1929,10 +1875,10 @@ "Rx-PlatformServices": "2.2.5" } }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -1947,10 +1893,10 @@ "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} } }, - "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15838": { + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15850": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838" + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -1965,23 +1911,23 @@ "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} } }, - "Microsoft.AspNet.Hosting/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15838", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Http": "1.0.0-rc2-16009", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", - "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16237", - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging": "1.0.0-rc2-15867", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525" + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15850", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16044", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16044", + "Microsoft.AspNet.Http": "1.0.0-rc2-16017", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16017", + "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16251", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging": "1.0.0-rc2-15878", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -1996,12 +1942,12 @@ "lib/net451/Microsoft.AspNet.Hosting.dll": {} } }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2016,11 +1962,11 @@ "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} } }, - "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2035,12 +1981,12 @@ "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} } }, - "Microsoft.AspNet.Http/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16017", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2055,11 +2001,11 @@ "lib/net451/Microsoft.AspNet.Http.dll": {} } }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2076,11 +2022,11 @@ "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} } }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2095,10 +2041,10 @@ "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} } }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2128,11 +2074,11 @@ "lib/net45/System.Net.Http.Formatting.dll": {} } }, - "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16009": { + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2148,10 +2094,10 @@ "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} } }, - "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16237": { + "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16251": { "type": "package", "dependencies": { - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237" + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2166,10 +2112,10 @@ "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {} } }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2184,10 +2130,10 @@ "lib/net451/Microsoft.Extensions.Configuration.dll": {} } }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2202,10 +2148,10 @@ "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} } }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2220,10 +2166,10 @@ "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} } }, - "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2238,10 +2184,10 @@ "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} } }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2256,10 +2202,10 @@ "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} } }, - "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2274,11 +2220,11 @@ "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} } }, - "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15878", "Newtonsoft.Json": "6.0.6" }, "frameworkAssemblies": [ @@ -2294,10 +2240,10 @@ "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} } }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2312,7 +2258,7 @@ "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2327,11 +2273,11 @@ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} } }, - "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15849": { + "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15858": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2349,11 +2295,11 @@ "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll": {} } }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2369,7 +2315,7 @@ "lib/net451/Microsoft.Extensions.Logging.dll": {} } }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2384,12 +2330,12 @@ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} } }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2404,7 +2350,7 @@ "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} } }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16251": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2419,7 +2365,7 @@ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} } }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2434,7 +2380,7 @@ "lib/net451/Microsoft.Extensions.Primitives.dll": {} } }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2505,15 +2451,6 @@ "lib/net45/System.Reactive.PlatformServices.dll": {} } }, - "System.Diagnostics.Debug/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { "type": "package", "dependencies": { @@ -2537,15 +2474,6 @@ "lib/net45/_._": {} } }, - "System.IO/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, "System.Net.Http/4.0.0": { "type": "package", "frameworkAssemblies": [ @@ -2558,24 +2486,6 @@ "lib/net45/_._": {} } }, - "System.Reflection/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, "System.Runtime/4.0.0": { "type": "package", "compile": { @@ -2585,26 +2495,8 @@ "lib/net45/_._": {} } }, - "System.Runtime.Extensions/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "System.Text.Encodings.Web/4.0.0-rc2-23601": { "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, "compile": { "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} }, @@ -2637,10 +2529,10 @@ "Rx-PlatformServices": "2.2.5" } }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2655,10 +2547,10 @@ "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} } }, - "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15838": { + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15850": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838" + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2673,23 +2565,23 @@ "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} } }, - "Microsoft.AspNet.Hosting/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15838", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Http": "1.0.0-rc2-16009", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", - "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16237", - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging": "1.0.0-rc2-15867", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525" + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15850", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16044", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16044", + "Microsoft.AspNet.Http": "1.0.0-rc2-16017", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16017", + "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16251", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging": "1.0.0-rc2-15878", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2704,12 +2596,12 @@ "lib/net451/Microsoft.AspNet.Hosting.dll": {} } }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2724,11 +2616,11 @@ "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} } }, - "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2743,12 +2635,12 @@ "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} } }, - "Microsoft.AspNet.Http/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16017", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2763,11 +2655,11 @@ "lib/net451/Microsoft.AspNet.Http.dll": {} } }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2784,11 +2676,11 @@ "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} } }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2803,10 +2695,10 @@ "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} } }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2836,11 +2728,11 @@ "lib/net45/System.Net.Http.Formatting.dll": {} } }, - "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16009": { + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2856,10 +2748,10 @@ "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} } }, - "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16237": { + "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16251": { "type": "package", "dependencies": { - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237" + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2874,10 +2766,10 @@ "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {} } }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2892,10 +2784,10 @@ "lib/net451/Microsoft.Extensions.Configuration.dll": {} } }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2910,10 +2802,10 @@ "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} } }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2928,10 +2820,10 @@ "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} } }, - "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2946,10 +2838,10 @@ "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} } }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2964,10 +2856,10 @@ "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} } }, - "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2982,11 +2874,11 @@ "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} } }, - "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15878", "Newtonsoft.Json": "6.0.6" }, "frameworkAssemblies": [ @@ -3002,10 +2894,10 @@ "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} } }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -3020,7 +2912,7 @@ "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -3035,11 +2927,11 @@ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} } }, - "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15849": { + "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15858": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -3057,11 +2949,11 @@ "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll": {} } }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -3077,7 +2969,7 @@ "lib/net451/Microsoft.Extensions.Logging.dll": {} } }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -3092,12 +2984,12 @@ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} } }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -3112,7 +3004,7 @@ "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} } }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16251": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -3127,7 +3019,7 @@ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} } }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -3142,7 +3034,7 @@ "lib/net451/Microsoft.Extensions.Primitives.dll": {} } }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -3213,15 +3105,6 @@ "lib/net45/System.Reactive.PlatformServices.dll": {} } }, - "System.Diagnostics.Debug/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { "type": "package", "dependencies": { @@ -3245,15 +3128,6 @@ "lib/net45/_._": {} } }, - "System.IO/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, "System.Net.Http/4.0.0": { "type": "package", "frameworkAssemblies": [ @@ -3266,24 +3140,6 @@ "lib/net45/_._": {} } }, - "System.Reflection/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, "System.Runtime/4.0.0": { "type": "package", "compile": { @@ -3293,26 +3149,8 @@ "lib/net45/_._": {} } }, - "System.Runtime.Extensions/4.0.0": { + "System.Text.Encodings.Web/4.0.0-rc2-23601": { "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, "compile": { "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} }, @@ -3350,12 +3188,12 @@ "System.Threading": "4.0.11" } }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.IO": "4.0.11-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", + "System.IO": "4.0.11-rc2-23601", + "System.Resources.ResourceManager": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} @@ -3364,18 +3202,18 @@ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} } }, - "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15838": { + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15850": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-23525", - "System.IO.FileSystem.Watcher": "4.0.0-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Text.RegularExpressions": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", + "System.Collections": "4.0.11-rc2-23601", + "System.Collections.Concurrent": "4.0.11-rc2-23601", + "System.IO.FileSystem": "4.0.1-rc2-23601", + "System.IO.FileSystem.Primitives": "4.0.1-rc2-23601", + "System.IO.FileSystem.Watcher": "4.0.0-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Text.RegularExpressions": "4.0.11-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} @@ -3384,26 +3222,26 @@ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} } }, - "Microsoft.AspNet.Hosting/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15838", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Http": "1.0.0-rc2-16009", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", - "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16237", - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging": "1.0.0-rc2-15867", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", - "System.Console": "4.0.0-rc2-23525", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525", - "System.Diagnostics.StackTrace": "4.0.1-rc2-23525", - "System.Reflection.Extensions": "4.0.1-rc2-23525" + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15850", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16044", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16044", + "Microsoft.AspNet.Http": "1.0.0-rc2-16017", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16017", + "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16251", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging": "1.0.0-rc2-15878", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", + "System.Console": "4.0.0-rc2-23601", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601", + "System.Diagnostics.StackTrace": "4.0.1-rc2-23601", + "System.Reflection.Extensions": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} @@ -3412,12 +3250,12 @@ "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} } }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} @@ -3426,11 +3264,11 @@ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} } }, - "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} @@ -3439,15 +3277,15 @@ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} } }, - "Microsoft.AspNet.Http/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Text.Encoding": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16017", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.Text.Encoding": "4.0.11-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} @@ -3456,27 +3294,27 @@ "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} } }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Tools": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Globalization.Extensions": "4.0.1-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", + "System.Collections": "4.0.11-rc2-23601", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.Diagnostics.Tools": "4.0.1-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Globalization.Extensions": "4.0.1-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Linq.Expressions": "4.0.11-rc2-23601", + "System.Net.Primitives": "4.0.11-rc2-23601", + "System.Net.WebSockets": "4.0.0-rc2-23601", "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525", - "System.Text.Encodings.Web": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.InteropServices": "4.0.21-rc2-23601", + "System.Security.Claims": "4.0.1-rc2-23601", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23601", + "System.Security.Principal": "4.0.1-rc2-23601", + "System.Text.Encodings.Web": "4.0.0-rc2-23601", + "System.Threading.Tasks": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} @@ -3485,14 +3323,14 @@ "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} } }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017", + "System.IO.FileSystem": "4.0.1-rc2-23601", + "System.Resources.ResourceManager": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} @@ -3501,18 +3339,18 @@ "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} } }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Collections": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", + "System.Collections": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Net.Primitives": "4.0.11-rc2-23601", + "System.Net.WebSockets": "4.0.0-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Security.Claims": "4.0.1-rc2-23601", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23601", + "System.Security.Principal": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} @@ -3534,17 +3372,17 @@ "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {} } }, - "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16009": { + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", + "System.Collections": "4.0.11-rc2-23601", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.IO": "4.0.11-rc2-23601", + "System.IO.FileSystem": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} @@ -3568,11 +3406,11 @@ "Microsoft.Bcl.Build/1.0.14": { "type": "package" }, - "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16237": { + "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16251": { "type": "package", "dependencies": { - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", - "System.IO.FileSystem": "4.0.1-rc2-23525" + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", + "System.IO.FileSystem": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} @@ -3581,18 +3419,18 @@ "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} } }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", + "System.Collections": "4.0.11-rc2-23601", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.IO": "4.0.11-rc2-23601", + "System.IO.FileSystem": "4.0.1-rc2-23601", + "System.Resources.ResourceManager": "4.0.1-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Runtime.InteropServices": "4.0.21-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} @@ -3601,11 +3439,11 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} } }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Linq": "4.0.1-rc2-23525" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", + "System.Linq": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} @@ -3614,11 +3452,11 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} } }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", + "System.ComponentModel.TypeConverter": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} @@ -3627,10 +3465,10 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} } }, - "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} @@ -3639,10 +3477,10 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} } }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} @@ -3651,10 +3489,10 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} } }, - "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", "System.AppContext": "4.0.0" }, "compile": { @@ -3664,13 +3502,13 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} } }, - "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15878", "Newtonsoft.Json": "6.0.6", - "System.Dynamic.Runtime": "4.0.11-rc2-23525" + "System.Dynamic.Runtime": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} @@ -3679,14 +3517,14 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} } }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "System.Collections": "4.0.11-rc2-23601", + "System.Collections.Concurrent": "4.0.11-rc2-23601", + "System.Threading": "4.0.11-rc2-23601", + "System.Threading.Tasks": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} @@ -3695,16 +3533,16 @@ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { "type": "package", "dependencies": { - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Linq.Expressions": "4.0.11-rc2-23601", "System.Reflection": "4.1.0-beta-23225", - "System.Resources.ResourceManager": "4.0.1-rc2-23525" + "System.Resources.ResourceManager": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} @@ -3713,27 +3551,27 @@ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} } }, - "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15849": { + "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15858": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "System.Collections": "4.0.11-rc2-23601", + "System.Collections.Concurrent": "4.0.11-rc2-23601", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Linq.Expressions": "4.0.11-rc2-23601", "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Emit": "4.0.1-rc2-23525", - "System.Reflection.Emit.Lightweight": "4.0.1-rc2-23525", - "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.Emit": "4.0.1-rc2-23601", + "System.Reflection.Emit.Lightweight": "4.0.1-rc2-23601", + "System.Reflection.Extensions": "4.0.1-rc2-23601", "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "System.Resources.ResourceManager": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} @@ -3742,17 +3580,17 @@ "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} } }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878", + "System.Collections": "4.0.11-rc2-23601", + "System.Collections.Concurrent": "4.0.11-rc2-23601", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} @@ -3761,17 +3599,17 @@ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} } }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", + "System.Collections": "4.0.11-rc2-23601", + "System.Collections.Concurrent": "4.0.11-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", "System.Reflection": "4.1.0-beta-23225", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525" + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Runtime.InteropServices": "4.0.21-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} @@ -3780,23 +3618,23 @@ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} } }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Linq.Expressions": "4.0.11-rc2-23601", "System.Reflection": "4.0.10", "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "System.Resources.ResourceManager": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} @@ -3805,22 +3643,22 @@ "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} } }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16251": { "type": "package", "dependencies": { - "System.AppContext": "4.0.1-rc2-23525", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", + "System.AppContext": "4.0.1-rc2-23601", + "System.Collections": "4.0.11-rc2-23601", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.IO": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.Extensions": "4.0.1-rc2-23601", "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Runtime.InteropServices": "4.0.21-rc2-23601", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23601", + "System.Threading.Tasks": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} @@ -3829,11 +3667,11 @@ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} } }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { "type": "package", "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525" + "System.Resources.ResourceManager": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} @@ -3857,16 +3695,16 @@ "lib/portable-net45+win8/System.Net.Http.Primitives.dll": {} } }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Contracts": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Globalization.Extensions": "4.0.1-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Text.Encoding": "4.0.11-rc2-23525" + "System.Collections": "4.0.11-rc2-23601", + "System.Diagnostics.Contracts": "4.0.1-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Globalization.Extensions": "4.0.1-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601", + "System.Text.Encoding": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} @@ -3897,13 +3735,13 @@ "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} } }, - "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { + "runtime.any.System.Linq.Expressions/4.0.11-rc2-23601": { "type": "package", "compile": { "ref/dotnet/_._": {} } }, - "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", @@ -3916,7 +3754,7 @@ "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} } }, - "runtime.win7.System.Console/4.0.0-rc2-23525": { + "runtime.win7.System.Console/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.10", @@ -3936,13 +3774,13 @@ "runtimes/win7/lib/dotnet5.4/System.Console.dll": {} } }, - "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { + "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23601": { "type": "package", "compile": { "ref/dotnet/_._": {} } }, - "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { + "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Globalization": "4.0.10", @@ -3958,7 +3796,7 @@ "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {} } }, - "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { + "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.10", @@ -3982,7 +3820,7 @@ "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {} } }, - "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-rc2-23525": { + "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-rc2-23601": { "type": "package", "dependencies": { "Microsoft.Win32.Primitives": "4.0.0", @@ -4002,19 +3840,19 @@ "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} } }, - "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { + "runtime.win7.System.Net.Primitives/4.0.11-rc2-23601": { "type": "package", "compile": { "ref/dotnet/_._": {} } }, - "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { + "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23601": { "type": "package", "compile": { "ref/dotnet/_._": {} } }, - "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.10", @@ -4022,7 +3860,7 @@ "System.Runtime": "4.0.20", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601", "System.Text.Encoding": "4.0.0", "System.Text.Encoding.Extensions": "4.0.0" }, @@ -4033,7 +3871,7 @@ "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} } }, - "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.0", @@ -4045,7 +3883,7 @@ "System.Runtime.Extensions": "4.0.10", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601" }, "compile": { "ref/dotnet/_._": {} @@ -4054,7 +3892,7 @@ "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} } }, - "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.10", @@ -4068,11 +3906,11 @@ "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", "System.Runtime.Numerics": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Cng": "4.0.0-rc2-23525", - "System.Security.Cryptography.Csp": "4.0.0-rc2-23525", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", + "System.Security.Cryptography.Cng": "4.0.0-rc2-23601", + "System.Security.Cryptography.Csp": "4.0.0-rc2-23601", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23601", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601", "System.Text.Encoding": "4.0.10", "System.Threading": "4.0.10" }, @@ -4083,7 +3921,7 @@ "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} } }, - "runtime.win7.System.Threading/4.0.11-rc2-23525": { + "runtime.win7.System.Threading/4.0.11-rc2-23601": { "type": "package", "compile": { "ref/dotnet/_._": {} @@ -4136,7 +3974,7 @@ "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} } }, - "System.AppContext/4.0.1-rc2-23525": { + "System.AppContext/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -4145,7 +3983,7 @@ "ref/dotnet5.4/System.AppContext.dll": {} } }, - "System.Collections/4.0.11-rc2-23525": { + "System.Collections/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -4154,7 +3992,7 @@ "ref/dotnet5.4/System.Collections.dll": {} } }, - "System.Collections.Concurrent/4.0.11-rc2-23525": { + "System.Collections.Concurrent/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.10", @@ -4174,7 +4012,7 @@ "lib/dotnet5.4/System.Collections.Concurrent.dll": {} } }, - "System.ComponentModel/4.0.1-rc2-23525": { + "System.ComponentModel/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.20" @@ -4199,7 +4037,7 @@ "lib/dotnet/System.ComponentModel.Primitives.dll": {} } }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { + "System.ComponentModel.TypeConverter/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.0", @@ -4221,7 +4059,7 @@ "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} } }, - "System.Console/4.0.0-rc2-23525": { + "System.Console/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.0", @@ -4231,7 +4069,7 @@ "ref/dotnet5.4/System.Console.dll": {} } }, - "System.Diagnostics.Contracts/4.0.1-rc2-23525": { + "System.Diagnostics.Contracts/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -4240,7 +4078,7 @@ "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} } }, - "System.Diagnostics.Debug/4.0.11-rc2-23525": { + "System.Diagnostics.Debug/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -4263,7 +4101,7 @@ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} } }, - "System.Diagnostics.StackTrace/4.0.1-rc2-23525": { + "System.Diagnostics.StackTrace/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Reflection": "4.0.0", @@ -4273,7 +4111,7 @@ "ref/dotnet5.4/System.Diagnostics.StackTrace.dll": {} } }, - "System.Diagnostics.Tools/4.0.1-rc2-23525": { + "System.Diagnostics.Tools/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -4291,7 +4129,7 @@ "ref/dotnet/System.Diagnostics.Tracing.dll": {} } }, - "System.Dynamic.Runtime/4.0.11-rc2-23525": { + "System.Dynamic.Runtime/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Linq.Expressions": "4.0.10", @@ -4303,7 +4141,7 @@ "ref/dotnet5.4/System.Dynamic.Runtime.dll": {} } }, - "System.Globalization/4.0.11-rc2-23525": { + "System.Globalization/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -4322,7 +4160,7 @@ "ref/dotnet/System.Globalization.Calendars.dll": {} } }, - "System.Globalization.Extensions/4.0.1-rc2-23525": { + "System.Globalization.Extensions/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Globalization": "4.0.0", @@ -4333,7 +4171,7 @@ "ref/dotnet5.4/System.Globalization.Extensions.dll": {} } }, - "System.IO/4.0.11-rc2-23525": { + "System.IO/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.20", @@ -4344,7 +4182,7 @@ "ref/dotnet5.4/System.IO.dll": {} } }, - "System.IO.FileSystem/4.0.1-rc2-23525": { + "System.IO.FileSystem/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.0", @@ -4358,7 +4196,7 @@ "ref/dotnet5.4/System.IO.FileSystem.dll": {} } }, - "System.IO.FileSystem.Primitives/4.0.1-rc2-23525": { + "System.IO.FileSystem.Primitives/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.20" @@ -4370,7 +4208,7 @@ "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} } }, - "System.IO.FileSystem.Watcher/4.0.0-rc2-23525": { + "System.IO.FileSystem.Watcher/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -4379,7 +4217,7 @@ "ref/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} } }, - "System.Linq/4.0.1-rc2-23525": { + "System.Linq/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.10", @@ -4395,7 +4233,7 @@ "lib/dotnet5.4/System.Linq.dll": {} } }, - "System.Linq.Expressions/4.0.11-rc2-23525": { + "System.Linq.Expressions/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Reflection": "4.0.0", @@ -4418,7 +4256,7 @@ "ref/dotnet/System.Net.Http.dll": {} } }, - "System.Net.Primitives/4.0.11-rc2-23525": { + "System.Net.Primitives/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0", @@ -4428,7 +4266,7 @@ "ref/dotnet5.4/System.Net.Primitives.dll": {} } }, - "System.Net.WebSockets/4.0.0-rc2-23525": { + "System.Net.WebSockets/4.0.0-rc2-23601": { "type": "package", "dependencies": { "Microsoft.Win32.Primitives": "4.0.0", @@ -4443,7 +4281,7 @@ "lib/dotnet5.4/System.Net.WebSockets.dll": {} } }, - "System.ObjectModel/4.0.11-rc2-23525": { + "System.ObjectModel/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.10", @@ -4470,7 +4308,7 @@ "ref/dotnet/System.Reflection.dll": {} } }, - "System.Reflection.Emit/4.0.1-rc2-23525": { + "System.Reflection.Emit/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.0", @@ -4494,7 +4332,7 @@ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} } }, - "System.Reflection.Emit.Lightweight/4.0.1-rc2-23525": { + "System.Reflection.Emit.Lightweight/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Reflection": "4.0.0", @@ -4506,7 +4344,7 @@ "ref/dotnet5.1/System.Reflection.Emit.Lightweight.dll": {} } }, - "System.Reflection.Extensions/4.0.1-rc2-23525": { + "System.Reflection.Extensions/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Reflection": "4.0.0", @@ -4535,7 +4373,7 @@ "ref/dotnet/System.Reflection.TypeExtensions.dll": {} } }, - "System.Resources.ResourceManager/4.0.1-rc2-23525": { + "System.Resources.ResourceManager/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Globalization": "4.0.0", @@ -4546,13 +4384,13 @@ "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} } }, - "System.Runtime/4.0.21-rc2-23525": { + "System.Runtime/4.0.21-rc2-23601": { "type": "package", "compile": { "ref/dotnet5.4/System.Runtime.dll": {} } }, - "System.Runtime.Extensions/4.0.11-rc2-23525": { + "System.Runtime.Extensions/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.20" @@ -4570,7 +4408,7 @@ "ref/dotnet/System.Runtime.Handles.dll": {} } }, - "System.Runtime.InteropServices/4.0.21-rc2-23525": { + "System.Runtime.InteropServices/4.0.21-rc2-23601": { "type": "package", "dependencies": { "System.Reflection": "4.0.0", @@ -4582,7 +4420,7 @@ "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} } }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -4606,7 +4444,7 @@ "lib/dotnet/System.Runtime.Numerics.dll": {} } }, - "System.Security.Claims/4.0.1-rc2-23525": { + "System.Security.Claims/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.0", @@ -4625,18 +4463,18 @@ "lib/dotnet5.4/System.Security.Claims.dll": {} } }, - "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "System.Security.Cryptography.Algorithms/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Runtime": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601" }, "compile": { "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} } }, - "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { + "System.Security.Cryptography.Cng/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.10", @@ -4645,8 +4483,8 @@ "System.Runtime.Extensions": "4.0.0", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601", "System.Text.Encoding": "4.0.0" }, "compile": { @@ -4656,19 +4494,19 @@ "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {} } }, - "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { + "System.Security.Cryptography.Csp/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Runtime": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601" }, "compile": { "ref/dotnet5.4/System.Security.Cryptography.Csp.dll": {} } }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "System.Security.Cryptography.Encoding/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -4677,7 +4515,7 @@ "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} } }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { + "System.Security.Cryptography.Primitives/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.0", @@ -4695,19 +4533,19 @@ "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} } }, - "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23601" }, "compile": { "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} } }, - "System.Security.Principal/4.0.1-rc2-23525": { + "System.Security.Principal/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -4719,7 +4557,7 @@ "lib/dotnet5.1/System.Security.Principal.dll": {} } }, - "System.Text.Encoding/4.0.11-rc2-23525": { + "System.Text.Encoding/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -4738,7 +4576,7 @@ "ref/dotnet/System.Text.Encoding.Extensions.dll": {} } }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "System.Text.Encodings.Web/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.0", @@ -4756,7 +4594,7 @@ "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} } }, - "System.Text.RegularExpressions/4.0.11-rc2-23525": { + "System.Text.RegularExpressions/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.10", @@ -4773,7 +4611,7 @@ "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} } }, - "System.Threading/4.0.11-rc2-23525": { + "System.Threading/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0", @@ -4793,7 +4631,7 @@ "ref/dotnet/System.Threading.Overlapped.dll": {} } }, - "System.Threading.Tasks/4.0.11-rc2-23525": { + "System.Threading.Tasks/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -4823,12 +4661,12 @@ "System.Threading": "4.0.11" } }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.IO": "4.0.11-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", + "System.IO": "4.0.11-rc2-23601", + "System.Resources.ResourceManager": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} @@ -4837,18 +4675,18 @@ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} } }, - "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15838": { + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15850": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-23525", - "System.IO.FileSystem.Watcher": "4.0.0-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Text.RegularExpressions": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", + "System.Collections": "4.0.11-rc2-23601", + "System.Collections.Concurrent": "4.0.11-rc2-23601", + "System.IO.FileSystem": "4.0.1-rc2-23601", + "System.IO.FileSystem.Primitives": "4.0.1-rc2-23601", + "System.IO.FileSystem.Watcher": "4.0.0-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Text.RegularExpressions": "4.0.11-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} @@ -4857,26 +4695,26 @@ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} } }, - "Microsoft.AspNet.Hosting/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15838", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Http": "1.0.0-rc2-16009", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", - "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16237", - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging": "1.0.0-rc2-15867", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", - "System.Console": "4.0.0-rc2-23525", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525", - "System.Diagnostics.StackTrace": "4.0.1-rc2-23525", - "System.Reflection.Extensions": "4.0.1-rc2-23525" + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15850", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16044", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16044", + "Microsoft.AspNet.Http": "1.0.0-rc2-16017", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16017", + "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16251", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging": "1.0.0-rc2-15878", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", + "System.Console": "4.0.0-rc2-23601", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601", + "System.Diagnostics.StackTrace": "4.0.1-rc2-23601", + "System.Reflection.Extensions": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} @@ -4885,12 +4723,12 @@ "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} } }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} @@ -4899,11 +4737,11 @@ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} } }, - "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16044": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} @@ -4912,15 +4750,15 @@ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} } }, - "Microsoft.AspNet.Http/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Text.Encoding": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16017", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.Text.Encoding": "4.0.11-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} @@ -4929,27 +4767,27 @@ "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} } }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Tools": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Globalization.Extensions": "4.0.1-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", + "System.Collections": "4.0.11-rc2-23601", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.Diagnostics.Tools": "4.0.1-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Globalization.Extensions": "4.0.1-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Linq.Expressions": "4.0.11-rc2-23601", + "System.Net.Primitives": "4.0.11-rc2-23601", + "System.Net.WebSockets": "4.0.0-rc2-23601", "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525", - "System.Text.Encodings.Web": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.InteropServices": "4.0.21-rc2-23601", + "System.Security.Claims": "4.0.1-rc2-23601", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23601", + "System.Security.Principal": "4.0.1-rc2-23601", + "System.Text.Encodings.Web": "4.0.0-rc2-23601", + "System.Threading.Tasks": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} @@ -4958,14 +4796,14 @@ "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} } }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017", + "System.IO.FileSystem": "4.0.1-rc2-23601", + "System.Resources.ResourceManager": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} @@ -4974,18 +4812,18 @@ "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} } }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Collections": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", + "System.Collections": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Net.Primitives": "4.0.11-rc2-23601", + "System.Net.WebSockets": "4.0.0-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Security.Claims": "4.0.1-rc2-23601", + "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23601", + "System.Security.Principal": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} @@ -5007,17 +4845,17 @@ "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {} } }, - "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16009": { + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", + "System.Collections": "4.0.11-rc2-23601", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.IO": "4.0.11-rc2-23601", + "System.IO.FileSystem": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} @@ -5041,11 +4879,11 @@ "Microsoft.Bcl.Build/1.0.14": { "type": "package" }, - "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16237": { + "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16251": { "type": "package", "dependencies": { - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16237", - "System.IO.FileSystem": "4.0.1-rc2-23525" + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", + "System.IO.FileSystem": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} @@ -5054,18 +4892,18 @@ "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} } }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", + "System.Collections": "4.0.11-rc2-23601", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.IO": "4.0.11-rc2-23601", + "System.IO.FileSystem": "4.0.1-rc2-23601", + "System.Resources.ResourceManager": "4.0.1-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Runtime.InteropServices": "4.0.21-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} @@ -5074,11 +4912,11 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} } }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Linq": "4.0.1-rc2-23525" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", + "System.Linq": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} @@ -5087,11 +4925,11 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} } }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", + "System.ComponentModel.TypeConverter": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} @@ -5100,10 +4938,10 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} } }, - "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} @@ -5112,10 +4950,10 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} } }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} @@ -5124,10 +4962,10 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} } }, - "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", "System.AppContext": "4.0.0" }, "compile": { @@ -5137,13 +4975,13 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} } }, - "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15866", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15878", "Newtonsoft.Json": "6.0.6", - "System.Dynamic.Runtime": "4.0.11-rc2-23525" + "System.Dynamic.Runtime": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} @@ -5152,14 +4990,14 @@ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} } }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "System.Collections": "4.0.11-rc2-23601", + "System.Collections.Concurrent": "4.0.11-rc2-23601", + "System.Threading": "4.0.11-rc2-23601", + "System.Threading.Tasks": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} @@ -5168,16 +5006,16 @@ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { "type": "package", "dependencies": { - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Linq.Expressions": "4.0.11-rc2-23601", "System.Reflection": "4.1.0-beta-23225", - "System.Resources.ResourceManager": "4.0.1-rc2-23525" + "System.Resources.ResourceManager": "4.0.1-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} @@ -5186,27 +5024,27 @@ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} } }, - "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15849": { + "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15858": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "System.Collections": "4.0.11-rc2-23601", + "System.Collections.Concurrent": "4.0.11-rc2-23601", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Linq.Expressions": "4.0.11-rc2-23601", "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Emit": "4.0.1-rc2-23525", - "System.Reflection.Emit.Lightweight": "4.0.1-rc2-23525", - "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.Emit": "4.0.1-rc2-23601", + "System.Reflection.Emit.Lightweight": "4.0.1-rc2-23601", + "System.Reflection.Extensions": "4.0.1-rc2-23601", "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "System.Resources.ResourceManager": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} @@ -5215,17 +5053,17 @@ "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} } }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878", + "System.Collections": "4.0.11-rc2-23601", + "System.Collections.Concurrent": "4.0.11-rc2-23601", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} @@ -5234,17 +5072,17 @@ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} } }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", + "System.Collections": "4.0.11-rc2-23601", + "System.Collections.Concurrent": "4.0.11-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", "System.Reflection": "4.1.0-beta-23225", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525" + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Runtime.InteropServices": "4.0.21-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} @@ -5253,23 +5091,23 @@ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} } }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.Diagnostics.Debug": "4.0.11-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Linq.Expressions": "4.0.11-rc2-23601", "System.Reflection": "4.0.10", "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" + "System.Resources.ResourceManager": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Threading": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} @@ -5278,22 +5116,22 @@ "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} } }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16251": { "type": "package", "dependencies": { - "System.AppContext": "4.0.1-rc2-23525", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", + "System.AppContext": "4.0.1-rc2-23601", + "System.Collections": "4.0.11-rc2-23601", + "System.ComponentModel": "4.0.1-rc2-23601", + "System.IO": "4.0.11-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Extensions": "4.0.1-rc2-23525", + "System.Reflection.Extensions": "4.0.1-rc2-23601", "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" + "System.Runtime": "4.0.21-rc2-23601", + "System.Runtime.Extensions": "4.0.11-rc2-23601", + "System.Runtime.InteropServices": "4.0.21-rc2-23601", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23601", + "System.Threading.Tasks": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} @@ -5302,11 +5140,11 @@ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} } }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { "type": "package", "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525" + "System.Resources.ResourceManager": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} @@ -5330,16 +5168,16 @@ "lib/portable-net45+win8/System.Net.Http.Primitives.dll": {} } }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Contracts": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Globalization.Extensions": "4.0.1-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Text.Encoding": "4.0.11-rc2-23525" + "System.Collections": "4.0.11-rc2-23601", + "System.Diagnostics.Contracts": "4.0.1-rc2-23601", + "System.Globalization": "4.0.11-rc2-23601", + "System.Globalization.Extensions": "4.0.1-rc2-23601", + "System.Linq": "4.0.1-rc2-23601", + "System.Runtime": "4.0.21-rc2-23601", + "System.Text.Encoding": "4.0.11-rc2-23601" }, "compile": { "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} @@ -5370,13 +5208,13 @@ "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} } }, - "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { + "runtime.any.System.Linq.Expressions/4.0.11-rc2-23601": { "type": "package", "compile": { "ref/dotnet/_._": {} } }, - "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", @@ -5389,7 +5227,7 @@ "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} } }, - "runtime.win7.System.Console/4.0.0-rc2-23525": { + "runtime.win7.System.Console/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.10", @@ -5409,13 +5247,13 @@ "runtimes/win7/lib/dotnet5.4/System.Console.dll": {} } }, - "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { + "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23601": { "type": "package", "compile": { "ref/dotnet/_._": {} } }, - "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { + "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Globalization": "4.0.10", @@ -5431,7 +5269,7 @@ "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {} } }, - "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { + "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.10", @@ -5455,7 +5293,7 @@ "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {} } }, - "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-rc2-23525": { + "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-rc2-23601": { "type": "package", "dependencies": { "Microsoft.Win32.Primitives": "4.0.0", @@ -5475,19 +5313,19 @@ "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} } }, - "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { + "runtime.win7.System.Net.Primitives/4.0.11-rc2-23601": { "type": "package", "compile": { "ref/dotnet/_._": {} } }, - "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { + "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23601": { "type": "package", "compile": { "ref/dotnet/_._": {} } }, - "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.10", @@ -5495,7 +5333,7 @@ "System.Runtime": "4.0.20", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601", "System.Text.Encoding": "4.0.0", "System.Text.Encoding.Extensions": "4.0.0" }, @@ -5506,7 +5344,7 @@ "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} } }, - "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.0", @@ -5518,7 +5356,7 @@ "System.Runtime.Extensions": "4.0.10", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601" }, "compile": { "ref/dotnet/_._": {} @@ -5527,7 +5365,7 @@ "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} } }, - "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.10", @@ -5541,11 +5379,11 @@ "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", "System.Runtime.Numerics": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Cng": "4.0.0-rc2-23525", - "System.Security.Cryptography.Csp": "4.0.0-rc2-23525", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", + "System.Security.Cryptography.Cng": "4.0.0-rc2-23601", + "System.Security.Cryptography.Csp": "4.0.0-rc2-23601", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23601", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601", "System.Text.Encoding": "4.0.10", "System.Threading": "4.0.10" }, @@ -5556,7 +5394,7 @@ "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} } }, - "runtime.win7.System.Threading/4.0.11-rc2-23525": { + "runtime.win7.System.Threading/4.0.11-rc2-23601": { "type": "package", "compile": { "ref/dotnet/_._": {} @@ -5609,7 +5447,7 @@ "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} } }, - "System.AppContext/4.0.1-rc2-23525": { + "System.AppContext/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -5618,7 +5456,7 @@ "ref/dotnet5.4/System.AppContext.dll": {} } }, - "System.Collections/4.0.11-rc2-23525": { + "System.Collections/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -5627,7 +5465,7 @@ "ref/dotnet5.4/System.Collections.dll": {} } }, - "System.Collections.Concurrent/4.0.11-rc2-23525": { + "System.Collections.Concurrent/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.10", @@ -5647,7 +5485,7 @@ "lib/dotnet5.4/System.Collections.Concurrent.dll": {} } }, - "System.ComponentModel/4.0.1-rc2-23525": { + "System.ComponentModel/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.20" @@ -5672,7 +5510,7 @@ "lib/dotnet/System.ComponentModel.Primitives.dll": {} } }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { + "System.ComponentModel.TypeConverter/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.0", @@ -5694,7 +5532,7 @@ "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} } }, - "System.Console/4.0.0-rc2-23525": { + "System.Console/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.0", @@ -5704,7 +5542,7 @@ "ref/dotnet5.4/System.Console.dll": {} } }, - "System.Diagnostics.Contracts/4.0.1-rc2-23525": { + "System.Diagnostics.Contracts/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -5713,7 +5551,7 @@ "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} } }, - "System.Diagnostics.Debug/4.0.11-rc2-23525": { + "System.Diagnostics.Debug/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -5736,7 +5574,7 @@ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} } }, - "System.Diagnostics.StackTrace/4.0.1-rc2-23525": { + "System.Diagnostics.StackTrace/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Reflection": "4.0.0", @@ -5746,7 +5584,7 @@ "ref/dotnet5.4/System.Diagnostics.StackTrace.dll": {} } }, - "System.Diagnostics.Tools/4.0.1-rc2-23525": { + "System.Diagnostics.Tools/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -5764,7 +5602,7 @@ "ref/dotnet/System.Diagnostics.Tracing.dll": {} } }, - "System.Dynamic.Runtime/4.0.11-rc2-23525": { + "System.Dynamic.Runtime/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Linq.Expressions": "4.0.10", @@ -5776,7 +5614,7 @@ "ref/dotnet5.4/System.Dynamic.Runtime.dll": {} } }, - "System.Globalization/4.0.11-rc2-23525": { + "System.Globalization/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -5795,7 +5633,7 @@ "ref/dotnet/System.Globalization.Calendars.dll": {} } }, - "System.Globalization.Extensions/4.0.1-rc2-23525": { + "System.Globalization.Extensions/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Globalization": "4.0.0", @@ -5806,7 +5644,7 @@ "ref/dotnet5.4/System.Globalization.Extensions.dll": {} } }, - "System.IO/4.0.11-rc2-23525": { + "System.IO/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.20", @@ -5817,7 +5655,7 @@ "ref/dotnet5.4/System.IO.dll": {} } }, - "System.IO.FileSystem/4.0.1-rc2-23525": { + "System.IO.FileSystem/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.0", @@ -5831,7 +5669,7 @@ "ref/dotnet5.4/System.IO.FileSystem.dll": {} } }, - "System.IO.FileSystem.Primitives/4.0.1-rc2-23525": { + "System.IO.FileSystem.Primitives/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.20" @@ -5843,7 +5681,7 @@ "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} } }, - "System.IO.FileSystem.Watcher/4.0.0-rc2-23525": { + "System.IO.FileSystem.Watcher/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -5852,7 +5690,7 @@ "ref/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} } }, - "System.Linq/4.0.1-rc2-23525": { + "System.Linq/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.10", @@ -5868,7 +5706,7 @@ "lib/dotnet5.4/System.Linq.dll": {} } }, - "System.Linq.Expressions/4.0.11-rc2-23525": { + "System.Linq.Expressions/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Reflection": "4.0.0", @@ -5891,7 +5729,7 @@ "ref/dotnet/System.Net.Http.dll": {} } }, - "System.Net.Primitives/4.0.11-rc2-23525": { + "System.Net.Primitives/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0", @@ -5901,7 +5739,7 @@ "ref/dotnet5.4/System.Net.Primitives.dll": {} } }, - "System.Net.WebSockets/4.0.0-rc2-23525": { + "System.Net.WebSockets/4.0.0-rc2-23601": { "type": "package", "dependencies": { "Microsoft.Win32.Primitives": "4.0.0", @@ -5916,7 +5754,7 @@ "lib/dotnet5.4/System.Net.WebSockets.dll": {} } }, - "System.ObjectModel/4.0.11-rc2-23525": { + "System.ObjectModel/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.10", @@ -5943,7 +5781,7 @@ "ref/dotnet/System.Reflection.dll": {} } }, - "System.Reflection.Emit/4.0.1-rc2-23525": { + "System.Reflection.Emit/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.0", @@ -5967,7 +5805,7 @@ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} } }, - "System.Reflection.Emit.Lightweight/4.0.1-rc2-23525": { + "System.Reflection.Emit.Lightweight/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Reflection": "4.0.0", @@ -5979,7 +5817,7 @@ "ref/dotnet5.1/System.Reflection.Emit.Lightweight.dll": {} } }, - "System.Reflection.Extensions/4.0.1-rc2-23525": { + "System.Reflection.Extensions/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Reflection": "4.0.0", @@ -6008,7 +5846,7 @@ "ref/dotnet/System.Reflection.TypeExtensions.dll": {} } }, - "System.Resources.ResourceManager/4.0.1-rc2-23525": { + "System.Resources.ResourceManager/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Globalization": "4.0.0", @@ -6019,13 +5857,13 @@ "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} } }, - "System.Runtime/4.0.21-rc2-23525": { + "System.Runtime/4.0.21-rc2-23601": { "type": "package", "compile": { "ref/dotnet5.4/System.Runtime.dll": {} } }, - "System.Runtime.Extensions/4.0.11-rc2-23525": { + "System.Runtime.Extensions/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.20" @@ -6043,7 +5881,7 @@ "ref/dotnet/System.Runtime.Handles.dll": {} } }, - "System.Runtime.InteropServices/4.0.21-rc2-23525": { + "System.Runtime.InteropServices/4.0.21-rc2-23601": { "type": "package", "dependencies": { "System.Reflection": "4.0.0", @@ -6055,7 +5893,7 @@ "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} } }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -6079,7 +5917,7 @@ "lib/dotnet/System.Runtime.Numerics.dll": {} } }, - "System.Security.Claims/4.0.1-rc2-23525": { + "System.Security.Claims/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.0", @@ -6098,18 +5936,18 @@ "lib/dotnet5.4/System.Security.Claims.dll": {} } }, - "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "System.Security.Cryptography.Algorithms/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Runtime": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601" }, "compile": { "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} } }, - "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { + "System.Security.Cryptography.Cng/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.10", @@ -6118,8 +5956,8 @@ "System.Runtime.Extensions": "4.0.0", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601", "System.Text.Encoding": "4.0.0" }, "compile": { @@ -6129,19 +5967,19 @@ "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {} } }, - "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { + "System.Security.Cryptography.Csp/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Runtime": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601" }, "compile": { "ref/dotnet5.4/System.Security.Cryptography.Csp.dll": {} } }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "System.Security.Cryptography.Encoding/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -6150,7 +5988,7 @@ "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} } }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { + "System.Security.Cryptography.Primitives/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.0", @@ -6168,19 +6006,19 @@ "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} } }, - "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" + "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-23601" }, "compile": { "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} } }, - "System.Security.Principal/4.0.1-rc2-23525": { + "System.Security.Principal/4.0.1-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -6192,7 +6030,7 @@ "lib/dotnet5.1/System.Security.Principal.dll": {} } }, - "System.Text.Encoding/4.0.11-rc2-23525": { + "System.Text.Encoding/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -6211,7 +6049,7 @@ "ref/dotnet/System.Text.Encoding.Extensions.dll": {} } }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "System.Text.Encodings.Web/4.0.0-rc2-23601": { "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.0", @@ -6229,7 +6067,7 @@ "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} } }, - "System.Text.RegularExpressions/4.0.11-rc2-23525": { + "System.Text.RegularExpressions/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Collections": "4.0.10", @@ -6246,7 +6084,7 @@ "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} } }, - "System.Threading/4.0.11-rc2-23525": { + "System.Threading/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0", @@ -6266,7 +6104,7 @@ "ref/dotnet/System.Threading.Overlapped.dll": {} } }, - "System.Threading.Tasks/4.0.11-rc2-23525": { + "System.Threading.Tasks/4.0.11-rc2-23601": { "type": "package", "dependencies": { "System.Runtime": "4.0.0" @@ -6282,38 +6120,38 @@ "type": "project", "path": "../Glimpse.Common/project.json" }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { "type": "package", "serviceable": true, - "sha512": "xroX7pbQ0TvSKSNMjJ2c5OZqekyS9n6ytIKzGUYv7uYUOLDLoxaRFAsalk4Jg5oFdWwEWlqvOSZ8XzWNkr2r2g==", + "sha512": "QzMjQYLn+OP9oqAGBZx5eMvdOJPuJ0xiGoFU95QxSdnOeRKFobOrUF1huJzjGIslOaTxucijCkK1wukF4YNHBA==", "files": [ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll", "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.xml", "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll", "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.xml", - "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc2-15838.nupkg", - "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc2-15838.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc2-15850.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc2-15850.nupkg.sha512", "Microsoft.AspNet.FileProviders.Abstractions.nuspec" ] }, - "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15838": { + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15850": { "type": "package", "serviceable": true, - "sha512": "b1xoB1mY70ut484HmgbbZnu67VX7TKW/YER108xmh9wjN35q/4+AwsIQCNlet41CoRRn+jPr+FTCKpvvmtS9lA==", + "sha512": "MZmcHRJGwI44n17PzWVB+lS8mn8PuNsl40wWDFcQnjtxu/w5Eoqd4BXdHHyso6ascAccsWA3temfLdCFUAocuQ==", "files": [ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll", "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.xml", "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll", "lib/net451/Microsoft.AspNet.FileProviders.Physical.xml", - "Microsoft.AspNet.FileProviders.Physical.1.0.0-rc2-15838.nupkg", - "Microsoft.AspNet.FileProviders.Physical.1.0.0-rc2-15838.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-rc2-15850.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-rc2-15850.nupkg.sha512", "Microsoft.AspNet.FileProviders.Physical.nuspec" ] }, - "Microsoft.AspNet.Hosting/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting/1.0.0-rc2-16044": { "type": "package", "serviceable": true, - "sha512": "63bIOibiLRIs2glyxS2DPhEqJB3meAi3ygDyg4UXl5SI9yURTvfpc7Q4sOlGCxihadwDYZlcXA9uyGMjQF7pOw==", + "sha512": "lF5DD3oJSFvWsoHMhIl5XLEkiYhKHDbWkYB6tLlEMet6c/VcQ1OrLPm8NdL3KbNiXCdQzSkCMSyWKof+QGEWIw==", "files": [ "lib/dnx451/Microsoft.AspNet.Hosting.dll", "lib/dnx451/Microsoft.AspNet.Hosting.xml", @@ -6323,92 +6161,92 @@ "lib/dotnet5.4/Microsoft.AspNet.Hosting.xml", "lib/net451/Microsoft.AspNet.Hosting.dll", "lib/net451/Microsoft.AspNet.Hosting.xml", - "Microsoft.AspNet.Hosting.1.0.0-rc2-16032.nupkg", - "Microsoft.AspNet.Hosting.1.0.0-rc2-16032.nupkg.sha512", + "Microsoft.AspNet.Hosting.1.0.0-rc2-16044.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-rc2-16044.nupkg.sha512", "Microsoft.AspNet.Hosting.nuspec" ] }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { "type": "package", "serviceable": true, - "sha512": "C5rsiJAQvewPLq1SXtLp8mj1avE3W44ihYgCPgDjuLTII6X13dsDzoq+tx9Mvrpo0aKLMvkwYXvuISsXNGG8Kw==", + "sha512": "w28elxT0ns/EOETRutr7cunGb7yrZtfKsbrrbT8gdkGmAaJRjx+kqFYSMCknSfOffxQWla4kaVtXK3g0rRKcLQ==", "files": [ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll", "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.xml", "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll", "lib/net451/Microsoft.AspNet.Hosting.Abstractions.xml", - "Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc2-16032.nupkg", - "Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc2-16032.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc2-16044.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc2-16044.nupkg.sha512", "Microsoft.AspNet.Hosting.Abstractions.nuspec" ] }, - "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16032": { + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16044": { "type": "package", "serviceable": true, - "sha512": "BaOStFGOTmNRwRRUSCinwADLrRpaXhM5ArkRD/XrMcjfnFZnYBjdCnjg33PQtVe2zPh1+5kI0V0tB6ZUT3OE2Q==", + "sha512": "k0rVJxwlExI8ntzuDm94w2HAoxtOLBohmvOCHketfu5YuBBujOZU6ogVOeTf4l4dgjtKXcWuh1vQhkrH9t1dpw==", "files": [ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll", "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.xml", "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll", "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.xml", - "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-rc2-16032.nupkg", - "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-rc2-16032.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-rc2-16044.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-rc2-16044.nupkg.sha512", "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec" ] }, - "Microsoft.AspNet.Http/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http/1.0.0-rc2-16017": { "type": "package", "serviceable": true, - "sha512": "qis1CJr1pHCnIa8XoWuirDY7UtKQy+2RQIz6hbbPU1/MYc1P7SkxUTBoO0m17BtvPZD7Y8lh4q2Ohq+lr4fhaw==", + "sha512": "og1abrbVbvvnsIqg13daRGTpVFcia78YXdo8eTim0/nGnHgQLhl9DmyZiAGWVGonuzc1knO1OfwXs8jnk4vgVA==", "files": [ "lib/dotnet5.4/Microsoft.AspNet.Http.dll", "lib/dotnet5.4/Microsoft.AspNet.Http.xml", "lib/net451/Microsoft.AspNet.Http.dll", "lib/net451/Microsoft.AspNet.Http.xml", - "Microsoft.AspNet.Http.1.0.0-rc2-16009.nupkg", - "Microsoft.AspNet.Http.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.AspNet.Http.1.0.0-rc2-16017.nupkg", + "Microsoft.AspNet.Http.1.0.0-rc2-16017.nupkg.sha512", "Microsoft.AspNet.Http.nuspec" ] }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { "type": "package", "serviceable": true, - "sha512": "nTSnUeiLsYx55rbORWX7MP7dM6tKwUN4LGultn5WEshq9sArC6tjmazB5NYxw3PBb7ptiKsupv3icc1FN5FAgg==", + "sha512": "/00ufa9inL+QbCl/5TqQWRYMF8WtFkyqPgu0XLlebx1uofw6yFbsyD0L8QTLB+MyyNLtRpWjnty+hKD77M1dzA==", "files": [ "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll", "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.xml", "lib/net451/Microsoft.AspNet.Http.Abstractions.dll", "lib/net451/Microsoft.AspNet.Http.Abstractions.xml", - "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16009.nupkg", - "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16017.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16017.nupkg.sha512", "Microsoft.AspNet.Http.Abstractions.nuspec" ] }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { "type": "package", "serviceable": true, - "sha512": "e2HsZ/mON83GhbQDnVC/9/BtO5/gjQfw6wo9v/J950wGk8EUg7jLIAmEiFcGyv0SLYf/7sy2tGtt756KOWwvQw==", + "sha512": "VXTEjuzu6Vo9wPx5RANxAjrR5PAg6mOT8uWGzwsFk07vDmpw2AQI96nUyVlz+gy5ls5790lU+emxrl3TGGl5GA==", "files": [ "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll", "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.xml", "lib/net451/Microsoft.AspNet.Http.Extensions.dll", "lib/net451/Microsoft.AspNet.Http.Extensions.xml", - "Microsoft.AspNet.Http.Extensions.1.0.0-rc2-16009.nupkg", - "Microsoft.AspNet.Http.Extensions.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.1.0.0-rc2-16017.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-rc2-16017.nupkg.sha512", "Microsoft.AspNet.Http.Extensions.nuspec" ] }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { "type": "package", "serviceable": true, - "sha512": "vk/l2BgRDzy2LERj1Oh8Znk6iiPlLlz1O2gREn+cbtiD3P3ATRH1S9MFc7SM1AZR6VSPdZm6exhF1nt3q0EpXg==", + "sha512": "MRrTZIwVGsr9R0Z+4FVihnwZDV6LRWwYPnScsQVDk2BGVg37vW926rZlgbN0UUl+3e1aY6bG67R5isLM1ZkRLA==", "files": [ "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll", "lib/dotnet5.4/Microsoft.AspNet.Http.Features.xml", "lib/net451/Microsoft.AspNet.Http.Features.dll", "lib/net451/Microsoft.AspNet.Http.Features.xml", - "Microsoft.AspNet.Http.Features.1.0.0-rc2-16009.nupkg", - "Microsoft.AspNet.Http.Features.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.AspNet.Http.Features.1.0.0-rc2-16017.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-rc2-16017.nupkg.sha512", "Microsoft.AspNet.Http.Features.nuspec" ] }, @@ -6426,17 +6264,17 @@ "Microsoft.AspNet.WebApi.Client.nuspec" ] }, - "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16009": { + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16017": { "type": "package", "serviceable": true, - "sha512": "/06OvXZXzmIpB2RhUKSAxeGfgiYYQwuqoHdmukN1A/f6aa4QpKd3PC7KQMl6ey13a71qjlsuAALL5W6WO8pOhQ==", + "sha512": "qa3EZgbEo12XZBlrqsFsAWj21mstI3Sn0MFrXW84dAfL39Gu2PvN67Ly8Lu8HxfyPGNdyW+edz/UOvEcnVhpGw==", "files": [ "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll", "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.xml", "lib/net451/Microsoft.AspNet.WebUtilities.dll", "lib/net451/Microsoft.AspNet.WebUtilities.xml", - "Microsoft.AspNet.WebUtilities.1.0.0-rc2-16009.nupkg", - "Microsoft.AspNet.WebUtilities.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.1.0.0-rc2-16017.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-rc2-16017.nupkg.sha512", "Microsoft.AspNet.WebUtilities.nuspec" ] }, @@ -6561,24 +6399,24 @@ "tools/Uninstall.ps1" ] }, - "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16237": { + "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16251": { "type": "package", "serviceable": true, - "sha512": "SbnHCBvCqFU6UVGL/KSaaFkW/0787z6Rq6qgusYenZikTTkWMTAUjrtE/wiSKlm40SL2H1A15wJYRKWa8Y6+zw==", + "sha512": "qA7hM8biWg+cs7B2KpsS7i0/SYjHPUunlTQJkn3xIs4Wr5feVAvYaA3gQoKD3FvTj1f4vInFhTen0+svmT91Xg==", "files": [ "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll", "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.xml", "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll", "lib/net451/Microsoft.Extensions.CompilationAbstractions.xml", - "Microsoft.Extensions.CompilationAbstractions.1.0.0-rc2-16237.nupkg", - "Microsoft.Extensions.CompilationAbstractions.1.0.0-rc2-16237.nupkg.sha512", + "Microsoft.Extensions.CompilationAbstractions.1.0.0-rc2-16251.nupkg", + "Microsoft.Extensions.CompilationAbstractions.1.0.0-rc2-16251.nupkg.sha512", "Microsoft.Extensions.CompilationAbstractions.nuspec" ] }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { "type": "package", "serviceable": true, - "sha512": "MOYgTTWkUXDE2bS76CFIH6E+TytMilisgAJYAcRxRRYAYh/7I45KCuJDCP5l/2NA4mIgfecVUeXTe9EHn7etdA==", + "sha512": "aCoP+JyhiVL7djzbg8peHBF5Rp9GNAlCevqOBPFj92HzZ7R5AiLl8IwC7t7h7iMtAOIkb3wOhcw5tHeVgfw/6Q==", "files": [ "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll", "lib/dotnet5.4/Microsoft.Extensions.Configuration.xml", @@ -6586,15 +6424,15 @@ "lib/net451/Microsoft.Extensions.Configuration.xml", "lib/netcore50/Microsoft.Extensions.Configuration.dll", "lib/netcore50/Microsoft.Extensions.Configuration.xml", - "Microsoft.Extensions.Configuration.1.0.0-rc2-15866.nupkg", - "Microsoft.Extensions.Configuration.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Configuration.1.0.0-rc2-15878.nupkg.sha512", "Microsoft.Extensions.Configuration.nuspec" ] }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { "type": "package", "serviceable": true, - "sha512": "mCbiKPorBDupxnYahPCdAMbEr+5j8mzuZVrUzjhPAnnFA94POhZ2US+gdf2exDhLzIM0cDy0mUSVWIjlcIr1QA==", + "sha512": "ZghpJY8CfNITWXK2VC+uRmUu0apjzhI9GblCXOUpZLLWtD7+wMFw9VSvaEKEwaKIF1uBN3ucsSBkjuMUDz3JfQ==", "files": [ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll", "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.xml", @@ -6602,15 +6440,15 @@ "lib/net451/Microsoft.Extensions.Configuration.Abstractions.xml", "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.dll", "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.xml", - "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15866.nupkg", - "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15878.nupkg.sha512", "Microsoft.Extensions.Configuration.Abstractions.nuspec" ] }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { "type": "package", "serviceable": true, - "sha512": "2wI+qIu9YedvCLfep2RxBTYyAqy6Mkr9bVJwzZBHw7yg/GEpCXeOhppWvEXEd/I6sqWWUB+fYNnZtm5h9NlH8A==", + "sha512": "b6PmeXivNR0LIHeYau4nqZD5/6+fTa56duhpCIKjUASRb8BCyIYbgkEVBtLBpoDPTl3IUC51u7Kg7vIV0OPJgg==", "files": [ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll", "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.xml", @@ -6618,15 +6456,15 @@ "lib/net451/Microsoft.Extensions.Configuration.Binder.xml", "lib/netcore50/Microsoft.Extensions.Configuration.Binder.dll", "lib/netcore50/Microsoft.Extensions.Configuration.Binder.xml", - "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15866.nupkg", - "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15878.nupkg.sha512", "Microsoft.Extensions.Configuration.Binder.nuspec" ] }, - "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15878": { "type": "package", "serviceable": true, - "sha512": "fGAWrjoUaCS8u9o9/cfvkbQncDHHfj+dtt3xyK/nadORPlZK0KihI9m4dCelNVUJypGL/l6skWJ6MQemYUYc6g==", + "sha512": "vsWP8ZzpmGroht2mbpNHNV70f4R8G7MnCYVSQou/4KQ3rgvu1H0Nm/krhKn2eFlC8qKiWKeoaW7rwLOivN58EQ==", "files": [ "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll", "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.xml", @@ -6634,15 +6472,15 @@ "lib/net451/Microsoft.Extensions.Configuration.CommandLine.xml", "lib/netcore50/Microsoft.Extensions.Configuration.CommandLine.dll", "lib/netcore50/Microsoft.Extensions.Configuration.CommandLine.xml", - "Microsoft.Extensions.Configuration.CommandLine.1.0.0-rc2-15866.nupkg", - "Microsoft.Extensions.Configuration.CommandLine.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.CommandLine.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Configuration.CommandLine.1.0.0-rc2-15878.nupkg.sha512", "Microsoft.Extensions.Configuration.CommandLine.nuspec" ] }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15878": { "type": "package", "serviceable": true, - "sha512": "395LAk6wMQRjJduuoQndFbNZ+54GdR4ix7V0klbNChrJOacDFZLoklIfZL31AcHDFhjgdfz/Yj54CW03mDRmbA==", + "sha512": "rsP6AG4RohFTx/madT97sXj1qhdvPWufBR+sxJIwIpdPcAdHJEBIMqL5Jqw3vTz8fquo52reArkqwGCw8XEWWA==", "files": [ "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", @@ -6650,15 +6488,15 @@ "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", "lib/netcore50/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", "lib/netcore50/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", - "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0-rc2-15866.nupkg", - "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0-rc2-15878.nupkg.sha512", "Microsoft.Extensions.Configuration.EnvironmentVariables.nuspec" ] }, - "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15878": { "type": "package", "serviceable": true, - "sha512": "/xJLXXsnSJfOGgEZSfEuhba7Tkjics1aTSWM2kHU/rmhrT3Q4s6z6IyiTQRT5UKN9w6KjeLfhMUn9/BXIcXFqQ==", + "sha512": "HUZpsiqOvstHGEdDBCGmzUM7GUCQeWwCh27S5PgwZz8NQaZgkoGLwAXXjNz6ql61jDbKSrXykt5h9HvOVk3lVg==", "files": [ "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll", "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.xml", @@ -6666,15 +6504,15 @@ "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.xml", "lib/netcore50/Microsoft.Extensions.Configuration.FileExtensions.dll", "lib/netcore50/Microsoft.Extensions.Configuration.FileExtensions.xml", - "Microsoft.Extensions.Configuration.FileExtensions.1.0.0-rc2-15866.nupkg", - "Microsoft.Extensions.Configuration.FileExtensions.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.FileExtensions.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Configuration.FileExtensions.1.0.0-rc2-15878.nupkg.sha512", "Microsoft.Extensions.Configuration.FileExtensions.nuspec" ] }, - "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15866": { + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15878": { "type": "package", "serviceable": true, - "sha512": "vjhu58czkKnU4YNpHiK9nk0crekirHGR31yGpB757fnMCMeOIrfijgR+y+t0MZTyAJITj0NGWOrXLrQM09hgUg==", + "sha512": "LdrjLMmC7xeVA+sU+2M0ypShrIWuThY5BFpyqWwjugkt9ZHp498d14PDOIdWUbApBQ4pcdCD+AWggxMUywTPrw==", "files": [ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll", "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.xml", @@ -6682,15 +6520,15 @@ "lib/net451/Microsoft.Extensions.Configuration.Json.xml", "lib/netcore50/Microsoft.Extensions.Configuration.Json.dll", "lib/netcore50/Microsoft.Extensions.Configuration.Json.xml", - "Microsoft.Extensions.Configuration.Json.1.0.0-rc2-15866.nupkg", - "Microsoft.Extensions.Configuration.Json.1.0.0-rc2-15866.nupkg.sha512", + "Microsoft.Extensions.Configuration.Json.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Configuration.Json.1.0.0-rc2-15878.nupkg.sha512", "Microsoft.Extensions.Configuration.Json.nuspec" ] }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { "type": "package", "serviceable": true, - "sha512": "cuFxC3SPMIOIX+uUHo9QEri+P9DC6CPkLltJRq2qwgjFIMQ8uJ9nJI6HUYZpEU2Kyh6nm2DIrVSnjG5ycsk9cQ==", + "sha512": "YlryeceF4o9LBefeAlBc+t+zu8zyFnRYygOSHIWY748rLgTo1yxC5A0AQKdQg7Gr8qokAsYeunGLJZJkvedvnQ==", "files": [ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll", "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.xml", @@ -6698,15 +6536,15 @@ "lib/net451/Microsoft.Extensions.DependencyInjection.xml", "lib/netcore50/Microsoft.Extensions.DependencyInjection.dll", "lib/netcore50/Microsoft.Extensions.DependencyInjection.xml", - "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15839.nupkg", - "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15839.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15848.nupkg", + "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15848.nupkg.sha512", "Microsoft.Extensions.DependencyInjection.nuspec" ] }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { "type": "package", "serviceable": true, - "sha512": "JxM3ERvmmjQqRNfQlTeXnjWAqrIzoe+x5alZLuSOw2b5p/191vObRKi0SuFmFvBi/mPoHYqth6cLwSLTASeD3Q==", + "sha512": "ByRDREn2PEch1loDjkPR27y37ncJMMzw8YTR3x07wEcMIsBEpvZuSyXS/+9AHaikLJicDqpsliSxF7dQOuashw==", "files": [ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.xml", @@ -6714,29 +6552,29 @@ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.xml", "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15839.nupkg", - "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15839.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15848.nupkg", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15848.nupkg.sha512", "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec" ] }, - "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15849": { + "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15858": { "type": "package", "serviceable": true, - "sha512": "YDraz9d4XGfwXELp9UYbJ8TBviMj6yF13a5nBGaprokkf09bGYFWGyIkOprelqpjHIXh7dy65b4UnxzZ8P1gYg==", + "sha512": "RvGrwoUMo9oRZ/FklY0z+d+p8a20OSsSnan07LLk4UxgU7Lp33H/tqn4mPWB/dy5JznjTk0Z7na7f3Z4iGxzKQ==", "files": [ "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll", "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.xml", "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll", "lib/net451/Microsoft.Extensions.DiagnosticAdapter.xml", - "Microsoft.Extensions.DiagnosticAdapter.1.0.0-rc2-15849.nupkg", - "Microsoft.Extensions.DiagnosticAdapter.1.0.0-rc2-15849.nupkg.sha512", + "Microsoft.Extensions.DiagnosticAdapter.1.0.0-rc2-15858.nupkg", + "Microsoft.Extensions.DiagnosticAdapter.1.0.0-rc2-15858.nupkg.sha512", "Microsoft.Extensions.DiagnosticAdapter.nuspec" ] }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { + "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { "type": "package", "serviceable": true, - "sha512": "jwr1ZH/IUqG6kLpSi8lUueZB/JFQWJUNMjPgpfObmaW7/mfl83/6qDhm7I6Z9Ix0ULjWDEAGmaHTykE06bB/eA==", + "sha512": "eUzCGY2Seie8aFLZbk5MC3w6lITF2HMry9WGWeGXvRZ6+7HiSEirzEMaViQNclkjopoGZeYv8WkyFUd49KOmlA==", "files": [ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll", "lib/dotnet5.4/Microsoft.Extensions.Logging.xml", @@ -6744,15 +6582,15 @@ "lib/net451/Microsoft.Extensions.Logging.xml", "lib/netcore50/Microsoft.Extensions.Logging.dll", "lib/netcore50/Microsoft.Extensions.Logging.xml", - "Microsoft.Extensions.Logging.1.0.0-rc2-15867.nupkg", - "Microsoft.Extensions.Logging.1.0.0-rc2-15867.nupkg.sha512", + "Microsoft.Extensions.Logging.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Logging.1.0.0-rc2-15878.nupkg.sha512", "Microsoft.Extensions.Logging.nuspec" ] }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { "type": "package", "serviceable": true, - "sha512": "f37cph4Ec/2fSoy1kQUVICI7vx7JT+aPrBoePXVncsoFssNWzLbOpQ4Jwb9Gntd1qRKpAWyH/OsSdGHjV3rCSA==", + "sha512": "MqLYvcSTwS8d+MHwehEduLOmcIEupGMDDn8Y7U3LTAbE6z8/9dwOuWaexmXrxsuMJH0Yx0WVYGrt73W5uFqO7Q==", "files": [ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll", "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.xml", @@ -6760,15 +6598,15 @@ "lib/net451/Microsoft.Extensions.Logging.Abstractions.xml", "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.dll", "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.xml", - "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15867.nupkg", - "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15867.nupkg.sha512", + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15878.nupkg.sha512", "Microsoft.Extensions.Logging.Abstractions.nuspec" ] }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { "type": "package", "serviceable": true, - "sha512": "YHgRu79p6vbxr5BvnwD0vb2j96EQiNlZjMpra0VdUWYx7jB1Z8M9qB5OBF1ZUgiUVaGmwKFukd4EDqw4sS8MDA==", + "sha512": "FHjS7AlUW/GXIyzvOooy2C99r31mr31dSlShxzbcP3461AvmkbhDbjWy3ryF1o3D61azxgxD6V695Apb4+XZ9A==", "files": [ "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll", "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.xml", @@ -6776,29 +6614,29 @@ "lib/net451/Microsoft.Extensions.OptionsModel.xml", "lib/netcore50/Microsoft.Extensions.OptionsModel.dll", "lib/netcore50/Microsoft.Extensions.OptionsModel.xml", - "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15848.nupkg", - "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15848.nupkg.sha512", + "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15858.nupkg", + "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15858.nupkg.sha512", "Microsoft.Extensions.OptionsModel.nuspec" ] }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16251": { "type": "package", "serviceable": true, - "sha512": "BtXxSh8IrQDGNjuLago+2LQ2UEC7Up8oHS6U30HY4sR2UlOauY5RGNafffLz5DzMoHfs02eDeu9saRViXjxBxQ==", + "sha512": "arE3sevKLvnAzK9Pb+cNQQC0Rw2XOlKiaWLldk24/HH5xDJkfAaWsjdiL3qNnp7fik2K/BuGiJDMFw6beeBRkw==", "files": [ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll", "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.xml", "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll", "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml", - "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16237.nupkg", - "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16237.nupkg.sha512", + "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16251.nupkg", + "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16251.nupkg.sha512", "Microsoft.Extensions.PlatformAbstractions.nuspec" ] }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { + "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { "type": "package", "serviceable": true, - "sha512": "ImxZgBrbQStbBlGvR59w7euRE4pKIaKURQT8v70SwWZgrvecl9qXFxuJeoyLhwDBxErF1vdW2QJU7GHFdKZTaA==", + "sha512": "bQVTEkMiBxWN80ta2MgXa1rSURTxVL7EQDYdJT/Ng+XiiN4wShTKpVLvm1tHfFA6FCqjzEvWtx9Ps3MwlDDClQ==", "files": [ "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll", "lib/dotnet5.4/Microsoft.Extensions.Primitives.xml", @@ -6806,8 +6644,8 @@ "lib/net451/Microsoft.Extensions.Primitives.xml", "lib/netcore50/Microsoft.Extensions.Primitives.dll", "lib/netcore50/Microsoft.Extensions.Primitives.xml", - "Microsoft.Extensions.Primitives.1.0.0-rc2-15889.nupkg", - "Microsoft.Extensions.Primitives.1.0.0-rc2-15889.nupkg.sha512", + "Microsoft.Extensions.Primitives.1.0.0-rc2-15898.nupkg", + "Microsoft.Extensions.Primitives.1.0.0-rc2-15898.nupkg.sha512", "Microsoft.Extensions.Primitives.nuspec" ] }, @@ -6875,17 +6713,17 @@ "Microsoft.Net.Http.nuspec" ] }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { + "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { "type": "package", "serviceable": true, - "sha512": "MeGgbca6En71j+SG34w3Xk4wlOyBdrw/wKpJd15z5DtWqUWVMyPCN2xxeWKhsxmP76wj3fngL4QrgubYN27tzw==", + "sha512": "/RzqzyYYXQMQfJzuwP3JNAw/QbIX71Hu+rbzOaSoxz36BihDrFPrUrOudtGaahExV9l7o455uk5TGVtmMc8byg==", "files": [ "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll", "lib/dotnet5.4/Microsoft.Net.Http.Headers.xml", "lib/net451/Microsoft.Net.Http.Headers.dll", "lib/net451/Microsoft.Net.Http.Headers.xml", - "Microsoft.Net.Http.Headers.1.0.0-rc2-16009.nupkg", - "Microsoft.Net.Http.Headers.1.0.0-rc2-16009.nupkg.sha512", + "Microsoft.Net.Http.Headers.1.0.0-rc2-16017.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-rc2-16017.nupkg.sha512", "Microsoft.Net.Http.Headers.nuspec" ] }, @@ -6945,10 +6783,10 @@ "tools/install.ps1" ] }, - "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { + "runtime.any.System.Linq.Expressions/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "m2rDRsf1hcnaUlhKgF9op2UmADh1/5nJpfBJHkKPK46C6s2dI3LAJ0LpAIw1arW9xJDd2P//5gdvUFRGBRRang==", + "sha512": "AOWTXm/65MX4ACmWpgcZ3C7Q0oWb19J5ZyuWjchUMKfT5stozvfEfDFOwdZqvAPNC4+uF1Bvsnsa5lgRliNQLw==", "files": [ "lib/DNXCore50/System.Linq.Expressions.dll", "lib/MonoAndroid10/_._", @@ -6961,72 +6799,72 @@ "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/_._", - "runtime.any.System.Linq.Expressions.4.0.11-rc2-23525.nupkg", - "runtime.any.System.Linq.Expressions.4.0.11-rc2-23525.nupkg.sha512", + "runtime.any.System.Linq.Expressions.4.0.11-rc2-23601.nupkg", + "runtime.any.System.Linq.Expressions.4.0.11-rc2-23601.nupkg.sha512", "runtime.any.System.Linq.Expressions.nuspec", "runtimes/aot/lib/netcore50/_._" ] }, - "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "H8lMtaHAPFEjWCfOZyPwN7ctkAxC3vN65x+gzaUfcPBLrHMLaqT3qsNy5H3c66oFGt3NOCm4WEYlvjeYjd8/sQ==", + "sha512": "yQdfnpkk9iFZth6cLCzjnB2nBEDW5HcN7LX4/gV/oxUOZXRtIyHnbaMMQmASkPJTwtzppXhHAI2QHwKtk37rkA==", "files": [ "ref/dotnet/_._", - "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg", - "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23601.nupkg", + "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23601.nupkg.sha512", "runtime.win.System.Runtime.InteropServices.RuntimeInformation.nuspec", "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll" ] }, - "runtime.win7.System.Console/4.0.0-rc2-23525": { + "runtime.win7.System.Console/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "61pTms2XLekse3lSpQ5fvs98Rgs1ydk18TgPmy6fq9jfP2uuLWyRbxul1Kb/keI3BygVabUvwly9Bjg0Vu94jQ==", + "sha512": "BP93EhDm764GiGj4GLa4tpI1y8WVRXARtpSkcIoqEqrwTuj/+yb4NcvuGMU8qXVm4PCqNBkg0n4gFIQy0/gvbg==", "files": [ "ref/dotnet/_._", - "runtime.win7.System.Console.4.0.0-rc2-23525.nupkg", - "runtime.win7.System.Console.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win7.System.Console.4.0.0-rc2-23601.nupkg", + "runtime.win7.System.Console.4.0.0-rc2-23601.nupkg.sha512", "runtime.win7.System.Console.nuspec", "runtimes/win7/lib/dotnet5.4/System.Console.dll", "runtimes/win7/lib/net/_._" ] }, - "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { + "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "6txhz00DQayySs37jFHBE7C0O5dpTmlZrCxJLDdukcyKpHnyhNCOEKz6r+93mFeziRY6Lf4f3K7XgnvN/1vPJQ==", + "sha512": "GtlWcIP5u8GqswrMHIOCPBYVEEsCjDoY21w/l09ru080J4VZU4KTQfYPudB1h0JXWHFBfv0PG1hd485rj3L/iA==", "files": [ "ref/dotnet/_._", - "runtime.win7.System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg", - "runtime.win7.System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg.sha512", + "runtime.win7.System.Diagnostics.Debug.4.0.11-rc2-23601.nupkg", + "runtime.win7.System.Diagnostics.Debug.4.0.11-rc2-23601.nupkg.sha512", "runtime.win7.System.Diagnostics.Debug.nuspec", "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll", "runtimes/win7/lib/netcore50/System.Diagnostics.Debug.dll", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" ] }, - "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { + "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "KjAFrVUkamkrAYajk+bpM5qhZ5UzAMVS1jlR4fW6keFk8ltp57PfivcBGRDbQDhCMzUVIjEFQ5RHXIsLOgpZHg==", + "sha512": "pmN1JC2p+oWocr5r4LUkuIfL5erOHHr8vxzvcAmtm6Jyq2lQ3ih6j9EiBtu/vcT7dBhwLMmDUnx4Uwl7SQEukw==", "files": [ "ref/dotnet/_._", - "runtime.win7.System.Globalization.Extensions.4.0.1-rc2-23525.nupkg", - "runtime.win7.System.Globalization.Extensions.4.0.1-rc2-23525.nupkg.sha512", + "runtime.win7.System.Globalization.Extensions.4.0.1-rc2-23601.nupkg", + "runtime.win7.System.Globalization.Extensions.4.0.1-rc2-23601.nupkg.sha512", "runtime.win7.System.Globalization.Extensions.nuspec", "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll", "runtimes/win7/lib/net/_._" ] }, - "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { + "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "Rk2nN279viCiNX+a05TDaZAWxtp1Kl/NytR4jT75dM24niwhNtLVpDq3mZ6L8AV0lSnkd6UeHhMOrcbMhoiHyg==", + "sha512": "3YILGEkZwKzNrcO1OoEXE2CpQgGzUm7oQyKmVEVc0rEindCCYHmdFOxULvphp/onoOXtfpTxdCkQn9XxLr6EnA==", "files": [ "ref/dotnet/_._", - "runtime.win7.System.IO.FileSystem.4.0.1-rc2-23525.nupkg", - "runtime.win7.System.IO.FileSystem.4.0.1-rc2-23525.nupkg.sha512", + "runtime.win7.System.IO.FileSystem.4.0.1-rc2-23601.nupkg", + "runtime.win7.System.IO.FileSystem.4.0.1-rc2-23601.nupkg.sha512", "runtime.win7.System.IO.FileSystem.nuspec", "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll", "runtimes/win7/lib/net/_._", @@ -7036,14 +6874,14 @@ "runtimes/win7/lib/wpa81/_._" ] }, - "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-rc2-23525": { + "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "P7gihPiu9v9V9TzAmY/+9532/HOIRTyViksJFf+08dRz882ugN96vR8halkcr+1kP2PvYEr35rNCp2ZffrWzHg==", + "sha512": "HV0e913ApoICaupGcq/UXGwWKIUA9j8wrX3kkza7jeCbCjDMq/fNcMojowgSKdrQDeMMUnS2ZrQ0wAW2r70azA==", "files": [ "ref/dotnet/_._", - "runtime.win7.System.IO.FileSystem.Watcher.4.0.0-rc2-23525.nupkg", - "runtime.win7.System.IO.FileSystem.Watcher.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win7.System.IO.FileSystem.Watcher.4.0.0-rc2-23601.nupkg", + "runtime.win7.System.IO.FileSystem.Watcher.4.0.0-rc2-23601.nupkg.sha512", "runtime.win7.System.IO.FileSystem.Watcher.nuspec", "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.Watcher.dll", "runtimes/win7/lib/net/_._", @@ -7053,81 +6891,81 @@ "runtimes/win7/lib/wpa81/_._" ] }, - "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { + "runtime.win7.System.Net.Primitives/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "fQXiEWBBAf85oQrn/PhE5h0x1Bz2MsQLzFnsmPHXK3F52aCXSfA8XG7d9/P4M635T6YuZz4Hl4RmJdFYoO84Ww==", + "sha512": "9/IcmwQl4yGdg6e6jkY3+PM14Hs6DB9603/usVj78jNNnJMX2tjI9uAjjuh0h+vn1zML+G3vZk36Pz5VwWv5Cw==", "files": [ "lib/DNXCore50/System.Net.Primitives.dll", "ref/dotnet/_._", - "runtime.win7.System.Net.Primitives.4.0.11-rc2-23525.nupkg", - "runtime.win7.System.Net.Primitives.4.0.11-rc2-23525.nupkg.sha512", + "runtime.win7.System.Net.Primitives.4.0.11-rc2-23601.nupkg", + "runtime.win7.System.Net.Primitives.4.0.11-rc2-23601.nupkg.sha512", "runtime.win7.System.Net.Primitives.nuspec", "runtimes/win7/lib/netcore50/System.Net.Primitives.dll" ] }, - "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { + "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "o9yhni1ibV4TZ8pDXnGWrbdYUN0vDTqjC08fBoNF/iHtg4m5TNATIaEVDXOF1ny1ymyfZE/6VRC7m2twuWD/+A==", + "sha512": "9LjxwVk7p+RRg37/VvgXQmPEjgrp1H0Yn6NX5yW5cJzC1ON7KXTeaBrVgO6ILHd4260iD1vVmJ4bpGJL0kjDXg==", "files": [ "lib/DNXCore50/System.Runtime.Extensions.dll", "lib/netcore50/System.Runtime.Extensions.dll", "ref/dotnet/_._", - "runtime.win7.System.Runtime.Extensions.4.0.11-rc2-23525.nupkg", - "runtime.win7.System.Runtime.Extensions.4.0.11-rc2-23525.nupkg.sha512", + "runtime.win7.System.Runtime.Extensions.4.0.11-rc2-23601.nupkg", + "runtime.win7.System.Runtime.Extensions.4.0.11-rc2-23601.nupkg.sha512", "runtime.win7.System.Runtime.Extensions.nuspec", "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" ] }, - "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "OZghF4dY+gj/IhXj1FOrlDI//lEb0q9/Y/5GPftSotrk/sDRMpiflbAzVziNCkvOnDPowaU+kayZGCLU9zMRqA==", + "sha512": "4W3bNz1Gwq8WcWiAdgSuM9I8ssk4mqRhQYzJ6V5gYt8UFhxvfp/orbR4fgiCo4K83MKuN01TSRuptAhgTgH4OA==", "files": [ "ref/dotnet/_._", - "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg", - "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-rc2-23601.nupkg", + "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-rc2-23601.nupkg.sha512", "runtime.win7.System.Security.Cryptography.Algorithms.nuspec", "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll", "runtimes/win7/lib/net/_._" ] }, - "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "fwjrSecPvxUhksPU8iIxjY8z5akm/KqTTCUWEETuka9WkaFCU1ktrqJI/UJrn+ImXBv87MbLYBblixdAYAr75g==", + "sha512": "cmBrDSiTinLQ73piaAqRn/uHC0Phx7aW8YaRdIrusprs5Ne7PeDpsayGkpCqEkWKkZfZO4g0qW3eJqMxVufxfA==", "files": [ "ref/dotnet/_._", - "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg", - "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-rc2-23601.nupkg", + "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-rc2-23601.nupkg.sha512", "runtime.win7.System.Security.Cryptography.Encoding.nuspec", "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll", "runtimes/win7/lib/net/_._" ] }, - "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "MstJY/cwJg4HYbUk+z+m8r1Ffw14Nsm8DD7QNxtNfXI99eFfvjDhn7ur8S7m5nTBk23EPsUfN9VAFESXTrv2fw==", + "sha512": "6r2+mS9KQSzEWfAoRchsbPsp4W4I3EMF0QgFXi69Tv/WwXD5dStN9Fg8yY8TRiJeiIP9XsvOOvtLhBYJ9ZLnTA==", "files": [ "ref/dotnet/_._", - "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg", - "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-rc2-23601.nupkg", + "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-rc2-23601.nupkg.sha512", "runtime.win7.System.Security.Cryptography.X509Certificates.nuspec", "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll", "runtimes/win7/lib/net/_._", "runtimes/win7/lib/netcore50/System.Security.Cryptography.X509Certificates.dll" ] }, - "runtime.win7.System.Threading/4.0.11-rc2-23525": { + "runtime.win7.System.Threading/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "gYFmKqjSPB2E2PpyEehCvovB6pPiRJbw04DwViGE7FGyrE0J9VsdeFTeIpzWcKiTg5pzdlvmUg100MIxfYWrjA==", + "sha512": "+aJ4LUesUTGurl7aBWl3S4MvE/W7oxpoEqQuKYpH3nmHd1JENfG6T2P6aqvxeTBhKm9efvrlN7w5/EEdiAsC3g==", "files": [ "ref/dotnet/_._", - "runtime.win7.System.Threading.4.0.11-rc2-23525.nupkg", - "runtime.win7.System.Threading.4.0.11-rc2-23525.nupkg.sha512", + "runtime.win7.System.Threading.4.0.11-rc2-23601.nupkg", + "runtime.win7.System.Threading.4.0.11-rc2-23601.nupkg.sha512", "runtime.win7.System.Threading.nuspec", "runtimes/win7/lib/DNXCore50/System.Threading.dll", "runtimes/win7/lib/netcore50/System.Threading.dll", @@ -7250,10 +7088,10 @@ "Rx-PlatformServices.nuspec" ] }, - "System.AppContext/4.0.1-rc2-23525": { + "System.AppContext/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "1AErxnp8ORCt1JmFgddMK5xYzIgfFE8yPRXXLRAHv43Dj6oHGsdE0sz4eB+lBkbLrzd+MWd/FJc6/t0It6qJxw==", + "sha512": "2ulHAa7pz43bQyHeqEaPN2HP5ukbUv9WR0erC7G3B+4kvApU9JlrTsr1KBvSt6z+35gbM+r56CPDpNSlxcG8cA==", "files": [ "lib/DNXCore50/System.AppContext.dll", "lib/MonoAndroid10/_._", @@ -7278,15 +7116,15 @@ "ref/net46/System.AppContext.dll", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "System.AppContext.4.0.1-rc2-23525.nupkg", - "System.AppContext.4.0.1-rc2-23525.nupkg.sha512", + "System.AppContext.4.0.1-rc2-23601.nupkg", + "System.AppContext.4.0.1-rc2-23601.nupkg.sha512", "System.AppContext.nuspec" ] }, - "System.Collections/4.0.11-rc2-23525": { + "System.Collections/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "xJmMbyH4afnSkGiOhTiSyAWL6j45yYDG3l63D3peganrFKvzln1ks7SGfERzBEPqKFHBDoJ7TlRpJQp40wJNUA==", + "sha512": "L4+/Uv1hxnW4hqYfB2N4SFaWeKzO1S0Q1ed/NetLcL/KQXzRLuVn7ifY8Gn1feu0xx46AarDP92iU2c6NzxcWA==", "files": [ "lib/DNXCore50/System.Collections.dll", "lib/MonoAndroid10/_._", @@ -7340,15 +7178,15 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtimes/win8-aot/lib/netcore50/System.Collections.dll", - "System.Collections.4.0.11-rc2-23525.nupkg", - "System.Collections.4.0.11-rc2-23525.nupkg.sha512", + "System.Collections.4.0.11-rc2-23601.nupkg", + "System.Collections.4.0.11-rc2-23601.nupkg.sha512", "System.Collections.nuspec" ] }, - "System.Collections.Concurrent/4.0.11-rc2-23525": { + "System.Collections.Concurrent/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "rJUILubHbGrHU1CNoZwUpJQjTL5XgG7BNT5hwQbN9fNLIWh/8t6jqUNE6pGoEg/N/l8vBeFXwfVnzrjAlFfTHA==", + "sha512": "JGENptUKc1yFRNl1/48wEnHmFNVGIaM0HpF/+knGaDyMq9M6iukkkMEXstWtTLGiyZcufpWnKVJhZS/dVmpLVg==", "files": [ "lib/dotnet5.4/System.Collections.Concurrent.dll", "lib/MonoAndroid10/_._", @@ -7399,22 +7237,26 @@ "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "System.Collections.Concurrent.4.0.11-rc2-23525.nupkg", - "System.Collections.Concurrent.4.0.11-rc2-23525.nupkg.sha512", + "System.Collections.Concurrent.4.0.11-rc2-23601.nupkg", + "System.Collections.Concurrent.4.0.11-rc2-23601.nupkg.sha512", "System.Collections.Concurrent.nuspec" ] }, - "System.ComponentModel/4.0.1-rc2-23525": { + "System.ComponentModel/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "QJ3RnKbTPqJ64NH+VQ15URBa0XlJHUdM6whX1C12nLhdJ48c4P1lMpJCWHxPbUJuj4MCn+0eAqUxi4UZ/hzokA==", + "sha512": "HTuyUHo+Kit2+r8+pI6SdhpY7K4IOm6KqvdHBmUr+l7PvzPDPJm5W/jZpS8rmzxd7U2IZJv9rdAMQC3QOgW/uQ==", "files": [ "lib/dotnet5.4/System.ComponentModel.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", "lib/net45/_._", "lib/netcore50/System.ComponentModel.dll", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", "ref/dotnet5.1/de/System.ComponentModel.xml", "ref/dotnet5.1/es/System.ComponentModel.xml", "ref/dotnet5.1/fr/System.ComponentModel.xml", @@ -7426,6 +7268,8 @@ "ref/dotnet5.1/System.ComponentModel.xml", "ref/dotnet5.1/zh-hans/System.ComponentModel.xml", "ref/dotnet5.1/zh-hant/System.ComponentModel.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", "ref/net45/_._", "ref/netcore50/de/System.ComponentModel.xml", "ref/netcore50/es/System.ComponentModel.xml", @@ -7441,8 +7285,10 @@ "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", - "System.ComponentModel.4.0.1-rc2-23525.nupkg", - "System.ComponentModel.4.0.1-rc2-23525.nupkg.sha512", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.4.0.1-rc2-23601.nupkg", + "System.ComponentModel.4.0.1-rc2-23601.nupkg.sha512", "System.ComponentModel.nuspec" ] }, @@ -7478,10 +7324,10 @@ "System.ComponentModel.Primitives.nuspec" ] }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { + "System.ComponentModel.TypeConverter/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "ZLOBeLIwqn7QcQvcy87DUJIfYtToNkp7mqzw9j27FKFG4C6oeiM63aPj41D4B78t6VNp9N1dUGybApOaIhrX5A==", + "sha512": "skmANI/0xmFTohXjbhlvtanEH+Rbim9fBm2IXCX3SzCJpJgfUiITxPkdxyuTdCs0eY4YfYf5YXmf2pxZ7iT7IA==", "files": [ "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll", "lib/MonoAndroid10/_._", @@ -7505,15 +7351,15 @@ "ref/net45/System.ComponentModel.TypeConverter.dll", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "System.ComponentModel.TypeConverter.4.0.1-rc2-23525.nupkg", - "System.ComponentModel.TypeConverter.4.0.1-rc2-23525.nupkg.sha512", + "System.ComponentModel.TypeConverter.4.0.1-rc2-23601.nupkg", + "System.ComponentModel.TypeConverter.4.0.1-rc2-23601.nupkg.sha512", "System.ComponentModel.TypeConverter.nuspec" ] }, - "System.Console/4.0.0-rc2-23525": { + "System.Console/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "ayoM54TltBsmGiH4U4vq4OukgUWesBraaMpaRlA1epjQgDVIVCrtSCsUr603ICPJqU2EdpX4/rFnQFys0DEtqg==", + "sha512": "hDAx1n3VV+89HvapnW+dNQjJteqacKnJDv1uPVeZx/8qhuZcZvg2xsSIuf5F5fc6J6Z+KnXAyTyoeDQgzsgcXQ==", "files": [ "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -7537,22 +7383,26 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "System.Console.4.0.0-rc2-23525.nupkg", - "System.Console.4.0.0-rc2-23525.nupkg.sha512", + "System.Console.4.0.0-rc2-23601.nupkg", + "System.Console.4.0.0-rc2-23601.nupkg.sha512", "System.Console.nuspec" ] }, - "System.Diagnostics.Contracts/4.0.1-rc2-23525": { + "System.Diagnostics.Contracts/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "uhZEFk/Gp276noaTo3R2xwQsrA/k0Sq3O/ov4D4Io4OHmCzXwRXOk24y9J/ZgwuSn0PMaoxiYH7knPvgPeYMTQ==", + "sha512": "y8ONydrPZ04lKMyVgBNKsSfGSqBDK0LkcUPFWjjsAP05vRhhekDMmljO+uK4dxqY26ArZo2YGEEIpSAmfwk2Rw==", "files": [ "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", "lib/net45/_._", "lib/netcore50/System.Diagnostics.Contracts.dll", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", "ref/dotnet5.1/de/System.Diagnostics.Contracts.xml", "ref/dotnet5.1/es/System.Diagnostics.Contracts.xml", "ref/dotnet5.1/fr/System.Diagnostics.Contracts.xml", @@ -7564,6 +7414,8 @@ "ref/dotnet5.1/System.Diagnostics.Contracts.xml", "ref/dotnet5.1/zh-hans/System.Diagnostics.Contracts.xml", "ref/dotnet5.1/zh-hant/System.Diagnostics.Contracts.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", "ref/net45/_._", "ref/netcore50/de/System.Diagnostics.Contracts.xml", "ref/netcore50/es/System.Diagnostics.Contracts.xml", @@ -7579,64 +7431,18 @@ "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", - "System.Diagnostics.Contracts.4.0.1-rc2-23525.nupkg", - "System.Diagnostics.Contracts.4.0.1-rc2-23525.nupkg.sha512", - "System.Diagnostics.Contracts.nuspec" - ] - }, - "System.Diagnostics.Debug/4.0.0": { - "type": "package", - "sha512": "AYJsLLGDVTC/nyURjgAo7Lpye0+HuSkcQujUf+NgQVdC/C/ky5NyamQHCforHJzgqspitMMtBe8B4UBdGXy1zQ==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Diagnostics.Debug.xml", - "ref/dotnet/es/System.Diagnostics.Debug.xml", - "ref/dotnet/fr/System.Diagnostics.Debug.xml", - "ref/dotnet/it/System.Diagnostics.Debug.xml", - "ref/dotnet/ja/System.Diagnostics.Debug.xml", - "ref/dotnet/ko/System.Diagnostics.Debug.xml", - "ref/dotnet/ru/System.Diagnostics.Debug.xml", - "ref/dotnet/System.Diagnostics.Debug.dll", - "ref/dotnet/System.Diagnostics.Debug.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Diagnostics.Debug.xml", - "ref/netcore50/es/System.Diagnostics.Debug.xml", - "ref/netcore50/fr/System.Diagnostics.Debug.xml", - "ref/netcore50/it/System.Diagnostics.Debug.xml", - "ref/netcore50/ja/System.Diagnostics.Debug.xml", - "ref/netcore50/ko/System.Diagnostics.Debug.xml", - "ref/netcore50/ru/System.Diagnostics.Debug.xml", - "ref/netcore50/System.Diagnostics.Debug.dll", - "ref/netcore50/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "System.Diagnostics.Debug.4.0.0.nupkg", - "System.Diagnostics.Debug.4.0.0.nupkg.sha512", - "System.Diagnostics.Debug.nuspec" + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "System.Diagnostics.Contracts.4.0.1-rc2-23601.nupkg", + "System.Diagnostics.Contracts.4.0.1-rc2-23601.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec" ] }, - "System.Diagnostics.Debug/4.0.11-rc2-23525": { + "System.Diagnostics.Debug/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "T/wq74JBg48B5FU5R1bOW0cTyclAXL5GAqF/jehLxM65Sc8cNmJ8GMAQvjmmIa6mwmRF27U63Gs1UeiV0QtkjQ==", + "sha512": "6CtVgMmjwssomCN2kn18JgF6eEeTAf9xeob0xjDonD6zaA+22Im3D5gtCMsgTsZAcnRdpP1BOKouCA050y7SVg==", "files": [ "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -7688,8 +7494,8 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg", - "System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg.sha512", + "System.Diagnostics.Debug.4.0.11-rc2-23601.nupkg", + "System.Diagnostics.Debug.4.0.11-rc2-23601.nupkg.sha512", "System.Diagnostics.Debug.nuspec" ] }, @@ -7707,10 +7513,10 @@ "System.Diagnostics.DiagnosticSource.nuspec" ] }, - "System.Diagnostics.StackTrace/4.0.1-rc2-23525": { + "System.Diagnostics.StackTrace/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "PGYnviu3fGe8kseJAVMjVbFS2rwJ1QmGUJdNB/TTfj4pFodisoJRvLw3RIKTKiW2WbwXPy7leB14+MGqIRUPRA==", + "sha512": "HOZhvSjTfsa5iqilWVee7kUjJarYmjA0/rH3l93ly0mqY2us75InlOI38qltqwkYhdAfjuL2esDpHAsj8OmCGg==", "files": [ "lib/DNXCore50/System.Diagnostics.StackTrace.dll", "lib/MonoAndroid10/_._", @@ -7736,22 +7542,26 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll", - "System.Diagnostics.StackTrace.4.0.1-rc2-23525.nupkg", - "System.Diagnostics.StackTrace.4.0.1-rc2-23525.nupkg.sha512", + "System.Diagnostics.StackTrace.4.0.1-rc2-23601.nupkg", + "System.Diagnostics.StackTrace.4.0.1-rc2-23601.nupkg.sha512", "System.Diagnostics.StackTrace.nuspec" ] }, - "System.Diagnostics.Tools/4.0.1-rc2-23525": { + "System.Diagnostics.Tools/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "Bh9ra6Wpewj2XAkbCjrSemxNqLqCCoAO/1+l/RQZuQlSZ2v9x/bpnA6IEgan8JX35gJpGJc1rmgAdQl2KFpWwA==", + "sha512": "ca0aZGPFtBDuyOabtDz6WJZl2WiN4imtUmXYDXaxcMP8Uv7Z4Jl5LOW13IXrMzIAFsO8fabw5NsAVN3u8MZ4Vw==", "files": [ "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", "lib/net45/_._", "lib/netcore50/System.Diagnostics.Tools.dll", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", "ref/dotnet5.1/de/System.Diagnostics.Tools.xml", "ref/dotnet5.1/es/System.Diagnostics.Tools.xml", "ref/dotnet5.1/fr/System.Diagnostics.Tools.xml", @@ -7763,6 +7573,8 @@ "ref/dotnet5.1/System.Diagnostics.Tools.xml", "ref/dotnet5.1/zh-hans/System.Diagnostics.Tools.xml", "ref/dotnet5.1/zh-hant/System.Diagnostics.Tools.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", "ref/net45/_._", "ref/netcore50/de/System.Diagnostics.Tools.xml", "ref/netcore50/es/System.Diagnostics.Tools.xml", @@ -7778,9 +7590,11 @@ "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", - "System.Diagnostics.Tools.4.0.1-rc2-23525.nupkg", - "System.Diagnostics.Tools.4.0.1-rc2-23525.nupkg.sha512", + "System.Diagnostics.Tools.4.0.1-rc2-23601.nupkg", + "System.Diagnostics.Tools.4.0.1-rc2-23601.nupkg.sha512", "System.Diagnostics.Tools.nuspec" ] }, @@ -7864,10 +7678,10 @@ "System.Diagnostics.Tracing.nuspec" ] }, - "System.Dynamic.Runtime/4.0.11-rc2-23525": { + "System.Dynamic.Runtime/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "+OMQBIOXgovK8BPkqIFi95NRT+bYiHaixL3WwPVohqex4Hp4UuEYsJPS91ljtEkBMYO8a34B2FeSRqecWOCMLg==", + "sha512": "OmCvJeLa3kjUgQ6hr2a3bvfqONJp57Zu5FlOWDeyRNuXMhFaTJ1RFlDHVX9r2Q9wQHWe9npo1cbTxEqLmTDCDg==", "files": [ "lib/DNXCore50/System.Dynamic.Runtime.dll", "lib/MonoAndroid10/_._", @@ -7921,15 +7735,15 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", - "System.Dynamic.Runtime.4.0.11-rc2-23525.nupkg", - "System.Dynamic.Runtime.4.0.11-rc2-23525.nupkg.sha512", + "System.Dynamic.Runtime.4.0.11-rc2-23601.nupkg", + "System.Dynamic.Runtime.4.0.11-rc2-23601.nupkg.sha512", "System.Dynamic.Runtime.nuspec" ] }, - "System.Globalization/4.0.11-rc2-23525": { + "System.Globalization/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "oy7h7UsvcRRdmRL0vzNHwCSqQVP6Np80oRKRPJplTFtpfxnjj1O7nkkxl0So7nQnSE6lrE4a5SH7dFAjEH6Ncg==", + "sha512": "Fx8Ip9lDIsPIShSpLzUUXKzi2/UsYBWP8ZXV6EjkeG708CthVVOp/HiR8VSM50tmbU90LTkqIso69YefN7OpcQ==", "files": [ "lib/DNXCore50/System.Globalization.dll", "lib/MonoAndroid10/_._", @@ -7983,8 +7797,8 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", - "System.Globalization.4.0.11-rc2-23525.nupkg", - "System.Globalization.4.0.11-rc2-23525.nupkg.sha512", + "System.Globalization.4.0.11-rc2-23601.nupkg", + "System.Globalization.4.0.11-rc2-23601.nupkg.sha512", "System.Globalization.nuspec" ] }, @@ -8021,10 +7835,10 @@ "System.Globalization.Calendars.nuspec" ] }, - "System.Globalization.Extensions/4.0.1-rc2-23525": { + "System.Globalization.Extensions/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "WcX9wVjeAPI6Aiuz0UGdIS7abeu/XQRm0yK/ff8nr7cJn5wx69ACoF0/SHkfB1HrW4WDUQiKzgRpE8DDl6VSDw==", + "sha512": "W3/+6UK/Ehetvx60LxoUD47qqNrcB/F2BiVM/X1jH2/BmO+ezVq9TCOAgqrVBLWalcXx6HoCn4whg2+NVVeSNQ==", "files": [ "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -8048,63 +7862,15 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "System.Globalization.Extensions.4.0.1-rc2-23525.nupkg", - "System.Globalization.Extensions.4.0.1-rc2-23525.nupkg.sha512", + "System.Globalization.Extensions.4.0.1-rc2-23601.nupkg", + "System.Globalization.Extensions.4.0.1-rc2-23601.nupkg.sha512", "System.Globalization.Extensions.nuspec" ] }, - "System.IO/4.0.0": { - "type": "package", - "sha512": "MoCHQ0u5n0OMwUS8OX4Gl48qKiQziSW5cXvt82d+MmAcsLq9OL90+ihnu/aJ1h6OOYcBswrZAEuApfZha9w2lg==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.IO.xml", - "ref/dotnet/es/System.IO.xml", - "ref/dotnet/fr/System.IO.xml", - "ref/dotnet/it/System.IO.xml", - "ref/dotnet/ja/System.IO.xml", - "ref/dotnet/ko/System.IO.xml", - "ref/dotnet/ru/System.IO.xml", - "ref/dotnet/System.IO.dll", - "ref/dotnet/System.IO.xml", - "ref/dotnet/zh-hans/System.IO.xml", - "ref/dotnet/zh-hant/System.IO.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.IO.xml", - "ref/netcore50/es/System.IO.xml", - "ref/netcore50/fr/System.IO.xml", - "ref/netcore50/it/System.IO.xml", - "ref/netcore50/ja/System.IO.xml", - "ref/netcore50/ko/System.IO.xml", - "ref/netcore50/ru/System.IO.xml", - "ref/netcore50/System.IO.dll", - "ref/netcore50/System.IO.xml", - "ref/netcore50/zh-hans/System.IO.xml", - "ref/netcore50/zh-hant/System.IO.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.IO.4.0.0.nupkg", - "System.IO.4.0.0.nupkg.sha512", - "System.IO.nuspec" - ] - }, - "System.IO/4.0.11-rc2-23525": { + "System.IO/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "Brlv6E7ndUEBPH28OXf9EULgyMXTu6I3+NwbXiVneltgClANm/tmjZIAvJZpkCW2WQPMxRgaJlhngXqaYOM4ww==", + "sha512": "M246HBUKulSQXGNMYPtW53WmU1u1mfPnEINHLzWLZBa4ErH2LMlhtv8U3QXZ6ksB6DE4HjJ8Bd5ADayFnZADDQ==", "files": [ "lib/DNXCore50/System.IO.dll", "lib/MonoAndroid10/_._", @@ -8158,15 +7924,15 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtimes/win8-aot/lib/netcore50/System.IO.dll", - "System.IO.4.0.11-rc2-23525.nupkg", - "System.IO.4.0.11-rc2-23525.nupkg.sha512", + "System.IO.4.0.11-rc2-23601.nupkg", + "System.IO.4.0.11-rc2-23601.nupkg.sha512", "System.IO.nuspec" ] }, - "System.IO.FileSystem/4.0.1-rc2-23525": { + "System.IO.FileSystem/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "5x8A7ETeRtOmeqfUr36T20yJR+JHkd9M8275UTOyUylO1RRFDdIDiNYeCnZlFJpDCFMDxDa6g8OgiWYxJzAqfw==", + "sha512": "EgEsNcXnyYvoWd1nf+ITPDqHfoXxMyGzuBlRkEUauEIBEOacNNCjxbw61e9LlUHLtE3vVRKTbukKbv2gHU1uDA==", "files": [ "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -8190,15 +7956,15 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "System.IO.FileSystem.4.0.1-rc2-23525.nupkg", - "System.IO.FileSystem.4.0.1-rc2-23525.nupkg.sha512", + "System.IO.FileSystem.4.0.1-rc2-23601.nupkg", + "System.IO.FileSystem.4.0.1-rc2-23601.nupkg.sha512", "System.IO.FileSystem.nuspec" ] }, - "System.IO.FileSystem.Primitives/4.0.1-rc2-23525": { + "System.IO.FileSystem.Primitives/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "fV65b2r3pwlWSSWApSrYxGKCYNmAinm+Oesaq29llzw0MrxhzltVGCV+ck4LPcAbrTr4vU6gXe0xtg26lWa5Uw==", + "sha512": "sxPud9ZtaVyUxQ0lqlBsnycvHR4G8Dih61YzSzftfC3AOH18+UqtjIuhXtF7eghEREFpJm1NR224pAXVkfm8pg==", "files": [ "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll", "lib/MonoAndroid10/_._", @@ -8222,15 +7988,15 @@ "ref/net46/System.IO.FileSystem.Primitives.dll", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "System.IO.FileSystem.Primitives.4.0.1-rc2-23525.nupkg", - "System.IO.FileSystem.Primitives.4.0.1-rc2-23525.nupkg.sha512", + "System.IO.FileSystem.Primitives.4.0.1-rc2-23601.nupkg", + "System.IO.FileSystem.Primitives.4.0.1-rc2-23601.nupkg.sha512", "System.IO.FileSystem.Primitives.nuspec" ] }, - "System.IO.FileSystem.Watcher/4.0.0-rc2-23525": { + "System.IO.FileSystem.Watcher/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "uR9aLtA94ZLN205daRhvvvWVy1GwvqhsHpkvTQAgtAjbX5oZgR4VrOzNVubWjmKTTU8fZluxzL4oiNLqqzxqjA==", + "sha512": "YK1CAOpuL3MmrH+EJWoWwilMrVdN9ioV/BXWhPgJiCUSaoykJWeyjz7f744a7H7nY4fnuLm08I5D4HP+5CVYAQ==", "files": [ "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -8254,22 +8020,26 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "System.IO.FileSystem.Watcher.4.0.0-rc2-23525.nupkg", - "System.IO.FileSystem.Watcher.4.0.0-rc2-23525.nupkg.sha512", + "System.IO.FileSystem.Watcher.4.0.0-rc2-23601.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-rc2-23601.nupkg.sha512", "System.IO.FileSystem.Watcher.nuspec" ] }, - "System.Linq/4.0.1-rc2-23525": { + "System.Linq/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "nxeyB3ycuQRIyRb/EVh+IEBN4heKR5LGo3+NvQl0/nJs/nIJym4Yb+pqHjhMAFwv9L7KoUIanhg1uRES7+IaQQ==", + "sha512": "kGrzJd/HYU8ndOZ70xU6fET/y0tIR5oKfOLthDAbUrdD6n9k703gL3OOM3DtG+4qgEIyyhHM0I5iYZ59q6yneg==", "files": [ "lib/dotnet5.4/System.Linq.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", "lib/net45/_._", "lib/netcore50/System.Linq.dll", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", "ref/dotnet5.1/de/System.Linq.xml", "ref/dotnet5.1/es/System.Linq.xml", "ref/dotnet5.1/fr/System.Linq.xml", @@ -8281,6 +8051,8 @@ "ref/dotnet5.1/System.Linq.xml", "ref/dotnet5.1/zh-hans/System.Linq.xml", "ref/dotnet5.1/zh-hant/System.Linq.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", "ref/net45/_._", "ref/netcore50/de/System.Linq.xml", "ref/netcore50/es/System.Linq.xml", @@ -8296,15 +8068,17 @@ "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", - "System.Linq.4.0.1-rc2-23525.nupkg", - "System.Linq.4.0.1-rc2-23525.nupkg.sha512", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Linq.4.0.1-rc2-23601.nupkg", + "System.Linq.4.0.1-rc2-23601.nupkg.sha512", "System.Linq.nuspec" ] }, - "System.Linq.Expressions/4.0.11-rc2-23525": { + "System.Linq.Expressions/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "nUZs+huGwB8yM+RhJSCP1pDooGAjVhe2kEzSu2M7I8A9kwOF8WFgmMDwhfvW8UdnvcEVMbmtM9VtAYoZIBLs4w==", + "sha512": "P8toY8qe6geTDfW2EiimOb4GQyEya3xH5FuVUINqV9FqlCamKcdW4Hu+GlDSFF2bOof8WKNBtU0bUJT43g0o6g==", "files": [ "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -8356,8 +8130,8 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "System.Linq.Expressions.4.0.11-rc2-23525.nupkg", - "System.Linq.Expressions.4.0.11-rc2-23525.nupkg.sha512", + "System.Linq.Expressions.4.0.11-rc2-23601.nupkg", + "System.Linq.Expressions.4.0.11-rc2-23601.nupkg.sha512", "System.Linq.Expressions.nuspec" ] }, @@ -8392,10 +8166,10 @@ "System.Net.Http.nuspec" ] }, - "System.Net.Primitives/4.0.11-rc2-23525": { + "System.Net.Primitives/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "tPl7aprrM0gnQa24GbIy+Swf+9+hEj+oy1I+OkeG/flSEGT3mCtrSAgfmLCr1FmN9lfn9XKkCgPYh8wJC2g8+w==", + "sha512": "PMms1jdNQr54gZDnnc70ESo6s7igx4M0hWmyxZrAbh3Q/leEwXqD/r2bdBQUDAE8GJdxuOnJfwHfetGStzNx9w==", "files": [ "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -8458,15 +8232,15 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "System.Net.Primitives.4.0.11-rc2-23525.nupkg", - "System.Net.Primitives.4.0.11-rc2-23525.nupkg.sha512", + "System.Net.Primitives.4.0.11-rc2-23601.nupkg", + "System.Net.Primitives.4.0.11-rc2-23601.nupkg.sha512", "System.Net.Primitives.nuspec" ] }, - "System.Net.WebSockets/4.0.0-rc2-23525": { + "System.Net.WebSockets/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "QykOhQUn7S0rJYPbKflEWOf3Cpr6Ku5UhGmJY5s14t0g14H/5ibVg3KuLySGYvrRmxxx7s6Ydx/b7AcuwDA9hQ==", + "sha512": "nSg1Tn7wiNI0E9n1FP/UbZSu/K3scKrDDm8eUMGh95U7eaEOyYPzZlUgnQDhXFFmQ9ndL0UmOzbvuzZc6xCvqg==", "files": [ "lib/dotnet5.4/System.Net.WebSockets.dll", "lib/MonoAndroid10/_._", @@ -8490,15 +8264,15 @@ "ref/net46/System.Net.WebSockets.dll", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "System.Net.WebSockets.4.0.0-rc2-23525.nupkg", - "System.Net.WebSockets.4.0.0-rc2-23525.nupkg.sha512", + "System.Net.WebSockets.4.0.0-rc2-23601.nupkg", + "System.Net.WebSockets.4.0.0-rc2-23601.nupkg.sha512", "System.Net.WebSockets.nuspec" ] }, - "System.ObjectModel/4.0.11-rc2-23525": { + "System.ObjectModel/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "IJJ5i3tnyDWnrjK3GH81Bu3I+ie/MyKr7/V/LjYkVpKHlTaT1EdjLX40CqXaw3ObgqkLqSYz6iRJKaYkmGesXg==", + "sha512": "w7J3ZF/xi8qEwu4v5GT5C5E3ln41hDIMK3iX61523ohxfbMqa1i7C8FKR578yFDNPb8NaxgeahLr2Kenaygi0w==", "files": [ "lib/dotnet5.4/System.ObjectModel.dll", "lib/MonoAndroid10/_._", @@ -8551,59 +8325,11 @@ "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "System.ObjectModel.4.0.11-rc2-23525.nupkg", - "System.ObjectModel.4.0.11-rc2-23525.nupkg.sha512", + "System.ObjectModel.4.0.11-rc2-23601.nupkg", + "System.ObjectModel.4.0.11-rc2-23601.nupkg.sha512", "System.ObjectModel.nuspec" ] }, - "System.Reflection/4.0.0": { - "type": "package", - "sha512": "g96Rn8XuG7y4VfxPj/jnXroRJdQ8L3iN3k3zqsuzk4k3Nq4KMXARYiIO4BLW4GwX06uQpuYwRMcAC/aF117knQ==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Reflection.xml", - "ref/dotnet/es/System.Reflection.xml", - "ref/dotnet/fr/System.Reflection.xml", - "ref/dotnet/it/System.Reflection.xml", - "ref/dotnet/ja/System.Reflection.xml", - "ref/dotnet/ko/System.Reflection.xml", - "ref/dotnet/ru/System.Reflection.xml", - "ref/dotnet/System.Reflection.dll", - "ref/dotnet/System.Reflection.xml", - "ref/dotnet/zh-hans/System.Reflection.xml", - "ref/dotnet/zh-hant/System.Reflection.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Reflection.xml", - "ref/netcore50/es/System.Reflection.xml", - "ref/netcore50/fr/System.Reflection.xml", - "ref/netcore50/it/System.Reflection.xml", - "ref/netcore50/ja/System.Reflection.xml", - "ref/netcore50/ko/System.Reflection.xml", - "ref/netcore50/ru/System.Reflection.xml", - "ref/netcore50/System.Reflection.dll", - "ref/netcore50/System.Reflection.xml", - "ref/netcore50/zh-hans/System.Reflection.xml", - "ref/netcore50/zh-hant/System.Reflection.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Reflection.4.0.0.nupkg", - "System.Reflection.4.0.0.nupkg.sha512", - "System.Reflection.nuspec" - ] - }, "System.Reflection/4.1.0-beta-23225": { "type": "package", "serviceable": true, @@ -8628,10 +8354,10 @@ "System.Reflection.nuspec" ] }, - "System.Reflection.Emit/4.0.1-rc2-23525": { + "System.Reflection.Emit/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "TwJEe1ecGUBSnuwbK/5Otg240Pkusu1SykDl1ZlmiqyL2RbmvKIMe//OcaaVajaq5IZI9XdSPqVIvhTzYHHQig==", + "sha512": "wPxtMTkKx8mfT4pClvFB3+T/p9LAU2zyGP9EPYujkISLZ1ft2g9xXZlDe+Jl9vj3YwVYM8OyezXCm0hQ7B437g==", "files": [ "lib/DNXCore50/System.Reflection.Emit.dll", "lib/MonoAndroid10/_._", @@ -8653,8 +8379,8 @@ "ref/net45/_._", "ref/xamarinmac20/_._", "runtimes/aot/lib/netcore50/_._", - "System.Reflection.Emit.4.0.1-rc2-23525.nupkg", - "System.Reflection.Emit.4.0.1-rc2-23525.nupkg.sha512", + "System.Reflection.Emit.4.0.1-rc2-23601.nupkg", + "System.Reflection.Emit.4.0.1-rc2-23601.nupkg.sha512", "System.Reflection.Emit.nuspec" ] }, @@ -8684,10 +8410,10 @@ "System.Reflection.Emit.ILGeneration.nuspec" ] }, - "System.Reflection.Emit.Lightweight/4.0.1-rc2-23525": { + "System.Reflection.Emit.Lightweight/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "yemFBcrKv5b9UFu3dY0eFpzGan6arWNeecvD4Nvbua9OMqJTy9JevZw3S8tpFd84LLxJ8PuWdp7eylTjkHas5w==", + "sha512": "/YhofGMpakJbes0jmsN6os901aZojB5NzcQ83tNHNpydKGfo9WvavSnx5DFnUz2bjoFUf/4P2TGirLDqw2o2ag==", "files": [ "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll", "lib/net45/_._", @@ -8707,22 +8433,26 @@ "ref/net45/_._", "ref/wp80/_._", "runtimes/aot/lib/netcore50/_._", - "System.Reflection.Emit.Lightweight.4.0.1-rc2-23525.nupkg", - "System.Reflection.Emit.Lightweight.4.0.1-rc2-23525.nupkg.sha512", + "System.Reflection.Emit.Lightweight.4.0.1-rc2-23601.nupkg", + "System.Reflection.Emit.Lightweight.4.0.1-rc2-23601.nupkg.sha512", "System.Reflection.Emit.Lightweight.nuspec" ] }, - "System.Reflection.Extensions/4.0.1-rc2-23525": { + "System.Reflection.Extensions/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "S2zlLFK7KGY+vmP2idf9baP1vd3FSRhiRrDpzaDu57f0mqsMuXkbbtqxSncaN8SzvHbLu1OSp1ERiwSzCtcskw==", + "sha512": "ncXXyE+FSY4+HqwbP0AU26hwU0mCuhThiT8eVxJWswFJFOtUP+yPP/tTlmTUv0VehDgu/l/2HRKXe28ZvMKezA==", "files": [ "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", "lib/net45/_._", "lib/netcore50/System.Reflection.Extensions.dll", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", "ref/dotnet5.1/de/System.Reflection.Extensions.xml", "ref/dotnet5.1/es/System.Reflection.Extensions.xml", "ref/dotnet5.1/fr/System.Reflection.Extensions.xml", @@ -8734,6 +8464,8 @@ "ref/dotnet5.1/System.Reflection.Extensions.xml", "ref/dotnet5.1/zh-hans/System.Reflection.Extensions.xml", "ref/dotnet5.1/zh-hant/System.Reflection.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", "ref/net45/_._", "ref/netcore50/de/System.Reflection.Extensions.xml", "ref/netcore50/es/System.Reflection.Extensions.xml", @@ -8749,9 +8481,11 @@ "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", - "System.Reflection.Extensions.4.0.1-rc2-23525.nupkg", - "System.Reflection.Extensions.4.0.1-rc2-23525.nupkg.sha512", + "System.Reflection.Extensions.4.0.1-rc2-23601.nupkg", + "System.Reflection.Extensions.4.0.1-rc2-23601.nupkg.sha512", "System.Reflection.Extensions.nuspec" ] }, @@ -8863,51 +8597,21 @@ "System.Reflection.TypeExtensions.nuspec" ] }, - "System.Resources.ResourceManager/4.0.0": { + "System.Resources.ResourceManager/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", - "files": [ - "lib/DNXCore50/System.Resources.ResourceManager.dll", - "lib/net45/_._", - "lib/netcore50/System.Resources.ResourceManager.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/de/System.Resources.ResourceManager.xml", - "ref/dotnet/es/System.Resources.ResourceManager.xml", - "ref/dotnet/fr/System.Resources.ResourceManager.xml", - "ref/dotnet/it/System.Resources.ResourceManager.xml", - "ref/dotnet/ja/System.Resources.ResourceManager.xml", - "ref/dotnet/ko/System.Resources.ResourceManager.xml", - "ref/dotnet/ru/System.Resources.ResourceManager.xml", - "ref/dotnet/System.Resources.ResourceManager.dll", - "ref/dotnet/System.Resources.ResourceManager.xml", - "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", - "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", - "ref/net45/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", - "System.Resources.ResourceManager.4.0.0.nupkg", - "System.Resources.ResourceManager.4.0.0.nupkg.sha512", - "System.Resources.ResourceManager.nuspec" - ] - }, - "System.Resources.ResourceManager/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Pp+0DOwNu+L6fYGLejweNbbxXYW9EZTA9UpVBLvWTAldWsTWQ15J1LYuDIULWP3G2JBnKDtzZzQj4VIjzW4zxQ==", + "sha512": "EMrTq51+HRQ76cbeetdggg5mIGzboMPbR01WSJXkTE+iGX4vwbTz1XSqBxBz/9pzia8j4UWv8MSaGPThcqETrg==", "files": [ "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", "lib/net45/_._", "lib/netcore50/System.Resources.ResourceManager.dll", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", "ref/dotnet5.1/de/System.Resources.ResourceManager.xml", "ref/dotnet5.1/es/System.Resources.ResourceManager.xml", "ref/dotnet5.1/fr/System.Resources.ResourceManager.xml", @@ -8919,6 +8623,8 @@ "ref/dotnet5.1/System.Resources.ResourceManager.xml", "ref/dotnet5.1/zh-hans/System.Resources.ResourceManager.xml", "ref/dotnet5.1/zh-hant/System.Resources.ResourceManager.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", "ref/net45/_._", "ref/netcore50/de/System.Resources.ResourceManager.xml", "ref/netcore50/es/System.Resources.ResourceManager.xml", @@ -8934,9 +8640,11 @@ "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", - "System.Resources.ResourceManager.4.0.1-rc2-23525.nupkg", - "System.Resources.ResourceManager.4.0.1-rc2-23525.nupkg.sha512", + "System.Resources.ResourceManager.4.0.1-rc2-23601.nupkg", + "System.Resources.ResourceManager.4.0.1-rc2-23601.nupkg.sha512", "System.Resources.ResourceManager.nuspec" ] }, @@ -8988,10 +8696,10 @@ "System.Runtime.nuspec" ] }, - "System.Runtime/4.0.21-rc2-23525": { + "System.Runtime/4.0.21-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "LycbvHHYEuhrvcrwJ7JW1uKOXWUSC1gMn+M5zCTMYRrBomqYJnUu2Ej+oNJZibV4pdvjOSNdnLRBjy0VS0pJHQ==", + "sha512": "qZvIiy98kEDCqIkTlvP51vAyEWYPGUvl/iVK3DU/qkEVQvP28TKWQ++yCY11oOvaht0hSQtYZ0o7Lyk3Np0t4A==", "files": [ "lib/DNXCore50/System.Runtime.dll", "lib/MonoAndroid10/_._", @@ -9056,63 +8764,15 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", - "System.Runtime.4.0.21-rc2-23525.nupkg", - "System.Runtime.4.0.21-rc2-23525.nupkg.sha512", + "System.Runtime.4.0.21-rc2-23601.nupkg", + "System.Runtime.4.0.21-rc2-23601.nupkg.sha512", "System.Runtime.nuspec" ] }, - "System.Runtime.Extensions/4.0.0": { - "type": "package", - "sha512": "zPzwoJcA7qar/b5Ihhzfcdr3vBOR8FIg7u//Qc5mqyAriasXuMFVraBZ5vOQq5asfun9ryNEL8Z2BOlUK5QRqA==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Runtime.Extensions.xml", - "ref/dotnet/es/System.Runtime.Extensions.xml", - "ref/dotnet/fr/System.Runtime.Extensions.xml", - "ref/dotnet/it/System.Runtime.Extensions.xml", - "ref/dotnet/ja/System.Runtime.Extensions.xml", - "ref/dotnet/ko/System.Runtime.Extensions.xml", - "ref/dotnet/ru/System.Runtime.Extensions.xml", - "ref/dotnet/System.Runtime.Extensions.dll", - "ref/dotnet/System.Runtime.Extensions.xml", - "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", - "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Runtime.Extensions.xml", - "ref/netcore50/es/System.Runtime.Extensions.xml", - "ref/netcore50/fr/System.Runtime.Extensions.xml", - "ref/netcore50/it/System.Runtime.Extensions.xml", - "ref/netcore50/ja/System.Runtime.Extensions.xml", - "ref/netcore50/ko/System.Runtime.Extensions.xml", - "ref/netcore50/ru/System.Runtime.Extensions.xml", - "ref/netcore50/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Runtime.Extensions.4.0.0.nupkg", - "System.Runtime.Extensions.4.0.0.nupkg.sha512", - "System.Runtime.Extensions.nuspec" - ] - }, - "System.Runtime.Extensions/4.0.11-rc2-23525": { + "System.Runtime.Extensions/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "R6crzqPfrw8M1hohRtO9ae8CngdmbmB6DLMt4asm0KiP7i4ufliJcGRpn++mxJwPYgiLw757t1KN5sBDnyvvkw==", + "sha512": "X4PtiNDHsku9TI/hNigCyPZJ4IqGvtA3g3NSoQ9I4YtqhAirHI7WlCA9vREzKFL3WBAg2AFxsx9D54RXjYXLeA==", "files": [ "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -9164,8 +8824,8 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "System.Runtime.Extensions.4.0.11-rc2-23525.nupkg", - "System.Runtime.Extensions.4.0.11-rc2-23525.nupkg.sha512", + "System.Runtime.Extensions.4.0.11-rc2-23601.nupkg", + "System.Runtime.Extensions.4.0.11-rc2-23601.nupkg.sha512", "System.Runtime.Extensions.nuspec" ] }, @@ -9203,10 +8863,10 @@ "System.Runtime.Handles.nuspec" ] }, - "System.Runtime.InteropServices/4.0.21-rc2-23525": { + "System.Runtime.InteropServices/4.0.21-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "rWJNPZVqqjGxOhwWLdDh20vbH1OHXMqydO2QDO2vJApFCKEgyR2ySG2w6Ls665jGeUYzT2mQ+ZGTkcyzKOJdyg==", + "sha512": "rJ7Z8EyjONlJVur/oLXcOugo/GH7QTyQ/4nFz+/cpkBEDkpJKgwqElY7iGzKNbHzADNq/y1g62h7YtBGms53vA==", "files": [ "lib/DNXCore50/System.Runtime.InteropServices.dll", "lib/MonoAndroid10/_._", @@ -9269,15 +8929,15 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", - "System.Runtime.InteropServices.4.0.21-rc2-23525.nupkg", - "System.Runtime.InteropServices.4.0.21-rc2-23525.nupkg.sha512", + "System.Runtime.InteropServices.4.0.21-rc2-23601.nupkg", + "System.Runtime.InteropServices.4.0.21-rc2-23601.nupkg.sha512", "System.Runtime.InteropServices.nuspec" ] }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { + "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "Ha25KM/Db3dmbZz9UWgn7ChGPmqFHLDyWTxuvoJtaUq8ziwTW4hP0tlUfEKZBa3FwEB6Nero7VLX4h0TQs0k6Q==", + "sha512": "cl7EDFOFA12Dj0fOP64uIXC0EzE5rEDouPSD5Cq371PPkZi5HL460BgU7QQl+SoC+T+xDv2tgC4vWnIEJvZxNA==", "files": [ "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -9289,8 +8949,8 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg", - "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg.sha512", + "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23601.nupkg", + "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23601.nupkg.sha512", "System.Runtime.InteropServices.RuntimeInformation.nuspec" ] }, @@ -9325,10 +8985,10 @@ "System.Runtime.Numerics.nuspec" ] }, - "System.Security.Claims/4.0.1-rc2-23525": { + "System.Security.Claims/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "QQRiGO33X/l9n5rikQfRoHPtX+0k4m3dxWFIZyH+63qsshU7S89QqmVsEjFYhHhEtsTbiKdkyNKrqTA7aj9XPQ==", + "sha512": "LOFzsK6mJwKNCDR5pTCtoHMRKmVwDSqDY66ueAIMREfXmLO8xlP2hFfVVLd98TT3SYNSeKoEadvy+7TSyJv8zA==", "files": [ "lib/dotnet5.4/System.Security.Claims.dll", "lib/MonoAndroid10/_._", @@ -9352,15 +9012,15 @@ "ref/net46/System.Security.Claims.dll", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "System.Security.Claims.4.0.1-rc2-23525.nupkg", - "System.Security.Claims.4.0.1-rc2-23525.nupkg.sha512", + "System.Security.Claims.4.0.1-rc2-23601.nupkg", + "System.Security.Claims.4.0.1-rc2-23601.nupkg.sha512", "System.Security.Claims.nuspec" ] }, - "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { + "System.Security.Cryptography.Algorithms/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "YG9pKBlPiXYSElZ2Yz8K9WuKO9/pjiypOZC44Ovjh8LUFBRCrMoikR3MQBefkqc4pQPDcY42YowcjkvfNU31Ew==", + "sha512": "G7/AUlurLRj/ZSFV/0vFwuQ5g8dfEmM+xlsT8GmmFCcItdkkV4gf/1z7lCdw1KiKxj20weFwo7GPdq3uBLq5NQ==", "files": [ "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -9374,29 +9034,29 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Algorithms.4.0.0-rc2-23601.nupkg", + "System.Security.Cryptography.Algorithms.4.0.0-rc2-23601.nupkg.sha512", "System.Security.Cryptography.Algorithms.nuspec" ] }, - "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { + "System.Security.Cryptography.Cng/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "H4fSJsMPMOM5SmfTMJ9AD0CgYshIPYnCf+2gJ9px0eg/Xjm9Q6JsVpTgbl6osdgXWNlwA45voiq4DRsniku5eg==", + "sha512": "pvsS9yL64fKOv38kQ/h/bLNeD4QyGhJ3LjCSNGl3QNm7GnVGSnLFg0P1wx1CNTUGH4vFWlOLYPCpvMzbaJVq7A==", "files": [ "lib/dotnet5.4/System.Security.Cryptography.Cng.dll", "lib/net46/System.Security.Cryptography.Cng.dll", "ref/dotnet5.4/System.Security.Cryptography.Cng.dll", "ref/net46/System.Security.Cryptography.Cng.dll", - "System.Security.Cryptography.Cng.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.Cng.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Cng.4.0.0-rc2-23601.nupkg", + "System.Security.Cryptography.Cng.4.0.0-rc2-23601.nupkg.sha512", "System.Security.Cryptography.Cng.nuspec" ] }, - "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { + "System.Security.Cryptography.Csp/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "5s7Sz0yUhfBjnJxIZdKxtM/WevPg36jnaUHFji4SFDYFHLkiV6xrEP8HhemZqW5ix7IfiaCDKqGBOceugqxarQ==", + "sha512": "cJvPdLjB/3Mn4gKTS21Lj0B0HfUezVn3WYN4OyWh0501l3mYYXIgNo1E8x8vm5tzwRk6sZez0O8Ch0FIr8mFgw==", "files": [ "lib/DNXCore50/System.Security.Cryptography.Csp.dll", "lib/MonoAndroid10/_._", @@ -9410,15 +9070,15 @@ "ref/net46/System.Security.Cryptography.Csp.dll", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "System.Security.Cryptography.Csp.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.Csp.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Csp.4.0.0-rc2-23601.nupkg", + "System.Security.Cryptography.Csp.4.0.0-rc2-23601.nupkg.sha512", "System.Security.Cryptography.Csp.nuspec" ] }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { + "System.Security.Cryptography.Encoding/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "w7S6YFfl1dDdfm2dEJVsKBGBgB65CD/AyEzPXrPladnuUl4AJffUIAGf9MnWbUR//qraMUaTluzWQmUs6bE5KA==", + "sha512": "aJqAwr8B3h8noRb8UkgJhapNnXXS5vRSbAo0VKhyWFbn//X4rCUVeUmkuCT9S4BNEOKJvpAr9kjPjikjIhn6nw==", "files": [ "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -9442,15 +9102,15 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Encoding.4.0.0-rc2-23601.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-rc2-23601.nupkg.sha512", "System.Security.Cryptography.Encoding.nuspec" ] }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { + "System.Security.Cryptography.Primitives/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "4XctVVQ8Ma2eDOiWjE6iUo44unjourG7k5Zr91Bm74DpMVEn3+lmZj9pJn3cthp/WgpRRJXaQRfE7mKEiEUjog==", + "sha512": "nf/WBYSHyFwnq3E31rD99XrB30B0TonC+vEQI1Ej6WFl3XPXeETC2XypNeLAopWczFuTIL2+T9+BjMdP4gwRxw==", "files": [ "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll", "lib/MonoAndroid10/_._", @@ -9464,15 +9124,15 @@ "ref/net46/System.Security.Cryptography.Primitives.dll", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "System.Security.Cryptography.Primitives.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.Primitives.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.Primitives.4.0.0-rc2-23601.nupkg", + "System.Security.Cryptography.Primitives.4.0.0-rc2-23601.nupkg.sha512", "System.Security.Cryptography.Primitives.nuspec" ] }, - "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { + "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "Xzho0jNobWUb3UZtos0Pv/WI6PzBTOxLrisrgKE3xsZhKtevpThJ+1g1OhegeSy5cDpFy0x8bw8sr8qzumNBXQ==", + "sha512": "v772KAZWIrzSTEzYK1ZRNNclb9/TbxzsiWJSgruPgFQVggoKFOq1Q3CWyH1qNdhSOQN0I7wCIIDRq4YF0eaTyw==", "files": [ "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -9496,22 +9156,26 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.4.0.0-rc2-23601.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-rc2-23601.nupkg.sha512", "System.Security.Cryptography.X509Certificates.nuspec" ] }, - "System.Security.Principal/4.0.1-rc2-23525": { + "System.Security.Principal/4.0.1-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "Xw8pvBLIpmqA1TOK2FNI9sORMgxtcrqP+XGI/pKiny7iu0G+jKeQUQqd/qWCNjT0BGougN+a4ygXzMCFGp7Mog==", + "sha512": "M6IvYV0JoJ9sb0yKuwxLiLBAgmXyMWqagiwyRBc/IiWWL3aHgqmHP/1m6+W/sm3kV00xw9sRG2whak8AEpeguw==", "files": [ "lib/dotnet5.1/System.Security.Principal.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", "lib/net45/_._", "lib/netcore50/System.Security.Principal.dll", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", "ref/dotnet5.1/de/System.Security.Principal.xml", "ref/dotnet5.1/es/System.Security.Principal.xml", "ref/dotnet5.1/fr/System.Security.Principal.xml", @@ -9523,6 +9187,8 @@ "ref/dotnet5.1/System.Security.Principal.xml", "ref/dotnet5.1/zh-hans/System.Security.Principal.xml", "ref/dotnet5.1/zh-hant/System.Security.Principal.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", "ref/net45/_._", "ref/netcore50/de/System.Security.Principal.xml", "ref/netcore50/es/System.Security.Principal.xml", @@ -9538,15 +9204,17 @@ "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", - "System.Security.Principal.4.0.1-rc2-23525.nupkg", - "System.Security.Principal.4.0.1-rc2-23525.nupkg.sha512", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Principal.4.0.1-rc2-23601.nupkg", + "System.Security.Principal.4.0.1-rc2-23601.nupkg.sha512", "System.Security.Principal.nuspec" ] }, - "System.Text.Encoding/4.0.11-rc2-23525": { + "System.Text.Encoding/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "M1k26o4qE9PGxYyO0Q17houEVrE+iPk8wnnA1Z+sbWGRTeXZxWCKEr7K6yH9GXaV/zcNAPM4KM5RAnuHAN5QdQ==", + "sha512": "rTwXjbkVsMh6D9QRZyfBTxJ39XIno46Q1UJahfunnDfxoeIdlHnA+UCgOJy2Ho3u5Q7HJZPgMd20/ESvNUcqww==", "files": [ "lib/DNXCore50/System.Text.Encoding.dll", "lib/MonoAndroid10/_._", @@ -9600,8 +9268,8 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", - "System.Text.Encoding.4.0.11-rc2-23525.nupkg", - "System.Text.Encoding.4.0.11-rc2-23525.nupkg.sha512", + "System.Text.Encoding.4.0.11-rc2-23601.nupkg", + "System.Text.Encoding.4.0.11-rc2-23601.nupkg.sha512", "System.Text.Encoding.nuspec" ] }, @@ -9638,21 +9306,21 @@ "System.Text.Encoding.Extensions.nuspec" ] }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { + "System.Text.Encodings.Web/4.0.0-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "1xpCMiJZBhbDNi7QoIZvU3+XHDlOr6E7N3zvoWjdzdXTnpnU6dgYZ0qrRrGN8sC4p2tRcbx4F+jA2uQAqqOA+g==", + "sha512": "A81uIO3jmWO2+heJ1vhcp5oXM+wCN36FtDO1I6F7PwUQxW7e5aeNruNRCqXb7yiRnCsQj6B1YhHYn0KPPV+Nrw==", "files": [ "lib/dotnet5.1/System.Text.Encodings.Web.dll", - "System.Text.Encodings.Web.4.0.0-rc2-23525.nupkg", - "System.Text.Encodings.Web.4.0.0-rc2-23525.nupkg.sha512", + "System.Text.Encodings.Web.4.0.0-rc2-23601.nupkg", + "System.Text.Encodings.Web.4.0.0-rc2-23601.nupkg.sha512", "System.Text.Encodings.Web.nuspec" ] }, - "System.Text.RegularExpressions/4.0.11-rc2-23525": { + "System.Text.RegularExpressions/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "M1JdxnEZ1Mnv6jro+SvVI2ldrEEYhqP7LdhcX0uGm94q1Mg46Y9P27l6g1yz+Qgy2b3oi3tky5aF8+2VJwTuUA==", + "sha512": "0oYcgl0kQG+ZtgElxlFc+MNY28TMpCEQEyPHRHUX37vUHedt+M4gR4wJxOEt888FG91vBo9U/GsxRF+KWnG5Ng==", "files": [ "lib/dotnet5.4/System.Text.RegularExpressions.dll", "lib/MonoAndroid10/_._", @@ -9705,8 +9373,8 @@ "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "System.Text.RegularExpressions.4.0.11-rc2-23525.nupkg", - "System.Text.RegularExpressions.4.0.11-rc2-23525.nupkg.sha512", + "System.Text.RegularExpressions.4.0.11-rc2-23601.nupkg", + "System.Text.RegularExpressions.4.0.11-rc2-23601.nupkg.sha512", "System.Text.RegularExpressions.nuspec" ] }, @@ -9758,10 +9426,10 @@ "System.Threading.nuspec" ] }, - "System.Threading/4.0.11-rc2-23525": { + "System.Threading/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "Vb+NknoSeJKz8FT6nCpDfjtZGOQOfoQAmi/kZxeXgdKwppTMp+Ytv5yqvvnYQDtBQcO3OnrnxUDg8WMTtU/v6w==", + "sha512": "smSdEeXR3Iboe2Xwv0PEBG4qqAqTwfRKQRlv4xuqBWfzhb9ywjp4hJU8dsJR/ySsgHC6xVYuA+8YGLxggLy/tQ==", "files": [ "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -9813,8 +9481,8 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "System.Threading.4.0.11-rc2-23525.nupkg", - "System.Threading.4.0.11-rc2-23525.nupkg.sha512", + "System.Threading.4.0.11-rc2-23601.nupkg", + "System.Threading.4.0.11-rc2-23601.nupkg.sha512", "System.Threading.nuspec" ] }, @@ -9843,10 +9511,10 @@ "System.Threading.Overlapped.nuspec" ] }, - "System.Threading.Tasks/4.0.11-rc2-23525": { + "System.Threading.Tasks/4.0.11-rc2-23601": { "type": "package", "serviceable": true, - "sha512": "AnTRum7I9zd11FK9QxLsCWmt0VyxWyJjj2b/dFCQIFXh9iOPCkApf4sDcgRN7c6e/97CZSGHIKCvTO/zxeuGcA==", + "sha512": "99/GbSDrmn7bfN2PZREaq/L4MYMIjOyXSm/c8kSdmKQ2qYmRyS66GZENmZWa3IWirw26+c3hYBi/Wj+2pf5xHg==", "files": [ "lib/DNXCore50/System.Threading.Tasks.dll", "lib/MonoAndroid10/_._", @@ -9900,8 +9568,8 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", - "System.Threading.Tasks.4.0.11-rc2-23525.nupkg", - "System.Threading.Tasks.4.0.11-rc2-23525.nupkg.sha512", + "System.Threading.Tasks.4.0.11-rc2-23601.nupkg", + "System.Threading.Tasks.4.0.11-rc2-23601.nupkg.sha512", "System.Threading.Tasks.nuspec" ] } diff --git a/src/Glimpse.Agent.AspNet/project.json b/src/Glimpse.Agent.AspNet/project.json index ac67bfd9..b6ccf7db 100644 --- a/src/Glimpse.Agent.AspNet/project.json +++ b/src/Glimpse.Agent.AspNet/project.json @@ -1,4 +1,4 @@ -{ +{ "version": "2.0.0-*", "authors": [ "nmolnar", "avanderhoorn" ], "owners": [ "nmolnar", "avanderhoorn" ], @@ -12,16 +12,20 @@ "releaseNotes": "Initial release of Glimpse.Agent.AspNet.", "tags": [ "ASP.NET", "Web", "Debugging", "Diagnostics", "Agent", "MVC", "EF", "EntityFramework" ], "compilationOptions": { - "define": [ "SystemWeb" ] + "define": [ "DNX" ] }, "dependencies": { "Glimpse.Common": "", + "Microsoft.AspNet.Hosting": "1.0.0-*", "Microsoft.AspNet.FileProviders.Physical": "1.0.0-*", "Microsoft.AspNet.WebApi.Client": "5.2.2", + "Microsoft.Extensions.DiagnosticAdapter": "1.0.0-*", "Microsoft.Extensions.Configuration.Json": "1.0.0-*", - "System.Net.Http": "4.0.0" + "System.Net.Http": "4.0.0", + "System.Diagnostics.DiagnosticSource": "4.0.0-beta-*" }, "frameworks": { - "net451": { } + "net451": { }, + "dotnet5.4": { } } } \ No newline at end of file diff --git a/src/Glimpse.Common/_DNX_project.lock.json b/src/Glimpse.Common/_DNX_project.lock.json deleted file mode 100644 index 7ee6c52c..00000000 --- a/src/Glimpse.Common/_DNX_project.lock.json +++ /dev/null @@ -1,6677 +0,0 @@ -{ - "locked": false, - "version": 2, - "targets": { - ".NETFramework,Version=v4.5.1": { - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.IO", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Features.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Features.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Collections.Concurrent", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} - } - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/net45/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/net45/Newtonsoft.Json.dll": {} - } - }, - "Rx-Core/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.Core.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Core.dll": {} - } - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "compile": { - "lib/net45/System.Reactive.Interfaces.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Interfaces.dll": {} - } - }, - "Rx-Linq/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.Linq.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Linq.dll": {} - } - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.PlatformServices.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.PlatformServices.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.IO/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime.Extensions/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Threading/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - } - }, - ".NETPlatform,Version=v5.4": { - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Tools": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Globalization.Extensions": "4.0.1-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525", - "System.Text.Encodings.Web": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Collections": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Linq": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Resources.ResourceManager": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Reflection": "4.0.10", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} - } - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { - "type": "package", - "dependencies": { - "System.AppContext": "4.0.1-rc2-23525", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Extensions": "4.0.1-rc2-23525", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} - } - }, - "Rx-Core/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} - } - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} - } - }, - "Rx-Linq/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} - } - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} - } - }, - "System.AppContext/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Collections.Concurrent.dll": {} - } - }, - "System.ComponentModel/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Primitives": "4.0.0", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Globalization/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.dll": {} - } - }, - "System.IO.FileSystem/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.Linq/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet5.1/System.Linq.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Linq.Expressions.dll": {} - } - }, - "System.Net.Primitives/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Net.Primitives.dll": {} - } - }, - "System.Net.WebSockets/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Net.WebSockets.dll": {} - } - }, - "System.ObjectModel/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.1.0-beta-23225": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.1-beta-23409": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.21-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet5.4/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.4/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.21-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "System.Security.Claims/4.0.1-rc2-23525": { - "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.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.dll": {} - } - }, - "System.Threading.Tasks/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.Tasks.dll": {} - } - } - }, - ".NETFramework,Version=v4.5.1/win7-x86": { - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.IO", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Features.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Features.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Collections.Concurrent", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} - } - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/net45/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/net45/Newtonsoft.Json.dll": {} - } - }, - "Rx-Core/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.Core.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Core.dll": {} - } - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "compile": { - "lib/net45/System.Reactive.Interfaces.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Interfaces.dll": {} - } - }, - "Rx-Linq/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.Linq.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Linq.dll": {} - } - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.PlatformServices.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.PlatformServices.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.IO/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime.Extensions/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Threading/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - } - }, - ".NETFramework,Version=v4.5.1/win7-x64": { - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.IO", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Features.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Features.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Collections.Concurrent", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} - } - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/net45/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/net45/Newtonsoft.Json.dll": {} - } - }, - "Rx-Core/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.Core.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Core.dll": {} - } - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "compile": { - "lib/net45/System.Reactive.Interfaces.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Interfaces.dll": {} - } - }, - "Rx-Linq/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.Linq.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Linq.dll": {} - } - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.PlatformServices.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.PlatformServices.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.IO/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime.Extensions/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Threading/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - } - }, - ".NETPlatform,Version=v5.4/win7-x86": { - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Tools": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Globalization.Extensions": "4.0.1-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525", - "System.Text.Encodings.Web": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Collections": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Linq": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Resources.ResourceManager": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Reflection": "4.0.10", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} - } - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { - "type": "package", - "dependencies": { - "System.AppContext": "4.0.1-rc2-23525", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Extensions": "4.0.1-rc2-23525", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} - } - }, - "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {} - } - }, - "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {} - } - }, - "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} - } - }, - "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Cng": "4.0.0-rc2-23525", - "System.Security.Cryptography.Csp": "4.0.0-rc2-23525", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "runtime.win7.System.Threading/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "Rx-Core/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} - } - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} - } - }, - "Rx-Linq/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} - } - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} - } - }, - "System.AppContext/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Collections.Concurrent.dll": {} - } - }, - "System.ComponentModel/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Primitives": "4.0.0", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Globalization/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.dll": {} - } - }, - "System.IO.FileSystem/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.Linq/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet5.1/System.Linq.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Linq.Expressions.dll": {} - } - }, - "System.Net.Primitives/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Net.Primitives.dll": {} - } - }, - "System.Net.WebSockets/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Net.WebSockets.dll": {} - } - }, - "System.ObjectModel/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.1.0-beta-23225": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.1-beta-23409": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.21-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet5.4/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.4/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.21-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.Claims/4.0.1-rc2-23525": { - "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.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", - "System.Text.Encoding": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Cng.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Csp.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.Tasks.dll": {} - } - } - }, - ".NETPlatform,Version=v5.4/win7-x64": { - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Tools": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Globalization.Extensions": "4.0.1-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525", - "System.Text.Encodings.Web": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Collections": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Linq": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Resources.ResourceManager": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Reflection": "4.0.10", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} - } - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { - "type": "package", - "dependencies": { - "System.AppContext": "4.0.1-rc2-23525", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Extensions": "4.0.1-rc2-23525", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} - } - }, - "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {} - } - }, - "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {} - } - }, - "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} - } - }, - "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Cng": "4.0.0-rc2-23525", - "System.Security.Cryptography.Csp": "4.0.0-rc2-23525", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "runtime.win7.System.Threading/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "Rx-Core/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} - } - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} - } - }, - "Rx-Linq/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} - } - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} - } - }, - "System.AppContext/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Collections.Concurrent.dll": {} - } - }, - "System.ComponentModel/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Primitives": "4.0.0", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Globalization/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.dll": {} - } - }, - "System.IO.FileSystem/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.Linq/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet5.1/System.Linq.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Linq.Expressions.dll": {} - } - }, - "System.Net.Primitives/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Net.Primitives.dll": {} - } - }, - "System.Net.WebSockets/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Net.WebSockets.dll": {} - } - }, - "System.ObjectModel/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.1.0-beta-23225": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.1-beta-23409": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.21-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet5.4/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.4/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.21-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.Claims/4.0.1-rc2-23525": { - "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.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", - "System.Text.Encoding": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Cng.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Csp.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.Tasks.dll": {} - } - } - } - }, - "libraries": { - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { - "type": "package", - "serviceable": true, - "sha512": "nTSnUeiLsYx55rbORWX7MP7dM6tKwUN4LGultn5WEshq9sArC6tjmazB5NYxw3PBb7ptiKsupv3icc1FN5FAgg==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll", - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.xml", - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll", - "lib/net451/Microsoft.AspNet.Http.Abstractions.xml", - "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16009.nupkg", - "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16009.nupkg.sha512", - "Microsoft.AspNet.Http.Abstractions.nuspec" - ] - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { - "type": "package", - "serviceable": true, - "sha512": "vk/l2BgRDzy2LERj1Oh8Znk6iiPlLlz1O2gREn+cbtiD3P3ATRH1S9MFc7SM1AZR6VSPdZm6exhF1nt3q0EpXg==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll", - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.xml", - "lib/net451/Microsoft.AspNet.Http.Features.dll", - "lib/net451/Microsoft.AspNet.Http.Features.xml", - "Microsoft.AspNet.Http.Features.1.0.0-rc2-16009.nupkg", - "Microsoft.AspNet.Http.Features.1.0.0-rc2-16009.nupkg.sha512", - "Microsoft.AspNet.Http.Features.nuspec" - ] - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { - "type": "package", - "serviceable": true, - "sha512": "MOYgTTWkUXDE2bS76CFIH6E+TytMilisgAJYAcRxRRYAYh/7I45KCuJDCP5l/2NA4mIgfecVUeXTe9EHn7etdA==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll", - "lib/dotnet5.4/Microsoft.Extensions.Configuration.xml", - "lib/net451/Microsoft.Extensions.Configuration.dll", - "lib/net451/Microsoft.Extensions.Configuration.xml", - "lib/netcore50/Microsoft.Extensions.Configuration.dll", - "lib/netcore50/Microsoft.Extensions.Configuration.xml", - "Microsoft.Extensions.Configuration.1.0.0-rc2-15866.nupkg", - "Microsoft.Extensions.Configuration.1.0.0-rc2-15866.nupkg.sha512", - "Microsoft.Extensions.Configuration.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { - "type": "package", - "serviceable": true, - "sha512": "mCbiKPorBDupxnYahPCdAMbEr+5j8mzuZVrUzjhPAnnFA94POhZ2US+gdf2exDhLzIM0cDy0mUSVWIjlcIr1QA==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.xml", - "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15866.nupkg", - "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15866.nupkg.sha512", - "Microsoft.Extensions.Configuration.Abstractions.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { - "type": "package", - "serviceable": true, - "sha512": "2wI+qIu9YedvCLfep2RxBTYyAqy6Mkr9bVJwzZBHw7yg/GEpCXeOhppWvEXEd/I6sqWWUB+fYNnZtm5h9NlH8A==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll", - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net451/Microsoft.Extensions.Configuration.Binder.xml", - "lib/netcore50/Microsoft.Extensions.Configuration.Binder.dll", - "lib/netcore50/Microsoft.Extensions.Configuration.Binder.xml", - "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15866.nupkg", - "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15866.nupkg.sha512", - "Microsoft.Extensions.Configuration.Binder.nuspec" - ] - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { - "type": "package", - "serviceable": true, - "sha512": "cuFxC3SPMIOIX+uUHo9QEri+P9DC6CPkLltJRq2qwgjFIMQ8uJ9nJI6HUYZpEU2Kyh6nm2DIrVSnjG5ycsk9cQ==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll", - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.xml", - "lib/net451/Microsoft.Extensions.DependencyInjection.dll", - "lib/net451/Microsoft.Extensions.DependencyInjection.xml", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.dll", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.xml", - "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15839.nupkg", - "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15839.nupkg.sha512", - "Microsoft.Extensions.DependencyInjection.nuspec" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { - "type": "package", - "serviceable": true, - "sha512": "JxM3ERvmmjQqRNfQlTeXnjWAqrIzoe+x5alZLuSOw2b5p/191vObRKi0SuFmFvBi/mPoHYqth6cLwSLTASeD3Q==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15839.nupkg", - "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15839.nupkg.sha512", - "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec" - ] - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { - "type": "package", - "serviceable": true, - "sha512": "jwr1ZH/IUqG6kLpSi8lUueZB/JFQWJUNMjPgpfObmaW7/mfl83/6qDhm7I6Z9Ix0ULjWDEAGmaHTykE06bB/eA==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll", - "lib/dotnet5.4/Microsoft.Extensions.Logging.xml", - "lib/net451/Microsoft.Extensions.Logging.dll", - "lib/net451/Microsoft.Extensions.Logging.xml", - "lib/netcore50/Microsoft.Extensions.Logging.dll", - "lib/netcore50/Microsoft.Extensions.Logging.xml", - "Microsoft.Extensions.Logging.1.0.0-rc2-15867.nupkg", - "Microsoft.Extensions.Logging.1.0.0-rc2-15867.nupkg.sha512", - "Microsoft.Extensions.Logging.nuspec" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { - "type": "package", - "serviceable": true, - "sha512": "f37cph4Ec/2fSoy1kQUVICI7vx7JT+aPrBoePXVncsoFssNWzLbOpQ4Jwb9Gntd1qRKpAWyH/OsSdGHjV3rCSA==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net451/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.xml", - "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15867.nupkg", - "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15867.nupkg.sha512", - "Microsoft.Extensions.Logging.Abstractions.nuspec" - ] - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { - "type": "package", - "serviceable": true, - "sha512": "YHgRu79p6vbxr5BvnwD0vb2j96EQiNlZjMpra0VdUWYx7jB1Z8M9qB5OBF1ZUgiUVaGmwKFukd4EDqw4sS8MDA==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll", - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.xml", - "lib/net451/Microsoft.Extensions.OptionsModel.dll", - "lib/net451/Microsoft.Extensions.OptionsModel.xml", - "lib/netcore50/Microsoft.Extensions.OptionsModel.dll", - "lib/netcore50/Microsoft.Extensions.OptionsModel.xml", - "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15848.nupkg", - "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15848.nupkg.sha512", - "Microsoft.Extensions.OptionsModel.nuspec" - ] - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { - "type": "package", - "serviceable": true, - "sha512": "BtXxSh8IrQDGNjuLago+2LQ2UEC7Up8oHS6U30HY4sR2UlOauY5RGNafffLz5DzMoHfs02eDeu9saRViXjxBxQ==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll", - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.xml", - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll", - "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml", - "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16237.nupkg", - "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16237.nupkg.sha512", - "Microsoft.Extensions.PlatformAbstractions.nuspec" - ] - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { - "type": "package", - "serviceable": true, - "sha512": "ImxZgBrbQStbBlGvR59w7euRE4pKIaKURQT8v70SwWZgrvecl9qXFxuJeoyLhwDBxErF1vdW2QJU7GHFdKZTaA==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll", - "lib/dotnet5.4/Microsoft.Extensions.Primitives.xml", - "lib/net451/Microsoft.Extensions.Primitives.dll", - "lib/net451/Microsoft.Extensions.Primitives.xml", - "lib/netcore50/Microsoft.Extensions.Primitives.dll", - "lib/netcore50/Microsoft.Extensions.Primitives.xml", - "Microsoft.Extensions.Primitives.1.0.0-rc2-15889.nupkg", - "Microsoft.Extensions.Primitives.1.0.0-rc2-15889.nupkg.sha512", - "Microsoft.Extensions.Primitives.nuspec" - ] - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", - "files": [ - "lib/dotnet/Microsoft.Win32.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "Microsoft.Win32.Primitives.4.0.0.nupkg", - "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512", - "Microsoft.Win32.Primitives.nuspec", - "ref/dotnet/de/Microsoft.Win32.Primitives.xml", - "ref/dotnet/es/Microsoft.Win32.Primitives.xml", - "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", - "ref/dotnet/it/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", - "ref/dotnet/Microsoft.Win32.Primitives.dll", - "ref/dotnet/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", - "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", - "files": [ - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netcore45/Newtonsoft.Json.dll", - "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", - "Newtonsoft.Json.6.0.6.nupkg", - "Newtonsoft.Json.6.0.6.nupkg.sha512", - "Newtonsoft.Json.nuspec", - "tools/install.ps1" - ] - }, - "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "m2rDRsf1hcnaUlhKgF9op2UmADh1/5nJpfBJHkKPK46C6s2dI3LAJ0LpAIw1arW9xJDd2P//5gdvUFRGBRRang==", - "files": [ - "lib/DNXCore50/System.Linq.Expressions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/_._", - "runtime.any.System.Linq.Expressions.4.0.11-rc2-23525.nupkg", - "runtime.any.System.Linq.Expressions.4.0.11-rc2-23525.nupkg.sha512", - "runtime.any.System.Linq.Expressions.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "H8lMtaHAPFEjWCfOZyPwN7ctkAxC3vN65x+gzaUfcPBLrHMLaqT3qsNy5H3c66oFGt3NOCm4WEYlvjeYjd8/sQ==", - "files": [ - "ref/dotnet/_._", - "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg", - "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg.sha512", - "runtime.win.System.Runtime.InteropServices.RuntimeInformation.nuspec", - "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll" - ] - }, - "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "6txhz00DQayySs37jFHBE7C0O5dpTmlZrCxJLDdukcyKpHnyhNCOEKz6r+93mFeziRY6Lf4f3K7XgnvN/1vPJQ==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg", - "runtime.win7.System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg.sha512", - "runtime.win7.System.Diagnostics.Debug.nuspec", - "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll", - "runtimes/win7/lib/netcore50/System.Diagnostics.Debug.dll", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" - ] - }, - "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "KjAFrVUkamkrAYajk+bpM5qhZ5UzAMVS1jlR4fW6keFk8ltp57PfivcBGRDbQDhCMzUVIjEFQ5RHXIsLOgpZHg==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Globalization.Extensions.4.0.1-rc2-23525.nupkg", - "runtime.win7.System.Globalization.Extensions.4.0.1-rc2-23525.nupkg.sha512", - "runtime.win7.System.Globalization.Extensions.nuspec", - "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll", - "runtimes/win7/lib/net/_._" - ] - }, - "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Rk2nN279viCiNX+a05TDaZAWxtp1Kl/NytR4jT75dM24niwhNtLVpDq3mZ6L8AV0lSnkd6UeHhMOrcbMhoiHyg==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.IO.FileSystem.4.0.1-rc2-23525.nupkg", - "runtime.win7.System.IO.FileSystem.4.0.1-rc2-23525.nupkg.sha512", - "runtime.win7.System.IO.FileSystem.nuspec", - "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll", - "runtimes/win7/lib/net/_._", - "runtimes/win7/lib/netcore50/System.IO.FileSystem.dll", - "runtimes/win7/lib/win8/_._", - "runtimes/win7/lib/wp8/_._", - "runtimes/win7/lib/wpa81/_._" - ] - }, - "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "fQXiEWBBAf85oQrn/PhE5h0x1Bz2MsQLzFnsmPHXK3F52aCXSfA8XG7d9/P4M635T6YuZz4Hl4RmJdFYoO84Ww==", - "files": [ - "lib/DNXCore50/System.Net.Primitives.dll", - "ref/dotnet/_._", - "runtime.win7.System.Net.Primitives.4.0.11-rc2-23525.nupkg", - "runtime.win7.System.Net.Primitives.4.0.11-rc2-23525.nupkg.sha512", - "runtime.win7.System.Net.Primitives.nuspec", - "runtimes/win7/lib/netcore50/System.Net.Primitives.dll" - ] - }, - "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "o9yhni1ibV4TZ8pDXnGWrbdYUN0vDTqjC08fBoNF/iHtg4m5TNATIaEVDXOF1ny1ymyfZE/6VRC7m2twuWD/+A==", - "files": [ - "lib/DNXCore50/System.Runtime.Extensions.dll", - "lib/netcore50/System.Runtime.Extensions.dll", - "ref/dotnet/_._", - "runtime.win7.System.Runtime.Extensions.4.0.11-rc2-23525.nupkg", - "runtime.win7.System.Runtime.Extensions.4.0.11-rc2-23525.nupkg.sha512", - "runtime.win7.System.Runtime.Extensions.nuspec", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" - ] - }, - "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "OZghF4dY+gj/IhXj1FOrlDI//lEb0q9/Y/5GPftSotrk/sDRMpiflbAzVziNCkvOnDPowaU+kayZGCLU9zMRqA==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg", - "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg.sha512", - "runtime.win7.System.Security.Cryptography.Algorithms.nuspec", - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll", - "runtimes/win7/lib/net/_._" - ] - }, - "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "fwjrSecPvxUhksPU8iIxjY8z5akm/KqTTCUWEETuka9WkaFCU1ktrqJI/UJrn+ImXBv87MbLYBblixdAYAr75g==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg", - "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg.sha512", - "runtime.win7.System.Security.Cryptography.Encoding.nuspec", - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll", - "runtimes/win7/lib/net/_._" - ] - }, - "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "MstJY/cwJg4HYbUk+z+m8r1Ffw14Nsm8DD7QNxtNfXI99eFfvjDhn7ur8S7m5nTBk23EPsUfN9VAFESXTrv2fw==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg", - "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg.sha512", - "runtime.win7.System.Security.Cryptography.X509Certificates.nuspec", - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win7/lib/net/_._", - "runtimes/win7/lib/netcore50/System.Security.Cryptography.X509Certificates.dll" - ] - }, - "runtime.win7.System.Threading/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "gYFmKqjSPB2E2PpyEehCvovB6pPiRJbw04DwViGE7FGyrE0J9VsdeFTeIpzWcKiTg5pzdlvmUg100MIxfYWrjA==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Threading.4.0.11-rc2-23525.nupkg", - "runtime.win7.System.Threading.4.0.11-rc2-23525.nupkg.sha512", - "runtime.win7.System.Threading.nuspec", - "runtimes/win7/lib/DNXCore50/System.Threading.dll", - "runtimes/win7/lib/netcore50/System.Threading.dll", - "runtimes/win8-aot/lib/netcore50/System.Threading.dll" - ] - }, - "Rx-Core/2.2.5": { - "type": "package", - "sha512": "DfWVTfW6tvRkkqpnRHKxPIvaRZyDJGADuqrE6J2nwejOQbLRWi0rNUwXkViDWz++25BGDy3iRE5OE6Dv8mJxYQ==", - "files": [ - "lib/net40/System.Reactive.Core.dll", - "lib/net40/System.Reactive.Core.XML", - "lib/net45/System.Reactive.Core.dll", - "lib/net45/System.Reactive.Core.XML", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.dll", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.XML", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.XML", - "lib/portable-win81+wpa81/System.Reactive.Core.dll", - "lib/portable-win81+wpa81/System.Reactive.Core.XML", - "lib/portable-windows8+net45+wp8/System.Reactive.Core.dll", - "lib/portable-windows8+net45+wp8/System.Reactive.Core.XML", - "lib/sl5/System.Reactive.Core.dll", - "lib/sl5/System.Reactive.Core.XML", - "lib/windows8/System.Reactive.Core.dll", - "lib/windows8/System.Reactive.Core.XML", - "lib/windowsphone71/System.Reactive.Core.dll", - "lib/windowsphone71/System.Reactive.Core.XML", - "lib/windowsphone8/System.Reactive.Core.dll", - "lib/windowsphone8/System.Reactive.Core.XML", - "Rx-Core.2.2.5.nupkg", - "Rx-Core.2.2.5.nupkg.sha512", - "Rx-Core.nuspec" - ] - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "sha512": "FKtG2QfMIeUcfB7r3a89VoAiszX3DTvYETkpC6U0FzWpxRK/mcHyzYOsniDfag+NsDG0P1k1c8yNSefXKp3t2A==", - "files": [ - "lib/net40/System.Reactive.Interfaces.dll", - "lib/net40/System.Reactive.Interfaces.XML", - "lib/net45/System.Reactive.Interfaces.dll", - "lib/net45/System.Reactive.Interfaces.XML", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.dll", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.XML", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.XML", - "lib/portable-win81+wpa81/System.Reactive.Interfaces.dll", - "lib/portable-win81+wpa81/System.Reactive.Interfaces.XML", - "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.dll", - "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.XML", - "lib/sl5/System.Reactive.Interfaces.dll", - "lib/sl5/System.Reactive.Interfaces.XML", - "lib/windows8/System.Reactive.Interfaces.dll", - "lib/windows8/System.Reactive.Interfaces.XML", - "lib/windowsphone71/System.Reactive.Interfaces.dll", - "lib/windowsphone71/System.Reactive.Interfaces.XML", - "lib/windowsphone8/System.Reactive.Interfaces.dll", - "lib/windowsphone8/System.Reactive.Interfaces.XML", - "Rx-Interfaces.2.2.5.nupkg", - "Rx-Interfaces.2.2.5.nupkg.sha512", - "Rx-Interfaces.nuspec" - ] - }, - "Rx-Linq/2.2.5": { - "type": "package", - "sha512": "UTeCIu3cWPExxmTzdiVq7SalqTBhUaomBTaAC9LpYPoAopjlFwA3hjVWXoLkGlDc/44wqJemJuEwFP00KphiFg==", - "files": [ - "lib/net40/System.Reactive.Linq.dll", - "lib/net40/System.Reactive.Linq.XML", - "lib/net45/System.Reactive.Linq.dll", - "lib/net45/System.Reactive.Linq.XML", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.dll", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.XML", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.XML", - "lib/portable-win81+wpa81/System.Reactive.Linq.dll", - "lib/portable-win81+wpa81/System.Reactive.Linq.XML", - "lib/portable-windows8+net45+wp8/System.Reactive.Linq.dll", - "lib/portable-windows8+net45+wp8/System.Reactive.Linq.XML", - "lib/sl5/System.Reactive.Linq.dll", - "lib/sl5/System.Reactive.Linq.XML", - "lib/windows8/System.Reactive.Linq.dll", - "lib/windows8/System.Reactive.Linq.XML", - "lib/windowsphone71/System.Reactive.Linq.dll", - "lib/windowsphone71/System.Reactive.Linq.XML", - "lib/windowsphone8/System.Reactive.Linq.dll", - "lib/windowsphone8/System.Reactive.Linq.XML", - "Rx-Linq.2.2.5.nupkg", - "Rx-Linq.2.2.5.nupkg.sha512", - "Rx-Linq.nuspec" - ] - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "sha512": "pMnNEvJVjT+wuDib+W/bi5hhIYcre7dW5yxvKrJxnR4iKJ1VLA/dY2FTtjDriHGx7OeGn12lQewXlH2oHiWFPA==", - "files": [ - "lib/net40/System.Reactive.PlatformServices.dll", - "lib/net40/System.Reactive.PlatformServices.XML", - "lib/net45/System.Reactive.PlatformServices.dll", - "lib/net45/System.Reactive.PlatformServices.XML", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.dll", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.XML", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.XML", - "lib/portable-win81+wpa81/System.Reactive.PlatformServices.dll", - "lib/portable-win81+wpa81/System.Reactive.PlatformServices.XML", - "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.dll", - "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.XML", - "lib/sl5/System.Reactive.PlatformServices.dll", - "lib/sl5/System.Reactive.PlatformServices.XML", - "lib/windows8/System.Reactive.PlatformServices.dll", - "lib/windows8/System.Reactive.PlatformServices.XML", - "lib/windowsphone71/System.Reactive.PlatformServices.dll", - "lib/windowsphone71/System.Reactive.PlatformServices.XML", - "lib/windowsphone8/System.Reactive.PlatformServices.dll", - "lib/windowsphone8/System.Reactive.PlatformServices.XML", - "Rx-PlatformServices.2.2.5.nupkg", - "Rx-PlatformServices.2.2.5.nupkg.sha512", - "Rx-PlatformServices.nuspec" - ] - }, - "System.AppContext/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "1AErxnp8ORCt1JmFgddMK5xYzIgfFE8yPRXXLRAHv43Dj6oHGsdE0sz4eB+lBkbLrzd+MWd/FJc6/t0It6qJxw==", - "files": [ - "lib/DNXCore50/System.AppContext.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.AppContext.dll", - "lib/netcore50/System.AppContext.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.AppContext.xml", - "ref/dotnet5.4/es/System.AppContext.xml", - "ref/dotnet5.4/fr/System.AppContext.xml", - "ref/dotnet5.4/it/System.AppContext.xml", - "ref/dotnet5.4/ja/System.AppContext.xml", - "ref/dotnet5.4/ko/System.AppContext.xml", - "ref/dotnet5.4/ru/System.AppContext.xml", - "ref/dotnet5.4/System.AppContext.dll", - "ref/dotnet5.4/System.AppContext.xml", - "ref/dotnet5.4/zh-hans/System.AppContext.xml", - "ref/dotnet5.4/zh-hant/System.AppContext.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.AppContext.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.AppContext.4.0.1-rc2-23525.nupkg", - "System.AppContext.4.0.1-rc2-23525.nupkg.sha512", - "System.AppContext.nuspec" - ] - }, - "System.Collections/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "xJmMbyH4afnSkGiOhTiSyAWL6j45yYDG3l63D3peganrFKvzln1ks7SGfERzBEPqKFHBDoJ7TlRpJQp40wJNUA==", - "files": [ - "lib/DNXCore50/System.Collections.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Collections.xml", - "ref/dotnet5.1/es/System.Collections.xml", - "ref/dotnet5.1/fr/System.Collections.xml", - "ref/dotnet5.1/it/System.Collections.xml", - "ref/dotnet5.1/ja/System.Collections.xml", - "ref/dotnet5.1/ko/System.Collections.xml", - "ref/dotnet5.1/ru/System.Collections.xml", - "ref/dotnet5.1/System.Collections.dll", - "ref/dotnet5.1/System.Collections.xml", - "ref/dotnet5.1/zh-hans/System.Collections.xml", - "ref/dotnet5.1/zh-hant/System.Collections.xml", - "ref/dotnet5.4/de/System.Collections.xml", - "ref/dotnet5.4/es/System.Collections.xml", - "ref/dotnet5.4/fr/System.Collections.xml", - "ref/dotnet5.4/it/System.Collections.xml", - "ref/dotnet5.4/ja/System.Collections.xml", - "ref/dotnet5.4/ko/System.Collections.xml", - "ref/dotnet5.4/ru/System.Collections.xml", - "ref/dotnet5.4/System.Collections.dll", - "ref/dotnet5.4/System.Collections.xml", - "ref/dotnet5.4/zh-hans/System.Collections.xml", - "ref/dotnet5.4/zh-hant/System.Collections.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Collections.xml", - "ref/netcore50/es/System.Collections.xml", - "ref/netcore50/fr/System.Collections.xml", - "ref/netcore50/it/System.Collections.xml", - "ref/netcore50/ja/System.Collections.xml", - "ref/netcore50/ko/System.Collections.xml", - "ref/netcore50/ru/System.Collections.xml", - "ref/netcore50/System.Collections.dll", - "ref/netcore50/System.Collections.xml", - "ref/netcore50/zh-hans/System.Collections.xml", - "ref/netcore50/zh-hant/System.Collections.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Collections.dll", - "System.Collections.4.0.11-rc2-23525.nupkg", - "System.Collections.4.0.11-rc2-23525.nupkg.sha512", - "System.Collections.nuspec" - ] - }, - "System.Collections.Concurrent/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "rJUILubHbGrHU1CNoZwUpJQjTL5XgG7BNT5hwQbN9fNLIWh/8t6jqUNE6pGoEg/N/l8vBeFXwfVnzrjAlFfTHA==", - "files": [ - "lib/dotnet5.4/System.Collections.Concurrent.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.2/de/System.Collections.Concurrent.xml", - "ref/dotnet5.2/es/System.Collections.Concurrent.xml", - "ref/dotnet5.2/fr/System.Collections.Concurrent.xml", - "ref/dotnet5.2/it/System.Collections.Concurrent.xml", - "ref/dotnet5.2/ja/System.Collections.Concurrent.xml", - "ref/dotnet5.2/ko/System.Collections.Concurrent.xml", - "ref/dotnet5.2/ru/System.Collections.Concurrent.xml", - "ref/dotnet5.2/System.Collections.Concurrent.dll", - "ref/dotnet5.2/System.Collections.Concurrent.xml", - "ref/dotnet5.2/zh-hans/System.Collections.Concurrent.xml", - "ref/dotnet5.2/zh-hant/System.Collections.Concurrent.xml", - "ref/dotnet5.4/de/System.Collections.Concurrent.xml", - "ref/dotnet5.4/es/System.Collections.Concurrent.xml", - "ref/dotnet5.4/fr/System.Collections.Concurrent.xml", - "ref/dotnet5.4/it/System.Collections.Concurrent.xml", - "ref/dotnet5.4/ja/System.Collections.Concurrent.xml", - "ref/dotnet5.4/ko/System.Collections.Concurrent.xml", - "ref/dotnet5.4/ru/System.Collections.Concurrent.xml", - "ref/dotnet5.4/System.Collections.Concurrent.dll", - "ref/dotnet5.4/System.Collections.Concurrent.xml", - "ref/dotnet5.4/zh-hans/System.Collections.Concurrent.xml", - "ref/dotnet5.4/zh-hant/System.Collections.Concurrent.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Collections.Concurrent.xml", - "ref/netcore50/es/System.Collections.Concurrent.xml", - "ref/netcore50/fr/System.Collections.Concurrent.xml", - "ref/netcore50/it/System.Collections.Concurrent.xml", - "ref/netcore50/ja/System.Collections.Concurrent.xml", - "ref/netcore50/ko/System.Collections.Concurrent.xml", - "ref/netcore50/ru/System.Collections.Concurrent.xml", - "ref/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Collections.Concurrent.4.0.11-rc2-23525.nupkg", - "System.Collections.Concurrent.4.0.11-rc2-23525.nupkg.sha512", - "System.Collections.Concurrent.nuspec" - ] - }, - "System.ComponentModel/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "QJ3RnKbTPqJ64NH+VQ15URBa0XlJHUdM6whX1C12nLhdJ48c4P1lMpJCWHxPbUJuj4MCn+0eAqUxi4UZ/hzokA==", - "files": [ - "lib/dotnet5.4/System.ComponentModel.dll", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet5.1/de/System.ComponentModel.xml", - "ref/dotnet5.1/es/System.ComponentModel.xml", - "ref/dotnet5.1/fr/System.ComponentModel.xml", - "ref/dotnet5.1/it/System.ComponentModel.xml", - "ref/dotnet5.1/ja/System.ComponentModel.xml", - "ref/dotnet5.1/ko/System.ComponentModel.xml", - "ref/dotnet5.1/ru/System.ComponentModel.xml", - "ref/dotnet5.1/System.ComponentModel.dll", - "ref/dotnet5.1/System.ComponentModel.xml", - "ref/dotnet5.1/zh-hans/System.ComponentModel.xml", - "ref/dotnet5.1/zh-hant/System.ComponentModel.xml", - "ref/net45/_._", - "ref/netcore50/de/System.ComponentModel.xml", - "ref/netcore50/es/System.ComponentModel.xml", - "ref/netcore50/fr/System.ComponentModel.xml", - "ref/netcore50/it/System.ComponentModel.xml", - "ref/netcore50/ja/System.ComponentModel.xml", - "ref/netcore50/ko/System.ComponentModel.xml", - "ref/netcore50/ru/System.ComponentModel.xml", - "ref/netcore50/System.ComponentModel.dll", - "ref/netcore50/System.ComponentModel.xml", - "ref/netcore50/zh-hans/System.ComponentModel.xml", - "ref/netcore50/zh-hant/System.ComponentModel.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "System.ComponentModel.4.0.1-rc2-23525.nupkg", - "System.ComponentModel.4.0.1-rc2-23525.nupkg.sha512", - "System.ComponentModel.nuspec" - ] - }, - "System.ComponentModel.Primitives/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "8xElzEmEH5G6XK7qqxRLQ/2r1IuhXlkz0ZdgKNp6ViDD1ukadd+5hccqg1G/L4AYRy96ddMdvgyJjFW87Cegbw==", - "files": [ - "lib/dotnet/System.ComponentModel.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.ComponentModel.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.ComponentModel.Primitives.xml", - "ref/dotnet/es/System.ComponentModel.Primitives.xml", - "ref/dotnet/fr/System.ComponentModel.Primitives.xml", - "ref/dotnet/it/System.ComponentModel.Primitives.xml", - "ref/dotnet/ja/System.ComponentModel.Primitives.xml", - "ref/dotnet/ko/System.ComponentModel.Primitives.xml", - "ref/dotnet/ru/System.ComponentModel.Primitives.xml", - "ref/dotnet/System.ComponentModel.Primitives.dll", - "ref/dotnet/System.ComponentModel.Primitives.xml", - "ref/dotnet/zh-hans/System.ComponentModel.Primitives.xml", - "ref/dotnet/zh-hant/System.ComponentModel.Primitives.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.ComponentModel.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.ComponentModel.Primitives.4.0.0.nupkg", - "System.ComponentModel.Primitives.4.0.0.nupkg.sha512", - "System.ComponentModel.Primitives.nuspec" - ] - }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "ZLOBeLIwqn7QcQvcy87DUJIfYtToNkp7mqzw9j27FKFG4C6oeiM63aPj41D4B78t6VNp9N1dUGybApOaIhrX5A==", - "files": [ - "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.TypeConverter.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/es/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/fr/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/it/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/ja/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/ko/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/ru/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll", - "ref/dotnet5.1/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.TypeConverter.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.ComponentModel.TypeConverter.4.0.1-rc2-23525.nupkg", - "System.ComponentModel.TypeConverter.4.0.1-rc2-23525.nupkg.sha512", - "System.ComponentModel.TypeConverter.nuspec" - ] - }, - "System.Diagnostics.Debug/4.0.0": { - "type": "package", - "sha512": "AYJsLLGDVTC/nyURjgAo7Lpye0+HuSkcQujUf+NgQVdC/C/ky5NyamQHCforHJzgqspitMMtBe8B4UBdGXy1zQ==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Diagnostics.Debug.xml", - "ref/dotnet/es/System.Diagnostics.Debug.xml", - "ref/dotnet/fr/System.Diagnostics.Debug.xml", - "ref/dotnet/it/System.Diagnostics.Debug.xml", - "ref/dotnet/ja/System.Diagnostics.Debug.xml", - "ref/dotnet/ko/System.Diagnostics.Debug.xml", - "ref/dotnet/ru/System.Diagnostics.Debug.xml", - "ref/dotnet/System.Diagnostics.Debug.dll", - "ref/dotnet/System.Diagnostics.Debug.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Diagnostics.Debug.xml", - "ref/netcore50/es/System.Diagnostics.Debug.xml", - "ref/netcore50/fr/System.Diagnostics.Debug.xml", - "ref/netcore50/it/System.Diagnostics.Debug.xml", - "ref/netcore50/ja/System.Diagnostics.Debug.xml", - "ref/netcore50/ko/System.Diagnostics.Debug.xml", - "ref/netcore50/ru/System.Diagnostics.Debug.xml", - "ref/netcore50/System.Diagnostics.Debug.dll", - "ref/netcore50/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Diagnostics.Debug.4.0.0.nupkg", - "System.Diagnostics.Debug.4.0.0.nupkg.sha512", - "System.Diagnostics.Debug.nuspec" - ] - }, - "System.Diagnostics.Debug/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "T/wq74JBg48B5FU5R1bOW0cTyclAXL5GAqF/jehLxM65Sc8cNmJ8GMAQvjmmIa6mwmRF27U63Gs1UeiV0QtkjQ==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/es/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/fr/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/it/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/ja/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/ko/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/ru/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/System.Diagnostics.Debug.dll", - "ref/dotnet5.1/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/zh-hans/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/zh-hant/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/de/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/es/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/fr/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/it/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/ja/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/ko/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/ru/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/System.Diagnostics.Debug.dll", - "ref/dotnet5.4/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/zh-hans/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/zh-hant/System.Diagnostics.Debug.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Diagnostics.Debug.xml", - "ref/netcore50/es/System.Diagnostics.Debug.xml", - "ref/netcore50/fr/System.Diagnostics.Debug.xml", - "ref/netcore50/it/System.Diagnostics.Debug.xml", - "ref/netcore50/ja/System.Diagnostics.Debug.xml", - "ref/netcore50/ko/System.Diagnostics.Debug.xml", - "ref/netcore50/ru/System.Diagnostics.Debug.xml", - "ref/netcore50/System.Diagnostics.Debug.dll", - "ref/netcore50/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg", - "System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg.sha512", - "System.Diagnostics.Debug.nuspec" - ] - }, - "System.Diagnostics.Tools/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Bh9ra6Wpewj2XAkbCjrSemxNqLqCCoAO/1+l/RQZuQlSZ2v9x/bpnA6IEgan8JX35gJpGJc1rmgAdQl2KFpWwA==", - "files": [ - "lib/DNXCore50/System.Diagnostics.Tools.dll", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Tools.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet5.1/de/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/es/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/fr/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/it/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/ja/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/ko/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/ru/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/System.Diagnostics.Tools.dll", - "ref/dotnet5.1/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/zh-hans/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/zh-hant/System.Diagnostics.Tools.xml", - "ref/net45/_._", - "ref/netcore50/de/System.Diagnostics.Tools.xml", - "ref/netcore50/es/System.Diagnostics.Tools.xml", - "ref/netcore50/fr/System.Diagnostics.Tools.xml", - "ref/netcore50/it/System.Diagnostics.Tools.xml", - "ref/netcore50/ja/System.Diagnostics.Tools.xml", - "ref/netcore50/ko/System.Diagnostics.Tools.xml", - "ref/netcore50/ru/System.Diagnostics.Tools.xml", - "ref/netcore50/System.Diagnostics.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", - "System.Diagnostics.Tools.4.0.1-rc2-23525.nupkg", - "System.Diagnostics.Tools.4.0.1-rc2-23525.nupkg.sha512", - "System.Diagnostics.Tools.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "serviceable": true, - "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", - "files": [ - "lib/DNXCore50/System.Diagnostics.Tracing.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Diagnostics.Tracing.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.Diagnostics.Tracing.xml", - "ref/dotnet/es/System.Diagnostics.Tracing.xml", - "ref/dotnet/fr/System.Diagnostics.Tracing.xml", - "ref/dotnet/it/System.Diagnostics.Tracing.xml", - "ref/dotnet/ja/System.Diagnostics.Tracing.xml", - "ref/dotnet/ko/System.Diagnostics.Tracing.xml", - "ref/dotnet/ru/System.Diagnostics.Tracing.xml", - "ref/dotnet/System.Diagnostics.Tracing.dll", - "ref/dotnet/System.Diagnostics.Tracing.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", - "System.Diagnostics.Tracing.4.0.20.nupkg", - "System.Diagnostics.Tracing.4.0.20.nupkg.sha512", - "System.Diagnostics.Tracing.nuspec" - ] - }, - "System.Globalization/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "oy7h7UsvcRRdmRL0vzNHwCSqQVP6Np80oRKRPJplTFtpfxnjj1O7nkkxl0So7nQnSE6lrE4a5SH7dFAjEH6Ncg==", - "files": [ - "lib/DNXCore50/System.Globalization.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Globalization.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Globalization.xml", - "ref/dotnet5.1/es/System.Globalization.xml", - "ref/dotnet5.1/fr/System.Globalization.xml", - "ref/dotnet5.1/it/System.Globalization.xml", - "ref/dotnet5.1/ja/System.Globalization.xml", - "ref/dotnet5.1/ko/System.Globalization.xml", - "ref/dotnet5.1/ru/System.Globalization.xml", - "ref/dotnet5.1/System.Globalization.dll", - "ref/dotnet5.1/System.Globalization.xml", - "ref/dotnet5.1/zh-hans/System.Globalization.xml", - "ref/dotnet5.1/zh-hant/System.Globalization.xml", - "ref/dotnet5.4/de/System.Globalization.xml", - "ref/dotnet5.4/es/System.Globalization.xml", - "ref/dotnet5.4/fr/System.Globalization.xml", - "ref/dotnet5.4/it/System.Globalization.xml", - "ref/dotnet5.4/ja/System.Globalization.xml", - "ref/dotnet5.4/ko/System.Globalization.xml", - "ref/dotnet5.4/ru/System.Globalization.xml", - "ref/dotnet5.4/System.Globalization.dll", - "ref/dotnet5.4/System.Globalization.xml", - "ref/dotnet5.4/zh-hans/System.Globalization.xml", - "ref/dotnet5.4/zh-hant/System.Globalization.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Globalization.xml", - "ref/netcore50/es/System.Globalization.xml", - "ref/netcore50/fr/System.Globalization.xml", - "ref/netcore50/it/System.Globalization.xml", - "ref/netcore50/ja/System.Globalization.xml", - "ref/netcore50/ko/System.Globalization.xml", - "ref/netcore50/ru/System.Globalization.xml", - "ref/netcore50/System.Globalization.dll", - "ref/netcore50/System.Globalization.xml", - "ref/netcore50/zh-hans/System.Globalization.xml", - "ref/netcore50/zh-hant/System.Globalization.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", - "System.Globalization.4.0.11-rc2-23525.nupkg", - "System.Globalization.4.0.11-rc2-23525.nupkg.sha512", - "System.Globalization.nuspec" - ] - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", - "files": [ - "lib/DNXCore50/System.Globalization.Calendars.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Calendars.dll", - "lib/netcore50/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.Globalization.Calendars.xml", - "ref/dotnet/es/System.Globalization.Calendars.xml", - "ref/dotnet/fr/System.Globalization.Calendars.xml", - "ref/dotnet/it/System.Globalization.Calendars.xml", - "ref/dotnet/ja/System.Globalization.Calendars.xml", - "ref/dotnet/ko/System.Globalization.Calendars.xml", - "ref/dotnet/ru/System.Globalization.Calendars.xml", - "ref/dotnet/System.Globalization.Calendars.dll", - "ref/dotnet/System.Globalization.Calendars.xml", - "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", - "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Calendars.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", - "System.Globalization.Calendars.4.0.0.nupkg", - "System.Globalization.Calendars.4.0.0.nupkg.sha512", - "System.Globalization.Calendars.nuspec" - ] - }, - "System.Globalization.Extensions/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "WcX9wVjeAPI6Aiuz0UGdIS7abeu/XQRm0yK/ff8nr7cJn5wx69ACoF0/SHkfB1HrW4WDUQiKzgRpE8DDl6VSDw==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Globalization.Extensions.xml", - "ref/dotnet5.4/es/System.Globalization.Extensions.xml", - "ref/dotnet5.4/fr/System.Globalization.Extensions.xml", - "ref/dotnet5.4/it/System.Globalization.Extensions.xml", - "ref/dotnet5.4/ja/System.Globalization.Extensions.xml", - "ref/dotnet5.4/ko/System.Globalization.Extensions.xml", - "ref/dotnet5.4/ru/System.Globalization.Extensions.xml", - "ref/dotnet5.4/System.Globalization.Extensions.dll", - "ref/dotnet5.4/System.Globalization.Extensions.xml", - "ref/dotnet5.4/zh-hans/System.Globalization.Extensions.xml", - "ref/dotnet5.4/zh-hant/System.Globalization.Extensions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Extensions.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Globalization.Extensions.4.0.1-rc2-23525.nupkg", - "System.Globalization.Extensions.4.0.1-rc2-23525.nupkg.sha512", - "System.Globalization.Extensions.nuspec" - ] - }, - "System.IO/4.0.0": { - "type": "package", - "sha512": "MoCHQ0u5n0OMwUS8OX4Gl48qKiQziSW5cXvt82d+MmAcsLq9OL90+ihnu/aJ1h6OOYcBswrZAEuApfZha9w2lg==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.IO.xml", - "ref/dotnet/es/System.IO.xml", - "ref/dotnet/fr/System.IO.xml", - "ref/dotnet/it/System.IO.xml", - "ref/dotnet/ja/System.IO.xml", - "ref/dotnet/ko/System.IO.xml", - "ref/dotnet/ru/System.IO.xml", - "ref/dotnet/System.IO.dll", - "ref/dotnet/System.IO.xml", - "ref/dotnet/zh-hans/System.IO.xml", - "ref/dotnet/zh-hant/System.IO.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.IO.xml", - "ref/netcore50/es/System.IO.xml", - "ref/netcore50/fr/System.IO.xml", - "ref/netcore50/it/System.IO.xml", - "ref/netcore50/ja/System.IO.xml", - "ref/netcore50/ko/System.IO.xml", - "ref/netcore50/ru/System.IO.xml", - "ref/netcore50/System.IO.dll", - "ref/netcore50/System.IO.xml", - "ref/netcore50/zh-hans/System.IO.xml", - "ref/netcore50/zh-hant/System.IO.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.IO.4.0.0.nupkg", - "System.IO.4.0.0.nupkg.sha512", - "System.IO.nuspec" - ] - }, - "System.IO/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Brlv6E7ndUEBPH28OXf9EULgyMXTu6I3+NwbXiVneltgClANm/tmjZIAvJZpkCW2WQPMxRgaJlhngXqaYOM4ww==", - "files": [ - "lib/DNXCore50/System.IO.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.IO.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.IO.xml", - "ref/dotnet5.1/es/System.IO.xml", - "ref/dotnet5.1/fr/System.IO.xml", - "ref/dotnet5.1/it/System.IO.xml", - "ref/dotnet5.1/ja/System.IO.xml", - "ref/dotnet5.1/ko/System.IO.xml", - "ref/dotnet5.1/ru/System.IO.xml", - "ref/dotnet5.1/System.IO.dll", - "ref/dotnet5.1/System.IO.xml", - "ref/dotnet5.1/zh-hans/System.IO.xml", - "ref/dotnet5.1/zh-hant/System.IO.xml", - "ref/dotnet5.4/de/System.IO.xml", - "ref/dotnet5.4/es/System.IO.xml", - "ref/dotnet5.4/fr/System.IO.xml", - "ref/dotnet5.4/it/System.IO.xml", - "ref/dotnet5.4/ja/System.IO.xml", - "ref/dotnet5.4/ko/System.IO.xml", - "ref/dotnet5.4/ru/System.IO.xml", - "ref/dotnet5.4/System.IO.dll", - "ref/dotnet5.4/System.IO.xml", - "ref/dotnet5.4/zh-hans/System.IO.xml", - "ref/dotnet5.4/zh-hant/System.IO.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.IO.xml", - "ref/netcore50/es/System.IO.xml", - "ref/netcore50/fr/System.IO.xml", - "ref/netcore50/it/System.IO.xml", - "ref/netcore50/ja/System.IO.xml", - "ref/netcore50/ko/System.IO.xml", - "ref/netcore50/ru/System.IO.xml", - "ref/netcore50/System.IO.dll", - "ref/netcore50/System.IO.xml", - "ref/netcore50/zh-hans/System.IO.xml", - "ref/netcore50/zh-hant/System.IO.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.IO.dll", - "System.IO.4.0.11-rc2-23525.nupkg", - "System.IO.4.0.11-rc2-23525.nupkg.sha512", - "System.IO.nuspec" - ] - }, - "System.IO.FileSystem/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "5x8A7ETeRtOmeqfUr36T20yJR+JHkd9M8275UTOyUylO1RRFDdIDiNYeCnZlFJpDCFMDxDa6g8OgiWYxJzAqfw==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.IO.FileSystem.xml", - "ref/dotnet5.4/es/System.IO.FileSystem.xml", - "ref/dotnet5.4/fr/System.IO.FileSystem.xml", - "ref/dotnet5.4/it/System.IO.FileSystem.xml", - "ref/dotnet5.4/ja/System.IO.FileSystem.xml", - "ref/dotnet5.4/ko/System.IO.FileSystem.xml", - "ref/dotnet5.4/ru/System.IO.FileSystem.xml", - "ref/dotnet5.4/System.IO.FileSystem.dll", - "ref/dotnet5.4/System.IO.FileSystem.xml", - "ref/dotnet5.4/zh-hans/System.IO.FileSystem.xml", - "ref/dotnet5.4/zh-hant/System.IO.FileSystem.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.IO.FileSystem.4.0.1-rc2-23525.nupkg", - "System.IO.FileSystem.4.0.1-rc2-23525.nupkg.sha512", - "System.IO.FileSystem.nuspec" - ] - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", - "files": [ - "lib/dotnet/System.IO.FileSystem.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/System.IO.FileSystem.Primitives.dll", - "ref/dotnet/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.IO.FileSystem.Primitives.4.0.0.nupkg", - "System.IO.FileSystem.Primitives.4.0.0.nupkg.sha512", - "System.IO.FileSystem.Primitives.nuspec" - ] - }, - "System.Linq/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "nxeyB3ycuQRIyRb/EVh+IEBN4heKR5LGo3+NvQl0/nJs/nIJym4Yb+pqHjhMAFwv9L7KoUIanhg1uRES7+IaQQ==", - "files": [ - "lib/dotnet5.4/System.Linq.dll", - "lib/net45/_._", - "lib/netcore50/System.Linq.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet5.1/de/System.Linq.xml", - "ref/dotnet5.1/es/System.Linq.xml", - "ref/dotnet5.1/fr/System.Linq.xml", - "ref/dotnet5.1/it/System.Linq.xml", - "ref/dotnet5.1/ja/System.Linq.xml", - "ref/dotnet5.1/ko/System.Linq.xml", - "ref/dotnet5.1/ru/System.Linq.xml", - "ref/dotnet5.1/System.Linq.dll", - "ref/dotnet5.1/System.Linq.xml", - "ref/dotnet5.1/zh-hans/System.Linq.xml", - "ref/dotnet5.1/zh-hant/System.Linq.xml", - "ref/net45/_._", - "ref/netcore50/de/System.Linq.xml", - "ref/netcore50/es/System.Linq.xml", - "ref/netcore50/fr/System.Linq.xml", - "ref/netcore50/it/System.Linq.xml", - "ref/netcore50/ja/System.Linq.xml", - "ref/netcore50/ko/System.Linq.xml", - "ref/netcore50/ru/System.Linq.xml", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/netcore50/zh-hans/System.Linq.xml", - "ref/netcore50/zh-hant/System.Linq.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "System.Linq.4.0.1-rc2-23525.nupkg", - "System.Linq.4.0.1-rc2-23525.nupkg.sha512", - "System.Linq.nuspec" - ] - }, - "System.Linq.Expressions/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "nUZs+huGwB8yM+RhJSCP1pDooGAjVhe2kEzSu2M7I8A9kwOF8WFgmMDwhfvW8UdnvcEVMbmtM9VtAYoZIBLs4w==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Linq.Expressions.xml", - "ref/dotnet5.1/es/System.Linq.Expressions.xml", - "ref/dotnet5.1/fr/System.Linq.Expressions.xml", - "ref/dotnet5.1/it/System.Linq.Expressions.xml", - "ref/dotnet5.1/ja/System.Linq.Expressions.xml", - "ref/dotnet5.1/ko/System.Linq.Expressions.xml", - "ref/dotnet5.1/ru/System.Linq.Expressions.xml", - "ref/dotnet5.1/System.Linq.Expressions.dll", - "ref/dotnet5.1/System.Linq.Expressions.xml", - "ref/dotnet5.1/zh-hans/System.Linq.Expressions.xml", - "ref/dotnet5.1/zh-hant/System.Linq.Expressions.xml", - "ref/dotnet5.4/de/System.Linq.Expressions.xml", - "ref/dotnet5.4/es/System.Linq.Expressions.xml", - "ref/dotnet5.4/fr/System.Linq.Expressions.xml", - "ref/dotnet5.4/it/System.Linq.Expressions.xml", - "ref/dotnet5.4/ja/System.Linq.Expressions.xml", - "ref/dotnet5.4/ko/System.Linq.Expressions.xml", - "ref/dotnet5.4/ru/System.Linq.Expressions.xml", - "ref/dotnet5.4/System.Linq.Expressions.dll", - "ref/dotnet5.4/System.Linq.Expressions.xml", - "ref/dotnet5.4/zh-hans/System.Linq.Expressions.xml", - "ref/dotnet5.4/zh-hant/System.Linq.Expressions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Linq.Expressions.4.0.11-rc2-23525.nupkg", - "System.Linq.Expressions.4.0.11-rc2-23525.nupkg.sha512", - "System.Linq.Expressions.nuspec" - ] - }, - "System.Net.Primitives/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "tPl7aprrM0gnQa24GbIy+Swf+9+hEj+oy1I+OkeG/flSEGT3mCtrSAgfmLCr1FmN9lfn9XKkCgPYh8wJC2g8+w==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Net.Primitives.xml", - "ref/dotnet5.1/es/System.Net.Primitives.xml", - "ref/dotnet5.1/fr/System.Net.Primitives.xml", - "ref/dotnet5.1/it/System.Net.Primitives.xml", - "ref/dotnet5.1/ja/System.Net.Primitives.xml", - "ref/dotnet5.1/ko/System.Net.Primitives.xml", - "ref/dotnet5.1/ru/System.Net.Primitives.xml", - "ref/dotnet5.1/System.Net.Primitives.dll", - "ref/dotnet5.1/System.Net.Primitives.xml", - "ref/dotnet5.1/zh-hans/System.Net.Primitives.xml", - "ref/dotnet5.1/zh-hant/System.Net.Primitives.xml", - "ref/dotnet5.2/de/System.Net.Primitives.xml", - "ref/dotnet5.2/es/System.Net.Primitives.xml", - "ref/dotnet5.2/fr/System.Net.Primitives.xml", - "ref/dotnet5.2/it/System.Net.Primitives.xml", - "ref/dotnet5.2/ja/System.Net.Primitives.xml", - "ref/dotnet5.2/ko/System.Net.Primitives.xml", - "ref/dotnet5.2/ru/System.Net.Primitives.xml", - "ref/dotnet5.2/System.Net.Primitives.dll", - "ref/dotnet5.2/System.Net.Primitives.xml", - "ref/dotnet5.2/zh-hans/System.Net.Primitives.xml", - "ref/dotnet5.2/zh-hant/System.Net.Primitives.xml", - "ref/dotnet5.4/de/System.Net.Primitives.xml", - "ref/dotnet5.4/es/System.Net.Primitives.xml", - "ref/dotnet5.4/fr/System.Net.Primitives.xml", - "ref/dotnet5.4/it/System.Net.Primitives.xml", - "ref/dotnet5.4/ja/System.Net.Primitives.xml", - "ref/dotnet5.4/ko/System.Net.Primitives.xml", - "ref/dotnet5.4/ru/System.Net.Primitives.xml", - "ref/dotnet5.4/System.Net.Primitives.dll", - "ref/dotnet5.4/System.Net.Primitives.xml", - "ref/dotnet5.4/zh-hans/System.Net.Primitives.xml", - "ref/dotnet5.4/zh-hant/System.Net.Primitives.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Net.Primitives.xml", - "ref/netcore50/es/System.Net.Primitives.xml", - "ref/netcore50/fr/System.Net.Primitives.xml", - "ref/netcore50/it/System.Net.Primitives.xml", - "ref/netcore50/ja/System.Net.Primitives.xml", - "ref/netcore50/ko/System.Net.Primitives.xml", - "ref/netcore50/ru/System.Net.Primitives.xml", - "ref/netcore50/System.Net.Primitives.dll", - "ref/netcore50/System.Net.Primitives.xml", - "ref/netcore50/zh-hans/System.Net.Primitives.xml", - "ref/netcore50/zh-hant/System.Net.Primitives.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Net.Primitives.4.0.11-rc2-23525.nupkg", - "System.Net.Primitives.4.0.11-rc2-23525.nupkg.sha512", - "System.Net.Primitives.nuspec" - ] - }, - "System.Net.WebSockets/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "QykOhQUn7S0rJYPbKflEWOf3Cpr6Ku5UhGmJY5s14t0g14H/5ibVg3KuLySGYvrRmxxx7s6Ydx/b7AcuwDA9hQ==", - "files": [ - "lib/dotnet5.4/System.Net.WebSockets.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.WebSockets.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Net.WebSockets.xml", - "ref/dotnet5.4/es/System.Net.WebSockets.xml", - "ref/dotnet5.4/fr/System.Net.WebSockets.xml", - "ref/dotnet5.4/it/System.Net.WebSockets.xml", - "ref/dotnet5.4/ja/System.Net.WebSockets.xml", - "ref/dotnet5.4/ko/System.Net.WebSockets.xml", - "ref/dotnet5.4/ru/System.Net.WebSockets.xml", - "ref/dotnet5.4/System.Net.WebSockets.dll", - "ref/dotnet5.4/System.Net.WebSockets.xml", - "ref/dotnet5.4/zh-hans/System.Net.WebSockets.xml", - "ref/dotnet5.4/zh-hant/System.Net.WebSockets.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.WebSockets.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Net.WebSockets.4.0.0-rc2-23525.nupkg", - "System.Net.WebSockets.4.0.0-rc2-23525.nupkg.sha512", - "System.Net.WebSockets.nuspec" - ] - }, - "System.ObjectModel/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "IJJ5i3tnyDWnrjK3GH81Bu3I+ie/MyKr7/V/LjYkVpKHlTaT1EdjLX40CqXaw3ObgqkLqSYz6iRJKaYkmGesXg==", - "files": [ - "lib/dotnet5.4/System.ObjectModel.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.ObjectModel.xml", - "ref/dotnet5.1/es/System.ObjectModel.xml", - "ref/dotnet5.1/fr/System.ObjectModel.xml", - "ref/dotnet5.1/it/System.ObjectModel.xml", - "ref/dotnet5.1/ja/System.ObjectModel.xml", - "ref/dotnet5.1/ko/System.ObjectModel.xml", - "ref/dotnet5.1/ru/System.ObjectModel.xml", - "ref/dotnet5.1/System.ObjectModel.dll", - "ref/dotnet5.1/System.ObjectModel.xml", - "ref/dotnet5.1/zh-hans/System.ObjectModel.xml", - "ref/dotnet5.1/zh-hant/System.ObjectModel.xml", - "ref/dotnet5.4/de/System.ObjectModel.xml", - "ref/dotnet5.4/es/System.ObjectModel.xml", - "ref/dotnet5.4/fr/System.ObjectModel.xml", - "ref/dotnet5.4/it/System.ObjectModel.xml", - "ref/dotnet5.4/ja/System.ObjectModel.xml", - "ref/dotnet5.4/ko/System.ObjectModel.xml", - "ref/dotnet5.4/ru/System.ObjectModel.xml", - "ref/dotnet5.4/System.ObjectModel.dll", - "ref/dotnet5.4/System.ObjectModel.xml", - "ref/dotnet5.4/zh-hans/System.ObjectModel.xml", - "ref/dotnet5.4/zh-hant/System.ObjectModel.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "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/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.ObjectModel.4.0.11-rc2-23525.nupkg", - "System.ObjectModel.4.0.11-rc2-23525.nupkg.sha512", - "System.ObjectModel.nuspec" - ] - }, - "System.Reflection/4.0.0": { - "type": "package", - "sha512": "g96Rn8XuG7y4VfxPj/jnXroRJdQ8L3iN3k3zqsuzk4k3Nq4KMXARYiIO4BLW4GwX06uQpuYwRMcAC/aF117knQ==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Reflection.xml", - "ref/dotnet/es/System.Reflection.xml", - "ref/dotnet/fr/System.Reflection.xml", - "ref/dotnet/it/System.Reflection.xml", - "ref/dotnet/ja/System.Reflection.xml", - "ref/dotnet/ko/System.Reflection.xml", - "ref/dotnet/ru/System.Reflection.xml", - "ref/dotnet/System.Reflection.dll", - "ref/dotnet/System.Reflection.xml", - "ref/dotnet/zh-hans/System.Reflection.xml", - "ref/dotnet/zh-hant/System.Reflection.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Reflection.xml", - "ref/netcore50/es/System.Reflection.xml", - "ref/netcore50/fr/System.Reflection.xml", - "ref/netcore50/it/System.Reflection.xml", - "ref/netcore50/ja/System.Reflection.xml", - "ref/netcore50/ko/System.Reflection.xml", - "ref/netcore50/ru/System.Reflection.xml", - "ref/netcore50/System.Reflection.dll", - "ref/netcore50/System.Reflection.xml", - "ref/netcore50/zh-hans/System.Reflection.xml", - "ref/netcore50/zh-hant/System.Reflection.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Reflection.4.0.0.nupkg", - "System.Reflection.4.0.0.nupkg.sha512", - "System.Reflection.nuspec" - ] - }, - "System.Reflection/4.1.0-beta-23225": { - "type": "package", - "serviceable": true, - "sha512": "WbLtaCxoe5XdqEyZuGpemSQ8YBJ8cj11zx+yxOxJfHbNrmu7oMQ29+J50swaqg3soUc3BVBMqfIhb/7gocDHQA==", - "files": [ - "lib/DNXCore50/System.Reflection.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Reflection.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Reflection.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", - "System.Reflection.4.1.0-beta-23225.nupkg", - "System.Reflection.4.1.0-beta-23225.nupkg.sha512", - "System.Reflection.nuspec" - ] - }, - "System.Reflection.Extensions/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "S2zlLFK7KGY+vmP2idf9baP1vd3FSRhiRrDpzaDu57f0mqsMuXkbbtqxSncaN8SzvHbLu1OSp1ERiwSzCtcskw==", - "files": [ - "lib/DNXCore50/System.Reflection.Extensions.dll", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Extensions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet5.1/de/System.Reflection.Extensions.xml", - "ref/dotnet5.1/es/System.Reflection.Extensions.xml", - "ref/dotnet5.1/fr/System.Reflection.Extensions.xml", - "ref/dotnet5.1/it/System.Reflection.Extensions.xml", - "ref/dotnet5.1/ja/System.Reflection.Extensions.xml", - "ref/dotnet5.1/ko/System.Reflection.Extensions.xml", - "ref/dotnet5.1/ru/System.Reflection.Extensions.xml", - "ref/dotnet5.1/System.Reflection.Extensions.dll", - "ref/dotnet5.1/System.Reflection.Extensions.xml", - "ref/dotnet5.1/zh-hans/System.Reflection.Extensions.xml", - "ref/dotnet5.1/zh-hant/System.Reflection.Extensions.xml", - "ref/net45/_._", - "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/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", - "System.Reflection.Extensions.4.0.1-rc2-23525.nupkg", - "System.Reflection.Extensions.4.0.1-rc2-23525.nupkg.sha512", - "System.Reflection.Extensions.nuspec" - ] - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", - "files": [ - "lib/DNXCore50/System.Reflection.Primitives.dll", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Primitives.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/de/System.Reflection.Primitives.xml", - "ref/dotnet/es/System.Reflection.Primitives.xml", - "ref/dotnet/fr/System.Reflection.Primitives.xml", - "ref/dotnet/it/System.Reflection.Primitives.xml", - "ref/dotnet/ja/System.Reflection.Primitives.xml", - "ref/dotnet/ko/System.Reflection.Primitives.xml", - "ref/dotnet/ru/System.Reflection.Primitives.xml", - "ref/dotnet/System.Reflection.Primitives.dll", - "ref/dotnet/System.Reflection.Primitives.xml", - "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", - "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", - "System.Reflection.Primitives.4.0.0.nupkg", - "System.Reflection.Primitives.4.0.0.nupkg.sha512", - "System.Reflection.Primitives.nuspec" - ] - }, - "System.Reflection.TypeExtensions/4.0.1-beta-23409": { - "type": "package", - "serviceable": true, - "sha512": "n8m144jjCwhN/qtLih35a2sO33fLWm1U3eg51KxqAcAjJcw0nq1zWie8FZognBTPv7BXdW/G8xGbbvDGFoJwZA==", - "files": [ - "lib/DNXCore50/de/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/es/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/fr/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/it/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/ja/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/ko/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/ru/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/System.Reflection.TypeExtensions.dll", - "lib/DNXCore50/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/zh-hans/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/zh-hant/System.Reflection.TypeExtensions.xml", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/de/System.Reflection.TypeExtensions.xml", - "lib/net46/es/System.Reflection.TypeExtensions.xml", - "lib/net46/fr/System.Reflection.TypeExtensions.xml", - "lib/net46/it/System.Reflection.TypeExtensions.xml", - "lib/net46/ja/System.Reflection.TypeExtensions.xml", - "lib/net46/ko/System.Reflection.TypeExtensions.xml", - "lib/net46/ru/System.Reflection.TypeExtensions.xml", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net46/System.Reflection.TypeExtensions.xml", - "lib/net46/zh-hans/System.Reflection.TypeExtensions.xml", - "lib/net46/zh-hant/System.Reflection.TypeExtensions.xml", - "lib/netcore50/de/System.Reflection.TypeExtensions.xml", - "lib/netcore50/es/System.Reflection.TypeExtensions.xml", - "lib/netcore50/fr/System.Reflection.TypeExtensions.xml", - "lib/netcore50/it/System.Reflection.TypeExtensions.xml", - "lib/netcore50/ja/System.Reflection.TypeExtensions.xml", - "lib/netcore50/ko/System.Reflection.TypeExtensions.xml", - "lib/netcore50/ru/System.Reflection.TypeExtensions.xml", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.xml", - "lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml", - "lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Reflection.TypeExtensions.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/de/System.Reflection.TypeExtensions.xml", - "ref/net46/es/System.Reflection.TypeExtensions.xml", - "ref/net46/fr/System.Reflection.TypeExtensions.xml", - "ref/net46/it/System.Reflection.TypeExtensions.xml", - "ref/net46/ja/System.Reflection.TypeExtensions.xml", - "ref/net46/ko/System.Reflection.TypeExtensions.xml", - "ref/net46/ru/System.Reflection.TypeExtensions.xml", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net46/System.Reflection.TypeExtensions.xml", - "ref/net46/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/net46/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/de/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/es/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/fr/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/it/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/ja/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/ko/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/ru/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml", - "System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg", - "System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg.sha512", - "System.Reflection.TypeExtensions.nuspec" - ] - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", - "files": [ - "lib/DNXCore50/System.Resources.ResourceManager.dll", - "lib/net45/_._", - "lib/netcore50/System.Resources.ResourceManager.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/de/System.Resources.ResourceManager.xml", - "ref/dotnet/es/System.Resources.ResourceManager.xml", - "ref/dotnet/fr/System.Resources.ResourceManager.xml", - "ref/dotnet/it/System.Resources.ResourceManager.xml", - "ref/dotnet/ja/System.Resources.ResourceManager.xml", - "ref/dotnet/ko/System.Resources.ResourceManager.xml", - "ref/dotnet/ru/System.Resources.ResourceManager.xml", - "ref/dotnet/System.Resources.ResourceManager.dll", - "ref/dotnet/System.Resources.ResourceManager.xml", - "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", - "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", - "ref/net45/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", - "System.Resources.ResourceManager.4.0.0.nupkg", - "System.Resources.ResourceManager.4.0.0.nupkg.sha512", - "System.Resources.ResourceManager.nuspec" - ] - }, - "System.Resources.ResourceManager/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Pp+0DOwNu+L6fYGLejweNbbxXYW9EZTA9UpVBLvWTAldWsTWQ15J1LYuDIULWP3G2JBnKDtzZzQj4VIjzW4zxQ==", - "files": [ - "lib/DNXCore50/System.Resources.ResourceManager.dll", - "lib/net45/_._", - "lib/netcore50/System.Resources.ResourceManager.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet5.1/de/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/es/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/fr/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/it/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/ja/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/ko/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/ru/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/System.Resources.ResourceManager.dll", - "ref/dotnet5.1/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/zh-hans/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/zh-hant/System.Resources.ResourceManager.xml", - "ref/net45/_._", - "ref/netcore50/de/System.Resources.ResourceManager.xml", - "ref/netcore50/es/System.Resources.ResourceManager.xml", - "ref/netcore50/fr/System.Resources.ResourceManager.xml", - "ref/netcore50/it/System.Resources.ResourceManager.xml", - "ref/netcore50/ja/System.Resources.ResourceManager.xml", - "ref/netcore50/ko/System.Resources.ResourceManager.xml", - "ref/netcore50/ru/System.Resources.ResourceManager.xml", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", - "System.Resources.ResourceManager.4.0.1-rc2-23525.nupkg", - "System.Resources.ResourceManager.4.0.1-rc2-23525.nupkg.sha512", - "System.Resources.ResourceManager.nuspec" - ] - }, - "System.Runtime/4.0.0": { - "type": "package", - "sha512": "Uq9epame8hEqJlj4KaWb67dDJvj4IM37jRFGVeFbugRdPz48bR0voyBhrbf3iSa2tAmlkg4lsa6BUOL9iwlMew==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Runtime.xml", - "ref/dotnet/es/System.Runtime.xml", - "ref/dotnet/fr/System.Runtime.xml", - "ref/dotnet/it/System.Runtime.xml", - "ref/dotnet/ja/System.Runtime.xml", - "ref/dotnet/ko/System.Runtime.xml", - "ref/dotnet/ru/System.Runtime.xml", - "ref/dotnet/System.Runtime.dll", - "ref/dotnet/System.Runtime.xml", - "ref/dotnet/zh-hans/System.Runtime.xml", - "ref/dotnet/zh-hant/System.Runtime.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Runtime.xml", - "ref/netcore50/es/System.Runtime.xml", - "ref/netcore50/fr/System.Runtime.xml", - "ref/netcore50/it/System.Runtime.xml", - "ref/netcore50/ja/System.Runtime.xml", - "ref/netcore50/ko/System.Runtime.xml", - "ref/netcore50/ru/System.Runtime.xml", - "ref/netcore50/System.Runtime.dll", - "ref/netcore50/System.Runtime.xml", - "ref/netcore50/zh-hans/System.Runtime.xml", - "ref/netcore50/zh-hant/System.Runtime.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Runtime.4.0.0.nupkg", - "System.Runtime.4.0.0.nupkg.sha512", - "System.Runtime.nuspec" - ] - }, - "System.Runtime/4.0.21-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "LycbvHHYEuhrvcrwJ7JW1uKOXWUSC1gMn+M5zCTMYRrBomqYJnUu2Ej+oNJZibV4pdvjOSNdnLRBjy0VS0pJHQ==", - "files": [ - "lib/DNXCore50/System.Runtime.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Runtime.xml", - "ref/dotnet5.1/es/System.Runtime.xml", - "ref/dotnet5.1/fr/System.Runtime.xml", - "ref/dotnet5.1/it/System.Runtime.xml", - "ref/dotnet5.1/ja/System.Runtime.xml", - "ref/dotnet5.1/ko/System.Runtime.xml", - "ref/dotnet5.1/ru/System.Runtime.xml", - "ref/dotnet5.1/System.Runtime.dll", - "ref/dotnet5.1/System.Runtime.xml", - "ref/dotnet5.1/zh-hans/System.Runtime.xml", - "ref/dotnet5.1/zh-hant/System.Runtime.xml", - "ref/dotnet5.3/de/System.Runtime.xml", - "ref/dotnet5.3/es/System.Runtime.xml", - "ref/dotnet5.3/fr/System.Runtime.xml", - "ref/dotnet5.3/it/System.Runtime.xml", - "ref/dotnet5.3/ja/System.Runtime.xml", - "ref/dotnet5.3/ko/System.Runtime.xml", - "ref/dotnet5.3/ru/System.Runtime.xml", - "ref/dotnet5.3/System.Runtime.dll", - "ref/dotnet5.3/System.Runtime.xml", - "ref/dotnet5.3/zh-hans/System.Runtime.xml", - "ref/dotnet5.3/zh-hant/System.Runtime.xml", - "ref/dotnet5.4/de/System.Runtime.xml", - "ref/dotnet5.4/es/System.Runtime.xml", - "ref/dotnet5.4/fr/System.Runtime.xml", - "ref/dotnet5.4/it/System.Runtime.xml", - "ref/dotnet5.4/ja/System.Runtime.xml", - "ref/dotnet5.4/ko/System.Runtime.xml", - "ref/dotnet5.4/ru/System.Runtime.xml", - "ref/dotnet5.4/System.Runtime.dll", - "ref/dotnet5.4/System.Runtime.xml", - "ref/dotnet5.4/zh-hans/System.Runtime.xml", - "ref/dotnet5.4/zh-hant/System.Runtime.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Runtime.xml", - "ref/netcore50/es/System.Runtime.xml", - "ref/netcore50/fr/System.Runtime.xml", - "ref/netcore50/it/System.Runtime.xml", - "ref/netcore50/ja/System.Runtime.xml", - "ref/netcore50/ko/System.Runtime.xml", - "ref/netcore50/ru/System.Runtime.xml", - "ref/netcore50/System.Runtime.dll", - "ref/netcore50/System.Runtime.xml", - "ref/netcore50/zh-hans/System.Runtime.xml", - "ref/netcore50/zh-hant/System.Runtime.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", - "System.Runtime.4.0.21-rc2-23525.nupkg", - "System.Runtime.4.0.21-rc2-23525.nupkg.sha512", - "System.Runtime.nuspec" - ] - }, - "System.Runtime.Extensions/4.0.0": { - "type": "package", - "sha512": "zPzwoJcA7qar/b5Ihhzfcdr3vBOR8FIg7u//Qc5mqyAriasXuMFVraBZ5vOQq5asfun9ryNEL8Z2BOlUK5QRqA==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Runtime.Extensions.xml", - "ref/dotnet/es/System.Runtime.Extensions.xml", - "ref/dotnet/fr/System.Runtime.Extensions.xml", - "ref/dotnet/it/System.Runtime.Extensions.xml", - "ref/dotnet/ja/System.Runtime.Extensions.xml", - "ref/dotnet/ko/System.Runtime.Extensions.xml", - "ref/dotnet/ru/System.Runtime.Extensions.xml", - "ref/dotnet/System.Runtime.Extensions.dll", - "ref/dotnet/System.Runtime.Extensions.xml", - "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", - "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Runtime.Extensions.xml", - "ref/netcore50/es/System.Runtime.Extensions.xml", - "ref/netcore50/fr/System.Runtime.Extensions.xml", - "ref/netcore50/it/System.Runtime.Extensions.xml", - "ref/netcore50/ja/System.Runtime.Extensions.xml", - "ref/netcore50/ko/System.Runtime.Extensions.xml", - "ref/netcore50/ru/System.Runtime.Extensions.xml", - "ref/netcore50/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Runtime.Extensions.4.0.0.nupkg", - "System.Runtime.Extensions.4.0.0.nupkg.sha512", - "System.Runtime.Extensions.nuspec" - ] - }, - "System.Runtime.Extensions/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "R6crzqPfrw8M1hohRtO9ae8CngdmbmB6DLMt4asm0KiP7i4ufliJcGRpn++mxJwPYgiLw757t1KN5sBDnyvvkw==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Runtime.Extensions.xml", - "ref/dotnet5.1/es/System.Runtime.Extensions.xml", - "ref/dotnet5.1/fr/System.Runtime.Extensions.xml", - "ref/dotnet5.1/it/System.Runtime.Extensions.xml", - "ref/dotnet5.1/ja/System.Runtime.Extensions.xml", - "ref/dotnet5.1/ko/System.Runtime.Extensions.xml", - "ref/dotnet5.1/ru/System.Runtime.Extensions.xml", - "ref/dotnet5.1/System.Runtime.Extensions.dll", - "ref/dotnet5.1/System.Runtime.Extensions.xml", - "ref/dotnet5.1/zh-hans/System.Runtime.Extensions.xml", - "ref/dotnet5.1/zh-hant/System.Runtime.Extensions.xml", - "ref/dotnet5.4/de/System.Runtime.Extensions.xml", - "ref/dotnet5.4/es/System.Runtime.Extensions.xml", - "ref/dotnet5.4/fr/System.Runtime.Extensions.xml", - "ref/dotnet5.4/it/System.Runtime.Extensions.xml", - "ref/dotnet5.4/ja/System.Runtime.Extensions.xml", - "ref/dotnet5.4/ko/System.Runtime.Extensions.xml", - "ref/dotnet5.4/ru/System.Runtime.Extensions.xml", - "ref/dotnet5.4/System.Runtime.Extensions.dll", - "ref/dotnet5.4/System.Runtime.Extensions.xml", - "ref/dotnet5.4/zh-hans/System.Runtime.Extensions.xml", - "ref/dotnet5.4/zh-hant/System.Runtime.Extensions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Runtime.Extensions.xml", - "ref/netcore50/es/System.Runtime.Extensions.xml", - "ref/netcore50/fr/System.Runtime.Extensions.xml", - "ref/netcore50/it/System.Runtime.Extensions.xml", - "ref/netcore50/ja/System.Runtime.Extensions.xml", - "ref/netcore50/ko/System.Runtime.Extensions.xml", - "ref/netcore50/ru/System.Runtime.Extensions.xml", - "ref/netcore50/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Runtime.Extensions.4.0.11-rc2-23525.nupkg", - "System.Runtime.Extensions.4.0.11-rc2-23525.nupkg.sha512", - "System.Runtime.Extensions.nuspec" - ] - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", - "files": [ - "lib/DNXCore50/System.Runtime.Handles.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Runtime.Handles.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.Runtime.Handles.xml", - "ref/dotnet/es/System.Runtime.Handles.xml", - "ref/dotnet/fr/System.Runtime.Handles.xml", - "ref/dotnet/it/System.Runtime.Handles.xml", - "ref/dotnet/ja/System.Runtime.Handles.xml", - "ref/dotnet/ko/System.Runtime.Handles.xml", - "ref/dotnet/ru/System.Runtime.Handles.xml", - "ref/dotnet/System.Runtime.Handles.dll", - "ref/dotnet/System.Runtime.Handles.xml", - "ref/dotnet/zh-hans/System.Runtime.Handles.xml", - "ref/dotnet/zh-hant/System.Runtime.Handles.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", - "System.Runtime.Handles.4.0.0.nupkg", - "System.Runtime.Handles.4.0.0.nupkg.sha512", - "System.Runtime.Handles.nuspec" - ] - }, - "System.Runtime.InteropServices/4.0.21-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "rWJNPZVqqjGxOhwWLdDh20vbH1OHXMqydO2QDO2vJApFCKEgyR2ySG2w6Ls665jGeUYzT2mQ+ZGTkcyzKOJdyg==", - "files": [ - "lib/DNXCore50/System.Runtime.InteropServices.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.InteropServices.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.2/de/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/es/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/fr/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/it/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/ja/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/ko/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/ru/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/System.Runtime.InteropServices.dll", - "ref/dotnet5.2/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/zh-hans/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/zh-hant/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/de/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/es/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/fr/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/it/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/ja/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/ko/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/ru/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/System.Runtime.InteropServices.dll", - "ref/dotnet5.3/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/zh-hans/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/zh-hant/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/de/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/es/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/fr/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/it/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/ja/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/ko/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/ru/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/System.Runtime.InteropServices.dll", - "ref/dotnet5.4/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/zh-hans/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/zh-hant/System.Runtime.InteropServices.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Runtime.InteropServices.xml", - "ref/netcore50/es/System.Runtime.InteropServices.xml", - "ref/netcore50/fr/System.Runtime.InteropServices.xml", - "ref/netcore50/it/System.Runtime.InteropServices.xml", - "ref/netcore50/ja/System.Runtime.InteropServices.xml", - "ref/netcore50/ko/System.Runtime.InteropServices.xml", - "ref/netcore50/ru/System.Runtime.InteropServices.xml", - "ref/netcore50/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", - "System.Runtime.InteropServices.4.0.21-rc2-23525.nupkg", - "System.Runtime.InteropServices.4.0.21-rc2-23525.nupkg.sha512", - "System.Runtime.InteropServices.nuspec" - ] - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Ha25KM/Db3dmbZz9UWgn7ChGPmqFHLDyWTxuvoJtaUq8ziwTW4hP0tlUfEKZBa3FwEB6Nero7VLX4h0TQs0k6Q==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg", - "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg.sha512", - "System.Runtime.InteropServices.RuntimeInformation.nuspec" - ] - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", - "files": [ - "lib/dotnet/System.Runtime.Numerics.dll", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/de/System.Runtime.Numerics.xml", - "ref/dotnet/es/System.Runtime.Numerics.xml", - "ref/dotnet/fr/System.Runtime.Numerics.xml", - "ref/dotnet/it/System.Runtime.Numerics.xml", - "ref/dotnet/ja/System.Runtime.Numerics.xml", - "ref/dotnet/ko/System.Runtime.Numerics.xml", - "ref/dotnet/ru/System.Runtime.Numerics.xml", - "ref/dotnet/System.Runtime.Numerics.dll", - "ref/dotnet/System.Runtime.Numerics.xml", - "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", - "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/win8/_._", - "ref/wpa81/_._", - "System.Runtime.Numerics.4.0.0.nupkg", - "System.Runtime.Numerics.4.0.0.nupkg.sha512", - "System.Runtime.Numerics.nuspec" - ] - }, - "System.Security.Claims/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "QQRiGO33X/l9n5rikQfRoHPtX+0k4m3dxWFIZyH+63qsshU7S89QqmVsEjFYhHhEtsTbiKdkyNKrqTA7aj9XPQ==", - "files": [ - "lib/dotnet5.4/System.Security.Claims.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Claims.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Security.Claims.xml", - "ref/dotnet5.4/es/System.Security.Claims.xml", - "ref/dotnet5.4/fr/System.Security.Claims.xml", - "ref/dotnet5.4/it/System.Security.Claims.xml", - "ref/dotnet5.4/ja/System.Security.Claims.xml", - "ref/dotnet5.4/ko/System.Security.Claims.xml", - "ref/dotnet5.4/ru/System.Security.Claims.xml", - "ref/dotnet5.4/System.Security.Claims.dll", - "ref/dotnet5.4/System.Security.Claims.xml", - "ref/dotnet5.4/zh-hans/System.Security.Claims.xml", - "ref/dotnet5.4/zh-hant/System.Security.Claims.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Claims.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Security.Claims.4.0.1-rc2-23525.nupkg", - "System.Security.Claims.4.0.1-rc2-23525.nupkg.sha512", - "System.Security.Claims.nuspec" - ] - }, - "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "YG9pKBlPiXYSElZ2Yz8K9WuKO9/pjiypOZC44Ovjh8LUFBRCrMoikR3MQBefkqc4pQPDcY42YowcjkvfNU31Ew==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Algorithms.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Algorithms.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg.sha512", - "System.Security.Cryptography.Algorithms.nuspec" - ] - }, - "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "H4fSJsMPMOM5SmfTMJ9AD0CgYshIPYnCf+2gJ9px0eg/Xjm9Q6JsVpTgbl6osdgXWNlwA45voiq4DRsniku5eg==", - "files": [ - "lib/dotnet5.4/System.Security.Cryptography.Cng.dll", - "lib/net46/System.Security.Cryptography.Cng.dll", - "ref/dotnet5.4/System.Security.Cryptography.Cng.dll", - "ref/net46/System.Security.Cryptography.Cng.dll", - "System.Security.Cryptography.Cng.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.Cng.4.0.0-rc2-23525.nupkg.sha512", - "System.Security.Cryptography.Cng.nuspec" - ] - }, - "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "5s7Sz0yUhfBjnJxIZdKxtM/WevPg36jnaUHFji4SFDYFHLkiV6xrEP8HhemZqW5ix7IfiaCDKqGBOceugqxarQ==", - "files": [ - "lib/DNXCore50/System.Security.Cryptography.Csp.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Csp.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/System.Security.Cryptography.Csp.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Csp.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Security.Cryptography.Csp.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.Csp.4.0.0-rc2-23525.nupkg.sha512", - "System.Security.Cryptography.Csp.nuspec" - ] - }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "w7S6YFfl1dDdfm2dEJVsKBGBgB65CD/AyEzPXrPladnuUl4AJffUIAGf9MnWbUR//qraMUaTluzWQmUs6bE5KA==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Encoding.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/es/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/fr/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/it/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/ja/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/ko/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/ru/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll", - "ref/dotnet5.4/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/zh-hans/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/zh-hant/System.Security.Cryptography.Encoding.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Encoding.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg.sha512", - "System.Security.Cryptography.Encoding.nuspec" - ] - }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "4XctVVQ8Ma2eDOiWjE6iUo44unjourG7k5Zr91Bm74DpMVEn3+lmZj9pJn3cthp/WgpRRJXaQRfE7mKEiEUjog==", - "files": [ - "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Security.Cryptography.Primitives.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.Primitives.4.0.0-rc2-23525.nupkg.sha512", - "System.Security.Cryptography.Primitives.nuspec" - ] - }, - "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Xzho0jNobWUb3UZtos0Pv/WI6PzBTOxLrisrgKE3xsZhKtevpThJ+1g1OhegeSy5cDpFy0x8bw8sr8qzumNBXQ==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.X509Certificates.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/es/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/it/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll", - "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.X509Certificates.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg.sha512", - "System.Security.Cryptography.X509Certificates.nuspec" - ] - }, - "System.Security.Principal/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Xw8pvBLIpmqA1TOK2FNI9sORMgxtcrqP+XGI/pKiny7iu0G+jKeQUQqd/qWCNjT0BGougN+a4ygXzMCFGp7Mog==", - "files": [ - "lib/dotnet5.1/System.Security.Principal.dll", - "lib/net45/_._", - "lib/netcore50/System.Security.Principal.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet5.1/de/System.Security.Principal.xml", - "ref/dotnet5.1/es/System.Security.Principal.xml", - "ref/dotnet5.1/fr/System.Security.Principal.xml", - "ref/dotnet5.1/it/System.Security.Principal.xml", - "ref/dotnet5.1/ja/System.Security.Principal.xml", - "ref/dotnet5.1/ko/System.Security.Principal.xml", - "ref/dotnet5.1/ru/System.Security.Principal.xml", - "ref/dotnet5.1/System.Security.Principal.dll", - "ref/dotnet5.1/System.Security.Principal.xml", - "ref/dotnet5.1/zh-hans/System.Security.Principal.xml", - "ref/dotnet5.1/zh-hant/System.Security.Principal.xml", - "ref/net45/_._", - "ref/netcore50/de/System.Security.Principal.xml", - "ref/netcore50/es/System.Security.Principal.xml", - "ref/netcore50/fr/System.Security.Principal.xml", - "ref/netcore50/it/System.Security.Principal.xml", - "ref/netcore50/ja/System.Security.Principal.xml", - "ref/netcore50/ko/System.Security.Principal.xml", - "ref/netcore50/ru/System.Security.Principal.xml", - "ref/netcore50/System.Security.Principal.dll", - "ref/netcore50/System.Security.Principal.xml", - "ref/netcore50/zh-hans/System.Security.Principal.xml", - "ref/netcore50/zh-hant/System.Security.Principal.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "System.Security.Principal.4.0.1-rc2-23525.nupkg", - "System.Security.Principal.4.0.1-rc2-23525.nupkg.sha512", - "System.Security.Principal.nuspec" - ] - }, - "System.Text.Encoding/4.0.0": { - "type": "package", - "sha512": "AMxFNOXpA6Ab8swULbXuJmoT2K5w6TnV3ObF5wsmEcIHQUJghoZtDVfVHb08O2wW15mOSI1i9Wg0Dx0pY13o8g==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Text.Encoding.xml", - "ref/dotnet/es/System.Text.Encoding.xml", - "ref/dotnet/fr/System.Text.Encoding.xml", - "ref/dotnet/it/System.Text.Encoding.xml", - "ref/dotnet/ja/System.Text.Encoding.xml", - "ref/dotnet/ko/System.Text.Encoding.xml", - "ref/dotnet/ru/System.Text.Encoding.xml", - "ref/dotnet/System.Text.Encoding.dll", - "ref/dotnet/System.Text.Encoding.xml", - "ref/dotnet/zh-hans/System.Text.Encoding.xml", - "ref/dotnet/zh-hant/System.Text.Encoding.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Text.Encoding.xml", - "ref/netcore50/es/System.Text.Encoding.xml", - "ref/netcore50/fr/System.Text.Encoding.xml", - "ref/netcore50/it/System.Text.Encoding.xml", - "ref/netcore50/ja/System.Text.Encoding.xml", - "ref/netcore50/ko/System.Text.Encoding.xml", - "ref/netcore50/ru/System.Text.Encoding.xml", - "ref/netcore50/System.Text.Encoding.dll", - "ref/netcore50/System.Text.Encoding.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Text.Encoding.4.0.0.nupkg", - "System.Text.Encoding.4.0.0.nupkg.sha512", - "System.Text.Encoding.nuspec" - ] - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==", - "files": [ - "lib/DNXCore50/System.Text.Encoding.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Text.Encoding.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.Text.Encoding.xml", - "ref/dotnet/es/System.Text.Encoding.xml", - "ref/dotnet/fr/System.Text.Encoding.xml", - "ref/dotnet/it/System.Text.Encoding.xml", - "ref/dotnet/ja/System.Text.Encoding.xml", - "ref/dotnet/ko/System.Text.Encoding.xml", - "ref/dotnet/ru/System.Text.Encoding.xml", - "ref/dotnet/System.Text.Encoding.dll", - "ref/dotnet/System.Text.Encoding.xml", - "ref/dotnet/zh-hans/System.Text.Encoding.xml", - "ref/dotnet/zh-hant/System.Text.Encoding.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", - "System.Text.Encoding.4.0.10.nupkg", - "System.Text.Encoding.4.0.10.nupkg.sha512", - "System.Text.Encoding.nuspec" - ] - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", - "files": [ - "lib/DNXCore50/System.Text.Encoding.Extensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Text.Encoding.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.Text.Encoding.Extensions.xml", - "ref/dotnet/es/System.Text.Encoding.Extensions.xml", - "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", - "ref/dotnet/it/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", - "ref/dotnet/System.Text.Encoding.Extensions.dll", - "ref/dotnet/System.Text.Encoding.Extensions.xml", - "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", - "System.Text.Encoding.Extensions.4.0.10.nupkg", - "System.Text.Encoding.Extensions.4.0.10.nupkg.sha512", - "System.Text.Encoding.Extensions.nuspec" - ] - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "1xpCMiJZBhbDNi7QoIZvU3+XHDlOr6E7N3zvoWjdzdXTnpnU6dgYZ0qrRrGN8sC4p2tRcbx4F+jA2uQAqqOA+g==", - "files": [ - "lib/dotnet5.1/System.Text.Encodings.Web.dll", - "System.Text.Encodings.Web.4.0.0-rc2-23525.nupkg", - "System.Text.Encodings.Web.4.0.0-rc2-23525.nupkg.sha512", - "System.Text.Encodings.Web.nuspec" - ] - }, - "System.Text.RegularExpressions/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "M1JdxnEZ1Mnv6jro+SvVI2ldrEEYhqP7LdhcX0uGm94q1Mg46Y9P27l6g1yz+Qgy2b3oi3tky5aF8+2VJwTuUA==", - "files": [ - "lib/dotnet5.4/System.Text.RegularExpressions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/es/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/fr/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/it/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/ja/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/ko/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/ru/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/System.Text.RegularExpressions.dll", - "ref/dotnet5.1/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/zh-hans/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/zh-hant/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/de/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/es/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/fr/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/it/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/ja/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/ko/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/ru/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/System.Text.RegularExpressions.dll", - "ref/dotnet5.4/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/zh-hans/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/zh-hant/System.Text.RegularExpressions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Text.RegularExpressions.xml", - "ref/netcore50/es/System.Text.RegularExpressions.xml", - "ref/netcore50/fr/System.Text.RegularExpressions.xml", - "ref/netcore50/it/System.Text.RegularExpressions.xml", - "ref/netcore50/ja/System.Text.RegularExpressions.xml", - "ref/netcore50/ko/System.Text.RegularExpressions.xml", - "ref/netcore50/ru/System.Text.RegularExpressions.xml", - "ref/netcore50/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Text.RegularExpressions.4.0.11-rc2-23525.nupkg", - "System.Text.RegularExpressions.4.0.11-rc2-23525.nupkg.sha512", - "System.Text.RegularExpressions.nuspec" - ] - }, - "System.Threading/4.0.0": { - "type": "package", - "sha512": "H6O/9gUrjPDNYanh/7OFGAZHjVXvEuITD0RcnjfvIV04HOGrOPqUBU0kmz9RIX/7YGgCQn1o1S2DX6Cuv8kVGQ==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Threading.xml", - "ref/dotnet/es/System.Threading.xml", - "ref/dotnet/fr/System.Threading.xml", - "ref/dotnet/it/System.Threading.xml", - "ref/dotnet/ja/System.Threading.xml", - "ref/dotnet/ko/System.Threading.xml", - "ref/dotnet/ru/System.Threading.xml", - "ref/dotnet/System.Threading.dll", - "ref/dotnet/System.Threading.xml", - "ref/dotnet/zh-hans/System.Threading.xml", - "ref/dotnet/zh-hant/System.Threading.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Threading.4.0.0.nupkg", - "System.Threading.4.0.0.nupkg.sha512", - "System.Threading.nuspec" - ] - }, - "System.Threading/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Vb+NknoSeJKz8FT6nCpDfjtZGOQOfoQAmi/kZxeXgdKwppTMp+Ytv5yqvvnYQDtBQcO3OnrnxUDg8WMTtU/v6w==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Threading.xml", - "ref/dotnet5.1/es/System.Threading.xml", - "ref/dotnet5.1/fr/System.Threading.xml", - "ref/dotnet5.1/it/System.Threading.xml", - "ref/dotnet5.1/ja/System.Threading.xml", - "ref/dotnet5.1/ko/System.Threading.xml", - "ref/dotnet5.1/ru/System.Threading.xml", - "ref/dotnet5.1/System.Threading.dll", - "ref/dotnet5.1/System.Threading.xml", - "ref/dotnet5.1/zh-hans/System.Threading.xml", - "ref/dotnet5.1/zh-hant/System.Threading.xml", - "ref/dotnet5.4/de/System.Threading.xml", - "ref/dotnet5.4/es/System.Threading.xml", - "ref/dotnet5.4/fr/System.Threading.xml", - "ref/dotnet5.4/it/System.Threading.xml", - "ref/dotnet5.4/ja/System.Threading.xml", - "ref/dotnet5.4/ko/System.Threading.xml", - "ref/dotnet5.4/ru/System.Threading.xml", - "ref/dotnet5.4/System.Threading.dll", - "ref/dotnet5.4/System.Threading.xml", - "ref/dotnet5.4/zh-hans/System.Threading.xml", - "ref/dotnet5.4/zh-hant/System.Threading.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Threading.4.0.11-rc2-23525.nupkg", - "System.Threading.4.0.11-rc2-23525.nupkg.sha512", - "System.Threading.nuspec" - ] - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", - "files": [ - "lib/DNXCore50/System.Threading.Overlapped.dll", - "lib/net46/System.Threading.Overlapped.dll", - "lib/netcore50/System.Threading.Overlapped.dll", - "ref/dotnet/de/System.Threading.Overlapped.xml", - "ref/dotnet/es/System.Threading.Overlapped.xml", - "ref/dotnet/fr/System.Threading.Overlapped.xml", - "ref/dotnet/it/System.Threading.Overlapped.xml", - "ref/dotnet/ja/System.Threading.Overlapped.xml", - "ref/dotnet/ko/System.Threading.Overlapped.xml", - "ref/dotnet/ru/System.Threading.Overlapped.xml", - "ref/dotnet/System.Threading.Overlapped.dll", - "ref/dotnet/System.Threading.Overlapped.xml", - "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", - "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", - "ref/net46/System.Threading.Overlapped.dll", - "System.Threading.Overlapped.4.0.0.nupkg", - "System.Threading.Overlapped.4.0.0.nupkg.sha512", - "System.Threading.Overlapped.nuspec" - ] - }, - "System.Threading.Tasks/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "AnTRum7I9zd11FK9QxLsCWmt0VyxWyJjj2b/dFCQIFXh9iOPCkApf4sDcgRN7c6e/97CZSGHIKCvTO/zxeuGcA==", - "files": [ - "lib/DNXCore50/System.Threading.Tasks.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Tasks.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Threading.Tasks.xml", - "ref/dotnet5.1/es/System.Threading.Tasks.xml", - "ref/dotnet5.1/fr/System.Threading.Tasks.xml", - "ref/dotnet5.1/it/System.Threading.Tasks.xml", - "ref/dotnet5.1/ja/System.Threading.Tasks.xml", - "ref/dotnet5.1/ko/System.Threading.Tasks.xml", - "ref/dotnet5.1/ru/System.Threading.Tasks.xml", - "ref/dotnet5.1/System.Threading.Tasks.dll", - "ref/dotnet5.1/System.Threading.Tasks.xml", - "ref/dotnet5.1/zh-hans/System.Threading.Tasks.xml", - "ref/dotnet5.1/zh-hant/System.Threading.Tasks.xml", - "ref/dotnet5.4/de/System.Threading.Tasks.xml", - "ref/dotnet5.4/es/System.Threading.Tasks.xml", - "ref/dotnet5.4/fr/System.Threading.Tasks.xml", - "ref/dotnet5.4/it/System.Threading.Tasks.xml", - "ref/dotnet5.4/ja/System.Threading.Tasks.xml", - "ref/dotnet5.4/ko/System.Threading.Tasks.xml", - "ref/dotnet5.4/ru/System.Threading.Tasks.xml", - "ref/dotnet5.4/System.Threading.Tasks.dll", - "ref/dotnet5.4/System.Threading.Tasks.xml", - "ref/dotnet5.4/zh-hans/System.Threading.Tasks.xml", - "ref/dotnet5.4/zh-hant/System.Threading.Tasks.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Threading.Tasks.xml", - "ref/netcore50/es/System.Threading.Tasks.xml", - "ref/netcore50/fr/System.Threading.Tasks.xml", - "ref/netcore50/it/System.Threading.Tasks.xml", - "ref/netcore50/ja/System.Threading.Tasks.xml", - "ref/netcore50/ko/System.Threading.Tasks.xml", - "ref/netcore50/ru/System.Threading.Tasks.xml", - "ref/netcore50/System.Threading.Tasks.dll", - "ref/netcore50/System.Threading.Tasks.xml", - "ref/netcore50/zh-hans/System.Threading.Tasks.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", - "System.Threading.Tasks.4.0.11-rc2-23525.nupkg", - "System.Threading.Tasks.4.0.11-rc2-23525.nupkg.sha512", - "System.Threading.Tasks.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "": [ - "Microsoft.AspNet.Http.Abstractions >= 1.0.0-*", - "Microsoft.Extensions.DependencyInjection >= 1.0.0-*", - "Microsoft.Extensions.Logging >= 1.0.0-*", - "Microsoft.Extensions.OptionsModel >= 1.0.0-*", - "Microsoft.Extensions.PlatformAbstractions >= 1.0.0-*", - "Newtonsoft.Json >= 6.0.6", - "Rx-Linq >= 2.2.5", - "Rx-PlatformServices >= 2.2.5" - ], - ".NETFramework,Version=v4.5.1": [], - ".NETPlatform,Version=v5.4": [ - "System.ObjectModel >= 4.0.11-*", - "System.Runtime >= 4.0.21-*", - "System.Security.Cryptography.Algorithms >= 4.0.0-*", - "System.Text.RegularExpressions >= 4.0.11-*", - "System.Threading >= 4.0.11-*" - ] - } -} \ No newline at end of file diff --git a/src/Glimpse.Common/_DNX_project.json b/src/Glimpse.Common/_SystemWeb_project.json similarity index 73% rename from src/Glimpse.Common/_DNX_project.json rename to src/Glimpse.Common/_SystemWeb_project.json index 8f508f6f..5c8aa304 100644 --- a/src/Glimpse.Common/_DNX_project.json +++ b/src/Glimpse.Common/_SystemWeb_project.json @@ -12,28 +12,18 @@ "releaseNotes": "Initial release of Glimpse.Common.", "tags": [ "ASP.NET", "Web", "Debugging", "Diagnostics" ], "compilationOptions": { - "define": ["DNX"] + "define": ["SystemWeb"] }, "dependencies": { "Microsoft.AspNet.Http.Abstractions": "1.0.0-*", "Microsoft.Extensions.DependencyInjection": "1.0.0-*", "Microsoft.Extensions.Logging": "1.0.0-*", "Microsoft.Extensions.OptionsModel": "1.0.0-*", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-*", "Newtonsoft.Json": "6.0.6", "Rx-Linq": "2.2.5", "Rx-PlatformServices": "2.2.5" }, "frameworks": { - "net451": { }, - "dotnet5.4": { - "dependencies": { - "System.ObjectModel": "4.0.11-*", - "System.Runtime": "4.0.21-*", - "System.Security.Cryptography.Algorithms": "4.0.0-*", - "System.Text.RegularExpressions": "4.0.11-*", - "System.Threading": "4.0.11-*" - } - } + "net451": { } } } \ No newline at end of file diff --git a/src/Glimpse.Common/_SystemWeb_project.lock.json b/src/Glimpse.Common/_SystemWeb_project.lock.json new file mode 100644 index 00000000..496e2bb4 --- /dev/null +++ b/src/Glimpse.Common/_SystemWeb_project.lock.json @@ -0,0 +1,1132 @@ +{ + "locked": false, + "version": 2, + "targets": { + ".NETFramework,Version=v4.5.1": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/net45/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23601": { + "type": "package", + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + } + }, + ".NETFramework,Version=v4.5.1/win7-x86": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/net45/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23601": { + "type": "package", + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + } + }, + ".NETFramework,Version=v4.5.1/win7-x64": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/net45/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23601": { + "type": "package", + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { + "type": "package", + "serviceable": true, + "sha512": "/00ufa9inL+QbCl/5TqQWRYMF8WtFkyqPgu0XLlebx1uofw6yFbsyD0L8QTLB+MyyNLtRpWjnty+hKD77M1dzA==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.xml", + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll", + "lib/net451/Microsoft.AspNet.Http.Abstractions.xml", + "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16017.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16017.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { + "type": "package", + "serviceable": true, + "sha512": "MRrTZIwVGsr9R0Z+4FVihnwZDV6LRWwYPnScsQVDk2BGVg37vW926rZlgbN0UUl+3e1aY6bG67R5isLM1ZkRLA==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.xml", + "lib/net451/Microsoft.AspNet.Http.Features.dll", + "lib/net451/Microsoft.AspNet.Http.Features.xml", + "Microsoft.AspNet.Http.Features.1.0.0-rc2-16017.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-rc2-16017.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { + "type": "package", + "serviceable": true, + "sha512": "aCoP+JyhiVL7djzbg8peHBF5Rp9GNAlCevqOBPFj92HzZ7R5AiLl8IwC7t7h7iMtAOIkb3wOhcw5tHeVgfw/6Q==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.xml", + "lib/net451/Microsoft.Extensions.Configuration.dll", + "lib/net451/Microsoft.Extensions.Configuration.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.xml", + "Microsoft.Extensions.Configuration.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Configuration.1.0.0-rc2-15878.nupkg.sha512", + "Microsoft.Extensions.Configuration.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { + "type": "package", + "serviceable": true, + "sha512": "ZghpJY8CfNITWXK2VC+uRmUu0apjzhI9GblCXOUpZLLWtD7+wMFw9VSvaEKEwaKIF1uBN3ucsSBkjuMUDz3JfQ==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.xml", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15878.nupkg.sha512", + "Microsoft.Extensions.Configuration.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { + "type": "package", + "serviceable": true, + "sha512": "b6PmeXivNR0LIHeYau4nqZD5/6+fTa56duhpCIKjUASRb8BCyIYbgkEVBtLBpoDPTl3IUC51u7Kg7vIV0OPJgg==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net451/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.Binder.xml", + "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15878.nupkg.sha512", + "Microsoft.Extensions.Configuration.Binder.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { + "type": "package", + "serviceable": true, + "sha512": "YlryeceF4o9LBefeAlBc+t+zu8zyFnRYygOSHIWY748rLgTo1yxC5A0AQKdQg7Gr8qokAsYeunGLJZJkvedvnQ==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll", + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.xml", + "lib/net451/Microsoft.Extensions.DependencyInjection.dll", + "lib/net451/Microsoft.Extensions.DependencyInjection.xml", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.dll", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.xml", + "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15848.nupkg", + "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15848.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { + "type": "package", + "serviceable": true, + "sha512": "ByRDREn2PEch1loDjkPR27y37ncJMMzw8YTR3x07wEcMIsBEpvZuSyXS/+9AHaikLJicDqpsliSxF7dQOuashw==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15848.nupkg", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15848.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { + "type": "package", + "serviceable": true, + "sha512": "eUzCGY2Seie8aFLZbk5MC3w6lITF2HMry9WGWeGXvRZ6+7HiSEirzEMaViQNclkjopoGZeYv8WkyFUd49KOmlA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll", + "lib/dotnet5.4/Microsoft.Extensions.Logging.xml", + "lib/net451/Microsoft.Extensions.Logging.dll", + "lib/net451/Microsoft.Extensions.Logging.xml", + "lib/netcore50/Microsoft.Extensions.Logging.dll", + "lib/netcore50/Microsoft.Extensions.Logging.xml", + "Microsoft.Extensions.Logging.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Logging.1.0.0-rc2-15878.nupkg.sha512", + "Microsoft.Extensions.Logging.nuspec" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { + "type": "package", + "serviceable": true, + "sha512": "MqLYvcSTwS8d+MHwehEduLOmcIEupGMDDn8Y7U3LTAbE6z8/9dwOuWaexmXrxsuMJH0Yx0WVYGrt73W5uFqO7Q==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net451/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.xml", + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15878.nupkg.sha512", + "Microsoft.Extensions.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { + "type": "package", + "serviceable": true, + "sha512": "FHjS7AlUW/GXIyzvOooy2C99r31mr31dSlShxzbcP3461AvmkbhDbjWy3ryF1o3D61azxgxD6V695Apb4+XZ9A==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll", + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.xml", + "lib/net451/Microsoft.Extensions.OptionsModel.dll", + "lib/net451/Microsoft.Extensions.OptionsModel.xml", + "lib/netcore50/Microsoft.Extensions.OptionsModel.dll", + "lib/netcore50/Microsoft.Extensions.OptionsModel.xml", + "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15858.nupkg", + "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15858.nupkg.sha512", + "Microsoft.Extensions.OptionsModel.nuspec" + ] + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { + "type": "package", + "serviceable": true, + "sha512": "bQVTEkMiBxWN80ta2MgXa1rSURTxVL7EQDYdJT/Ng+XiiN4wShTKpVLvm1tHfFA6FCqjzEvWtx9Ps3MwlDDClQ==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll", + "lib/dotnet5.4/Microsoft.Extensions.Primitives.xml", + "lib/net451/Microsoft.Extensions.Primitives.dll", + "lib/net451/Microsoft.Extensions.Primitives.xml", + "lib/netcore50/Microsoft.Extensions.Primitives.dll", + "lib/netcore50/Microsoft.Extensions.Primitives.xml", + "Microsoft.Extensions.Primitives.1.0.0-rc2-15898.nupkg", + "Microsoft.Extensions.Primitives.1.0.0-rc2-15898.nupkg.sha512", + "Microsoft.Extensions.Primitives.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Rx-Core/2.2.5": { + "type": "package", + "sha512": "DfWVTfW6tvRkkqpnRHKxPIvaRZyDJGADuqrE6J2nwejOQbLRWi0rNUwXkViDWz++25BGDy3iRE5OE6Dv8mJxYQ==", + "files": [ + "lib/net40/System.Reactive.Core.dll", + "lib/net40/System.Reactive.Core.XML", + "lib/net45/System.Reactive.Core.dll", + "lib/net45/System.Reactive.Core.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.XML", + "lib/portable-win81+wpa81/System.Reactive.Core.dll", + "lib/portable-win81+wpa81/System.Reactive.Core.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Core.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Core.XML", + "lib/sl5/System.Reactive.Core.dll", + "lib/sl5/System.Reactive.Core.XML", + "lib/windows8/System.Reactive.Core.dll", + "lib/windows8/System.Reactive.Core.XML", + "lib/windowsphone71/System.Reactive.Core.dll", + "lib/windowsphone71/System.Reactive.Core.XML", + "lib/windowsphone8/System.Reactive.Core.dll", + "lib/windowsphone8/System.Reactive.Core.XML", + "Rx-Core.2.2.5.nupkg", + "Rx-Core.2.2.5.nupkg.sha512", + "Rx-Core.nuspec" + ] + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "sha512": "FKtG2QfMIeUcfB7r3a89VoAiszX3DTvYETkpC6U0FzWpxRK/mcHyzYOsniDfag+NsDG0P1k1c8yNSefXKp3t2A==", + "files": [ + "lib/net40/System.Reactive.Interfaces.dll", + "lib/net40/System.Reactive.Interfaces.XML", + "lib/net45/System.Reactive.Interfaces.dll", + "lib/net45/System.Reactive.Interfaces.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.XML", + "lib/portable-win81+wpa81/System.Reactive.Interfaces.dll", + "lib/portable-win81+wpa81/System.Reactive.Interfaces.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.XML", + "lib/sl5/System.Reactive.Interfaces.dll", + "lib/sl5/System.Reactive.Interfaces.XML", + "lib/windows8/System.Reactive.Interfaces.dll", + "lib/windows8/System.Reactive.Interfaces.XML", + "lib/windowsphone71/System.Reactive.Interfaces.dll", + "lib/windowsphone71/System.Reactive.Interfaces.XML", + "lib/windowsphone8/System.Reactive.Interfaces.dll", + "lib/windowsphone8/System.Reactive.Interfaces.XML", + "Rx-Interfaces.2.2.5.nupkg", + "Rx-Interfaces.2.2.5.nupkg.sha512", + "Rx-Interfaces.nuspec" + ] + }, + "Rx-Linq/2.2.5": { + "type": "package", + "sha512": "UTeCIu3cWPExxmTzdiVq7SalqTBhUaomBTaAC9LpYPoAopjlFwA3hjVWXoLkGlDc/44wqJemJuEwFP00KphiFg==", + "files": [ + "lib/net40/System.Reactive.Linq.dll", + "lib/net40/System.Reactive.Linq.XML", + "lib/net45/System.Reactive.Linq.dll", + "lib/net45/System.Reactive.Linq.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.XML", + "lib/portable-win81+wpa81/System.Reactive.Linq.dll", + "lib/portable-win81+wpa81/System.Reactive.Linq.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Linq.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Linq.XML", + "lib/sl5/System.Reactive.Linq.dll", + "lib/sl5/System.Reactive.Linq.XML", + "lib/windows8/System.Reactive.Linq.dll", + "lib/windows8/System.Reactive.Linq.XML", + "lib/windowsphone71/System.Reactive.Linq.dll", + "lib/windowsphone71/System.Reactive.Linq.XML", + "lib/windowsphone8/System.Reactive.Linq.dll", + "lib/windowsphone8/System.Reactive.Linq.XML", + "Rx-Linq.2.2.5.nupkg", + "Rx-Linq.2.2.5.nupkg.sha512", + "Rx-Linq.nuspec" + ] + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "sha512": "pMnNEvJVjT+wuDib+W/bi5hhIYcre7dW5yxvKrJxnR4iKJ1VLA/dY2FTtjDriHGx7OeGn12lQewXlH2oHiWFPA==", + "files": [ + "lib/net40/System.Reactive.PlatformServices.dll", + "lib/net40/System.Reactive.PlatformServices.XML", + "lib/net45/System.Reactive.PlatformServices.dll", + "lib/net45/System.Reactive.PlatformServices.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.XML", + "lib/portable-win81+wpa81/System.Reactive.PlatformServices.dll", + "lib/portable-win81+wpa81/System.Reactive.PlatformServices.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.XML", + "lib/sl5/System.Reactive.PlatformServices.dll", + "lib/sl5/System.Reactive.PlatformServices.XML", + "lib/windows8/System.Reactive.PlatformServices.dll", + "lib/windows8/System.Reactive.PlatformServices.XML", + "lib/windowsphone71/System.Reactive.PlatformServices.dll", + "lib/windowsphone71/System.Reactive.PlatformServices.XML", + "lib/windowsphone8/System.Reactive.PlatformServices.dll", + "lib/windowsphone8/System.Reactive.PlatformServices.XML", + "Rx-PlatformServices.2.2.5.nupkg", + "Rx-PlatformServices.2.2.5.nupkg.sha512", + "Rx-PlatformServices.nuspec" + ] + }, + "System.Text.Encodings.Web/4.0.0-rc2-23601": { + "type": "package", + "serviceable": true, + "sha512": "A81uIO3jmWO2+heJ1vhcp5oXM+wCN36FtDO1I6F7PwUQxW7e5aeNruNRCqXb7yiRnCsQj6B1YhHYn0KPPV+Nrw==", + "files": [ + "lib/dotnet5.1/System.Text.Encodings.Web.dll", + "System.Text.Encodings.Web.4.0.0-rc2-23601.nupkg", + "System.Text.Encodings.Web.4.0.0-rc2-23601.nupkg.sha512", + "System.Text.Encodings.Web.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Http.Abstractions >= 1.0.0-*", + "Microsoft.Extensions.DependencyInjection >= 1.0.0-*", + "Microsoft.Extensions.Logging >= 1.0.0-*", + "Microsoft.Extensions.OptionsModel >= 1.0.0-*", + "Newtonsoft.Json >= 6.0.6", + "Rx-Linq >= 2.2.5", + "Rx-PlatformServices >= 2.2.5" + ], + ".NETFramework,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/src/Glimpse.Common/project.json b/src/Glimpse.Common/project.json index 5c8aa304..8f508f6f 100644 --- a/src/Glimpse.Common/project.json +++ b/src/Glimpse.Common/project.json @@ -12,18 +12,28 @@ "releaseNotes": "Initial release of Glimpse.Common.", "tags": [ "ASP.NET", "Web", "Debugging", "Diagnostics" ], "compilationOptions": { - "define": ["SystemWeb"] + "define": ["DNX"] }, "dependencies": { "Microsoft.AspNet.Http.Abstractions": "1.0.0-*", "Microsoft.Extensions.DependencyInjection": "1.0.0-*", "Microsoft.Extensions.Logging": "1.0.0-*", "Microsoft.Extensions.OptionsModel": "1.0.0-*", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-*", "Newtonsoft.Json": "6.0.6", "Rx-Linq": "2.2.5", "Rx-PlatformServices": "2.2.5" }, "frameworks": { - "net451": { } + "net451": { }, + "dotnet5.4": { + "dependencies": { + "System.ObjectModel": "4.0.11-*", + "System.Runtime": "4.0.21-*", + "System.Security.Cryptography.Algorithms": "4.0.0-*", + "System.Text.RegularExpressions": "4.0.11-*", + "System.Threading": "4.0.11-*" + } + } } } \ No newline at end of file diff --git a/src/Glimpse.Server/_DNX_project.lock.json b/src/Glimpse.Server/_DNX_project.lock.json deleted file mode 100644 index 00131e3d..00000000 --- a/src/Glimpse.Server/_DNX_project.lock.json +++ /dev/null @@ -1,7747 +0,0 @@ -{ - "locked": false, - "version": 2, - "targets": { - ".NETFramework,Version=v4.5.1": { - "Glimpse.Common/2.0.0": { - "type": "project", - "framework": ".NETFramework,Version=v4.5.1", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0", - "Microsoft.Extensions.DependencyInjection": "1.0.0", - "Microsoft.Extensions.Logging": "1.0.0", - "Microsoft.Extensions.OptionsModel": "1.0.0", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0", - "Newtonsoft.Json": "6.0.6", - "Rx-Linq": "2.2.5", - "Rx-PlatformServices": "2.2.5" - } - }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15838": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} - } - }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.IO", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Features.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Features.dll": {} - } - }, - "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15977": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", - "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-16009" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Collections.Concurrent", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} - } - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.OptionsModel": "1.0.0-rc2-15848", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.IO", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} - } - }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Net.Http.Headers.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Net.Http.Headers.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/net45/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/net45/Newtonsoft.Json.dll": {} - } - }, - "Rx-Core/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.Core.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Core.dll": {} - } - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "compile": { - "lib/net45/System.Reactive.Interfaces.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Interfaces.dll": {} - } - }, - "Rx-Linq/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.Linq.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Linq.dll": {} - } - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.PlatformServices.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.PlatformServices.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.IO/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime.Extensions/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Threading/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "Tavis.UriTemplates/0.6.6-beta2": { - "type": "package", - "compile": { - "lib/Net45/Tavis.UriTemplates.dll": {} - }, - "runtime": { - "lib/Net45/Tavis.UriTemplates.dll": {} - } - } - }, - ".NETPlatform,Version=v5.4": { - "Glimpse.Common/2.0.0": { - "type": "project", - "framework": ".NETPlatform,Version=v5.4", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0", - "Microsoft.Extensions.DependencyInjection": "1.0.0", - "Microsoft.Extensions.Logging": "1.0.0", - "Microsoft.Extensions.OptionsModel": "1.0.0", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0", - "Newtonsoft.Json": "6.0.6", - "Rx-Linq": "2.2.5", - "Rx-PlatformServices": "2.2.5", - "System.ObjectModel": "4.0.11", - "System.Runtime": "4.0.21", - "System.Security.Cryptography.Algorithms": "4.0.0", - "System.Text.RegularExpressions": "4.0.11", - "System.Threading": "4.0.11" - } - }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.IO": "4.0.11-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15838": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "System.Collections": "4.0.11-rc2-23525", - "System.Reflection": "4.0.10", - "System.Runtime.Extensions": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.dll": {} - } - }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Tools": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Globalization.Extensions": "4.0.1-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525", - "System.Text.Encodings.Web": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Collections": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} - } - }, - "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15977": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", - "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-16009" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Linq": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Resources.ResourceManager": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Reflection": "4.0.10", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} - } - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { - "type": "package", - "dependencies": { - "System.AppContext": "4.0.1-rc2-23525", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Extensions": "4.0.1-rc2-23525", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.OptionsModel": "1.0.0-rc2-15848", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.dll": {} - } - }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Contracts": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Globalization.Extensions": "4.0.1-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Text.Encoding": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} - } - }, - "Rx-Core/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} - } - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} - } - }, - "Rx-Linq/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} - } - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} - } - }, - "System.AppContext/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Collections.Concurrent.dll": {} - } - }, - "System.ComponentModel/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Primitives": "4.0.0", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Globalization/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.dll": {} - } - }, - "System.IO.FileSystem/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.Linq/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet5.1/System.Linq.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Linq.Expressions.dll": {} - } - }, - "System.Net.Primitives/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Net.Primitives.dll": {} - } - }, - "System.Net.WebSockets/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Net.WebSockets.dll": {} - } - }, - "System.ObjectModel/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.1.0-beta-23225": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.1-beta-23409": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.21-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet5.4/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.4/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.21-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "System.Security.Claims/4.0.1-rc2-23525": { - "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.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.dll": {} - } - }, - "System.Threading.Tasks/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.Tasks.dll": {} - } - }, - "Tavis.UriTemplates/0.6.6-beta2": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.RegularExpressions": "4.0.0" - }, - "compile": { - "lib/dotnet/Tavis.UriTemplates.dll": {} - }, - "runtime": { - "lib/dotnet/Tavis.UriTemplates.dll": {} - } - } - }, - ".NETFramework,Version=v4.5.1/win7-x86": { - "Glimpse.Common/2.0.0": { - "type": "project", - "framework": ".NETFramework,Version=v4.5.1", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0", - "Microsoft.Extensions.DependencyInjection": "1.0.0", - "Microsoft.Extensions.Logging": "1.0.0", - "Microsoft.Extensions.OptionsModel": "1.0.0", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0", - "Newtonsoft.Json": "6.0.6", - "Rx-Linq": "2.2.5", - "Rx-PlatformServices": "2.2.5" - } - }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15838": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} - } - }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.IO", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Features.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Features.dll": {} - } - }, - "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15977": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", - "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-16009" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Collections.Concurrent", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} - } - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.OptionsModel": "1.0.0-rc2-15848", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.IO", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} - } - }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Net.Http.Headers.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Net.Http.Headers.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/net45/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/net45/Newtonsoft.Json.dll": {} - } - }, - "Rx-Core/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.Core.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Core.dll": {} - } - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "compile": { - "lib/net45/System.Reactive.Interfaces.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Interfaces.dll": {} - } - }, - "Rx-Linq/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.Linq.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Linq.dll": {} - } - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.PlatformServices.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.PlatformServices.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.IO/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime.Extensions/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Threading/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "Tavis.UriTemplates/0.6.6-beta2": { - "type": "package", - "compile": { - "lib/Net45/Tavis.UriTemplates.dll": {} - }, - "runtime": { - "lib/Net45/Tavis.UriTemplates.dll": {} - } - } - }, - ".NETFramework,Version=v4.5.1/win7-x64": { - "Glimpse.Common/2.0.0": { - "type": "project", - "framework": ".NETFramework,Version=v4.5.1", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0", - "Microsoft.Extensions.DependencyInjection": "1.0.0", - "Microsoft.Extensions.Logging": "1.0.0", - "Microsoft.Extensions.OptionsModel": "1.0.0", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0", - "Newtonsoft.Json": "6.0.6", - "Rx-Linq": "2.2.5", - "Rx-PlatformServices": "2.2.5" - } - }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15838": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} - } - }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.IO", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Features.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Features.dll": {} - } - }, - "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15977": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", - "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-16009" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Collections.Concurrent", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} - } - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.OptionsModel": "1.0.0-rc2-15848", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.IO", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} - } - }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Net.Http.Headers.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Net.Http.Headers.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/net45/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/net45/Newtonsoft.Json.dll": {} - } - }, - "Rx-Core/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.Core.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Core.dll": {} - } - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "compile": { - "lib/net45/System.Reactive.Interfaces.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Interfaces.dll": {} - } - }, - "Rx-Linq/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.Linq.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Linq.dll": {} - } - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.PlatformServices.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.PlatformServices.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.IO/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime.Extensions/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Threading/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "Tavis.UriTemplates/0.6.6-beta2": { - "type": "package", - "compile": { - "lib/Net45/Tavis.UriTemplates.dll": {} - }, - "runtime": { - "lib/Net45/Tavis.UriTemplates.dll": {} - } - } - }, - ".NETPlatform,Version=v5.4/win7-x86": { - "Glimpse.Common/2.0.0": { - "type": "project", - "framework": ".NETPlatform,Version=v5.4", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0", - "Microsoft.Extensions.DependencyInjection": "1.0.0", - "Microsoft.Extensions.Logging": "1.0.0", - "Microsoft.Extensions.OptionsModel": "1.0.0", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0", - "Newtonsoft.Json": "6.0.6", - "Rx-Linq": "2.2.5", - "Rx-PlatformServices": "2.2.5", - "System.ObjectModel": "4.0.11", - "System.Runtime": "4.0.21", - "System.Security.Cryptography.Algorithms": "4.0.0", - "System.Text.RegularExpressions": "4.0.11", - "System.Threading": "4.0.11" - } - }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.IO": "4.0.11-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15838": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "System.Collections": "4.0.11-rc2-23525", - "System.Reflection": "4.0.10", - "System.Runtime.Extensions": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.dll": {} - } - }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Tools": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Globalization.Extensions": "4.0.1-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525", - "System.Text.Encodings.Web": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Collections": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} - } - }, - "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15977": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", - "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-16009" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Linq": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Resources.ResourceManager": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Reflection": "4.0.10", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} - } - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { - "type": "package", - "dependencies": { - "System.AppContext": "4.0.1-rc2-23525", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Extensions": "4.0.1-rc2-23525", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.OptionsModel": "1.0.0-rc2-15848", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.dll": {} - } - }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Contracts": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Globalization.Extensions": "4.0.1-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Text.Encoding": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} - } - }, - "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {} - } - }, - "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {} - } - }, - "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} - } - }, - "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Cng": "4.0.0-rc2-23525", - "System.Security.Cryptography.Csp": "4.0.0-rc2-23525", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "runtime.win7.System.Threading/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "Rx-Core/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} - } - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} - } - }, - "Rx-Linq/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} - } - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} - } - }, - "System.AppContext/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Collections.Concurrent.dll": {} - } - }, - "System.ComponentModel/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Primitives": "4.0.0", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Globalization/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.dll": {} - } - }, - "System.IO.FileSystem/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.Linq/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet5.1/System.Linq.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Linq.Expressions.dll": {} - } - }, - "System.Net.Primitives/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Net.Primitives.dll": {} - } - }, - "System.Net.WebSockets/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Net.WebSockets.dll": {} - } - }, - "System.ObjectModel/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.1.0-beta-23225": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.1-beta-23409": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.21-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet5.4/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.4/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.21-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.Claims/4.0.1-rc2-23525": { - "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.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", - "System.Text.Encoding": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Cng.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Csp.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.Tasks.dll": {} - } - }, - "Tavis.UriTemplates/0.6.6-beta2": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.RegularExpressions": "4.0.0" - }, - "compile": { - "lib/dotnet/Tavis.UriTemplates.dll": {} - }, - "runtime": { - "lib/dotnet/Tavis.UriTemplates.dll": {} - } - } - }, - ".NETPlatform,Version=v5.4/win7-x64": { - "Glimpse.Common/2.0.0": { - "type": "project", - "framework": ".NETPlatform,Version=v5.4", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0", - "Microsoft.Extensions.DependencyInjection": "1.0.0", - "Microsoft.Extensions.Logging": "1.0.0", - "Microsoft.Extensions.OptionsModel": "1.0.0", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0", - "Newtonsoft.Json": "6.0.6", - "Rx-Linq": "2.2.5", - "Rx-PlatformServices": "2.2.5", - "System.ObjectModel": "4.0.11", - "System.Runtime": "4.0.21", - "System.Security.Cryptography.Algorithms": "4.0.0", - "System.Text.RegularExpressions": "4.0.11", - "System.Threading": "4.0.11" - } - }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.IO": "4.0.11-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15838": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "System.Collections": "4.0.11-rc2-23525", - "System.Reflection": "4.0.10", - "System.Runtime.Extensions": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.dll": {} - } - }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16009", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Tools": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Globalization.Extensions": "4.0.1-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525", - "System.Text.Encodings.Web": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16009", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16009", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Collections": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Net.Primitives": "4.0.11-rc2-23525", - "System.Net.WebSockets": "4.0.0-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Security.Claims": "4.0.1-rc2-23525", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23525", - "System.Security.Principal": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} - } - }, - "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15977": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15838", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16032", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16009", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", - "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-16009" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.IO.FileSystem": "4.0.1-rc2-23525", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15889", - "System.Linq": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15866", - "System.ComponentModel.TypeConverter": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Resources.ResourceManager": "4.0.1-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15867", - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-23525", - "System.Collections.Concurrent": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15866", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15866", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.Diagnostics.Debug": "4.0.11-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Linq.Expressions": "4.0.11-rc2-23525", - "System.Reflection": "4.0.10", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Threading": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} - } - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { - "type": "package", - "dependencies": { - "System.AppContext": "4.0.1-rc2-23525", - "System.Collections": "4.0.11-rc2-23525", - "System.ComponentModel": "4.0.1-rc2-23525", - "System.IO": "4.0.11-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Extensions": "4.0.1-rc2-23525", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23525", - "System.Runtime.Extensions": "4.0.11-rc2-23525", - "System.Runtime.InteropServices": "4.0.21-rc2-23525", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23525", - "System.Threading.Tasks": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15839", - "Microsoft.Extensions.OptionsModel": "1.0.0-rc2-15848", - "System.Text.Encodings.Web": "4.0.0-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.dll": {} - } - }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-23525", - "System.Diagnostics.Contracts": "4.0.1-rc2-23525", - "System.Globalization": "4.0.11-rc2-23525", - "System.Globalization.Extensions": "4.0.1-rc2-23525", - "System.Linq": "4.0.1-rc2-23525", - "System.Runtime": "4.0.21-rc2-23525", - "System.Text.Encoding": "4.0.11-rc2-23525" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} - } - }, - "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {} - } - }, - "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {} - } - }, - "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} - } - }, - "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Cng": "4.0.0-rc2-23525", - "System.Security.Cryptography.Csp": "4.0.0-rc2-23525", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "runtime.win7.System.Threading/4.0.11-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "Rx-Core/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} - } - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} - } - }, - "Rx-Linq/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} - } - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} - } - }, - "System.AppContext/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Collections.Concurrent.dll": {} - } - }, - "System.ComponentModel/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Primitives": "4.0.0", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Globalization/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.dll": {} - } - }, - "System.IO.FileSystem/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.Linq/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet5.1/System.Linq.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Linq.Expressions.dll": {} - } - }, - "System.Net.Primitives/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Net.Primitives.dll": {} - } - }, - "System.Net.WebSockets/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Net.WebSockets.dll": {} - } - }, - "System.ObjectModel/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.1.0-beta-23225": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.1-beta-23409": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.21-rc2-23525": { - "type": "package", - "compile": { - "ref/dotnet5.4/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.4/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.21-rc2-23525": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.Claims/4.0.1-rc2-23525": { - "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.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525", - "System.Text.Encoding": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Cng.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Csp.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23525", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23525" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.11-rc2-23525": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.Tasks.dll": {} - } - }, - "Tavis.UriTemplates/0.6.6-beta2": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.RegularExpressions": "4.0.0" - }, - "compile": { - "lib/dotnet/Tavis.UriTemplates.dll": {} - }, - "runtime": { - "lib/dotnet/Tavis.UriTemplates.dll": {} - } - } - } - }, - "libraries": { - "Glimpse.Common/2.0.0": { - "type": "project", - "path": "../Glimpse.Common/project.json" - }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15838": { - "type": "package", - "serviceable": true, - "sha512": "xroX7pbQ0TvSKSNMjJ2c5OZqekyS9n6ytIKzGUYv7uYUOLDLoxaRFAsalk4Jg5oFdWwEWlqvOSZ8XzWNkr2r2g==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll", - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.xml", - "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll", - "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.xml", - "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc2-15838.nupkg", - "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc2-15838.nupkg.sha512", - "Microsoft.AspNet.FileProviders.Abstractions.nuspec" - ] - }, - "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15838": { - "type": "package", - "serviceable": true, - "sha512": "2lP9C9m9L31nfJcCsIhqOHh0MdA7Ww6cMwo6tG8dqmOpOscWZ63tZsEa3gd1YinplCLj8eelmaAONUw105Wh3Q==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.dll", - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.xml", - "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll", - "lib/net451/Microsoft.AspNet.FileProviders.Embedded.xml", - "Microsoft.AspNet.FileProviders.Embedded.1.0.0-rc2-15838.nupkg", - "Microsoft.AspNet.FileProviders.Embedded.1.0.0-rc2-15838.nupkg.sha512", - "Microsoft.AspNet.FileProviders.Embedded.nuspec" - ] - }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16032": { - "type": "package", - "serviceable": true, - "sha512": "C5rsiJAQvewPLq1SXtLp8mj1avE3W44ihYgCPgDjuLTII6X13dsDzoq+tx9Mvrpo0aKLMvkwYXvuISsXNGG8Kw==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll", - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.xml", - "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll", - "lib/net451/Microsoft.AspNet.Hosting.Abstractions.xml", - "Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc2-16032.nupkg", - "Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc2-16032.nupkg.sha512", - "Microsoft.AspNet.Hosting.Abstractions.nuspec" - ] - }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16009": { - "type": "package", - "serviceable": true, - "sha512": "nTSnUeiLsYx55rbORWX7MP7dM6tKwUN4LGultn5WEshq9sArC6tjmazB5NYxw3PBb7ptiKsupv3icc1FN5FAgg==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll", - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.xml", - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll", - "lib/net451/Microsoft.AspNet.Http.Abstractions.xml", - "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16009.nupkg", - "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16009.nupkg.sha512", - "Microsoft.AspNet.Http.Abstractions.nuspec" - ] - }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16009": { - "type": "package", - "serviceable": true, - "sha512": "e2HsZ/mON83GhbQDnVC/9/BtO5/gjQfw6wo9v/J950wGk8EUg7jLIAmEiFcGyv0SLYf/7sy2tGtt756KOWwvQw==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll", - "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.xml", - "lib/net451/Microsoft.AspNet.Http.Extensions.dll", - "lib/net451/Microsoft.AspNet.Http.Extensions.xml", - "Microsoft.AspNet.Http.Extensions.1.0.0-rc2-16009.nupkg", - "Microsoft.AspNet.Http.Extensions.1.0.0-rc2-16009.nupkg.sha512", - "Microsoft.AspNet.Http.Extensions.nuspec" - ] - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16009": { - "type": "package", - "serviceable": true, - "sha512": "vk/l2BgRDzy2LERj1Oh8Znk6iiPlLlz1O2gREn+cbtiD3P3ATRH1S9MFc7SM1AZR6VSPdZm6exhF1nt3q0EpXg==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll", - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.xml", - "lib/net451/Microsoft.AspNet.Http.Features.dll", - "lib/net451/Microsoft.AspNet.Http.Features.xml", - "Microsoft.AspNet.Http.Features.1.0.0-rc2-16009.nupkg", - "Microsoft.AspNet.Http.Features.1.0.0-rc2-16009.nupkg.sha512", - "Microsoft.AspNet.Http.Features.nuspec" - ] - }, - "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15977": { - "type": "package", - "serviceable": true, - "sha512": "oa6eVv4pxc22Rk/XqMLoWfpAQgasJVxMfCRNHsoD2wPiI19EN97kQfgf+ebZIb+tUc1lhNR99kKf4YFWo44poA==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.dll", - "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.xml", - "lib/net451/Microsoft.AspNet.StaticFiles.dll", - "lib/net451/Microsoft.AspNet.StaticFiles.xml", - "Microsoft.AspNet.StaticFiles.1.0.0-rc2-15977.nupkg", - "Microsoft.AspNet.StaticFiles.1.0.0-rc2-15977.nupkg.sha512", - "Microsoft.AspNet.StaticFiles.nuspec" - ] - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15866": { - "type": "package", - "serviceable": true, - "sha512": "MOYgTTWkUXDE2bS76CFIH6E+TytMilisgAJYAcRxRRYAYh/7I45KCuJDCP5l/2NA4mIgfecVUeXTe9EHn7etdA==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll", - "lib/dotnet5.4/Microsoft.Extensions.Configuration.xml", - "lib/net451/Microsoft.Extensions.Configuration.dll", - "lib/net451/Microsoft.Extensions.Configuration.xml", - "lib/netcore50/Microsoft.Extensions.Configuration.dll", - "lib/netcore50/Microsoft.Extensions.Configuration.xml", - "Microsoft.Extensions.Configuration.1.0.0-rc2-15866.nupkg", - "Microsoft.Extensions.Configuration.1.0.0-rc2-15866.nupkg.sha512", - "Microsoft.Extensions.Configuration.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15866": { - "type": "package", - "serviceable": true, - "sha512": "mCbiKPorBDupxnYahPCdAMbEr+5j8mzuZVrUzjhPAnnFA94POhZ2US+gdf2exDhLzIM0cDy0mUSVWIjlcIr1QA==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.xml", - "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15866.nupkg", - "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15866.nupkg.sha512", - "Microsoft.Extensions.Configuration.Abstractions.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15866": { - "type": "package", - "serviceable": true, - "sha512": "2wI+qIu9YedvCLfep2RxBTYyAqy6Mkr9bVJwzZBHw7yg/GEpCXeOhppWvEXEd/I6sqWWUB+fYNnZtm5h9NlH8A==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll", - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net451/Microsoft.Extensions.Configuration.Binder.xml", - "lib/netcore50/Microsoft.Extensions.Configuration.Binder.dll", - "lib/netcore50/Microsoft.Extensions.Configuration.Binder.xml", - "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15866.nupkg", - "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15866.nupkg.sha512", - "Microsoft.Extensions.Configuration.Binder.nuspec" - ] - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15839": { - "type": "package", - "serviceable": true, - "sha512": "cuFxC3SPMIOIX+uUHo9QEri+P9DC6CPkLltJRq2qwgjFIMQ8uJ9nJI6HUYZpEU2Kyh6nm2DIrVSnjG5ycsk9cQ==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll", - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.xml", - "lib/net451/Microsoft.Extensions.DependencyInjection.dll", - "lib/net451/Microsoft.Extensions.DependencyInjection.xml", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.dll", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.xml", - "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15839.nupkg", - "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15839.nupkg.sha512", - "Microsoft.Extensions.DependencyInjection.nuspec" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15839": { - "type": "package", - "serviceable": true, - "sha512": "JxM3ERvmmjQqRNfQlTeXnjWAqrIzoe+x5alZLuSOw2b5p/191vObRKi0SuFmFvBi/mPoHYqth6cLwSLTASeD3Q==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15839.nupkg", - "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15839.nupkg.sha512", - "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec" - ] - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15867": { - "type": "package", - "serviceable": true, - "sha512": "jwr1ZH/IUqG6kLpSi8lUueZB/JFQWJUNMjPgpfObmaW7/mfl83/6qDhm7I6Z9Ix0ULjWDEAGmaHTykE06bB/eA==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll", - "lib/dotnet5.4/Microsoft.Extensions.Logging.xml", - "lib/net451/Microsoft.Extensions.Logging.dll", - "lib/net451/Microsoft.Extensions.Logging.xml", - "lib/netcore50/Microsoft.Extensions.Logging.dll", - "lib/netcore50/Microsoft.Extensions.Logging.xml", - "Microsoft.Extensions.Logging.1.0.0-rc2-15867.nupkg", - "Microsoft.Extensions.Logging.1.0.0-rc2-15867.nupkg.sha512", - "Microsoft.Extensions.Logging.nuspec" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15867": { - "type": "package", - "serviceable": true, - "sha512": "f37cph4Ec/2fSoy1kQUVICI7vx7JT+aPrBoePXVncsoFssNWzLbOpQ4Jwb9Gntd1qRKpAWyH/OsSdGHjV3rCSA==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net451/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.xml", - "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15867.nupkg", - "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15867.nupkg.sha512", - "Microsoft.Extensions.Logging.Abstractions.nuspec" - ] - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15848": { - "type": "package", - "serviceable": true, - "sha512": "YHgRu79p6vbxr5BvnwD0vb2j96EQiNlZjMpra0VdUWYx7jB1Z8M9qB5OBF1ZUgiUVaGmwKFukd4EDqw4sS8MDA==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll", - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.xml", - "lib/net451/Microsoft.Extensions.OptionsModel.dll", - "lib/net451/Microsoft.Extensions.OptionsModel.xml", - "lib/netcore50/Microsoft.Extensions.OptionsModel.dll", - "lib/netcore50/Microsoft.Extensions.OptionsModel.xml", - "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15848.nupkg", - "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15848.nupkg.sha512", - "Microsoft.Extensions.OptionsModel.nuspec" - ] - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16237": { - "type": "package", - "serviceable": true, - "sha512": "BtXxSh8IrQDGNjuLago+2LQ2UEC7Up8oHS6U30HY4sR2UlOauY5RGNafffLz5DzMoHfs02eDeu9saRViXjxBxQ==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll", - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.xml", - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll", - "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml", - "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16237.nupkg", - "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16237.nupkg.sha512", - "Microsoft.Extensions.PlatformAbstractions.nuspec" - ] - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15889": { - "type": "package", - "serviceable": true, - "sha512": "ImxZgBrbQStbBlGvR59w7euRE4pKIaKURQT8v70SwWZgrvecl9qXFxuJeoyLhwDBxErF1vdW2QJU7GHFdKZTaA==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll", - "lib/dotnet5.4/Microsoft.Extensions.Primitives.xml", - "lib/net451/Microsoft.Extensions.Primitives.dll", - "lib/net451/Microsoft.Extensions.Primitives.xml", - "lib/netcore50/Microsoft.Extensions.Primitives.dll", - "lib/netcore50/Microsoft.Extensions.Primitives.xml", - "Microsoft.Extensions.Primitives.1.0.0-rc2-15889.nupkg", - "Microsoft.Extensions.Primitives.1.0.0-rc2-15889.nupkg.sha512", - "Microsoft.Extensions.Primitives.nuspec" - ] - }, - "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16009": { - "type": "package", - "serviceable": true, - "sha512": "mt2LNdF3Emk1DyVqLTZqDuZ7NZf6I8AA2YaZzcRmOANuQ3GUWiYX/dqNqqykZ6MMXH/sPjLEKexzUtFYGd7V6A==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.dll", - "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.xml", - "lib/net451/Microsoft.Extensions.WebEncoders.dll", - "lib/net451/Microsoft.Extensions.WebEncoders.xml", - "Microsoft.Extensions.WebEncoders.1.0.0-rc2-16009.nupkg", - "Microsoft.Extensions.WebEncoders.1.0.0-rc2-16009.nupkg.sha512", - "Microsoft.Extensions.WebEncoders.nuspec" - ] - }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16009": { - "type": "package", - "serviceable": true, - "sha512": "MeGgbca6En71j+SG34w3Xk4wlOyBdrw/wKpJd15z5DtWqUWVMyPCN2xxeWKhsxmP76wj3fngL4QrgubYN27tzw==", - "files": [ - "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll", - "lib/dotnet5.4/Microsoft.Net.Http.Headers.xml", - "lib/net451/Microsoft.Net.Http.Headers.dll", - "lib/net451/Microsoft.Net.Http.Headers.xml", - "Microsoft.Net.Http.Headers.1.0.0-rc2-16009.nupkg", - "Microsoft.Net.Http.Headers.1.0.0-rc2-16009.nupkg.sha512", - "Microsoft.Net.Http.Headers.nuspec" - ] - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", - "files": [ - "lib/dotnet/Microsoft.Win32.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "Microsoft.Win32.Primitives.4.0.0.nupkg", - "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512", - "Microsoft.Win32.Primitives.nuspec", - "ref/dotnet/de/Microsoft.Win32.Primitives.xml", - "ref/dotnet/es/Microsoft.Win32.Primitives.xml", - "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", - "ref/dotnet/it/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", - "ref/dotnet/Microsoft.Win32.Primitives.dll", - "ref/dotnet/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", - "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", - "files": [ - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netcore45/Newtonsoft.Json.dll", - "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", - "Newtonsoft.Json.6.0.6.nupkg", - "Newtonsoft.Json.6.0.6.nupkg.sha512", - "Newtonsoft.Json.nuspec", - "tools/install.ps1" - ] - }, - "runtime.any.System.Linq.Expressions/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "m2rDRsf1hcnaUlhKgF9op2UmADh1/5nJpfBJHkKPK46C6s2dI3LAJ0LpAIw1arW9xJDd2P//5gdvUFRGBRRang==", - "files": [ - "lib/DNXCore50/System.Linq.Expressions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/_._", - "runtime.any.System.Linq.Expressions.4.0.11-rc2-23525.nupkg", - "runtime.any.System.Linq.Expressions.4.0.11-rc2-23525.nupkg.sha512", - "runtime.any.System.Linq.Expressions.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "H8lMtaHAPFEjWCfOZyPwN7ctkAxC3vN65x+gzaUfcPBLrHMLaqT3qsNy5H3c66oFGt3NOCm4WEYlvjeYjd8/sQ==", - "files": [ - "ref/dotnet/_._", - "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg", - "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg.sha512", - "runtime.win.System.Runtime.InteropServices.RuntimeInformation.nuspec", - "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll" - ] - }, - "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "6txhz00DQayySs37jFHBE7C0O5dpTmlZrCxJLDdukcyKpHnyhNCOEKz6r+93mFeziRY6Lf4f3K7XgnvN/1vPJQ==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg", - "runtime.win7.System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg.sha512", - "runtime.win7.System.Diagnostics.Debug.nuspec", - "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll", - "runtimes/win7/lib/netcore50/System.Diagnostics.Debug.dll", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" - ] - }, - "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "KjAFrVUkamkrAYajk+bpM5qhZ5UzAMVS1jlR4fW6keFk8ltp57PfivcBGRDbQDhCMzUVIjEFQ5RHXIsLOgpZHg==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Globalization.Extensions.4.0.1-rc2-23525.nupkg", - "runtime.win7.System.Globalization.Extensions.4.0.1-rc2-23525.nupkg.sha512", - "runtime.win7.System.Globalization.Extensions.nuspec", - "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll", - "runtimes/win7/lib/net/_._" - ] - }, - "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Rk2nN279viCiNX+a05TDaZAWxtp1Kl/NytR4jT75dM24niwhNtLVpDq3mZ6L8AV0lSnkd6UeHhMOrcbMhoiHyg==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.IO.FileSystem.4.0.1-rc2-23525.nupkg", - "runtime.win7.System.IO.FileSystem.4.0.1-rc2-23525.nupkg.sha512", - "runtime.win7.System.IO.FileSystem.nuspec", - "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll", - "runtimes/win7/lib/net/_._", - "runtimes/win7/lib/netcore50/System.IO.FileSystem.dll", - "runtimes/win7/lib/win8/_._", - "runtimes/win7/lib/wp8/_._", - "runtimes/win7/lib/wpa81/_._" - ] - }, - "runtime.win7.System.Net.Primitives/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "fQXiEWBBAf85oQrn/PhE5h0x1Bz2MsQLzFnsmPHXK3F52aCXSfA8XG7d9/P4M635T6YuZz4Hl4RmJdFYoO84Ww==", - "files": [ - "lib/DNXCore50/System.Net.Primitives.dll", - "ref/dotnet/_._", - "runtime.win7.System.Net.Primitives.4.0.11-rc2-23525.nupkg", - "runtime.win7.System.Net.Primitives.4.0.11-rc2-23525.nupkg.sha512", - "runtime.win7.System.Net.Primitives.nuspec", - "runtimes/win7/lib/netcore50/System.Net.Primitives.dll" - ] - }, - "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "o9yhni1ibV4TZ8pDXnGWrbdYUN0vDTqjC08fBoNF/iHtg4m5TNATIaEVDXOF1ny1ymyfZE/6VRC7m2twuWD/+A==", - "files": [ - "lib/DNXCore50/System.Runtime.Extensions.dll", - "lib/netcore50/System.Runtime.Extensions.dll", - "ref/dotnet/_._", - "runtime.win7.System.Runtime.Extensions.4.0.11-rc2-23525.nupkg", - "runtime.win7.System.Runtime.Extensions.4.0.11-rc2-23525.nupkg.sha512", - "runtime.win7.System.Runtime.Extensions.nuspec", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" - ] - }, - "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "OZghF4dY+gj/IhXj1FOrlDI//lEb0q9/Y/5GPftSotrk/sDRMpiflbAzVziNCkvOnDPowaU+kayZGCLU9zMRqA==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg", - "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg.sha512", - "runtime.win7.System.Security.Cryptography.Algorithms.nuspec", - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll", - "runtimes/win7/lib/net/_._" - ] - }, - "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "fwjrSecPvxUhksPU8iIxjY8z5akm/KqTTCUWEETuka9WkaFCU1ktrqJI/UJrn+ImXBv87MbLYBblixdAYAr75g==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg", - "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg.sha512", - "runtime.win7.System.Security.Cryptography.Encoding.nuspec", - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll", - "runtimes/win7/lib/net/_._" - ] - }, - "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "MstJY/cwJg4HYbUk+z+m8r1Ffw14Nsm8DD7QNxtNfXI99eFfvjDhn7ur8S7m5nTBk23EPsUfN9VAFESXTrv2fw==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg", - "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg.sha512", - "runtime.win7.System.Security.Cryptography.X509Certificates.nuspec", - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win7/lib/net/_._", - "runtimes/win7/lib/netcore50/System.Security.Cryptography.X509Certificates.dll" - ] - }, - "runtime.win7.System.Threading/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "gYFmKqjSPB2E2PpyEehCvovB6pPiRJbw04DwViGE7FGyrE0J9VsdeFTeIpzWcKiTg5pzdlvmUg100MIxfYWrjA==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Threading.4.0.11-rc2-23525.nupkg", - "runtime.win7.System.Threading.4.0.11-rc2-23525.nupkg.sha512", - "runtime.win7.System.Threading.nuspec", - "runtimes/win7/lib/DNXCore50/System.Threading.dll", - "runtimes/win7/lib/netcore50/System.Threading.dll", - "runtimes/win8-aot/lib/netcore50/System.Threading.dll" - ] - }, - "Rx-Core/2.2.5": { - "type": "package", - "sha512": "DfWVTfW6tvRkkqpnRHKxPIvaRZyDJGADuqrE6J2nwejOQbLRWi0rNUwXkViDWz++25BGDy3iRE5OE6Dv8mJxYQ==", - "files": [ - "lib/net40/System.Reactive.Core.dll", - "lib/net40/System.Reactive.Core.XML", - "lib/net45/System.Reactive.Core.dll", - "lib/net45/System.Reactive.Core.XML", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.dll", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.XML", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.XML", - "lib/portable-win81+wpa81/System.Reactive.Core.dll", - "lib/portable-win81+wpa81/System.Reactive.Core.XML", - "lib/portable-windows8+net45+wp8/System.Reactive.Core.dll", - "lib/portable-windows8+net45+wp8/System.Reactive.Core.XML", - "lib/sl5/System.Reactive.Core.dll", - "lib/sl5/System.Reactive.Core.XML", - "lib/windows8/System.Reactive.Core.dll", - "lib/windows8/System.Reactive.Core.XML", - "lib/windowsphone71/System.Reactive.Core.dll", - "lib/windowsphone71/System.Reactive.Core.XML", - "lib/windowsphone8/System.Reactive.Core.dll", - "lib/windowsphone8/System.Reactive.Core.XML", - "Rx-Core.2.2.5.nupkg", - "Rx-Core.2.2.5.nupkg.sha512", - "Rx-Core.nuspec" - ] - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "sha512": "FKtG2QfMIeUcfB7r3a89VoAiszX3DTvYETkpC6U0FzWpxRK/mcHyzYOsniDfag+NsDG0P1k1c8yNSefXKp3t2A==", - "files": [ - "lib/net40/System.Reactive.Interfaces.dll", - "lib/net40/System.Reactive.Interfaces.XML", - "lib/net45/System.Reactive.Interfaces.dll", - "lib/net45/System.Reactive.Interfaces.XML", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.dll", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.XML", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.XML", - "lib/portable-win81+wpa81/System.Reactive.Interfaces.dll", - "lib/portable-win81+wpa81/System.Reactive.Interfaces.XML", - "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.dll", - "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.XML", - "lib/sl5/System.Reactive.Interfaces.dll", - "lib/sl5/System.Reactive.Interfaces.XML", - "lib/windows8/System.Reactive.Interfaces.dll", - "lib/windows8/System.Reactive.Interfaces.XML", - "lib/windowsphone71/System.Reactive.Interfaces.dll", - "lib/windowsphone71/System.Reactive.Interfaces.XML", - "lib/windowsphone8/System.Reactive.Interfaces.dll", - "lib/windowsphone8/System.Reactive.Interfaces.XML", - "Rx-Interfaces.2.2.5.nupkg", - "Rx-Interfaces.2.2.5.nupkg.sha512", - "Rx-Interfaces.nuspec" - ] - }, - "Rx-Linq/2.2.5": { - "type": "package", - "sha512": "UTeCIu3cWPExxmTzdiVq7SalqTBhUaomBTaAC9LpYPoAopjlFwA3hjVWXoLkGlDc/44wqJemJuEwFP00KphiFg==", - "files": [ - "lib/net40/System.Reactive.Linq.dll", - "lib/net40/System.Reactive.Linq.XML", - "lib/net45/System.Reactive.Linq.dll", - "lib/net45/System.Reactive.Linq.XML", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.dll", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.XML", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.XML", - "lib/portable-win81+wpa81/System.Reactive.Linq.dll", - "lib/portable-win81+wpa81/System.Reactive.Linq.XML", - "lib/portable-windows8+net45+wp8/System.Reactive.Linq.dll", - "lib/portable-windows8+net45+wp8/System.Reactive.Linq.XML", - "lib/sl5/System.Reactive.Linq.dll", - "lib/sl5/System.Reactive.Linq.XML", - "lib/windows8/System.Reactive.Linq.dll", - "lib/windows8/System.Reactive.Linq.XML", - "lib/windowsphone71/System.Reactive.Linq.dll", - "lib/windowsphone71/System.Reactive.Linq.XML", - "lib/windowsphone8/System.Reactive.Linq.dll", - "lib/windowsphone8/System.Reactive.Linq.XML", - "Rx-Linq.2.2.5.nupkg", - "Rx-Linq.2.2.5.nupkg.sha512", - "Rx-Linq.nuspec" - ] - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "sha512": "pMnNEvJVjT+wuDib+W/bi5hhIYcre7dW5yxvKrJxnR4iKJ1VLA/dY2FTtjDriHGx7OeGn12lQewXlH2oHiWFPA==", - "files": [ - "lib/net40/System.Reactive.PlatformServices.dll", - "lib/net40/System.Reactive.PlatformServices.XML", - "lib/net45/System.Reactive.PlatformServices.dll", - "lib/net45/System.Reactive.PlatformServices.XML", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.dll", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.XML", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.XML", - "lib/portable-win81+wpa81/System.Reactive.PlatformServices.dll", - "lib/portable-win81+wpa81/System.Reactive.PlatformServices.XML", - "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.dll", - "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.XML", - "lib/sl5/System.Reactive.PlatformServices.dll", - "lib/sl5/System.Reactive.PlatformServices.XML", - "lib/windows8/System.Reactive.PlatformServices.dll", - "lib/windows8/System.Reactive.PlatformServices.XML", - "lib/windowsphone71/System.Reactive.PlatformServices.dll", - "lib/windowsphone71/System.Reactive.PlatformServices.XML", - "lib/windowsphone8/System.Reactive.PlatformServices.dll", - "lib/windowsphone8/System.Reactive.PlatformServices.XML", - "Rx-PlatformServices.2.2.5.nupkg", - "Rx-PlatformServices.2.2.5.nupkg.sha512", - "Rx-PlatformServices.nuspec" - ] - }, - "System.AppContext/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "1AErxnp8ORCt1JmFgddMK5xYzIgfFE8yPRXXLRAHv43Dj6oHGsdE0sz4eB+lBkbLrzd+MWd/FJc6/t0It6qJxw==", - "files": [ - "lib/DNXCore50/System.AppContext.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.AppContext.dll", - "lib/netcore50/System.AppContext.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.AppContext.xml", - "ref/dotnet5.4/es/System.AppContext.xml", - "ref/dotnet5.4/fr/System.AppContext.xml", - "ref/dotnet5.4/it/System.AppContext.xml", - "ref/dotnet5.4/ja/System.AppContext.xml", - "ref/dotnet5.4/ko/System.AppContext.xml", - "ref/dotnet5.4/ru/System.AppContext.xml", - "ref/dotnet5.4/System.AppContext.dll", - "ref/dotnet5.4/System.AppContext.xml", - "ref/dotnet5.4/zh-hans/System.AppContext.xml", - "ref/dotnet5.4/zh-hant/System.AppContext.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.AppContext.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.AppContext.4.0.1-rc2-23525.nupkg", - "System.AppContext.4.0.1-rc2-23525.nupkg.sha512", - "System.AppContext.nuspec" - ] - }, - "System.Collections/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "xJmMbyH4afnSkGiOhTiSyAWL6j45yYDG3l63D3peganrFKvzln1ks7SGfERzBEPqKFHBDoJ7TlRpJQp40wJNUA==", - "files": [ - "lib/DNXCore50/System.Collections.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Collections.xml", - "ref/dotnet5.1/es/System.Collections.xml", - "ref/dotnet5.1/fr/System.Collections.xml", - "ref/dotnet5.1/it/System.Collections.xml", - "ref/dotnet5.1/ja/System.Collections.xml", - "ref/dotnet5.1/ko/System.Collections.xml", - "ref/dotnet5.1/ru/System.Collections.xml", - "ref/dotnet5.1/System.Collections.dll", - "ref/dotnet5.1/System.Collections.xml", - "ref/dotnet5.1/zh-hans/System.Collections.xml", - "ref/dotnet5.1/zh-hant/System.Collections.xml", - "ref/dotnet5.4/de/System.Collections.xml", - "ref/dotnet5.4/es/System.Collections.xml", - "ref/dotnet5.4/fr/System.Collections.xml", - "ref/dotnet5.4/it/System.Collections.xml", - "ref/dotnet5.4/ja/System.Collections.xml", - "ref/dotnet5.4/ko/System.Collections.xml", - "ref/dotnet5.4/ru/System.Collections.xml", - "ref/dotnet5.4/System.Collections.dll", - "ref/dotnet5.4/System.Collections.xml", - "ref/dotnet5.4/zh-hans/System.Collections.xml", - "ref/dotnet5.4/zh-hant/System.Collections.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Collections.xml", - "ref/netcore50/es/System.Collections.xml", - "ref/netcore50/fr/System.Collections.xml", - "ref/netcore50/it/System.Collections.xml", - "ref/netcore50/ja/System.Collections.xml", - "ref/netcore50/ko/System.Collections.xml", - "ref/netcore50/ru/System.Collections.xml", - "ref/netcore50/System.Collections.dll", - "ref/netcore50/System.Collections.xml", - "ref/netcore50/zh-hans/System.Collections.xml", - "ref/netcore50/zh-hant/System.Collections.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Collections.dll", - "System.Collections.4.0.11-rc2-23525.nupkg", - "System.Collections.4.0.11-rc2-23525.nupkg.sha512", - "System.Collections.nuspec" - ] - }, - "System.Collections.Concurrent/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "rJUILubHbGrHU1CNoZwUpJQjTL5XgG7BNT5hwQbN9fNLIWh/8t6jqUNE6pGoEg/N/l8vBeFXwfVnzrjAlFfTHA==", - "files": [ - "lib/dotnet5.4/System.Collections.Concurrent.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.2/de/System.Collections.Concurrent.xml", - "ref/dotnet5.2/es/System.Collections.Concurrent.xml", - "ref/dotnet5.2/fr/System.Collections.Concurrent.xml", - "ref/dotnet5.2/it/System.Collections.Concurrent.xml", - "ref/dotnet5.2/ja/System.Collections.Concurrent.xml", - "ref/dotnet5.2/ko/System.Collections.Concurrent.xml", - "ref/dotnet5.2/ru/System.Collections.Concurrent.xml", - "ref/dotnet5.2/System.Collections.Concurrent.dll", - "ref/dotnet5.2/System.Collections.Concurrent.xml", - "ref/dotnet5.2/zh-hans/System.Collections.Concurrent.xml", - "ref/dotnet5.2/zh-hant/System.Collections.Concurrent.xml", - "ref/dotnet5.4/de/System.Collections.Concurrent.xml", - "ref/dotnet5.4/es/System.Collections.Concurrent.xml", - "ref/dotnet5.4/fr/System.Collections.Concurrent.xml", - "ref/dotnet5.4/it/System.Collections.Concurrent.xml", - "ref/dotnet5.4/ja/System.Collections.Concurrent.xml", - "ref/dotnet5.4/ko/System.Collections.Concurrent.xml", - "ref/dotnet5.4/ru/System.Collections.Concurrent.xml", - "ref/dotnet5.4/System.Collections.Concurrent.dll", - "ref/dotnet5.4/System.Collections.Concurrent.xml", - "ref/dotnet5.4/zh-hans/System.Collections.Concurrent.xml", - "ref/dotnet5.4/zh-hant/System.Collections.Concurrent.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Collections.Concurrent.xml", - "ref/netcore50/es/System.Collections.Concurrent.xml", - "ref/netcore50/fr/System.Collections.Concurrent.xml", - "ref/netcore50/it/System.Collections.Concurrent.xml", - "ref/netcore50/ja/System.Collections.Concurrent.xml", - "ref/netcore50/ko/System.Collections.Concurrent.xml", - "ref/netcore50/ru/System.Collections.Concurrent.xml", - "ref/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Collections.Concurrent.4.0.11-rc2-23525.nupkg", - "System.Collections.Concurrent.4.0.11-rc2-23525.nupkg.sha512", - "System.Collections.Concurrent.nuspec" - ] - }, - "System.ComponentModel/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "QJ3RnKbTPqJ64NH+VQ15URBa0XlJHUdM6whX1C12nLhdJ48c4P1lMpJCWHxPbUJuj4MCn+0eAqUxi4UZ/hzokA==", - "files": [ - "lib/dotnet5.4/System.ComponentModel.dll", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet5.1/de/System.ComponentModel.xml", - "ref/dotnet5.1/es/System.ComponentModel.xml", - "ref/dotnet5.1/fr/System.ComponentModel.xml", - "ref/dotnet5.1/it/System.ComponentModel.xml", - "ref/dotnet5.1/ja/System.ComponentModel.xml", - "ref/dotnet5.1/ko/System.ComponentModel.xml", - "ref/dotnet5.1/ru/System.ComponentModel.xml", - "ref/dotnet5.1/System.ComponentModel.dll", - "ref/dotnet5.1/System.ComponentModel.xml", - "ref/dotnet5.1/zh-hans/System.ComponentModel.xml", - "ref/dotnet5.1/zh-hant/System.ComponentModel.xml", - "ref/net45/_._", - "ref/netcore50/de/System.ComponentModel.xml", - "ref/netcore50/es/System.ComponentModel.xml", - "ref/netcore50/fr/System.ComponentModel.xml", - "ref/netcore50/it/System.ComponentModel.xml", - "ref/netcore50/ja/System.ComponentModel.xml", - "ref/netcore50/ko/System.ComponentModel.xml", - "ref/netcore50/ru/System.ComponentModel.xml", - "ref/netcore50/System.ComponentModel.dll", - "ref/netcore50/System.ComponentModel.xml", - "ref/netcore50/zh-hans/System.ComponentModel.xml", - "ref/netcore50/zh-hant/System.ComponentModel.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "System.ComponentModel.4.0.1-rc2-23525.nupkg", - "System.ComponentModel.4.0.1-rc2-23525.nupkg.sha512", - "System.ComponentModel.nuspec" - ] - }, - "System.ComponentModel.Primitives/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "8xElzEmEH5G6XK7qqxRLQ/2r1IuhXlkz0ZdgKNp6ViDD1ukadd+5hccqg1G/L4AYRy96ddMdvgyJjFW87Cegbw==", - "files": [ - "lib/dotnet/System.ComponentModel.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.ComponentModel.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.ComponentModel.Primitives.xml", - "ref/dotnet/es/System.ComponentModel.Primitives.xml", - "ref/dotnet/fr/System.ComponentModel.Primitives.xml", - "ref/dotnet/it/System.ComponentModel.Primitives.xml", - "ref/dotnet/ja/System.ComponentModel.Primitives.xml", - "ref/dotnet/ko/System.ComponentModel.Primitives.xml", - "ref/dotnet/ru/System.ComponentModel.Primitives.xml", - "ref/dotnet/System.ComponentModel.Primitives.dll", - "ref/dotnet/System.ComponentModel.Primitives.xml", - "ref/dotnet/zh-hans/System.ComponentModel.Primitives.xml", - "ref/dotnet/zh-hant/System.ComponentModel.Primitives.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.ComponentModel.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.ComponentModel.Primitives.4.0.0.nupkg", - "System.ComponentModel.Primitives.4.0.0.nupkg.sha512", - "System.ComponentModel.Primitives.nuspec" - ] - }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "ZLOBeLIwqn7QcQvcy87DUJIfYtToNkp7mqzw9j27FKFG4C6oeiM63aPj41D4B78t6VNp9N1dUGybApOaIhrX5A==", - "files": [ - "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.TypeConverter.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/es/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/fr/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/it/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/ja/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/ko/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/ru/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll", - "ref/dotnet5.1/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.TypeConverter.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.ComponentModel.TypeConverter.4.0.1-rc2-23525.nupkg", - "System.ComponentModel.TypeConverter.4.0.1-rc2-23525.nupkg.sha512", - "System.ComponentModel.TypeConverter.nuspec" - ] - }, - "System.Diagnostics.Contracts/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "uhZEFk/Gp276noaTo3R2xwQsrA/k0Sq3O/ov4D4Io4OHmCzXwRXOk24y9J/ZgwuSn0PMaoxiYH7knPvgPeYMTQ==", - "files": [ - "lib/DNXCore50/System.Diagnostics.Contracts.dll", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Contracts.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet5.1/de/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/es/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/fr/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/it/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/ja/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/ko/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/ru/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/System.Diagnostics.Contracts.dll", - "ref/dotnet5.1/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/zh-hans/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/zh-hant/System.Diagnostics.Contracts.xml", - "ref/net45/_._", - "ref/netcore50/de/System.Diagnostics.Contracts.xml", - "ref/netcore50/es/System.Diagnostics.Contracts.xml", - "ref/netcore50/fr/System.Diagnostics.Contracts.xml", - "ref/netcore50/it/System.Diagnostics.Contracts.xml", - "ref/netcore50/ja/System.Diagnostics.Contracts.xml", - "ref/netcore50/ko/System.Diagnostics.Contracts.xml", - "ref/netcore50/ru/System.Diagnostics.Contracts.xml", - "ref/netcore50/System.Diagnostics.Contracts.dll", - "ref/netcore50/System.Diagnostics.Contracts.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", - "System.Diagnostics.Contracts.4.0.1-rc2-23525.nupkg", - "System.Diagnostics.Contracts.4.0.1-rc2-23525.nupkg.sha512", - "System.Diagnostics.Contracts.nuspec" - ] - }, - "System.Diagnostics.Debug/4.0.0": { - "type": "package", - "sha512": "AYJsLLGDVTC/nyURjgAo7Lpye0+HuSkcQujUf+NgQVdC/C/ky5NyamQHCforHJzgqspitMMtBe8B4UBdGXy1zQ==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Diagnostics.Debug.xml", - "ref/dotnet/es/System.Diagnostics.Debug.xml", - "ref/dotnet/fr/System.Diagnostics.Debug.xml", - "ref/dotnet/it/System.Diagnostics.Debug.xml", - "ref/dotnet/ja/System.Diagnostics.Debug.xml", - "ref/dotnet/ko/System.Diagnostics.Debug.xml", - "ref/dotnet/ru/System.Diagnostics.Debug.xml", - "ref/dotnet/System.Diagnostics.Debug.dll", - "ref/dotnet/System.Diagnostics.Debug.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Diagnostics.Debug.xml", - "ref/netcore50/es/System.Diagnostics.Debug.xml", - "ref/netcore50/fr/System.Diagnostics.Debug.xml", - "ref/netcore50/it/System.Diagnostics.Debug.xml", - "ref/netcore50/ja/System.Diagnostics.Debug.xml", - "ref/netcore50/ko/System.Diagnostics.Debug.xml", - "ref/netcore50/ru/System.Diagnostics.Debug.xml", - "ref/netcore50/System.Diagnostics.Debug.dll", - "ref/netcore50/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Diagnostics.Debug.4.0.0.nupkg", - "System.Diagnostics.Debug.4.0.0.nupkg.sha512", - "System.Diagnostics.Debug.nuspec" - ] - }, - "System.Diagnostics.Debug/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "T/wq74JBg48B5FU5R1bOW0cTyclAXL5GAqF/jehLxM65Sc8cNmJ8GMAQvjmmIa6mwmRF27U63Gs1UeiV0QtkjQ==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/es/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/fr/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/it/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/ja/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/ko/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/ru/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/System.Diagnostics.Debug.dll", - "ref/dotnet5.1/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/zh-hans/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/zh-hant/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/de/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/es/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/fr/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/it/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/ja/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/ko/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/ru/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/System.Diagnostics.Debug.dll", - "ref/dotnet5.4/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/zh-hans/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/zh-hant/System.Diagnostics.Debug.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Diagnostics.Debug.xml", - "ref/netcore50/es/System.Diagnostics.Debug.xml", - "ref/netcore50/fr/System.Diagnostics.Debug.xml", - "ref/netcore50/it/System.Diagnostics.Debug.xml", - "ref/netcore50/ja/System.Diagnostics.Debug.xml", - "ref/netcore50/ko/System.Diagnostics.Debug.xml", - "ref/netcore50/ru/System.Diagnostics.Debug.xml", - "ref/netcore50/System.Diagnostics.Debug.dll", - "ref/netcore50/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg", - "System.Diagnostics.Debug.4.0.11-rc2-23525.nupkg.sha512", - "System.Diagnostics.Debug.nuspec" - ] - }, - "System.Diagnostics.Tools/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Bh9ra6Wpewj2XAkbCjrSemxNqLqCCoAO/1+l/RQZuQlSZ2v9x/bpnA6IEgan8JX35gJpGJc1rmgAdQl2KFpWwA==", - "files": [ - "lib/DNXCore50/System.Diagnostics.Tools.dll", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Tools.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet5.1/de/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/es/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/fr/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/it/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/ja/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/ko/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/ru/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/System.Diagnostics.Tools.dll", - "ref/dotnet5.1/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/zh-hans/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/zh-hant/System.Diagnostics.Tools.xml", - "ref/net45/_._", - "ref/netcore50/de/System.Diagnostics.Tools.xml", - "ref/netcore50/es/System.Diagnostics.Tools.xml", - "ref/netcore50/fr/System.Diagnostics.Tools.xml", - "ref/netcore50/it/System.Diagnostics.Tools.xml", - "ref/netcore50/ja/System.Diagnostics.Tools.xml", - "ref/netcore50/ko/System.Diagnostics.Tools.xml", - "ref/netcore50/ru/System.Diagnostics.Tools.xml", - "ref/netcore50/System.Diagnostics.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", - "System.Diagnostics.Tools.4.0.1-rc2-23525.nupkg", - "System.Diagnostics.Tools.4.0.1-rc2-23525.nupkg.sha512", - "System.Diagnostics.Tools.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "serviceable": true, - "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", - "files": [ - "lib/DNXCore50/System.Diagnostics.Tracing.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Diagnostics.Tracing.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.Diagnostics.Tracing.xml", - "ref/dotnet/es/System.Diagnostics.Tracing.xml", - "ref/dotnet/fr/System.Diagnostics.Tracing.xml", - "ref/dotnet/it/System.Diagnostics.Tracing.xml", - "ref/dotnet/ja/System.Diagnostics.Tracing.xml", - "ref/dotnet/ko/System.Diagnostics.Tracing.xml", - "ref/dotnet/ru/System.Diagnostics.Tracing.xml", - "ref/dotnet/System.Diagnostics.Tracing.dll", - "ref/dotnet/System.Diagnostics.Tracing.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", - "System.Diagnostics.Tracing.4.0.20.nupkg", - "System.Diagnostics.Tracing.4.0.20.nupkg.sha512", - "System.Diagnostics.Tracing.nuspec" - ] - }, - "System.Globalization/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "oy7h7UsvcRRdmRL0vzNHwCSqQVP6Np80oRKRPJplTFtpfxnjj1O7nkkxl0So7nQnSE6lrE4a5SH7dFAjEH6Ncg==", - "files": [ - "lib/DNXCore50/System.Globalization.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Globalization.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Globalization.xml", - "ref/dotnet5.1/es/System.Globalization.xml", - "ref/dotnet5.1/fr/System.Globalization.xml", - "ref/dotnet5.1/it/System.Globalization.xml", - "ref/dotnet5.1/ja/System.Globalization.xml", - "ref/dotnet5.1/ko/System.Globalization.xml", - "ref/dotnet5.1/ru/System.Globalization.xml", - "ref/dotnet5.1/System.Globalization.dll", - "ref/dotnet5.1/System.Globalization.xml", - "ref/dotnet5.1/zh-hans/System.Globalization.xml", - "ref/dotnet5.1/zh-hant/System.Globalization.xml", - "ref/dotnet5.4/de/System.Globalization.xml", - "ref/dotnet5.4/es/System.Globalization.xml", - "ref/dotnet5.4/fr/System.Globalization.xml", - "ref/dotnet5.4/it/System.Globalization.xml", - "ref/dotnet5.4/ja/System.Globalization.xml", - "ref/dotnet5.4/ko/System.Globalization.xml", - "ref/dotnet5.4/ru/System.Globalization.xml", - "ref/dotnet5.4/System.Globalization.dll", - "ref/dotnet5.4/System.Globalization.xml", - "ref/dotnet5.4/zh-hans/System.Globalization.xml", - "ref/dotnet5.4/zh-hant/System.Globalization.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Globalization.xml", - "ref/netcore50/es/System.Globalization.xml", - "ref/netcore50/fr/System.Globalization.xml", - "ref/netcore50/it/System.Globalization.xml", - "ref/netcore50/ja/System.Globalization.xml", - "ref/netcore50/ko/System.Globalization.xml", - "ref/netcore50/ru/System.Globalization.xml", - "ref/netcore50/System.Globalization.dll", - "ref/netcore50/System.Globalization.xml", - "ref/netcore50/zh-hans/System.Globalization.xml", - "ref/netcore50/zh-hant/System.Globalization.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", - "System.Globalization.4.0.11-rc2-23525.nupkg", - "System.Globalization.4.0.11-rc2-23525.nupkg.sha512", - "System.Globalization.nuspec" - ] - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", - "files": [ - "lib/DNXCore50/System.Globalization.Calendars.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Calendars.dll", - "lib/netcore50/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.Globalization.Calendars.xml", - "ref/dotnet/es/System.Globalization.Calendars.xml", - "ref/dotnet/fr/System.Globalization.Calendars.xml", - "ref/dotnet/it/System.Globalization.Calendars.xml", - "ref/dotnet/ja/System.Globalization.Calendars.xml", - "ref/dotnet/ko/System.Globalization.Calendars.xml", - "ref/dotnet/ru/System.Globalization.Calendars.xml", - "ref/dotnet/System.Globalization.Calendars.dll", - "ref/dotnet/System.Globalization.Calendars.xml", - "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", - "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Calendars.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", - "System.Globalization.Calendars.4.0.0.nupkg", - "System.Globalization.Calendars.4.0.0.nupkg.sha512", - "System.Globalization.Calendars.nuspec" - ] - }, - "System.Globalization.Extensions/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "WcX9wVjeAPI6Aiuz0UGdIS7abeu/XQRm0yK/ff8nr7cJn5wx69ACoF0/SHkfB1HrW4WDUQiKzgRpE8DDl6VSDw==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Globalization.Extensions.xml", - "ref/dotnet5.4/es/System.Globalization.Extensions.xml", - "ref/dotnet5.4/fr/System.Globalization.Extensions.xml", - "ref/dotnet5.4/it/System.Globalization.Extensions.xml", - "ref/dotnet5.4/ja/System.Globalization.Extensions.xml", - "ref/dotnet5.4/ko/System.Globalization.Extensions.xml", - "ref/dotnet5.4/ru/System.Globalization.Extensions.xml", - "ref/dotnet5.4/System.Globalization.Extensions.dll", - "ref/dotnet5.4/System.Globalization.Extensions.xml", - "ref/dotnet5.4/zh-hans/System.Globalization.Extensions.xml", - "ref/dotnet5.4/zh-hant/System.Globalization.Extensions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Extensions.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Globalization.Extensions.4.0.1-rc2-23525.nupkg", - "System.Globalization.Extensions.4.0.1-rc2-23525.nupkg.sha512", - "System.Globalization.Extensions.nuspec" - ] - }, - "System.IO/4.0.0": { - "type": "package", - "sha512": "MoCHQ0u5n0OMwUS8OX4Gl48qKiQziSW5cXvt82d+MmAcsLq9OL90+ihnu/aJ1h6OOYcBswrZAEuApfZha9w2lg==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.IO.xml", - "ref/dotnet/es/System.IO.xml", - "ref/dotnet/fr/System.IO.xml", - "ref/dotnet/it/System.IO.xml", - "ref/dotnet/ja/System.IO.xml", - "ref/dotnet/ko/System.IO.xml", - "ref/dotnet/ru/System.IO.xml", - "ref/dotnet/System.IO.dll", - "ref/dotnet/System.IO.xml", - "ref/dotnet/zh-hans/System.IO.xml", - "ref/dotnet/zh-hant/System.IO.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.IO.xml", - "ref/netcore50/es/System.IO.xml", - "ref/netcore50/fr/System.IO.xml", - "ref/netcore50/it/System.IO.xml", - "ref/netcore50/ja/System.IO.xml", - "ref/netcore50/ko/System.IO.xml", - "ref/netcore50/ru/System.IO.xml", - "ref/netcore50/System.IO.dll", - "ref/netcore50/System.IO.xml", - "ref/netcore50/zh-hans/System.IO.xml", - "ref/netcore50/zh-hant/System.IO.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.IO.4.0.0.nupkg", - "System.IO.4.0.0.nupkg.sha512", - "System.IO.nuspec" - ] - }, - "System.IO/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Brlv6E7ndUEBPH28OXf9EULgyMXTu6I3+NwbXiVneltgClANm/tmjZIAvJZpkCW2WQPMxRgaJlhngXqaYOM4ww==", - "files": [ - "lib/DNXCore50/System.IO.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.IO.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.IO.xml", - "ref/dotnet5.1/es/System.IO.xml", - "ref/dotnet5.1/fr/System.IO.xml", - "ref/dotnet5.1/it/System.IO.xml", - "ref/dotnet5.1/ja/System.IO.xml", - "ref/dotnet5.1/ko/System.IO.xml", - "ref/dotnet5.1/ru/System.IO.xml", - "ref/dotnet5.1/System.IO.dll", - "ref/dotnet5.1/System.IO.xml", - "ref/dotnet5.1/zh-hans/System.IO.xml", - "ref/dotnet5.1/zh-hant/System.IO.xml", - "ref/dotnet5.4/de/System.IO.xml", - "ref/dotnet5.4/es/System.IO.xml", - "ref/dotnet5.4/fr/System.IO.xml", - "ref/dotnet5.4/it/System.IO.xml", - "ref/dotnet5.4/ja/System.IO.xml", - "ref/dotnet5.4/ko/System.IO.xml", - "ref/dotnet5.4/ru/System.IO.xml", - "ref/dotnet5.4/System.IO.dll", - "ref/dotnet5.4/System.IO.xml", - "ref/dotnet5.4/zh-hans/System.IO.xml", - "ref/dotnet5.4/zh-hant/System.IO.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.IO.xml", - "ref/netcore50/es/System.IO.xml", - "ref/netcore50/fr/System.IO.xml", - "ref/netcore50/it/System.IO.xml", - "ref/netcore50/ja/System.IO.xml", - "ref/netcore50/ko/System.IO.xml", - "ref/netcore50/ru/System.IO.xml", - "ref/netcore50/System.IO.dll", - "ref/netcore50/System.IO.xml", - "ref/netcore50/zh-hans/System.IO.xml", - "ref/netcore50/zh-hant/System.IO.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.IO.dll", - "System.IO.4.0.11-rc2-23525.nupkg", - "System.IO.4.0.11-rc2-23525.nupkg.sha512", - "System.IO.nuspec" - ] - }, - "System.IO.FileSystem/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "5x8A7ETeRtOmeqfUr36T20yJR+JHkd9M8275UTOyUylO1RRFDdIDiNYeCnZlFJpDCFMDxDa6g8OgiWYxJzAqfw==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.IO.FileSystem.xml", - "ref/dotnet5.4/es/System.IO.FileSystem.xml", - "ref/dotnet5.4/fr/System.IO.FileSystem.xml", - "ref/dotnet5.4/it/System.IO.FileSystem.xml", - "ref/dotnet5.4/ja/System.IO.FileSystem.xml", - "ref/dotnet5.4/ko/System.IO.FileSystem.xml", - "ref/dotnet5.4/ru/System.IO.FileSystem.xml", - "ref/dotnet5.4/System.IO.FileSystem.dll", - "ref/dotnet5.4/System.IO.FileSystem.xml", - "ref/dotnet5.4/zh-hans/System.IO.FileSystem.xml", - "ref/dotnet5.4/zh-hant/System.IO.FileSystem.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.IO.FileSystem.4.0.1-rc2-23525.nupkg", - "System.IO.FileSystem.4.0.1-rc2-23525.nupkg.sha512", - "System.IO.FileSystem.nuspec" - ] - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", - "files": [ - "lib/dotnet/System.IO.FileSystem.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/System.IO.FileSystem.Primitives.dll", - "ref/dotnet/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.IO.FileSystem.Primitives.4.0.0.nupkg", - "System.IO.FileSystem.Primitives.4.0.0.nupkg.sha512", - "System.IO.FileSystem.Primitives.nuspec" - ] - }, - "System.Linq/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "nxeyB3ycuQRIyRb/EVh+IEBN4heKR5LGo3+NvQl0/nJs/nIJym4Yb+pqHjhMAFwv9L7KoUIanhg1uRES7+IaQQ==", - "files": [ - "lib/dotnet5.4/System.Linq.dll", - "lib/net45/_._", - "lib/netcore50/System.Linq.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet5.1/de/System.Linq.xml", - "ref/dotnet5.1/es/System.Linq.xml", - "ref/dotnet5.1/fr/System.Linq.xml", - "ref/dotnet5.1/it/System.Linq.xml", - "ref/dotnet5.1/ja/System.Linq.xml", - "ref/dotnet5.1/ko/System.Linq.xml", - "ref/dotnet5.1/ru/System.Linq.xml", - "ref/dotnet5.1/System.Linq.dll", - "ref/dotnet5.1/System.Linq.xml", - "ref/dotnet5.1/zh-hans/System.Linq.xml", - "ref/dotnet5.1/zh-hant/System.Linq.xml", - "ref/net45/_._", - "ref/netcore50/de/System.Linq.xml", - "ref/netcore50/es/System.Linq.xml", - "ref/netcore50/fr/System.Linq.xml", - "ref/netcore50/it/System.Linq.xml", - "ref/netcore50/ja/System.Linq.xml", - "ref/netcore50/ko/System.Linq.xml", - "ref/netcore50/ru/System.Linq.xml", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/netcore50/zh-hans/System.Linq.xml", - "ref/netcore50/zh-hant/System.Linq.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "System.Linq.4.0.1-rc2-23525.nupkg", - "System.Linq.4.0.1-rc2-23525.nupkg.sha512", - "System.Linq.nuspec" - ] - }, - "System.Linq.Expressions/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "nUZs+huGwB8yM+RhJSCP1pDooGAjVhe2kEzSu2M7I8A9kwOF8WFgmMDwhfvW8UdnvcEVMbmtM9VtAYoZIBLs4w==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Linq.Expressions.xml", - "ref/dotnet5.1/es/System.Linq.Expressions.xml", - "ref/dotnet5.1/fr/System.Linq.Expressions.xml", - "ref/dotnet5.1/it/System.Linq.Expressions.xml", - "ref/dotnet5.1/ja/System.Linq.Expressions.xml", - "ref/dotnet5.1/ko/System.Linq.Expressions.xml", - "ref/dotnet5.1/ru/System.Linq.Expressions.xml", - "ref/dotnet5.1/System.Linq.Expressions.dll", - "ref/dotnet5.1/System.Linq.Expressions.xml", - "ref/dotnet5.1/zh-hans/System.Linq.Expressions.xml", - "ref/dotnet5.1/zh-hant/System.Linq.Expressions.xml", - "ref/dotnet5.4/de/System.Linq.Expressions.xml", - "ref/dotnet5.4/es/System.Linq.Expressions.xml", - "ref/dotnet5.4/fr/System.Linq.Expressions.xml", - "ref/dotnet5.4/it/System.Linq.Expressions.xml", - "ref/dotnet5.4/ja/System.Linq.Expressions.xml", - "ref/dotnet5.4/ko/System.Linq.Expressions.xml", - "ref/dotnet5.4/ru/System.Linq.Expressions.xml", - "ref/dotnet5.4/System.Linq.Expressions.dll", - "ref/dotnet5.4/System.Linq.Expressions.xml", - "ref/dotnet5.4/zh-hans/System.Linq.Expressions.xml", - "ref/dotnet5.4/zh-hant/System.Linq.Expressions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Linq.Expressions.4.0.11-rc2-23525.nupkg", - "System.Linq.Expressions.4.0.11-rc2-23525.nupkg.sha512", - "System.Linq.Expressions.nuspec" - ] - }, - "System.Net.Primitives/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "tPl7aprrM0gnQa24GbIy+Swf+9+hEj+oy1I+OkeG/flSEGT3mCtrSAgfmLCr1FmN9lfn9XKkCgPYh8wJC2g8+w==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Net.Primitives.xml", - "ref/dotnet5.1/es/System.Net.Primitives.xml", - "ref/dotnet5.1/fr/System.Net.Primitives.xml", - "ref/dotnet5.1/it/System.Net.Primitives.xml", - "ref/dotnet5.1/ja/System.Net.Primitives.xml", - "ref/dotnet5.1/ko/System.Net.Primitives.xml", - "ref/dotnet5.1/ru/System.Net.Primitives.xml", - "ref/dotnet5.1/System.Net.Primitives.dll", - "ref/dotnet5.1/System.Net.Primitives.xml", - "ref/dotnet5.1/zh-hans/System.Net.Primitives.xml", - "ref/dotnet5.1/zh-hant/System.Net.Primitives.xml", - "ref/dotnet5.2/de/System.Net.Primitives.xml", - "ref/dotnet5.2/es/System.Net.Primitives.xml", - "ref/dotnet5.2/fr/System.Net.Primitives.xml", - "ref/dotnet5.2/it/System.Net.Primitives.xml", - "ref/dotnet5.2/ja/System.Net.Primitives.xml", - "ref/dotnet5.2/ko/System.Net.Primitives.xml", - "ref/dotnet5.2/ru/System.Net.Primitives.xml", - "ref/dotnet5.2/System.Net.Primitives.dll", - "ref/dotnet5.2/System.Net.Primitives.xml", - "ref/dotnet5.2/zh-hans/System.Net.Primitives.xml", - "ref/dotnet5.2/zh-hant/System.Net.Primitives.xml", - "ref/dotnet5.4/de/System.Net.Primitives.xml", - "ref/dotnet5.4/es/System.Net.Primitives.xml", - "ref/dotnet5.4/fr/System.Net.Primitives.xml", - "ref/dotnet5.4/it/System.Net.Primitives.xml", - "ref/dotnet5.4/ja/System.Net.Primitives.xml", - "ref/dotnet5.4/ko/System.Net.Primitives.xml", - "ref/dotnet5.4/ru/System.Net.Primitives.xml", - "ref/dotnet5.4/System.Net.Primitives.dll", - "ref/dotnet5.4/System.Net.Primitives.xml", - "ref/dotnet5.4/zh-hans/System.Net.Primitives.xml", - "ref/dotnet5.4/zh-hant/System.Net.Primitives.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Net.Primitives.xml", - "ref/netcore50/es/System.Net.Primitives.xml", - "ref/netcore50/fr/System.Net.Primitives.xml", - "ref/netcore50/it/System.Net.Primitives.xml", - "ref/netcore50/ja/System.Net.Primitives.xml", - "ref/netcore50/ko/System.Net.Primitives.xml", - "ref/netcore50/ru/System.Net.Primitives.xml", - "ref/netcore50/System.Net.Primitives.dll", - "ref/netcore50/System.Net.Primitives.xml", - "ref/netcore50/zh-hans/System.Net.Primitives.xml", - "ref/netcore50/zh-hant/System.Net.Primitives.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Net.Primitives.4.0.11-rc2-23525.nupkg", - "System.Net.Primitives.4.0.11-rc2-23525.nupkg.sha512", - "System.Net.Primitives.nuspec" - ] - }, - "System.Net.WebSockets/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "QykOhQUn7S0rJYPbKflEWOf3Cpr6Ku5UhGmJY5s14t0g14H/5ibVg3KuLySGYvrRmxxx7s6Ydx/b7AcuwDA9hQ==", - "files": [ - "lib/dotnet5.4/System.Net.WebSockets.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.WebSockets.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Net.WebSockets.xml", - "ref/dotnet5.4/es/System.Net.WebSockets.xml", - "ref/dotnet5.4/fr/System.Net.WebSockets.xml", - "ref/dotnet5.4/it/System.Net.WebSockets.xml", - "ref/dotnet5.4/ja/System.Net.WebSockets.xml", - "ref/dotnet5.4/ko/System.Net.WebSockets.xml", - "ref/dotnet5.4/ru/System.Net.WebSockets.xml", - "ref/dotnet5.4/System.Net.WebSockets.dll", - "ref/dotnet5.4/System.Net.WebSockets.xml", - "ref/dotnet5.4/zh-hans/System.Net.WebSockets.xml", - "ref/dotnet5.4/zh-hant/System.Net.WebSockets.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.WebSockets.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Net.WebSockets.4.0.0-rc2-23525.nupkg", - "System.Net.WebSockets.4.0.0-rc2-23525.nupkg.sha512", - "System.Net.WebSockets.nuspec" - ] - }, - "System.ObjectModel/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "IJJ5i3tnyDWnrjK3GH81Bu3I+ie/MyKr7/V/LjYkVpKHlTaT1EdjLX40CqXaw3ObgqkLqSYz6iRJKaYkmGesXg==", - "files": [ - "lib/dotnet5.4/System.ObjectModel.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.ObjectModel.xml", - "ref/dotnet5.1/es/System.ObjectModel.xml", - "ref/dotnet5.1/fr/System.ObjectModel.xml", - "ref/dotnet5.1/it/System.ObjectModel.xml", - "ref/dotnet5.1/ja/System.ObjectModel.xml", - "ref/dotnet5.1/ko/System.ObjectModel.xml", - "ref/dotnet5.1/ru/System.ObjectModel.xml", - "ref/dotnet5.1/System.ObjectModel.dll", - "ref/dotnet5.1/System.ObjectModel.xml", - "ref/dotnet5.1/zh-hans/System.ObjectModel.xml", - "ref/dotnet5.1/zh-hant/System.ObjectModel.xml", - "ref/dotnet5.4/de/System.ObjectModel.xml", - "ref/dotnet5.4/es/System.ObjectModel.xml", - "ref/dotnet5.4/fr/System.ObjectModel.xml", - "ref/dotnet5.4/it/System.ObjectModel.xml", - "ref/dotnet5.4/ja/System.ObjectModel.xml", - "ref/dotnet5.4/ko/System.ObjectModel.xml", - "ref/dotnet5.4/ru/System.ObjectModel.xml", - "ref/dotnet5.4/System.ObjectModel.dll", - "ref/dotnet5.4/System.ObjectModel.xml", - "ref/dotnet5.4/zh-hans/System.ObjectModel.xml", - "ref/dotnet5.4/zh-hant/System.ObjectModel.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "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/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.ObjectModel.4.0.11-rc2-23525.nupkg", - "System.ObjectModel.4.0.11-rc2-23525.nupkg.sha512", - "System.ObjectModel.nuspec" - ] - }, - "System.Reflection/4.0.0": { - "type": "package", - "sha512": "g96Rn8XuG7y4VfxPj/jnXroRJdQ8L3iN3k3zqsuzk4k3Nq4KMXARYiIO4BLW4GwX06uQpuYwRMcAC/aF117knQ==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Reflection.xml", - "ref/dotnet/es/System.Reflection.xml", - "ref/dotnet/fr/System.Reflection.xml", - "ref/dotnet/it/System.Reflection.xml", - "ref/dotnet/ja/System.Reflection.xml", - "ref/dotnet/ko/System.Reflection.xml", - "ref/dotnet/ru/System.Reflection.xml", - "ref/dotnet/System.Reflection.dll", - "ref/dotnet/System.Reflection.xml", - "ref/dotnet/zh-hans/System.Reflection.xml", - "ref/dotnet/zh-hant/System.Reflection.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Reflection.xml", - "ref/netcore50/es/System.Reflection.xml", - "ref/netcore50/fr/System.Reflection.xml", - "ref/netcore50/it/System.Reflection.xml", - "ref/netcore50/ja/System.Reflection.xml", - "ref/netcore50/ko/System.Reflection.xml", - "ref/netcore50/ru/System.Reflection.xml", - "ref/netcore50/System.Reflection.dll", - "ref/netcore50/System.Reflection.xml", - "ref/netcore50/zh-hans/System.Reflection.xml", - "ref/netcore50/zh-hant/System.Reflection.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Reflection.4.0.0.nupkg", - "System.Reflection.4.0.0.nupkg.sha512", - "System.Reflection.nuspec" - ] - }, - "System.Reflection/4.1.0-beta-23225": { - "type": "package", - "serviceable": true, - "sha512": "WbLtaCxoe5XdqEyZuGpemSQ8YBJ8cj11zx+yxOxJfHbNrmu7oMQ29+J50swaqg3soUc3BVBMqfIhb/7gocDHQA==", - "files": [ - "lib/DNXCore50/System.Reflection.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Reflection.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Reflection.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", - "System.Reflection.4.1.0-beta-23225.nupkg", - "System.Reflection.4.1.0-beta-23225.nupkg.sha512", - "System.Reflection.nuspec" - ] - }, - "System.Reflection.Extensions/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "S2zlLFK7KGY+vmP2idf9baP1vd3FSRhiRrDpzaDu57f0mqsMuXkbbtqxSncaN8SzvHbLu1OSp1ERiwSzCtcskw==", - "files": [ - "lib/DNXCore50/System.Reflection.Extensions.dll", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Extensions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet5.1/de/System.Reflection.Extensions.xml", - "ref/dotnet5.1/es/System.Reflection.Extensions.xml", - "ref/dotnet5.1/fr/System.Reflection.Extensions.xml", - "ref/dotnet5.1/it/System.Reflection.Extensions.xml", - "ref/dotnet5.1/ja/System.Reflection.Extensions.xml", - "ref/dotnet5.1/ko/System.Reflection.Extensions.xml", - "ref/dotnet5.1/ru/System.Reflection.Extensions.xml", - "ref/dotnet5.1/System.Reflection.Extensions.dll", - "ref/dotnet5.1/System.Reflection.Extensions.xml", - "ref/dotnet5.1/zh-hans/System.Reflection.Extensions.xml", - "ref/dotnet5.1/zh-hant/System.Reflection.Extensions.xml", - "ref/net45/_._", - "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/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", - "System.Reflection.Extensions.4.0.1-rc2-23525.nupkg", - "System.Reflection.Extensions.4.0.1-rc2-23525.nupkg.sha512", - "System.Reflection.Extensions.nuspec" - ] - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", - "files": [ - "lib/DNXCore50/System.Reflection.Primitives.dll", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Primitives.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/de/System.Reflection.Primitives.xml", - "ref/dotnet/es/System.Reflection.Primitives.xml", - "ref/dotnet/fr/System.Reflection.Primitives.xml", - "ref/dotnet/it/System.Reflection.Primitives.xml", - "ref/dotnet/ja/System.Reflection.Primitives.xml", - "ref/dotnet/ko/System.Reflection.Primitives.xml", - "ref/dotnet/ru/System.Reflection.Primitives.xml", - "ref/dotnet/System.Reflection.Primitives.dll", - "ref/dotnet/System.Reflection.Primitives.xml", - "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", - "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", - "System.Reflection.Primitives.4.0.0.nupkg", - "System.Reflection.Primitives.4.0.0.nupkg.sha512", - "System.Reflection.Primitives.nuspec" - ] - }, - "System.Reflection.TypeExtensions/4.0.1-beta-23409": { - "type": "package", - "serviceable": true, - "sha512": "n8m144jjCwhN/qtLih35a2sO33fLWm1U3eg51KxqAcAjJcw0nq1zWie8FZognBTPv7BXdW/G8xGbbvDGFoJwZA==", - "files": [ - "lib/DNXCore50/de/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/es/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/fr/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/it/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/ja/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/ko/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/ru/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/System.Reflection.TypeExtensions.dll", - "lib/DNXCore50/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/zh-hans/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/zh-hant/System.Reflection.TypeExtensions.xml", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/de/System.Reflection.TypeExtensions.xml", - "lib/net46/es/System.Reflection.TypeExtensions.xml", - "lib/net46/fr/System.Reflection.TypeExtensions.xml", - "lib/net46/it/System.Reflection.TypeExtensions.xml", - "lib/net46/ja/System.Reflection.TypeExtensions.xml", - "lib/net46/ko/System.Reflection.TypeExtensions.xml", - "lib/net46/ru/System.Reflection.TypeExtensions.xml", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net46/System.Reflection.TypeExtensions.xml", - "lib/net46/zh-hans/System.Reflection.TypeExtensions.xml", - "lib/net46/zh-hant/System.Reflection.TypeExtensions.xml", - "lib/netcore50/de/System.Reflection.TypeExtensions.xml", - "lib/netcore50/es/System.Reflection.TypeExtensions.xml", - "lib/netcore50/fr/System.Reflection.TypeExtensions.xml", - "lib/netcore50/it/System.Reflection.TypeExtensions.xml", - "lib/netcore50/ja/System.Reflection.TypeExtensions.xml", - "lib/netcore50/ko/System.Reflection.TypeExtensions.xml", - "lib/netcore50/ru/System.Reflection.TypeExtensions.xml", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.xml", - "lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml", - "lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Reflection.TypeExtensions.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/de/System.Reflection.TypeExtensions.xml", - "ref/net46/es/System.Reflection.TypeExtensions.xml", - "ref/net46/fr/System.Reflection.TypeExtensions.xml", - "ref/net46/it/System.Reflection.TypeExtensions.xml", - "ref/net46/ja/System.Reflection.TypeExtensions.xml", - "ref/net46/ko/System.Reflection.TypeExtensions.xml", - "ref/net46/ru/System.Reflection.TypeExtensions.xml", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net46/System.Reflection.TypeExtensions.xml", - "ref/net46/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/net46/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/de/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/es/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/fr/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/it/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/ja/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/ko/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/ru/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml", - "System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg", - "System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg.sha512", - "System.Reflection.TypeExtensions.nuspec" - ] - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", - "files": [ - "lib/DNXCore50/System.Resources.ResourceManager.dll", - "lib/net45/_._", - "lib/netcore50/System.Resources.ResourceManager.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/de/System.Resources.ResourceManager.xml", - "ref/dotnet/es/System.Resources.ResourceManager.xml", - "ref/dotnet/fr/System.Resources.ResourceManager.xml", - "ref/dotnet/it/System.Resources.ResourceManager.xml", - "ref/dotnet/ja/System.Resources.ResourceManager.xml", - "ref/dotnet/ko/System.Resources.ResourceManager.xml", - "ref/dotnet/ru/System.Resources.ResourceManager.xml", - "ref/dotnet/System.Resources.ResourceManager.dll", - "ref/dotnet/System.Resources.ResourceManager.xml", - "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", - "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", - "ref/net45/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", - "System.Resources.ResourceManager.4.0.0.nupkg", - "System.Resources.ResourceManager.4.0.0.nupkg.sha512", - "System.Resources.ResourceManager.nuspec" - ] - }, - "System.Resources.ResourceManager/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Pp+0DOwNu+L6fYGLejweNbbxXYW9EZTA9UpVBLvWTAldWsTWQ15J1LYuDIULWP3G2JBnKDtzZzQj4VIjzW4zxQ==", - "files": [ - "lib/DNXCore50/System.Resources.ResourceManager.dll", - "lib/net45/_._", - "lib/netcore50/System.Resources.ResourceManager.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet5.1/de/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/es/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/fr/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/it/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/ja/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/ko/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/ru/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/System.Resources.ResourceManager.dll", - "ref/dotnet5.1/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/zh-hans/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/zh-hant/System.Resources.ResourceManager.xml", - "ref/net45/_._", - "ref/netcore50/de/System.Resources.ResourceManager.xml", - "ref/netcore50/es/System.Resources.ResourceManager.xml", - "ref/netcore50/fr/System.Resources.ResourceManager.xml", - "ref/netcore50/it/System.Resources.ResourceManager.xml", - "ref/netcore50/ja/System.Resources.ResourceManager.xml", - "ref/netcore50/ko/System.Resources.ResourceManager.xml", - "ref/netcore50/ru/System.Resources.ResourceManager.xml", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", - "System.Resources.ResourceManager.4.0.1-rc2-23525.nupkg", - "System.Resources.ResourceManager.4.0.1-rc2-23525.nupkg.sha512", - "System.Resources.ResourceManager.nuspec" - ] - }, - "System.Runtime/4.0.0": { - "type": "package", - "sha512": "Uq9epame8hEqJlj4KaWb67dDJvj4IM37jRFGVeFbugRdPz48bR0voyBhrbf3iSa2tAmlkg4lsa6BUOL9iwlMew==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Runtime.xml", - "ref/dotnet/es/System.Runtime.xml", - "ref/dotnet/fr/System.Runtime.xml", - "ref/dotnet/it/System.Runtime.xml", - "ref/dotnet/ja/System.Runtime.xml", - "ref/dotnet/ko/System.Runtime.xml", - "ref/dotnet/ru/System.Runtime.xml", - "ref/dotnet/System.Runtime.dll", - "ref/dotnet/System.Runtime.xml", - "ref/dotnet/zh-hans/System.Runtime.xml", - "ref/dotnet/zh-hant/System.Runtime.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Runtime.xml", - "ref/netcore50/es/System.Runtime.xml", - "ref/netcore50/fr/System.Runtime.xml", - "ref/netcore50/it/System.Runtime.xml", - "ref/netcore50/ja/System.Runtime.xml", - "ref/netcore50/ko/System.Runtime.xml", - "ref/netcore50/ru/System.Runtime.xml", - "ref/netcore50/System.Runtime.dll", - "ref/netcore50/System.Runtime.xml", - "ref/netcore50/zh-hans/System.Runtime.xml", - "ref/netcore50/zh-hant/System.Runtime.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Runtime.4.0.0.nupkg", - "System.Runtime.4.0.0.nupkg.sha512", - "System.Runtime.nuspec" - ] - }, - "System.Runtime/4.0.21-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "LycbvHHYEuhrvcrwJ7JW1uKOXWUSC1gMn+M5zCTMYRrBomqYJnUu2Ej+oNJZibV4pdvjOSNdnLRBjy0VS0pJHQ==", - "files": [ - "lib/DNXCore50/System.Runtime.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Runtime.xml", - "ref/dotnet5.1/es/System.Runtime.xml", - "ref/dotnet5.1/fr/System.Runtime.xml", - "ref/dotnet5.1/it/System.Runtime.xml", - "ref/dotnet5.1/ja/System.Runtime.xml", - "ref/dotnet5.1/ko/System.Runtime.xml", - "ref/dotnet5.1/ru/System.Runtime.xml", - "ref/dotnet5.1/System.Runtime.dll", - "ref/dotnet5.1/System.Runtime.xml", - "ref/dotnet5.1/zh-hans/System.Runtime.xml", - "ref/dotnet5.1/zh-hant/System.Runtime.xml", - "ref/dotnet5.3/de/System.Runtime.xml", - "ref/dotnet5.3/es/System.Runtime.xml", - "ref/dotnet5.3/fr/System.Runtime.xml", - "ref/dotnet5.3/it/System.Runtime.xml", - "ref/dotnet5.3/ja/System.Runtime.xml", - "ref/dotnet5.3/ko/System.Runtime.xml", - "ref/dotnet5.3/ru/System.Runtime.xml", - "ref/dotnet5.3/System.Runtime.dll", - "ref/dotnet5.3/System.Runtime.xml", - "ref/dotnet5.3/zh-hans/System.Runtime.xml", - "ref/dotnet5.3/zh-hant/System.Runtime.xml", - "ref/dotnet5.4/de/System.Runtime.xml", - "ref/dotnet5.4/es/System.Runtime.xml", - "ref/dotnet5.4/fr/System.Runtime.xml", - "ref/dotnet5.4/it/System.Runtime.xml", - "ref/dotnet5.4/ja/System.Runtime.xml", - "ref/dotnet5.4/ko/System.Runtime.xml", - "ref/dotnet5.4/ru/System.Runtime.xml", - "ref/dotnet5.4/System.Runtime.dll", - "ref/dotnet5.4/System.Runtime.xml", - "ref/dotnet5.4/zh-hans/System.Runtime.xml", - "ref/dotnet5.4/zh-hant/System.Runtime.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Runtime.xml", - "ref/netcore50/es/System.Runtime.xml", - "ref/netcore50/fr/System.Runtime.xml", - "ref/netcore50/it/System.Runtime.xml", - "ref/netcore50/ja/System.Runtime.xml", - "ref/netcore50/ko/System.Runtime.xml", - "ref/netcore50/ru/System.Runtime.xml", - "ref/netcore50/System.Runtime.dll", - "ref/netcore50/System.Runtime.xml", - "ref/netcore50/zh-hans/System.Runtime.xml", - "ref/netcore50/zh-hant/System.Runtime.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", - "System.Runtime.4.0.21-rc2-23525.nupkg", - "System.Runtime.4.0.21-rc2-23525.nupkg.sha512", - "System.Runtime.nuspec" - ] - }, - "System.Runtime.Extensions/4.0.0": { - "type": "package", - "sha512": "zPzwoJcA7qar/b5Ihhzfcdr3vBOR8FIg7u//Qc5mqyAriasXuMFVraBZ5vOQq5asfun9ryNEL8Z2BOlUK5QRqA==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Runtime.Extensions.xml", - "ref/dotnet/es/System.Runtime.Extensions.xml", - "ref/dotnet/fr/System.Runtime.Extensions.xml", - "ref/dotnet/it/System.Runtime.Extensions.xml", - "ref/dotnet/ja/System.Runtime.Extensions.xml", - "ref/dotnet/ko/System.Runtime.Extensions.xml", - "ref/dotnet/ru/System.Runtime.Extensions.xml", - "ref/dotnet/System.Runtime.Extensions.dll", - "ref/dotnet/System.Runtime.Extensions.xml", - "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", - "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Runtime.Extensions.xml", - "ref/netcore50/es/System.Runtime.Extensions.xml", - "ref/netcore50/fr/System.Runtime.Extensions.xml", - "ref/netcore50/it/System.Runtime.Extensions.xml", - "ref/netcore50/ja/System.Runtime.Extensions.xml", - "ref/netcore50/ko/System.Runtime.Extensions.xml", - "ref/netcore50/ru/System.Runtime.Extensions.xml", - "ref/netcore50/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Runtime.Extensions.4.0.0.nupkg", - "System.Runtime.Extensions.4.0.0.nupkg.sha512", - "System.Runtime.Extensions.nuspec" - ] - }, - "System.Runtime.Extensions/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "R6crzqPfrw8M1hohRtO9ae8CngdmbmB6DLMt4asm0KiP7i4ufliJcGRpn++mxJwPYgiLw757t1KN5sBDnyvvkw==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Runtime.Extensions.xml", - "ref/dotnet5.1/es/System.Runtime.Extensions.xml", - "ref/dotnet5.1/fr/System.Runtime.Extensions.xml", - "ref/dotnet5.1/it/System.Runtime.Extensions.xml", - "ref/dotnet5.1/ja/System.Runtime.Extensions.xml", - "ref/dotnet5.1/ko/System.Runtime.Extensions.xml", - "ref/dotnet5.1/ru/System.Runtime.Extensions.xml", - "ref/dotnet5.1/System.Runtime.Extensions.dll", - "ref/dotnet5.1/System.Runtime.Extensions.xml", - "ref/dotnet5.1/zh-hans/System.Runtime.Extensions.xml", - "ref/dotnet5.1/zh-hant/System.Runtime.Extensions.xml", - "ref/dotnet5.4/de/System.Runtime.Extensions.xml", - "ref/dotnet5.4/es/System.Runtime.Extensions.xml", - "ref/dotnet5.4/fr/System.Runtime.Extensions.xml", - "ref/dotnet5.4/it/System.Runtime.Extensions.xml", - "ref/dotnet5.4/ja/System.Runtime.Extensions.xml", - "ref/dotnet5.4/ko/System.Runtime.Extensions.xml", - "ref/dotnet5.4/ru/System.Runtime.Extensions.xml", - "ref/dotnet5.4/System.Runtime.Extensions.dll", - "ref/dotnet5.4/System.Runtime.Extensions.xml", - "ref/dotnet5.4/zh-hans/System.Runtime.Extensions.xml", - "ref/dotnet5.4/zh-hant/System.Runtime.Extensions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Runtime.Extensions.xml", - "ref/netcore50/es/System.Runtime.Extensions.xml", - "ref/netcore50/fr/System.Runtime.Extensions.xml", - "ref/netcore50/it/System.Runtime.Extensions.xml", - "ref/netcore50/ja/System.Runtime.Extensions.xml", - "ref/netcore50/ko/System.Runtime.Extensions.xml", - "ref/netcore50/ru/System.Runtime.Extensions.xml", - "ref/netcore50/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Runtime.Extensions.4.0.11-rc2-23525.nupkg", - "System.Runtime.Extensions.4.0.11-rc2-23525.nupkg.sha512", - "System.Runtime.Extensions.nuspec" - ] - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", - "files": [ - "lib/DNXCore50/System.Runtime.Handles.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Runtime.Handles.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.Runtime.Handles.xml", - "ref/dotnet/es/System.Runtime.Handles.xml", - "ref/dotnet/fr/System.Runtime.Handles.xml", - "ref/dotnet/it/System.Runtime.Handles.xml", - "ref/dotnet/ja/System.Runtime.Handles.xml", - "ref/dotnet/ko/System.Runtime.Handles.xml", - "ref/dotnet/ru/System.Runtime.Handles.xml", - "ref/dotnet/System.Runtime.Handles.dll", - "ref/dotnet/System.Runtime.Handles.xml", - "ref/dotnet/zh-hans/System.Runtime.Handles.xml", - "ref/dotnet/zh-hant/System.Runtime.Handles.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", - "System.Runtime.Handles.4.0.0.nupkg", - "System.Runtime.Handles.4.0.0.nupkg.sha512", - "System.Runtime.Handles.nuspec" - ] - }, - "System.Runtime.InteropServices/4.0.21-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "rWJNPZVqqjGxOhwWLdDh20vbH1OHXMqydO2QDO2vJApFCKEgyR2ySG2w6Ls665jGeUYzT2mQ+ZGTkcyzKOJdyg==", - "files": [ - "lib/DNXCore50/System.Runtime.InteropServices.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.InteropServices.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.2/de/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/es/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/fr/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/it/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/ja/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/ko/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/ru/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/System.Runtime.InteropServices.dll", - "ref/dotnet5.2/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/zh-hans/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/zh-hant/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/de/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/es/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/fr/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/it/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/ja/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/ko/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/ru/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/System.Runtime.InteropServices.dll", - "ref/dotnet5.3/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/zh-hans/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/zh-hant/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/de/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/es/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/fr/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/it/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/ja/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/ko/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/ru/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/System.Runtime.InteropServices.dll", - "ref/dotnet5.4/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/zh-hans/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/zh-hant/System.Runtime.InteropServices.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Runtime.InteropServices.xml", - "ref/netcore50/es/System.Runtime.InteropServices.xml", - "ref/netcore50/fr/System.Runtime.InteropServices.xml", - "ref/netcore50/it/System.Runtime.InteropServices.xml", - "ref/netcore50/ja/System.Runtime.InteropServices.xml", - "ref/netcore50/ko/System.Runtime.InteropServices.xml", - "ref/netcore50/ru/System.Runtime.InteropServices.xml", - "ref/netcore50/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", - "System.Runtime.InteropServices.4.0.21-rc2-23525.nupkg", - "System.Runtime.InteropServices.4.0.21-rc2-23525.nupkg.sha512", - "System.Runtime.InteropServices.nuspec" - ] - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Ha25KM/Db3dmbZz9UWgn7ChGPmqFHLDyWTxuvoJtaUq8ziwTW4hP0tlUfEKZBa3FwEB6Nero7VLX4h0TQs0k6Q==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg", - "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23525.nupkg.sha512", - "System.Runtime.InteropServices.RuntimeInformation.nuspec" - ] - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", - "files": [ - "lib/dotnet/System.Runtime.Numerics.dll", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/de/System.Runtime.Numerics.xml", - "ref/dotnet/es/System.Runtime.Numerics.xml", - "ref/dotnet/fr/System.Runtime.Numerics.xml", - "ref/dotnet/it/System.Runtime.Numerics.xml", - "ref/dotnet/ja/System.Runtime.Numerics.xml", - "ref/dotnet/ko/System.Runtime.Numerics.xml", - "ref/dotnet/ru/System.Runtime.Numerics.xml", - "ref/dotnet/System.Runtime.Numerics.dll", - "ref/dotnet/System.Runtime.Numerics.xml", - "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", - "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/win8/_._", - "ref/wpa81/_._", - "System.Runtime.Numerics.4.0.0.nupkg", - "System.Runtime.Numerics.4.0.0.nupkg.sha512", - "System.Runtime.Numerics.nuspec" - ] - }, - "System.Security.Claims/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "QQRiGO33X/l9n5rikQfRoHPtX+0k4m3dxWFIZyH+63qsshU7S89QqmVsEjFYhHhEtsTbiKdkyNKrqTA7aj9XPQ==", - "files": [ - "lib/dotnet5.4/System.Security.Claims.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Claims.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Security.Claims.xml", - "ref/dotnet5.4/es/System.Security.Claims.xml", - "ref/dotnet5.4/fr/System.Security.Claims.xml", - "ref/dotnet5.4/it/System.Security.Claims.xml", - "ref/dotnet5.4/ja/System.Security.Claims.xml", - "ref/dotnet5.4/ko/System.Security.Claims.xml", - "ref/dotnet5.4/ru/System.Security.Claims.xml", - "ref/dotnet5.4/System.Security.Claims.dll", - "ref/dotnet5.4/System.Security.Claims.xml", - "ref/dotnet5.4/zh-hans/System.Security.Claims.xml", - "ref/dotnet5.4/zh-hant/System.Security.Claims.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Claims.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Security.Claims.4.0.1-rc2-23525.nupkg", - "System.Security.Claims.4.0.1-rc2-23525.nupkg.sha512", - "System.Security.Claims.nuspec" - ] - }, - "System.Security.Cryptography.Algorithms/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "YG9pKBlPiXYSElZ2Yz8K9WuKO9/pjiypOZC44Ovjh8LUFBRCrMoikR3MQBefkqc4pQPDcY42YowcjkvfNU31Ew==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Algorithms.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Algorithms.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.Algorithms.4.0.0-rc2-23525.nupkg.sha512", - "System.Security.Cryptography.Algorithms.nuspec" - ] - }, - "System.Security.Cryptography.Cng/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "H4fSJsMPMOM5SmfTMJ9AD0CgYshIPYnCf+2gJ9px0eg/Xjm9Q6JsVpTgbl6osdgXWNlwA45voiq4DRsniku5eg==", - "files": [ - "lib/dotnet5.4/System.Security.Cryptography.Cng.dll", - "lib/net46/System.Security.Cryptography.Cng.dll", - "ref/dotnet5.4/System.Security.Cryptography.Cng.dll", - "ref/net46/System.Security.Cryptography.Cng.dll", - "System.Security.Cryptography.Cng.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.Cng.4.0.0-rc2-23525.nupkg.sha512", - "System.Security.Cryptography.Cng.nuspec" - ] - }, - "System.Security.Cryptography.Csp/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "5s7Sz0yUhfBjnJxIZdKxtM/WevPg36jnaUHFji4SFDYFHLkiV6xrEP8HhemZqW5ix7IfiaCDKqGBOceugqxarQ==", - "files": [ - "lib/DNXCore50/System.Security.Cryptography.Csp.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Csp.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/System.Security.Cryptography.Csp.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Csp.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Security.Cryptography.Csp.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.Csp.4.0.0-rc2-23525.nupkg.sha512", - "System.Security.Cryptography.Csp.nuspec" - ] - }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "w7S6YFfl1dDdfm2dEJVsKBGBgB65CD/AyEzPXrPladnuUl4AJffUIAGf9MnWbUR//qraMUaTluzWQmUs6bE5KA==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Encoding.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/es/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/fr/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/it/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/ja/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/ko/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/ru/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll", - "ref/dotnet5.4/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/zh-hans/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/zh-hant/System.Security.Cryptography.Encoding.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Encoding.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.Encoding.4.0.0-rc2-23525.nupkg.sha512", - "System.Security.Cryptography.Encoding.nuspec" - ] - }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "4XctVVQ8Ma2eDOiWjE6iUo44unjourG7k5Zr91Bm74DpMVEn3+lmZj9pJn3cthp/WgpRRJXaQRfE7mKEiEUjog==", - "files": [ - "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Security.Cryptography.Primitives.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.Primitives.4.0.0-rc2-23525.nupkg.sha512", - "System.Security.Cryptography.Primitives.nuspec" - ] - }, - "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Xzho0jNobWUb3UZtos0Pv/WI6PzBTOxLrisrgKE3xsZhKtevpThJ+1g1OhegeSy5cDpFy0x8bw8sr8qzumNBXQ==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.X509Certificates.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/es/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/it/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll", - "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.X509Certificates.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg", - "System.Security.Cryptography.X509Certificates.4.0.0-rc2-23525.nupkg.sha512", - "System.Security.Cryptography.X509Certificates.nuspec" - ] - }, - "System.Security.Principal/4.0.1-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Xw8pvBLIpmqA1TOK2FNI9sORMgxtcrqP+XGI/pKiny7iu0G+jKeQUQqd/qWCNjT0BGougN+a4ygXzMCFGp7Mog==", - "files": [ - "lib/dotnet5.1/System.Security.Principal.dll", - "lib/net45/_._", - "lib/netcore50/System.Security.Principal.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet5.1/de/System.Security.Principal.xml", - "ref/dotnet5.1/es/System.Security.Principal.xml", - "ref/dotnet5.1/fr/System.Security.Principal.xml", - "ref/dotnet5.1/it/System.Security.Principal.xml", - "ref/dotnet5.1/ja/System.Security.Principal.xml", - "ref/dotnet5.1/ko/System.Security.Principal.xml", - "ref/dotnet5.1/ru/System.Security.Principal.xml", - "ref/dotnet5.1/System.Security.Principal.dll", - "ref/dotnet5.1/System.Security.Principal.xml", - "ref/dotnet5.1/zh-hans/System.Security.Principal.xml", - "ref/dotnet5.1/zh-hant/System.Security.Principal.xml", - "ref/net45/_._", - "ref/netcore50/de/System.Security.Principal.xml", - "ref/netcore50/es/System.Security.Principal.xml", - "ref/netcore50/fr/System.Security.Principal.xml", - "ref/netcore50/it/System.Security.Principal.xml", - "ref/netcore50/ja/System.Security.Principal.xml", - "ref/netcore50/ko/System.Security.Principal.xml", - "ref/netcore50/ru/System.Security.Principal.xml", - "ref/netcore50/System.Security.Principal.dll", - "ref/netcore50/System.Security.Principal.xml", - "ref/netcore50/zh-hans/System.Security.Principal.xml", - "ref/netcore50/zh-hant/System.Security.Principal.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "System.Security.Principal.4.0.1-rc2-23525.nupkg", - "System.Security.Principal.4.0.1-rc2-23525.nupkg.sha512", - "System.Security.Principal.nuspec" - ] - }, - "System.Text.Encoding/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "M1k26o4qE9PGxYyO0Q17houEVrE+iPk8wnnA1Z+sbWGRTeXZxWCKEr7K6yH9GXaV/zcNAPM4KM5RAnuHAN5QdQ==", - "files": [ - "lib/DNXCore50/System.Text.Encoding.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.Encoding.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Text.Encoding.xml", - "ref/dotnet5.1/es/System.Text.Encoding.xml", - "ref/dotnet5.1/fr/System.Text.Encoding.xml", - "ref/dotnet5.1/it/System.Text.Encoding.xml", - "ref/dotnet5.1/ja/System.Text.Encoding.xml", - "ref/dotnet5.1/ko/System.Text.Encoding.xml", - "ref/dotnet5.1/ru/System.Text.Encoding.xml", - "ref/dotnet5.1/System.Text.Encoding.dll", - "ref/dotnet5.1/System.Text.Encoding.xml", - "ref/dotnet5.1/zh-hans/System.Text.Encoding.xml", - "ref/dotnet5.1/zh-hant/System.Text.Encoding.xml", - "ref/dotnet5.4/de/System.Text.Encoding.xml", - "ref/dotnet5.4/es/System.Text.Encoding.xml", - "ref/dotnet5.4/fr/System.Text.Encoding.xml", - "ref/dotnet5.4/it/System.Text.Encoding.xml", - "ref/dotnet5.4/ja/System.Text.Encoding.xml", - "ref/dotnet5.4/ko/System.Text.Encoding.xml", - "ref/dotnet5.4/ru/System.Text.Encoding.xml", - "ref/dotnet5.4/System.Text.Encoding.dll", - "ref/dotnet5.4/System.Text.Encoding.xml", - "ref/dotnet5.4/zh-hans/System.Text.Encoding.xml", - "ref/dotnet5.4/zh-hant/System.Text.Encoding.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Text.Encoding.xml", - "ref/netcore50/es/System.Text.Encoding.xml", - "ref/netcore50/fr/System.Text.Encoding.xml", - "ref/netcore50/it/System.Text.Encoding.xml", - "ref/netcore50/ja/System.Text.Encoding.xml", - "ref/netcore50/ko/System.Text.Encoding.xml", - "ref/netcore50/ru/System.Text.Encoding.xml", - "ref/netcore50/System.Text.Encoding.dll", - "ref/netcore50/System.Text.Encoding.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", - "System.Text.Encoding.4.0.11-rc2-23525.nupkg", - "System.Text.Encoding.4.0.11-rc2-23525.nupkg.sha512", - "System.Text.Encoding.nuspec" - ] - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", - "files": [ - "lib/DNXCore50/System.Text.Encoding.Extensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Text.Encoding.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.Text.Encoding.Extensions.xml", - "ref/dotnet/es/System.Text.Encoding.Extensions.xml", - "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", - "ref/dotnet/it/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", - "ref/dotnet/System.Text.Encoding.Extensions.dll", - "ref/dotnet/System.Text.Encoding.Extensions.xml", - "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", - "System.Text.Encoding.Extensions.4.0.10.nupkg", - "System.Text.Encoding.Extensions.4.0.10.nupkg.sha512", - "System.Text.Encoding.Extensions.nuspec" - ] - }, - "System.Text.Encodings.Web/4.0.0-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "1xpCMiJZBhbDNi7QoIZvU3+XHDlOr6E7N3zvoWjdzdXTnpnU6dgYZ0qrRrGN8sC4p2tRcbx4F+jA2uQAqqOA+g==", - "files": [ - "lib/dotnet5.1/System.Text.Encodings.Web.dll", - "System.Text.Encodings.Web.4.0.0-rc2-23525.nupkg", - "System.Text.Encodings.Web.4.0.0-rc2-23525.nupkg.sha512", - "System.Text.Encodings.Web.nuspec" - ] - }, - "System.Text.RegularExpressions/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "M1JdxnEZ1Mnv6jro+SvVI2ldrEEYhqP7LdhcX0uGm94q1Mg46Y9P27l6g1yz+Qgy2b3oi3tky5aF8+2VJwTuUA==", - "files": [ - "lib/dotnet5.4/System.Text.RegularExpressions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/es/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/fr/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/it/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/ja/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/ko/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/ru/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/System.Text.RegularExpressions.dll", - "ref/dotnet5.1/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/zh-hans/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/zh-hant/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/de/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/es/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/fr/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/it/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/ja/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/ko/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/ru/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/System.Text.RegularExpressions.dll", - "ref/dotnet5.4/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/zh-hans/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/zh-hant/System.Text.RegularExpressions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Text.RegularExpressions.xml", - "ref/netcore50/es/System.Text.RegularExpressions.xml", - "ref/netcore50/fr/System.Text.RegularExpressions.xml", - "ref/netcore50/it/System.Text.RegularExpressions.xml", - "ref/netcore50/ja/System.Text.RegularExpressions.xml", - "ref/netcore50/ko/System.Text.RegularExpressions.xml", - "ref/netcore50/ru/System.Text.RegularExpressions.xml", - "ref/netcore50/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Text.RegularExpressions.4.0.11-rc2-23525.nupkg", - "System.Text.RegularExpressions.4.0.11-rc2-23525.nupkg.sha512", - "System.Text.RegularExpressions.nuspec" - ] - }, - "System.Threading/4.0.0": { - "type": "package", - "sha512": "H6O/9gUrjPDNYanh/7OFGAZHjVXvEuITD0RcnjfvIV04HOGrOPqUBU0kmz9RIX/7YGgCQn1o1S2DX6Cuv8kVGQ==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Threading.xml", - "ref/dotnet/es/System.Threading.xml", - "ref/dotnet/fr/System.Threading.xml", - "ref/dotnet/it/System.Threading.xml", - "ref/dotnet/ja/System.Threading.xml", - "ref/dotnet/ko/System.Threading.xml", - "ref/dotnet/ru/System.Threading.xml", - "ref/dotnet/System.Threading.dll", - "ref/dotnet/System.Threading.xml", - "ref/dotnet/zh-hans/System.Threading.xml", - "ref/dotnet/zh-hant/System.Threading.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Threading.4.0.0.nupkg", - "System.Threading.4.0.0.nupkg.sha512", - "System.Threading.nuspec" - ] - }, - "System.Threading/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "Vb+NknoSeJKz8FT6nCpDfjtZGOQOfoQAmi/kZxeXgdKwppTMp+Ytv5yqvvnYQDtBQcO3OnrnxUDg8WMTtU/v6w==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Threading.xml", - "ref/dotnet5.1/es/System.Threading.xml", - "ref/dotnet5.1/fr/System.Threading.xml", - "ref/dotnet5.1/it/System.Threading.xml", - "ref/dotnet5.1/ja/System.Threading.xml", - "ref/dotnet5.1/ko/System.Threading.xml", - "ref/dotnet5.1/ru/System.Threading.xml", - "ref/dotnet5.1/System.Threading.dll", - "ref/dotnet5.1/System.Threading.xml", - "ref/dotnet5.1/zh-hans/System.Threading.xml", - "ref/dotnet5.1/zh-hant/System.Threading.xml", - "ref/dotnet5.4/de/System.Threading.xml", - "ref/dotnet5.4/es/System.Threading.xml", - "ref/dotnet5.4/fr/System.Threading.xml", - "ref/dotnet5.4/it/System.Threading.xml", - "ref/dotnet5.4/ja/System.Threading.xml", - "ref/dotnet5.4/ko/System.Threading.xml", - "ref/dotnet5.4/ru/System.Threading.xml", - "ref/dotnet5.4/System.Threading.dll", - "ref/dotnet5.4/System.Threading.xml", - "ref/dotnet5.4/zh-hans/System.Threading.xml", - "ref/dotnet5.4/zh-hant/System.Threading.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Threading.4.0.11-rc2-23525.nupkg", - "System.Threading.4.0.11-rc2-23525.nupkg.sha512", - "System.Threading.nuspec" - ] - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", - "files": [ - "lib/DNXCore50/System.Threading.Overlapped.dll", - "lib/net46/System.Threading.Overlapped.dll", - "lib/netcore50/System.Threading.Overlapped.dll", - "ref/dotnet/de/System.Threading.Overlapped.xml", - "ref/dotnet/es/System.Threading.Overlapped.xml", - "ref/dotnet/fr/System.Threading.Overlapped.xml", - "ref/dotnet/it/System.Threading.Overlapped.xml", - "ref/dotnet/ja/System.Threading.Overlapped.xml", - "ref/dotnet/ko/System.Threading.Overlapped.xml", - "ref/dotnet/ru/System.Threading.Overlapped.xml", - "ref/dotnet/System.Threading.Overlapped.dll", - "ref/dotnet/System.Threading.Overlapped.xml", - "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", - "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", - "ref/net46/System.Threading.Overlapped.dll", - "System.Threading.Overlapped.4.0.0.nupkg", - "System.Threading.Overlapped.4.0.0.nupkg.sha512", - "System.Threading.Overlapped.nuspec" - ] - }, - "System.Threading.Tasks/4.0.11-rc2-23525": { - "type": "package", - "serviceable": true, - "sha512": "AnTRum7I9zd11FK9QxLsCWmt0VyxWyJjj2b/dFCQIFXh9iOPCkApf4sDcgRN7c6e/97CZSGHIKCvTO/zxeuGcA==", - "files": [ - "lib/DNXCore50/System.Threading.Tasks.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Tasks.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Threading.Tasks.xml", - "ref/dotnet5.1/es/System.Threading.Tasks.xml", - "ref/dotnet5.1/fr/System.Threading.Tasks.xml", - "ref/dotnet5.1/it/System.Threading.Tasks.xml", - "ref/dotnet5.1/ja/System.Threading.Tasks.xml", - "ref/dotnet5.1/ko/System.Threading.Tasks.xml", - "ref/dotnet5.1/ru/System.Threading.Tasks.xml", - "ref/dotnet5.1/System.Threading.Tasks.dll", - "ref/dotnet5.1/System.Threading.Tasks.xml", - "ref/dotnet5.1/zh-hans/System.Threading.Tasks.xml", - "ref/dotnet5.1/zh-hant/System.Threading.Tasks.xml", - "ref/dotnet5.4/de/System.Threading.Tasks.xml", - "ref/dotnet5.4/es/System.Threading.Tasks.xml", - "ref/dotnet5.4/fr/System.Threading.Tasks.xml", - "ref/dotnet5.4/it/System.Threading.Tasks.xml", - "ref/dotnet5.4/ja/System.Threading.Tasks.xml", - "ref/dotnet5.4/ko/System.Threading.Tasks.xml", - "ref/dotnet5.4/ru/System.Threading.Tasks.xml", - "ref/dotnet5.4/System.Threading.Tasks.dll", - "ref/dotnet5.4/System.Threading.Tasks.xml", - "ref/dotnet5.4/zh-hans/System.Threading.Tasks.xml", - "ref/dotnet5.4/zh-hant/System.Threading.Tasks.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Threading.Tasks.xml", - "ref/netcore50/es/System.Threading.Tasks.xml", - "ref/netcore50/fr/System.Threading.Tasks.xml", - "ref/netcore50/it/System.Threading.Tasks.xml", - "ref/netcore50/ja/System.Threading.Tasks.xml", - "ref/netcore50/ko/System.Threading.Tasks.xml", - "ref/netcore50/ru/System.Threading.Tasks.xml", - "ref/netcore50/System.Threading.Tasks.dll", - "ref/netcore50/System.Threading.Tasks.xml", - "ref/netcore50/zh-hans/System.Threading.Tasks.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", - "System.Threading.Tasks.4.0.11-rc2-23525.nupkg", - "System.Threading.Tasks.4.0.11-rc2-23525.nupkg.sha512", - "System.Threading.Tasks.nuspec" - ] - }, - "Tavis.UriTemplates/0.6.6-beta2": { - "type": "package", - "sha512": "n8VCZpuTZT6m7iMLICJFkEYFCB6orYh1ttZr0qCqcD+3LhHhx5tJ0PTDlVi3WYAHjpUu7BYBNMY1TNtkmbU4SA==", - "files": [ - "lib/dotnet/Tavis.UriTemplates.dll", - "lib/dotnet/Tavis.UriTemplates.pdb", - "lib/Net35/Tavis.UriTemplates.dll", - "lib/Net35/Tavis.UriTemplates.pdb", - "lib/Net40/Tavis.UriTemplates.dll", - "lib/Net40/Tavis.UriTemplates.pdb", - "lib/Net45/Tavis.UriTemplates.dll", - "lib/Net45/Tavis.UriTemplates.pdb", - "lib/portable-net4+netcore45+wpa81/Tavis.UriTemplates.dll", - "lib/portable-net4+netcore45+wpa81/Tavis.UriTemplates.pdb", - "lib/portable-net45+netcore45+wpa81+wp8/Tavis.UriTemplates.dll", - "lib/portable-net45+netcore45+wpa81+wp8/Tavis.UriTemplates.pdb", - "Tavis.UriTemplates.0.6.6-beta2.nupkg", - "Tavis.UriTemplates.0.6.6-beta2.nupkg.sha512", - "Tavis.UriTemplates.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "": [ - "Glimpse.Common ", - "Microsoft.AspNet.FileProviders.Embedded >= 1.0.0-*", - "Microsoft.AspNet.StaticFiles >= 1.0.0-*", - "Tavis.UriTemplates >= 0.6.6-beta2" - ], - ".NETFramework,Version=v4.5.1": [], - ".NETPlatform,Version=v5.4": [] - } -} \ No newline at end of file diff --git a/src/Glimpse.Server/_DNX_project.json b/src/Glimpse.Server/_SystemWeb_project.json similarity index 94% rename from src/Glimpse.Server/_DNX_project.json rename to src/Glimpse.Server/_SystemWeb_project.json index 4535bea1..ec6e7296 100644 --- a/src/Glimpse.Server/_DNX_project.json +++ b/src/Glimpse.Server/_SystemWeb_project.json @@ -13,7 +13,7 @@ "tags": [ "ASP.NET", "Web", "Debugging", "Diagnostics", "Server" ], "resource": "Internal/Resources/Embeded/**/*.*", "compilationOptions": { - "define": [ "DNX" ] + "define": [ "SystemWeb" ] }, "dependencies": { "Glimpse.Common": "", @@ -22,7 +22,6 @@ "Tavis.UriTemplates": "0.6.6-beta2" }, "frameworks": { - "net451": { }, - "dotnet5.4": { } + "net451": { } } } \ No newline at end of file diff --git a/src/Glimpse.Server/_SystemWeb_project.lock.json b/src/Glimpse.Server/_SystemWeb_project.lock.json new file mode 100644 index 00000000..635eb664 --- /dev/null +++ b/src/Glimpse.Server/_SystemWeb_project.lock.json @@ -0,0 +1,1720 @@ +{ + "locked": false, + "version": 2, + "targets": { + ".NETFramework,Version=v4.5.1": { + "Glimpse.Common/2.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5.1", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.OptionsModel": "1.0.0", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5" + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15850": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15989": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16044", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878", + "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-16017" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "Microsoft.Extensions.OptionsModel": "1.0.0-rc2-15858", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/net45/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23601": { + "type": "package", + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "Tavis.UriTemplates/0.6.6-beta2": { + "type": "package", + "compile": { + "lib/Net45/Tavis.UriTemplates.dll": {} + }, + "runtime": { + "lib/Net45/Tavis.UriTemplates.dll": {} + } + } + }, + ".NETFramework,Version=v4.5.1/win7-x86": { + "Glimpse.Common/2.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5.1", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.OptionsModel": "1.0.0", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5" + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15850": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15989": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16044", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878", + "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-16017" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "Microsoft.Extensions.OptionsModel": "1.0.0-rc2-15858", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/net45/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23601": { + "type": "package", + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "Tavis.UriTemplates/0.6.6-beta2": { + "type": "package", + "compile": { + "lib/Net45/Tavis.UriTemplates.dll": {} + }, + "runtime": { + "lib/Net45/Tavis.UriTemplates.dll": {} + } + } + }, + ".NETFramework,Version=v4.5.1/win7-x64": { + "Glimpse.Common/2.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5.1", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.OptionsModel": "1.0.0", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5" + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15850": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15989": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16044", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16017", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878", + "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-16017" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16017": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", + "Microsoft.Extensions.OptionsModel": "1.0.0-rc2-15858", + "System.Text.Encodings.Web": "4.0.0-rc2-23601" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.WebEncoders.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Rx-Core/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Core.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Core.dll": {} + } + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "compile": { + "lib/net45/System.Reactive.Interfaces.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Interfaces.dll": {} + } + }, + "Rx-Linq/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.Linq.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.Linq.dll": {} + } + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "dependencies": { + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" + }, + "compile": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + }, + "runtime": { + "lib/net45/System.Reactive.PlatformServices.dll": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-23601": { + "type": "package", + "compile": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} + } + }, + "Tavis.UriTemplates/0.6.6-beta2": { + "type": "package", + "compile": { + "lib/Net45/Tavis.UriTemplates.dll": {} + }, + "runtime": { + "lib/Net45/Tavis.UriTemplates.dll": {} + } + } + } + }, + "libraries": { + "Glimpse.Common/2.0.0": { + "type": "project", + "path": "../Glimpse.Common/project.json" + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { + "type": "package", + "serviceable": true, + "sha512": "QzMjQYLn+OP9oqAGBZx5eMvdOJPuJ0xiGoFU95QxSdnOeRKFobOrUF1huJzjGIslOaTxucijCkK1wukF4YNHBA==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.xml", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc2-15850.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc2-15850.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.FileProviders.Embedded/1.0.0-rc2-15850": { + "type": "package", + "serviceable": true, + "sha512": "C0vJ06ioBPTyhMQFH0fxAsTmx1LXq4iQnywNWpzwFQDYZYbaXCiF/W8PRz4sWkvB2yMF4fp31g7aOOE21VCj9A==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.dll", + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Embedded.xml", + "lib/net451/Microsoft.AspNet.FileProviders.Embedded.dll", + "lib/net451/Microsoft.AspNet.FileProviders.Embedded.xml", + "Microsoft.AspNet.FileProviders.Embedded.1.0.0-rc2-15850.nupkg", + "Microsoft.AspNet.FileProviders.Embedded.1.0.0-rc2-15850.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Embedded.nuspec" + ] + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { + "type": "package", + "serviceable": true, + "sha512": "w28elxT0ns/EOETRutr7cunGb7yrZtfKsbrrbT8gdkGmAaJRjx+kqFYSMCknSfOffxQWla4kaVtXK3g0rRKcLQ==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.xml", + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.xml", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc2-16044.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc2-16044.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { + "type": "package", + "serviceable": true, + "sha512": "/00ufa9inL+QbCl/5TqQWRYMF8WtFkyqPgu0XLlebx1uofw6yFbsyD0L8QTLB+MyyNLtRpWjnty+hKD77M1dzA==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.xml", + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll", + "lib/net451/Microsoft.AspNet.Http.Abstractions.xml", + "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16017.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16017.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { + "type": "package", + "serviceable": true, + "sha512": "VXTEjuzu6Vo9wPx5RANxAjrR5PAg6mOT8uWGzwsFk07vDmpw2AQI96nUyVlz+gy5ls5790lU+emxrl3TGGl5GA==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.xml", + "lib/net451/Microsoft.AspNet.Http.Extensions.dll", + "lib/net451/Microsoft.AspNet.Http.Extensions.xml", + "Microsoft.AspNet.Http.Extensions.1.0.0-rc2-16017.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-rc2-16017.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { + "type": "package", + "serviceable": true, + "sha512": "MRrTZIwVGsr9R0Z+4FVihnwZDV6LRWwYPnScsQVDk2BGVg37vW926rZlgbN0UUl+3e1aY6bG67R5isLM1ZkRLA==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.xml", + "lib/net451/Microsoft.AspNet.Http.Features.dll", + "lib/net451/Microsoft.AspNet.Http.Features.xml", + "Microsoft.AspNet.Http.Features.1.0.0-rc2-16017.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-rc2-16017.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec" + ] + }, + "Microsoft.AspNet.StaticFiles/1.0.0-rc2-15989": { + "type": "package", + "serviceable": true, + "sha512": "cRxqOFTDE9O7Va+BcQE5NhM9x1Ys88I6GVLoajUq+fX3L83lslaY6cqpJVZhsejV3SZ9nEb68M+QlyvKtxpS/Q==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.dll", + "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.xml", + "lib/net451/Microsoft.AspNet.StaticFiles.dll", + "lib/net451/Microsoft.AspNet.StaticFiles.xml", + "Microsoft.AspNet.StaticFiles.1.0.0-rc2-15989.nupkg", + "Microsoft.AspNet.StaticFiles.1.0.0-rc2-15989.nupkg.sha512", + "Microsoft.AspNet.StaticFiles.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { + "type": "package", + "serviceable": true, + "sha512": "aCoP+JyhiVL7djzbg8peHBF5Rp9GNAlCevqOBPFj92HzZ7R5AiLl8IwC7t7h7iMtAOIkb3wOhcw5tHeVgfw/6Q==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.xml", + "lib/net451/Microsoft.Extensions.Configuration.dll", + "lib/net451/Microsoft.Extensions.Configuration.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.xml", + "Microsoft.Extensions.Configuration.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Configuration.1.0.0-rc2-15878.nupkg.sha512", + "Microsoft.Extensions.Configuration.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { + "type": "package", + "serviceable": true, + "sha512": "ZghpJY8CfNITWXK2VC+uRmUu0apjzhI9GblCXOUpZLLWtD7+wMFw9VSvaEKEwaKIF1uBN3ucsSBkjuMUDz3JfQ==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.xml", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15878.nupkg.sha512", + "Microsoft.Extensions.Configuration.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { + "type": "package", + "serviceable": true, + "sha512": "b6PmeXivNR0LIHeYau4nqZD5/6+fTa56duhpCIKjUASRb8BCyIYbgkEVBtLBpoDPTl3IUC51u7Kg7vIV0OPJgg==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net451/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.Binder.xml", + "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15878.nupkg.sha512", + "Microsoft.Extensions.Configuration.Binder.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { + "type": "package", + "serviceable": true, + "sha512": "YlryeceF4o9LBefeAlBc+t+zu8zyFnRYygOSHIWY748rLgTo1yxC5A0AQKdQg7Gr8qokAsYeunGLJZJkvedvnQ==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll", + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.xml", + "lib/net451/Microsoft.Extensions.DependencyInjection.dll", + "lib/net451/Microsoft.Extensions.DependencyInjection.xml", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.dll", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.xml", + "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15848.nupkg", + "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15848.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { + "type": "package", + "serviceable": true, + "sha512": "ByRDREn2PEch1loDjkPR27y37ncJMMzw8YTR3x07wEcMIsBEpvZuSyXS/+9AHaikLJicDqpsliSxF7dQOuashw==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15848.nupkg", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15848.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { + "type": "package", + "serviceable": true, + "sha512": "eUzCGY2Seie8aFLZbk5MC3w6lITF2HMry9WGWeGXvRZ6+7HiSEirzEMaViQNclkjopoGZeYv8WkyFUd49KOmlA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll", + "lib/dotnet5.4/Microsoft.Extensions.Logging.xml", + "lib/net451/Microsoft.Extensions.Logging.dll", + "lib/net451/Microsoft.Extensions.Logging.xml", + "lib/netcore50/Microsoft.Extensions.Logging.dll", + "lib/netcore50/Microsoft.Extensions.Logging.xml", + "Microsoft.Extensions.Logging.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Logging.1.0.0-rc2-15878.nupkg.sha512", + "Microsoft.Extensions.Logging.nuspec" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { + "type": "package", + "serviceable": true, + "sha512": "MqLYvcSTwS8d+MHwehEduLOmcIEupGMDDn8Y7U3LTAbE6z8/9dwOuWaexmXrxsuMJH0Yx0WVYGrt73W5uFqO7Q==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net451/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.xml", + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15878.nupkg", + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15878.nupkg.sha512", + "Microsoft.Extensions.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { + "type": "package", + "serviceable": true, + "sha512": "FHjS7AlUW/GXIyzvOooy2C99r31mr31dSlShxzbcP3461AvmkbhDbjWy3ryF1o3D61azxgxD6V695Apb4+XZ9A==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll", + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.xml", + "lib/net451/Microsoft.Extensions.OptionsModel.dll", + "lib/net451/Microsoft.Extensions.OptionsModel.xml", + "lib/netcore50/Microsoft.Extensions.OptionsModel.dll", + "lib/netcore50/Microsoft.Extensions.OptionsModel.xml", + "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15858.nupkg", + "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15858.nupkg.sha512", + "Microsoft.Extensions.OptionsModel.nuspec" + ] + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { + "type": "package", + "serviceable": true, + "sha512": "bQVTEkMiBxWN80ta2MgXa1rSURTxVL7EQDYdJT/Ng+XiiN4wShTKpVLvm1tHfFA6FCqjzEvWtx9Ps3MwlDDClQ==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll", + "lib/dotnet5.4/Microsoft.Extensions.Primitives.xml", + "lib/net451/Microsoft.Extensions.Primitives.dll", + "lib/net451/Microsoft.Extensions.Primitives.xml", + "lib/netcore50/Microsoft.Extensions.Primitives.dll", + "lib/netcore50/Microsoft.Extensions.Primitives.xml", + "Microsoft.Extensions.Primitives.1.0.0-rc2-15898.nupkg", + "Microsoft.Extensions.Primitives.1.0.0-rc2-15898.nupkg.sha512", + "Microsoft.Extensions.Primitives.nuspec" + ] + }, + "Microsoft.Extensions.WebEncoders/1.0.0-rc2-16017": { + "type": "package", + "serviceable": true, + "sha512": "ecHqlOJOlxneItYEiz3abYSlBP/KZ2W47VpJrceVJHJDzPGsGXytiB8BelB3k/no2AFfv6nODDoMsXmEFs797Q==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.dll", + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.xml", + "lib/net451/Microsoft.Extensions.WebEncoders.dll", + "lib/net451/Microsoft.Extensions.WebEncoders.xml", + "Microsoft.Extensions.WebEncoders.1.0.0-rc2-16017.nupkg", + "Microsoft.Extensions.WebEncoders.1.0.0-rc2-16017.nupkg.sha512", + "Microsoft.Extensions.WebEncoders.nuspec" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { + "type": "package", + "serviceable": true, + "sha512": "/RzqzyYYXQMQfJzuwP3JNAw/QbIX71Hu+rbzOaSoxz36BihDrFPrUrOudtGaahExV9l7o455uk5TGVtmMc8byg==", + "files": [ + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll", + "lib/dotnet5.4/Microsoft.Net.Http.Headers.xml", + "lib/net451/Microsoft.Net.Http.Headers.dll", + "lib/net451/Microsoft.Net.Http.Headers.xml", + "Microsoft.Net.Http.Headers.1.0.0-rc2-16017.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-rc2-16017.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Rx-Core/2.2.5": { + "type": "package", + "sha512": "DfWVTfW6tvRkkqpnRHKxPIvaRZyDJGADuqrE6J2nwejOQbLRWi0rNUwXkViDWz++25BGDy3iRE5OE6Dv8mJxYQ==", + "files": [ + "lib/net40/System.Reactive.Core.dll", + "lib/net40/System.Reactive.Core.XML", + "lib/net45/System.Reactive.Core.dll", + "lib/net45/System.Reactive.Core.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.XML", + "lib/portable-win81+wpa81/System.Reactive.Core.dll", + "lib/portable-win81+wpa81/System.Reactive.Core.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Core.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Core.XML", + "lib/sl5/System.Reactive.Core.dll", + "lib/sl5/System.Reactive.Core.XML", + "lib/windows8/System.Reactive.Core.dll", + "lib/windows8/System.Reactive.Core.XML", + "lib/windowsphone71/System.Reactive.Core.dll", + "lib/windowsphone71/System.Reactive.Core.XML", + "lib/windowsphone8/System.Reactive.Core.dll", + "lib/windowsphone8/System.Reactive.Core.XML", + "Rx-Core.2.2.5.nupkg", + "Rx-Core.2.2.5.nupkg.sha512", + "Rx-Core.nuspec" + ] + }, + "Rx-Interfaces/2.2.5": { + "type": "package", + "sha512": "FKtG2QfMIeUcfB7r3a89VoAiszX3DTvYETkpC6U0FzWpxRK/mcHyzYOsniDfag+NsDG0P1k1c8yNSefXKp3t2A==", + "files": [ + "lib/net40/System.Reactive.Interfaces.dll", + "lib/net40/System.Reactive.Interfaces.XML", + "lib/net45/System.Reactive.Interfaces.dll", + "lib/net45/System.Reactive.Interfaces.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.XML", + "lib/portable-win81+wpa81/System.Reactive.Interfaces.dll", + "lib/portable-win81+wpa81/System.Reactive.Interfaces.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.XML", + "lib/sl5/System.Reactive.Interfaces.dll", + "lib/sl5/System.Reactive.Interfaces.XML", + "lib/windows8/System.Reactive.Interfaces.dll", + "lib/windows8/System.Reactive.Interfaces.XML", + "lib/windowsphone71/System.Reactive.Interfaces.dll", + "lib/windowsphone71/System.Reactive.Interfaces.XML", + "lib/windowsphone8/System.Reactive.Interfaces.dll", + "lib/windowsphone8/System.Reactive.Interfaces.XML", + "Rx-Interfaces.2.2.5.nupkg", + "Rx-Interfaces.2.2.5.nupkg.sha512", + "Rx-Interfaces.nuspec" + ] + }, + "Rx-Linq/2.2.5": { + "type": "package", + "sha512": "UTeCIu3cWPExxmTzdiVq7SalqTBhUaomBTaAC9LpYPoAopjlFwA3hjVWXoLkGlDc/44wqJemJuEwFP00KphiFg==", + "files": [ + "lib/net40/System.Reactive.Linq.dll", + "lib/net40/System.Reactive.Linq.XML", + "lib/net45/System.Reactive.Linq.dll", + "lib/net45/System.Reactive.Linq.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.XML", + "lib/portable-win81+wpa81/System.Reactive.Linq.dll", + "lib/portable-win81+wpa81/System.Reactive.Linq.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Linq.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Linq.XML", + "lib/sl5/System.Reactive.Linq.dll", + "lib/sl5/System.Reactive.Linq.XML", + "lib/windows8/System.Reactive.Linq.dll", + "lib/windows8/System.Reactive.Linq.XML", + "lib/windowsphone71/System.Reactive.Linq.dll", + "lib/windowsphone71/System.Reactive.Linq.XML", + "lib/windowsphone8/System.Reactive.Linq.dll", + "lib/windowsphone8/System.Reactive.Linq.XML", + "Rx-Linq.2.2.5.nupkg", + "Rx-Linq.2.2.5.nupkg.sha512", + "Rx-Linq.nuspec" + ] + }, + "Rx-PlatformServices/2.2.5": { + "type": "package", + "sha512": "pMnNEvJVjT+wuDib+W/bi5hhIYcre7dW5yxvKrJxnR4iKJ1VLA/dY2FTtjDriHGx7OeGn12lQewXlH2oHiWFPA==", + "files": [ + "lib/net40/System.Reactive.PlatformServices.dll", + "lib/net40/System.Reactive.PlatformServices.XML", + "lib/net45/System.Reactive.PlatformServices.dll", + "lib/net45/System.Reactive.PlatformServices.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.XML", + "lib/portable-win81+wpa81/System.Reactive.PlatformServices.dll", + "lib/portable-win81+wpa81/System.Reactive.PlatformServices.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.XML", + "lib/sl5/System.Reactive.PlatformServices.dll", + "lib/sl5/System.Reactive.PlatformServices.XML", + "lib/windows8/System.Reactive.PlatformServices.dll", + "lib/windows8/System.Reactive.PlatformServices.XML", + "lib/windowsphone71/System.Reactive.PlatformServices.dll", + "lib/windowsphone71/System.Reactive.PlatformServices.XML", + "lib/windowsphone8/System.Reactive.PlatformServices.dll", + "lib/windowsphone8/System.Reactive.PlatformServices.XML", + "Rx-PlatformServices.2.2.5.nupkg", + "Rx-PlatformServices.2.2.5.nupkg.sha512", + "Rx-PlatformServices.nuspec" + ] + }, + "System.Text.Encodings.Web/4.0.0-rc2-23601": { + "type": "package", + "serviceable": true, + "sha512": "A81uIO3jmWO2+heJ1vhcp5oXM+wCN36FtDO1I6F7PwUQxW7e5aeNruNRCqXb7yiRnCsQj6B1YhHYn0KPPV+Nrw==", + "files": [ + "lib/dotnet5.1/System.Text.Encodings.Web.dll", + "System.Text.Encodings.Web.4.0.0-rc2-23601.nupkg", + "System.Text.Encodings.Web.4.0.0-rc2-23601.nupkg.sha512", + "System.Text.Encodings.Web.nuspec" + ] + }, + "Tavis.UriTemplates/0.6.6-beta2": { + "type": "package", + "sha512": "n8VCZpuTZT6m7iMLICJFkEYFCB6orYh1ttZr0qCqcD+3LhHhx5tJ0PTDlVi3WYAHjpUu7BYBNMY1TNtkmbU4SA==", + "files": [ + "lib/dotnet/Tavis.UriTemplates.dll", + "lib/dotnet/Tavis.UriTemplates.pdb", + "lib/Net35/Tavis.UriTemplates.dll", + "lib/Net35/Tavis.UriTemplates.pdb", + "lib/Net40/Tavis.UriTemplates.dll", + "lib/Net40/Tavis.UriTemplates.pdb", + "lib/Net45/Tavis.UriTemplates.dll", + "lib/Net45/Tavis.UriTemplates.pdb", + "lib/portable-net4+netcore45+wpa81/Tavis.UriTemplates.dll", + "lib/portable-net4+netcore45+wpa81/Tavis.UriTemplates.pdb", + "lib/portable-net45+netcore45+wpa81+wp8/Tavis.UriTemplates.dll", + "lib/portable-net45+netcore45+wpa81+wp8/Tavis.UriTemplates.pdb", + "Tavis.UriTemplates.0.6.6-beta2.nupkg", + "Tavis.UriTemplates.0.6.6-beta2.nupkg.sha512", + "Tavis.UriTemplates.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Glimpse.Common ", + "Microsoft.AspNet.FileProviders.Embedded >= 1.0.0-*", + "Microsoft.AspNet.StaticFiles >= 1.0.0-*", + "Tavis.UriTemplates >= 0.6.6-beta2" + ], + ".NETFramework,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/src/Glimpse.Server/project.json b/src/Glimpse.Server/project.json index ec6e7296..4535bea1 100644 --- a/src/Glimpse.Server/project.json +++ b/src/Glimpse.Server/project.json @@ -13,7 +13,7 @@ "tags": [ "ASP.NET", "Web", "Debugging", "Diagnostics", "Server" ], "resource": "Internal/Resources/Embeded/**/*.*", "compilationOptions": { - "define": [ "SystemWeb" ] + "define": [ "DNX" ] }, "dependencies": { "Glimpse.Common": "", @@ -22,6 +22,7 @@ "Tavis.UriTemplates": "0.6.6-beta2" }, "frameworks": { - "net451": { } + "net451": { }, + "dotnet5.4": { } } } \ No newline at end of file From 8ecbc929844f58ec1f658c8b5b345610f8e719dc Mon Sep 17 00:00:00 2001 From: Anthony van der Hoorn Date: Wed, 2 Dec 2015 17:11:50 -0800 Subject: [PATCH 12/72] Initial setup to get Glimpse pointing to SystemWebAdatper --- .gitignore | 3 + global.json | 8 +- .../_SystemWeb_project.json | 1 + .../_SystemWeb_project.lock.json | 9552 ++--------------- wrap/SystemWebAdapter/SystemWebAdapter.dll | Bin 0 -> 37888 bytes wrap/SystemWebAdapter/SystemWebAdapter.pdb | Bin 0 -> 99840 bytes wrap/SystemWebAdapter/project.json | 17 + 7 files changed, 919 insertions(+), 8662 deletions(-) create mode 100644 wrap/SystemWebAdapter/SystemWebAdapter.dll create mode 100644 wrap/SystemWebAdapter/SystemWebAdapter.pdb create mode 100644 wrap/SystemWebAdapter/project.json diff --git a/.gitignore b/.gitignore index 20ced0d3..688a86a8 100644 --- a/.gitignore +++ b/.gitignore @@ -235,3 +235,6 @@ $RECYCLE.BIN/ project.lock.json .vs /src/Glimpse.*.Sample/wwwroot/lib/ + +# Temp whilst we are prototyping SystemWebAdapter +!wrap/** \ No newline at end of file diff --git a/global.json b/global.json index 5aadccca..885d4740 100644 --- a/global.json +++ b/global.json @@ -1,3 +1,7 @@ { - "projects": [ "src", "test/websites" ] -} + "projects": [ + "src", + "test/websites", + "wrap" + ] +} \ No newline at end of file diff --git a/src/Glimpse.Agent.AspNet/_SystemWeb_project.json b/src/Glimpse.Agent.AspNet/_SystemWeb_project.json index ac67bfd9..16392e9c 100644 --- a/src/Glimpse.Agent.AspNet/_SystemWeb_project.json +++ b/src/Glimpse.Agent.AspNet/_SystemWeb_project.json @@ -16,6 +16,7 @@ }, "dependencies": { "Glimpse.Common": "", + "SystemWebAdapter": "", "Microsoft.AspNet.FileProviders.Physical": "1.0.0-*", "Microsoft.AspNet.WebApi.Client": "5.2.2", "Microsoft.Extensions.Configuration.Json": "1.0.0-*", diff --git a/src/Glimpse.Agent.AspNet/_SystemWeb_project.lock.json b/src/Glimpse.Agent.AspNet/_SystemWeb_project.lock.json index baabcc7d..db3df054 100644 --- a/src/Glimpse.Agent.AspNet/_SystemWeb_project.lock.json +++ b/src/Glimpse.Agent.AspNet/_SystemWeb_project.lock.json @@ -11,16 +11,15 @@ "Microsoft.Extensions.DependencyInjection": "1.0.0", "Microsoft.Extensions.Logging": "1.0.0", "Microsoft.Extensions.OptionsModel": "1.0.0", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0", "Newtonsoft.Json": "6.0.6", "Rx-Linq": "2.2.5", "Rx-PlatformServices": "2.2.5" } }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15854": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15901" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -35,10 +34,10 @@ "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} } }, - "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15850": { + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15854": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850" + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15854" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -53,82 +52,12 @@ "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} } }, - "Microsoft.AspNet.Hosting/1.0.0-rc2-16044": { + "Microsoft.AspNet.Http/1.0.0-rc2-16021": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15850", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16044", - "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16044", - "Microsoft.AspNet.Http": "1.0.0-rc2-16017", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16017", - "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16251", - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15878", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15848", - "Microsoft.Extensions.Logging": "1.0.0-rc2-15878", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Hosting.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Hosting.dll": {} - } - }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16044": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16017", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16021", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16021", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16021" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -143,11 +72,11 @@ "lib/net451/Microsoft.AspNet.Http.dll": {} } }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16021": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", - "System.Text.Encodings.Web": "4.0.0-rc2-23601" + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16021", + "System.Text.Encodings.Web": "4.0.0-rc2-23602" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -164,29 +93,10 @@ "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} } }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16021": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15901" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -216,11 +126,11 @@ "lib/net45/System.Net.Http.Formatting.dll": {} } }, - "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16017": { + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16021": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", - "System.Text.Encodings.Web": "4.0.0-rc2-23601" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15901", + "System.Text.Encodings.Web": "4.0.0-rc2-23602" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -236,28 +146,10 @@ "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} } }, - "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16251": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { + "Microsoft.Extensions.Configuration/1.0.0-rc2-15881": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15881" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -272,10 +164,10 @@ "lib/net451/Microsoft.Extensions.Configuration.dll": {} } }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15881": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15901" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -290,10 +182,10 @@ "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} } }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15881": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15881" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -308,46 +200,10 @@ "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} } }, - "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15878": { + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15881": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15881" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -362,11 +218,11 @@ "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} } }, - "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15878": { + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15881": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15878", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15881", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15881", "Newtonsoft.Json": "6.0.6" }, "frameworkAssemblies": [ @@ -382,10 +238,10 @@ "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} } }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15851": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15851" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -400,7 +256,7 @@ "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15851": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -415,33 +271,11 @@ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} } }, - "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15858": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Collections.Concurrent", - "System.Core", - "System.Linq", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { + "Microsoft.Extensions.Logging/1.0.0-rc2-15883": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15851", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15883" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -457,7 +291,7 @@ "lib/net451/Microsoft.Extensions.Logging.dll": {} } }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15883": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -472,12 +306,12 @@ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} } }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15861": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15881", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15881", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15851" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -492,22 +326,7 @@ "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} } }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16251": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { + "Microsoft.Extensions.Primitives/1.0.0-rc2-15901": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -522,7 +341,7 @@ "lib/net451/Microsoft.Extensions.Primitives.dll": {} } }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { + "Microsoft.Net.Http.Headers/1.0.0-rc2-16021": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -593,29 +412,6 @@ "lib/net45/System.Reactive.PlatformServices.dll": {} } }, - "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { - "type": "package", - "dependencies": { - "System.Diagnostics.Tracing": "4.0.0", - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, "System.Net.Http/4.0.0": { "type": "package", "frameworkAssemblies": [ @@ -628,16 +424,7 @@ "lib/net45/_._": {} } }, - "System.Runtime/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23601": { + "System.Text.Encodings.Web/4.0.0-rc2-23602": { "type": "package", "compile": { "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} @@ -646,8946 +433,1391 @@ "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} } }, - "System.Threading/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} + "SystemWebAdapter/1.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5.1", + "dependencies": { + "Microsoft.AspNet.Http": "1.0.0" }, - "runtime": { - "lib/net45/_._": {} - } + "frameworkAssemblies": [ + "System.Web" + ] } }, - ".NETPlatform,Version=v5.4": { + ".NETFramework,Version=v4.5.1/win7-x86": { "Glimpse.Common/2.0.0": { "type": "project", - "framework": ".NETPlatform,Version=v5.4", + "framework": ".NETFramework,Version=v4.5.1", "dependencies": { "Microsoft.AspNet.Http.Abstractions": "1.0.0", "Microsoft.Extensions.DependencyInjection": "1.0.0", "Microsoft.Extensions.Logging": "1.0.0", "Microsoft.Extensions.OptionsModel": "1.0.0", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0", "Newtonsoft.Json": "6.0.6", "Rx-Linq": "2.2.5", - "Rx-PlatformServices": "2.2.5", - "System.ObjectModel": "4.0.11", - "System.Runtime": "4.0.21", - "System.Security.Cryptography.Algorithms": "4.0.0", - "System.Text.RegularExpressions": "4.0.11", - "System.Threading": "4.0.11" + "Rx-PlatformServices": "2.2.5" } }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15854": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", - "System.IO": "4.0.11-rc2-23601", - "System.Resources.ResourceManager": "4.0.1-rc2-23601" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15901" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} } }, - "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15850": { + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15854": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", - "System.Collections": "4.0.11-rc2-23601", - "System.Collections.Concurrent": "4.0.11-rc2-23601", - "System.IO.FileSystem": "4.0.1-rc2-23601", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-23601", - "System.IO.FileSystem.Watcher": "4.0.0-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Text.RegularExpressions": "4.0.11-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15854" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} } }, - "Microsoft.AspNet.Hosting/1.0.0-rc2-16044": { + "Microsoft.AspNet.Http/1.0.0-rc2-16021": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15850", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16044", - "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16044", - "Microsoft.AspNet.Http": "1.0.0-rc2-16017", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16017", - "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16251", - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15878", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15848", - "Microsoft.Extensions.Logging": "1.0.0-rc2-15878", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", - "System.Console": "4.0.0-rc2-23601", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601", - "System.Diagnostics.StackTrace": "4.0.1-rc2-23601", - "System.Reflection.Extensions": "4.0.1-rc2-23601" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16021", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16021", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16021" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} + "lib/net451/Microsoft.AspNet.Http.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} + "lib/net451/Microsoft.AspNet.Http.dll": {} } }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16021": { "type": "package", "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16021", + "System.Text.Encodings.Web": "4.0.0-rc2-23602" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} } }, - "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16044": { + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16021": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15901" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} } }, - "Microsoft.AspNet.Http/1.0.0-rc2-16017": { + "Microsoft.AspNet.WebApi.Client/5.2.2": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16017", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.Text.Encoding": "4.0.11-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" + "Newtonsoft.Json": "6.0.4" }, + "frameworkAssemblies": [ + "System.Net.Http" + ], "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} + "lib/net45/System.Net.Http.Formatting.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} + "lib/net45/System.Net.Http.Formatting.dll": {} } }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16021": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", - "System.Collections": "4.0.11-rc2-23601", - "System.ComponentModel": "4.0.1-rc2-23601", - "System.Diagnostics.Tools": "4.0.1-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Globalization.Extensions": "4.0.1-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Linq.Expressions": "4.0.11-rc2-23601", - "System.Net.Primitives": "4.0.11-rc2-23601", - "System.Net.WebSockets": "4.0.0-rc2-23601", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.InteropServices": "4.0.21-rc2-23601", - "System.Security.Claims": "4.0.1-rc2-23601", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23601", - "System.Security.Principal": "4.0.1-rc2-23601", - "System.Text.Encodings.Web": "4.0.0-rc2-23601", - "System.Threading.Tasks": "4.0.11-rc2-23601" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15901", + "System.Text.Encodings.Web": "4.0.0-rc2-23602" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Runtime" + ], "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} } }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { + "Microsoft.Extensions.Configuration/1.0.0-rc2-15881": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017", - "System.IO.FileSystem": "4.0.1-rc2-23601", - "System.Resources.ResourceManager": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15881" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + "lib/net451/Microsoft.Extensions.Configuration.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + "lib/net451/Microsoft.Extensions.Configuration.dll": {} } }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15881": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", - "System.Collections": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Net.Primitives": "4.0.11-rc2-23601", - "System.Net.WebSockets": "4.0.0-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Security.Claims": "4.0.1-rc2-23601", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23601", - "System.Security.Principal": "4.0.1-rc2-23601" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15901" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} } }, - "Microsoft.AspNet.WebApi.Client/5.2.2": { + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15881": { "type": "package", "dependencies": { - "Microsoft.Net.Http": "2.2.22", - "Newtonsoft.Json": "6.0.4" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15881" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {} + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} }, "runtime": { - "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {} + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} } }, - "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16017": { + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15881": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", - "System.Collections": "4.0.11-rc2-23601", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.IO": "4.0.11-rc2-23601", - "System.IO.FileSystem": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Text.Encodings.Web": "4.0.0-rc2-23601" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15881" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} } }, - "Microsoft.Bcl/1.1.9": { + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15881": { "type": "package", "dependencies": { - "Microsoft.Bcl.Build": "1.0.14" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15881", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15881", + "Newtonsoft.Json": "6.0.6" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} }, "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} } }, - "Microsoft.Bcl.Build/1.0.14": { - "type": "package" - }, - "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16251": { + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15851": { "type": "package", "dependencies": { - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", - "System.IO.FileSystem": "4.0.1-rc2-23601" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15851" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} } }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15851": { "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", - "System.Collections": "4.0.11-rc2-23601", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.IO": "4.0.11-rc2-23601", - "System.IO.FileSystem": "4.0.1-rc2-23601", - "System.Resources.ResourceManager": "4.0.1-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Runtime.InteropServices": "4.0.21-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" - }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} } }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { + "Microsoft.Extensions.Logging/1.0.0-rc2-15883": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", - "System.Linq": "4.0.1-rc2-23601" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15851", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15883" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + "lib/net451/Microsoft.Extensions.Logging.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + "lib/net451/Microsoft.Extensions.Logging.dll": {} } }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15883": { "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", - "System.ComponentModel.TypeConverter": "4.0.1-rc2-23601" - }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} } }, - "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15878": { + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15861": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15881", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15881", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15851" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} } }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15878": { + "Microsoft.Extensions.Primitives/1.0.0-rc2-15901": { "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" - }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + "lib/net451/Microsoft.Extensions.Primitives.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + "lib/net451/Microsoft.Extensions.Primitives.dll": {} } }, - "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15878": { + "Microsoft.Net.Http.Headers/1.0.0-rc2-16021": { "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", - "System.AppContext": "4.0.0" - }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + "lib/net451/Microsoft.Net.Http.Headers.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + "lib/net451/Microsoft.Net.Http.Headers.dll": {} } }, - "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15878": { + "Newtonsoft.Json/6.0.6": { "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15878", - "Newtonsoft.Json": "6.0.6", - "System.Dynamic.Runtime": "4.0.11-rc2-23601" - }, "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} + "lib/net45/Newtonsoft.Json.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} + "lib/net45/Newtonsoft.Json.dll": {} } }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { + "Rx-Core/2.2.5": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "System.Collections": "4.0.11-rc2-23601", - "System.Collections.Concurrent": "4.0.11-rc2-23601", - "System.Threading": "4.0.11-rc2-23601", - "System.Threading.Tasks": "4.0.11-rc2-23601" + "Rx-Interfaces": "2.2.5" }, "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + "lib/net45/System.Reactive.Core.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + "lib/net45/System.Reactive.Core.dll": {} } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { + "Rx-Interfaces/2.2.5": { "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.1-rc2-23601", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Linq.Expressions": "4.0.11-rc2-23601", - "System.Reflection": "4.1.0-beta-23225", - "System.Resources.ResourceManager": "4.0.1-rc2-23601" - }, "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + "lib/net45/System.Reactive.Interfaces.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + "lib/net45/System.Reactive.Interfaces.dll": {} } }, - "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15858": { + "Rx-Linq/2.2.5": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "System.Collections": "4.0.11-rc2-23601", - "System.Collections.Concurrent": "4.0.11-rc2-23601", - "System.ComponentModel": "4.0.1-rc2-23601", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Linq.Expressions": "4.0.11-rc2-23601", - "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Emit": "4.0.1-rc2-23601", - "System.Reflection.Emit.Lightweight": "4.0.1-rc2-23601", - "System.Reflection.Extensions": "4.0.1-rc2-23601", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" }, "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} + "lib/net45/System.Reactive.Linq.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} + "lib/net45/System.Reactive.Linq.dll": {} } }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { + "Rx-PlatformServices/2.2.5": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878", - "System.Collections": "4.0.11-rc2-23601", - "System.Collections.Concurrent": "4.0.11-rc2-23601", - "System.ComponentModel": "4.0.1-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" }, "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + "lib/net45/System.Reactive.PlatformServices.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + "lib/net45/System.Reactive.PlatformServices.dll": {} } }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { + "System.Net.Http/4.0.0": { "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-23601", - "System.Collections.Concurrent": "4.0.11-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Reflection": "4.1.0-beta-23225", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Runtime.InteropServices": "4.0.21-rc2-23601" - }, + "frameworkAssemblies": [ + "System.Net.Http" + ], "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + "ref/net45/_._": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + "lib/net45/_._": {} } }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { + "System.Text.Encodings.Web/4.0.0-rc2-23602": { "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "System.ComponentModel": "4.0.1-rc2-23601", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Linq.Expressions": "4.0.11-rc2-23601", - "System.Reflection": "4.0.10", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" - }, "compile": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} } }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16251": { - "type": "package", + "SystemWebAdapter/1.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5.1", "dependencies": { - "System.AppContext": "4.0.1-rc2-23601", - "System.Collections": "4.0.11-rc2-23601", - "System.ComponentModel": "4.0.1-rc2-23601", - "System.IO": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Extensions": "4.0.1-rc2-23601", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Runtime.InteropServices": "4.0.21-rc2-23601", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23601", - "System.Threading.Tasks": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + "Microsoft.AspNet.Http": "1.0.0" }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + "frameworkAssemblies": [ + "System.Web" + ] + } + }, + ".NETFramework,Version=v4.5.1/win7-x64": { + "Glimpse.Common/2.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5.1", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.OptionsModel": "1.0.0", + "Newtonsoft.Json": "6.0.6", + "Rx-Linq": "2.2.5", + "Rx-PlatformServices": "2.2.5" } }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15854": { "type": "package", "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15901" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} } }, - "Microsoft.Net.Http/2.2.22": { + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15854": { "type": "package", "dependencies": { - "Microsoft.Bcl": "1.1.9", - "Microsoft.Bcl.Build": "1.0.14" + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15854" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/portable-net45+win8/System.Net.Http.Extensions.dll": {}, - "lib/portable-net45+win8/System.Net.Http.Primitives.dll": {} + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} }, "runtime": { - "lib/portable-net45+win8/System.Net.Http.Extensions.dll": {}, - "lib/portable-net45+win8/System.Net.Http.Primitives.dll": {} + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} } }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { + "Microsoft.AspNet.Http/1.0.0-rc2-16021": { "type": "package", "dependencies": { - "System.Collections": "4.0.11-rc2-23601", - "System.Diagnostics.Contracts": "4.0.1-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Globalization.Extensions": "4.0.1-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601", - "System.Text.Encoding": "4.0.11-rc2-23601" + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16021", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16021", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-16021" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + "lib/net451/Microsoft.AspNet.Http.dll": {} }, "runtime": { - "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + "lib/net451/Microsoft.AspNet.Http.dll": {} } }, - "Microsoft.Win32.Primitives/4.0.0": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16021": { "type": "package", "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" + "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16021", + "System.Text.Encodings.Web": "4.0.0-rc2-23602" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} }, "runtime": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} } }, - "Rx-Core/2.2.5": { + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16021": { "type": "package", "dependencies": { - "Rx-Interfaces": "2.2.5" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15901" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} }, "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} } }, - "Rx-Interfaces/2.2.5": { + "Microsoft.AspNet.WebApi.Client/5.2.2": { "type": "package", + "dependencies": { + "Newtonsoft.Json": "6.0.4" + }, + "frameworkAssemblies": [ + "System.Net.Http" + ], "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + "lib/net45/System.Net.Http.Formatting.dll": {} }, "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} + "lib/net45/System.Net.Http.Formatting.dll": {} } }, - "Rx-Linq/2.2.5": { + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16021": { "type": "package", "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15901", + "System.Text.Encodings.Web": "4.0.0-rc2-23602" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Runtime" + ], "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} }, "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} + "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} } }, - "Rx-PlatformServices/2.2.5": { + "Microsoft.Extensions.Configuration/1.0.0-rc2-15881": { "type": "package", "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15881" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + "lib/net451/Microsoft.Extensions.Configuration.dll": {} }, "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} + "lib/net451/Microsoft.Extensions.Configuration.dll": {} } }, - "System.AppContext/4.0.1-rc2-23601": { + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15881": { "type": "package", "dependencies": { - "System.Runtime": "4.0.0" + "Microsoft.Extensions.Primitives": "1.0.0-rc2-15901" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "ref/dotnet5.4/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} }, - "compile": { - "ref/dotnet5.4/System.Collections.dll": {} + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} } }, - "System.Collections.Concurrent/4.0.11-rc2-23601": { + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15881": { "type": "package", "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15881" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "ref/dotnet5.4/System.Collections.Concurrent.dll": {} + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} }, "runtime": { - "lib/dotnet5.4/System.Collections.Concurrent.dll": {} + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} } }, - "System.ComponentModel/4.0.1-rc2-23601": { + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15881": { "type": "package", "dependencies": { - "System.Runtime": "4.0.20" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15881" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "ref/dotnet5.1/System.ComponentModel.dll": {} + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} }, "runtime": { - "lib/dotnet5.4/System.ComponentModel.dll": {} + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} } }, - "System.ComponentModel.Primitives/4.0.0": { + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15881": { "type": "package", "dependencies": { - "System.ComponentModel": "4.0.0", - "System.Runtime": "4.0.20" + "Microsoft.Extensions.Configuration": "1.0.0-rc2-15881", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15881", + "Newtonsoft.Json": "6.0.6" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "ref/dotnet/System.ComponentModel.Primitives.dll": {} + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} }, "runtime": { - "lib/dotnet/System.ComponentModel.Primitives.dll": {} + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} } }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-23601": { + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15851": { "type": "package", "dependencies": { - "System.Collections": "4.0.0", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Primitives": "4.0.0", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Console/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Console.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { - "type": "package", - "dependencies": { - "System.Diagnostics.Tracing": "4.0.0", - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15851" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} }, "runtime": { - "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.4/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.dll": {} - } - }, - "System.IO.FileSystem/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.FileSystem.dll": {} + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} } }, - "System.IO.FileSystem.Primitives/4.0.1-rc2-23601": { + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15851": { "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "ref/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} }, "runtime": { - "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.FileSystem.Watcher/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} } }, - "System.Linq/4.0.1-rc2-23601": { + "Microsoft.Extensions.Logging/1.0.0-rc2-15883": { "type": "package", "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15851", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15883" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], "compile": { - "ref/dotnet5.1/System.Linq.dll": {} + "lib/net451/Microsoft.Extensions.Logging.dll": {} }, "runtime": { - "lib/dotnet5.4/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Linq.Expressions.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Net.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Net.Http.dll": {} - } - }, - "System.Net.Primitives/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Net.Primitives.dll": {} + "lib/net451/Microsoft.Extensions.Logging.dll": {} } }, - "System.Net.WebSockets/4.0.0-rc2-23601": { + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15883": { "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading.Tasks": "4.0.10" - }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "ref/dotnet5.4/System.Net.WebSockets.dll": {} + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} }, "runtime": { - "lib/dotnet5.4/System.Net.WebSockets.dll": {} + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} } }, - "System.ObjectModel/4.0.11-rc2-23601": { + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15861": { "type": "package", "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15881", + "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15881", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15851" }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "ref/dotnet5.4/System.ObjectModel.dll": {} + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} }, "runtime": { - "lib/dotnet5.4/System.ObjectModel.dll": {} + "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} } }, - "System.Reflection/4.1.0-beta-23225": { + "Microsoft.Extensions.Primitives/1.0.0-rc2-15901": { "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "ref/dotnet/System.Reflection.dll": {} - } - }, - "System.Reflection.Emit/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" + "lib/net451/Microsoft.Extensions.Primitives.dll": {} }, - "compile": { - "ref/dotnet5.2/System.Reflection.Emit.dll": {} + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} } }, - "System.Reflection.Emit.ILGeneration/4.0.0": { + "Microsoft.Net.Http.Headers/1.0.0-rc2-16021": { "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" + "lib/net451/Microsoft.Net.Http.Headers.dll": {} }, - "compile": { - "ref/dotnet5.1/System.Reflection.Emit.Lightweight.dll": {} + "runtime": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} } }, - "System.Reflection.Extensions/4.0.1-rc2-23601": { + "Newtonsoft.Json/6.0.6": { "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, "compile": { - "ref/dotnet5.1/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" + "lib/net45/Newtonsoft.Json.dll": {} }, - "compile": { - "ref/dotnet/System.Reflection.Primitives.dll": {} + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} } }, - "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "Rx-Core/2.2.5": { "type": "package", "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" + "Rx-Interfaces": "2.2.5" }, "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" + "lib/net45/System.Reactive.Core.dll": {} }, - "compile": { - "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.21-rc2-23601": { - "type": "package", - "compile": { - "ref/dotnet5.4/System.Runtime.dll": {} + "runtime": { + "lib/net45/System.Reactive.Core.dll": {} } }, - "System.Runtime.Extensions/4.0.11-rc2-23601": { + "Rx-Interfaces/2.2.5": { "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, "compile": { - "ref/dotnet5.4/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" + "lib/net45/System.Reactive.Interfaces.dll": {} }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} + "runtime": { + "lib/net45/System.Reactive.Interfaces.dll": {} } }, - "System.Runtime.InteropServices/4.0.21-rc2-23601": { + "Rx-Linq/2.2.5": { "type": "package", "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" }, "compile": { - "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" + "lib/net45/System.Reactive.Linq.dll": {} }, - "compile": { - "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + "runtime": { + "lib/net45/System.Reactive.Linq.dll": {} } }, - "System.Security.Claims/4.0.1-rc2-23601": { + "Rx-PlatformServices/2.2.5": { "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.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" + "Rx-Core": "2.2.5", + "Rx-Interfaces": "2.2.5" }, "compile": { - "ref/dotnet5.4/System.Security.Claims.dll": {} + "lib/net45/System.Reactive.PlatformServices.dll": {} }, "runtime": { - "lib/dotnet5.4/System.Security.Claims.dll": {} + "lib/net45/System.Reactive.PlatformServices.dll": {} } }, - "System.Security.Cryptography.Algorithms/4.0.0-rc2-23601": { + "System.Net.Http/4.0.0": { "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601" - }, + "frameworkAssemblies": [ + "System.Net.Http" + ], "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" + "ref/net45/_._": {} }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + "runtime": { + "lib/net45/_._": {} } }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-23601": { + "System.Text.Encodings.Web/4.0.0-rc2-23602": { "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} }, "runtime": { - "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23601" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} } }, - "System.Security.Principal/4.0.1-rc2-23601": { - "type": "package", + "SystemWebAdapter/1.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5.1", "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Security.Principal.dll": {} + "Microsoft.AspNet.Http": "1.0.0" }, - "runtime": { - "lib/dotnet5.1/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.dll": {} - } - }, - "System.Threading.Tasks/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.Tasks.dll": {} - } - } - }, - ".NETFramework,Version=v4.5.1/win7-x86": { - "Glimpse.Common/2.0.0": { - "type": "project", - "framework": ".NETFramework,Version=v4.5.1", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0", - "Microsoft.Extensions.DependencyInjection": "1.0.0", - "Microsoft.Extensions.Logging": "1.0.0", - "Microsoft.Extensions.OptionsModel": "1.0.0", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0", - "Newtonsoft.Json": "6.0.6", - "Rx-Linq": "2.2.5", - "Rx-PlatformServices": "2.2.5" - } - }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15850": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} - } - }, - "Microsoft.AspNet.Hosting/1.0.0-rc2-16044": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15850", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16044", - "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16044", - "Microsoft.AspNet.Http": "1.0.0-rc2-16017", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16017", - "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16251", - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15878", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15848", - "Microsoft.Extensions.Logging": "1.0.0-rc2-15878", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Hosting.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Hosting.dll": {} - } - }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16044": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16017", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.dll": {} - } - }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", - "System.Text.Encodings.Web": "4.0.0-rc2-23601" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.IO", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Features.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Features.dll": {} - } - }, - "Microsoft.AspNet.WebApi.Client/5.2.2": { - "type": "package", - "dependencies": { - "Newtonsoft.Json": "6.0.4" - }, - "frameworkAssemblies": [ - "System.Net.Http" - ], - "compile": { - "lib/net45/System.Net.Http.Formatting.dll": {} - }, - "runtime": { - "lib/net45/System.Net.Http.Formatting.dll": {} - } - }, - "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", - "System.Text.Encodings.Web": "4.0.0-rc2-23601" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} - } - }, - "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16251": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15878", - "Newtonsoft.Json": "6.0.6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15858": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Collections.Concurrent", - "System.Core", - "System.Linq", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Collections.Concurrent", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} - } - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16251": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Net.Http.Headers.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Net.Http.Headers.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/net45/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/net45/Newtonsoft.Json.dll": {} - } - }, - "Rx-Core/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.Core.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Core.dll": {} - } - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "compile": { - "lib/net45/System.Reactive.Interfaces.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Interfaces.dll": {} - } - }, - "Rx-Linq/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.Linq.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Linq.dll": {} - } - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.PlatformServices.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.PlatformServices.dll": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { - "type": "package", - "dependencies": { - "System.Diagnostics.Tracing": "4.0.0", - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "frameworkAssemblies": [ - "System.Net.Http" - ], - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23601": { - "type": "package", - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Threading/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - } - }, - ".NETFramework,Version=v4.5.1/win7-x64": { - "Glimpse.Common/2.0.0": { - "type": "project", - "framework": ".NETFramework,Version=v4.5.1", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0", - "Microsoft.Extensions.DependencyInjection": "1.0.0", - "Microsoft.Extensions.Logging": "1.0.0", - "Microsoft.Extensions.OptionsModel": "1.0.0", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0", - "Newtonsoft.Json": "6.0.6", - "Rx-Linq": "2.2.5", - "Rx-PlatformServices": "2.2.5" - } - }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15850": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} - } - }, - "Microsoft.AspNet.Hosting/1.0.0-rc2-16044": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15850", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16044", - "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16044", - "Microsoft.AspNet.Http": "1.0.0-rc2-16017", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16017", - "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16251", - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15878", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15848", - "Microsoft.Extensions.Logging": "1.0.0-rc2-15878", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Hosting.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Hosting.dll": {} - } - }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16044": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16017", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.dll": {} - } - }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", - "System.Text.Encodings.Web": "4.0.0-rc2-23601" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.IO", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Http.Features.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Http.Features.dll": {} - } - }, - "Microsoft.AspNet.WebApi.Client/5.2.2": { - "type": "package", - "dependencies": { - "Newtonsoft.Json": "6.0.4" - }, - "frameworkAssemblies": [ - "System.Net.Http" - ], - "compile": { - "lib/net45/System.Net.Http.Formatting.dll": {} - }, - "runtime": { - "lib/net45/System.Net.Http.Formatting.dll": {} - } - }, - "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", - "System.Text.Encodings.Web": "4.0.0-rc2-23601" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} - } - }, - "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16251": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15878", - "Newtonsoft.Json": "6.0.6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15858": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Collections.Concurrent", - "System.Core", - "System.Linq", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Collections.Concurrent", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.OptionsModel.dll": {} - } - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16251": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Net.Http.Headers.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Net.Http.Headers.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/net45/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/net45/Newtonsoft.Json.dll": {} - } - }, - "Rx-Core/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.Core.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Core.dll": {} - } - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "compile": { - "lib/net45/System.Reactive.Interfaces.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Interfaces.dll": {} - } - }, - "Rx-Linq/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.Linq.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.Linq.dll": {} - } - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/net45/System.Reactive.PlatformServices.dll": {} - }, - "runtime": { - "lib/net45/System.Reactive.PlatformServices.dll": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { - "type": "package", - "dependencies": { - "System.Diagnostics.Tracing": "4.0.0", - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "frameworkAssemblies": [ - "System.Net.Http" - ], - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23601": { - "type": "package", - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Threading/4.0.0": { - "type": "package", - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - } - }, - ".NETPlatform,Version=v5.4/win7-x86": { - "Glimpse.Common/2.0.0": { - "type": "project", - "framework": ".NETPlatform,Version=v5.4", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0", - "Microsoft.Extensions.DependencyInjection": "1.0.0", - "Microsoft.Extensions.Logging": "1.0.0", - "Microsoft.Extensions.OptionsModel": "1.0.0", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0", - "Newtonsoft.Json": "6.0.6", - "Rx-Linq": "2.2.5", - "Rx-PlatformServices": "2.2.5", - "System.ObjectModel": "4.0.11", - "System.Runtime": "4.0.21", - "System.Security.Cryptography.Algorithms": "4.0.0", - "System.Text.RegularExpressions": "4.0.11", - "System.Threading": "4.0.11" - } - }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", - "System.IO": "4.0.11-rc2-23601", - "System.Resources.ResourceManager": "4.0.1-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15850": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", - "System.Collections": "4.0.11-rc2-23601", - "System.Collections.Concurrent": "4.0.11-rc2-23601", - "System.IO.FileSystem": "4.0.1-rc2-23601", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-23601", - "System.IO.FileSystem.Watcher": "4.0.0-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Text.RegularExpressions": "4.0.11-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} - } - }, - "Microsoft.AspNet.Hosting/1.0.0-rc2-16044": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15850", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16044", - "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16044", - "Microsoft.AspNet.Http": "1.0.0-rc2-16017", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16017", - "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16251", - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15878", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15848", - "Microsoft.Extensions.Logging": "1.0.0-rc2-15878", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", - "System.Console": "4.0.0-rc2-23601", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601", - "System.Diagnostics.StackTrace": "4.0.1-rc2-23601", - "System.Reflection.Extensions": "4.0.1-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} - } - }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16044": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16017", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.Text.Encoding": "4.0.11-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} - } - }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", - "System.Collections": "4.0.11-rc2-23601", - "System.ComponentModel": "4.0.1-rc2-23601", - "System.Diagnostics.Tools": "4.0.1-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Globalization.Extensions": "4.0.1-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Linq.Expressions": "4.0.11-rc2-23601", - "System.Net.Primitives": "4.0.11-rc2-23601", - "System.Net.WebSockets": "4.0.0-rc2-23601", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.InteropServices": "4.0.21-rc2-23601", - "System.Security.Claims": "4.0.1-rc2-23601", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23601", - "System.Security.Principal": "4.0.1-rc2-23601", - "System.Text.Encodings.Web": "4.0.0-rc2-23601", - "System.Threading.Tasks": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017", - "System.IO.FileSystem": "4.0.1-rc2-23601", - "System.Resources.ResourceManager": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", - "System.Collections": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Net.Primitives": "4.0.11-rc2-23601", - "System.Net.WebSockets": "4.0.0-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Security.Claims": "4.0.1-rc2-23601", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23601", - "System.Security.Principal": "4.0.1-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} - } - }, - "Microsoft.AspNet.WebApi.Client/5.2.2": { - "type": "package", - "dependencies": { - "Microsoft.Net.Http": "2.2.22", - "Newtonsoft.Json": "6.0.4" - }, - "compile": { - "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {} - }, - "runtime": { - "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {} - } - }, - "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", - "System.Collections": "4.0.11-rc2-23601", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.IO": "4.0.11-rc2-23601", - "System.IO.FileSystem": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Text.Encodings.Web": "4.0.0-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} - } - }, - "Microsoft.Bcl/1.1.9": { - "type": "package", - "dependencies": { - "Microsoft.Bcl.Build": "1.0.14" - }, - "compile": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} - } - }, - "Microsoft.Bcl.Build/1.0.14": { - "type": "package" - }, - "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16251": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", - "System.IO.FileSystem": "4.0.1-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", - "System.Collections": "4.0.11-rc2-23601", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.IO": "4.0.11-rc2-23601", - "System.IO.FileSystem": "4.0.1-rc2-23601", - "System.Resources.ResourceManager": "4.0.1-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Runtime.InteropServices": "4.0.21-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", - "System.Linq": "4.0.1-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", - "System.ComponentModel.TypeConverter": "4.0.1-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", - "System.AppContext": "4.0.0" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15878", - "Newtonsoft.Json": "6.0.6", - "System.Dynamic.Runtime": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "System.Collections": "4.0.11-rc2-23601", - "System.Collections.Concurrent": "4.0.11-rc2-23601", - "System.Threading": "4.0.11-rc2-23601", - "System.Threading.Tasks": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.1-rc2-23601", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Linq.Expressions": "4.0.11-rc2-23601", - "System.Reflection": "4.1.0-beta-23225", - "System.Resources.ResourceManager": "4.0.1-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15858": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "System.Collections": "4.0.11-rc2-23601", - "System.Collections.Concurrent": "4.0.11-rc2-23601", - "System.ComponentModel": "4.0.1-rc2-23601", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Linq.Expressions": "4.0.11-rc2-23601", - "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Emit": "4.0.1-rc2-23601", - "System.Reflection.Emit.Lightweight": "4.0.1-rc2-23601", - "System.Reflection.Extensions": "4.0.1-rc2-23601", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878", - "System.Collections": "4.0.11-rc2-23601", - "System.Collections.Concurrent": "4.0.11-rc2-23601", - "System.ComponentModel": "4.0.1-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-23601", - "System.Collections.Concurrent": "4.0.11-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Reflection": "4.1.0-beta-23225", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Runtime.InteropServices": "4.0.21-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "System.ComponentModel": "4.0.1-rc2-23601", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Linq.Expressions": "4.0.11-rc2-23601", - "System.Reflection": "4.0.10", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} - } - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16251": { - "type": "package", - "dependencies": { - "System.AppContext": "4.0.1-rc2-23601", - "System.Collections": "4.0.11-rc2-23601", - "System.ComponentModel": "4.0.1-rc2-23601", - "System.IO": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Extensions": "4.0.1-rc2-23601", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Runtime.InteropServices": "4.0.21-rc2-23601", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23601", - "System.Threading.Tasks": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.Net.Http/2.2.22": { - "type": "package", - "dependencies": { - "Microsoft.Bcl": "1.1.9", - "Microsoft.Bcl.Build": "1.0.14" - }, - "compile": { - "lib/portable-net45+win8/System.Net.Http.Extensions.dll": {}, - "lib/portable-net45+win8/System.Net.Http.Primitives.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Net.Http.Extensions.dll": {}, - "lib/portable-net45+win8/System.Net.Http.Primitives.dll": {} - } - }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-23601", - "System.Diagnostics.Contracts": "4.0.1-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Globalization.Extensions": "4.0.1-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601", - "System.Text.Encoding": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} - } - }, - "runtime.any.System.Linq.Expressions/4.0.11-rc2-23601": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "runtime.win7.System.Console/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Console.dll": {} - } - }, - "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23601": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {} - } - }, - "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {} - } - }, - "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} - } - }, - "runtime.win7.System.Net.Primitives/4.0.11-rc2-23601": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23601": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} - } - }, - "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", - "System.Security.Cryptography.Cng": "4.0.0-rc2-23601", - "System.Security.Cryptography.Csp": "4.0.0-rc2-23601", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23601", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "runtime.win7.System.Threading/4.0.11-rc2-23601": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "Rx-Core/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} - } - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} - } - }, - "Rx-Linq/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} - } - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} - } - }, - "System.AppContext/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Collections.Concurrent.dll": {} - } - }, - "System.ComponentModel/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Primitives": "4.0.0", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Console/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Console.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { - "type": "package", - "dependencies": { - "System.Diagnostics.Tracing": "4.0.0", - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.4/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.dll": {} - } - }, - "System.IO.FileSystem/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.FileSystem.Watcher/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} - } - }, - "System.Linq/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet5.1/System.Linq.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Linq.Expressions.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Net.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Net.Http.dll": {} - } - }, - "System.Net.Primitives/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Net.Primitives.dll": {} - } - }, - "System.Net.WebSockets/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Net.WebSockets.dll": {} - } - }, - "System.ObjectModel/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.1.0-beta-23225": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - } - }, - "System.Reflection.Emit/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.2/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.1-beta-23409": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.21-rc2-23601": { - "type": "package", - "compile": { - "ref/dotnet5.4/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.4/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.21-rc2-23601": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.Claims/4.0.1-rc2-23601": { - "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.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601", - "System.Text.Encoding": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Cng.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Csp/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Csp.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23601" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.Tasks.dll": {} - } - } - }, - ".NETPlatform,Version=v5.4/win7-x64": { - "Glimpse.Common/2.0.0": { - "type": "project", - "framework": ".NETPlatform,Version=v5.4", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0", - "Microsoft.Extensions.DependencyInjection": "1.0.0", - "Microsoft.Extensions.Logging": "1.0.0", - "Microsoft.Extensions.OptionsModel": "1.0.0", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0", - "Newtonsoft.Json": "6.0.6", - "Rx-Linq": "2.2.5", - "Rx-PlatformServices": "2.2.5", - "System.ObjectModel": "4.0.11", - "System.Runtime": "4.0.21", - "System.Security.Cryptography.Algorithms": "4.0.0", - "System.Text.RegularExpressions": "4.0.11", - "System.Threading": "4.0.11" - } - }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", - "System.IO": "4.0.11-rc2-23601", - "System.Resources.ResourceManager": "4.0.1-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15850": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", - "System.Collections": "4.0.11-rc2-23601", - "System.Collections.Concurrent": "4.0.11-rc2-23601", - "System.IO.FileSystem": "4.0.1-rc2-23601", - "System.IO.FileSystem.Primitives": "4.0.1-rc2-23601", - "System.IO.FileSystem.Watcher": "4.0.0-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Text.RegularExpressions": "4.0.11-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} - } - }, - "Microsoft.AspNet.Hosting/1.0.0-rc2-16044": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc2-15850", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc2-16044", - "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc2-16044", - "Microsoft.AspNet.Http": "1.0.0-rc2-16017", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc2-16017", - "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16251", - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-15878", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-15848", - "Microsoft.Extensions.Logging": "1.0.0-rc2-15878", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", - "System.Console": "4.0.0-rc2-23601", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601", - "System.Diagnostics.StackTrace": "4.0.1-rc2-23601", - "System.Reflection.Extensions": "4.0.1-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll": {} - } - }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc2-15850", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16044": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.AspNet.WebUtilities": "1.0.0-rc2-16017", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.Text.Encoding": "4.0.11-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} - } - }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-rc2-16017", - "System.Collections": "4.0.11-rc2-23601", - "System.ComponentModel": "4.0.1-rc2-23601", - "System.Diagnostics.Tools": "4.0.1-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Globalization.Extensions": "4.0.1-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Linq.Expressions": "4.0.11-rc2-23601", - "System.Net.Primitives": "4.0.11-rc2-23601", - "System.Net.WebSockets": "4.0.0-rc2-23601", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.InteropServices": "4.0.21-rc2-23601", - "System.Security.Claims": "4.0.1-rc2-23601", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23601", - "System.Security.Principal": "4.0.1-rc2-23601", - "System.Text.Encodings.Web": "4.0.0-rc2-23601", - "System.Threading.Tasks": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc2-16017", - "Microsoft.Net.Http.Headers": "1.0.0-rc2-16017", - "System.IO.FileSystem": "4.0.1-rc2-23601", - "System.Resources.ResourceManager": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} - } - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", - "System.Collections": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Net.Primitives": "4.0.11-rc2-23601", - "System.Net.WebSockets": "4.0.0-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Security.Claims": "4.0.1-rc2-23601", - "System.Security.Cryptography.X509Certificates": "4.0.0-rc2-23601", - "System.Security.Principal": "4.0.1-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} - } - }, - "Microsoft.AspNet.WebApi.Client/5.2.2": { - "type": "package", - "dependencies": { - "Microsoft.Net.Http": "2.2.22", - "Newtonsoft.Json": "6.0.4" - }, - "compile": { - "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {} - }, - "runtime": { - "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {} - } - }, - "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", - "System.Collections": "4.0.11-rc2-23601", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.IO": "4.0.11-rc2-23601", - "System.IO.FileSystem": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Text.Encodings.Web": "4.0.0-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} - } - }, - "Microsoft.Bcl/1.1.9": { - "type": "package", - "dependencies": { - "Microsoft.Bcl.Build": "1.0.14" - }, - "compile": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} - } - }, - "Microsoft.Bcl.Build/1.0.14": { - "type": "package" - }, - "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16251": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16251", - "System.IO.FileSystem": "4.0.1-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", - "System.Collections": "4.0.11-rc2-23601", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.IO": "4.0.11-rc2-23601", - "System.IO.FileSystem": "4.0.1-rc2-23601", - "System.Resources.ResourceManager": "4.0.1-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Runtime.InteropServices": "4.0.21-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "1.0.0-rc2-15898", - "System.Linq": "4.0.1-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", - "System.ComponentModel.TypeConverter": "4.0.1-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", - "System.AppContext": "4.0.0" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-15878", - "Newtonsoft.Json": "6.0.6", - "System.Dynamic.Runtime": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "System.Collections": "4.0.11-rc2-23601", - "System.Collections.Concurrent": "4.0.11-rc2-23601", - "System.Threading": "4.0.11-rc2-23601", - "System.Threading.Tasks": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.1-rc2-23601", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Linq.Expressions": "4.0.11-rc2-23601", - "System.Reflection": "4.1.0-beta-23225", - "System.Resources.ResourceManager": "4.0.1-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15858": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "System.Collections": "4.0.11-rc2-23601", - "System.Collections.Concurrent": "4.0.11-rc2-23601", - "System.ComponentModel": "4.0.1-rc2-23601", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Linq.Expressions": "4.0.11-rc2-23601", - "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Emit": "4.0.1-rc2-23601", - "System.Reflection.Emit.Lightweight": "4.0.1-rc2-23601", - "System.Reflection.Extensions": "4.0.1-rc2-23601", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll": {} - } - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15878", - "System.Collections": "4.0.11-rc2-23601", - "System.Collections.Concurrent": "4.0.11-rc2-23601", - "System.ComponentModel": "4.0.1-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-23601", - "System.Collections.Concurrent": "4.0.11-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Reflection": "4.1.0-beta-23225", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Runtime.InteropServices": "4.0.21-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-15878", - "Microsoft.Extensions.Configuration.Binder": "1.0.0-rc2-15878", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15848", - "System.ComponentModel": "4.0.1-rc2-23601", - "System.Diagnostics.Debug": "4.0.11-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Linq.Expressions": "4.0.11-rc2-23601", - "System.Reflection": "4.0.10", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Resources.ResourceManager": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Threading": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll": {} - } - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16251": { - "type": "package", - "dependencies": { - "System.AppContext": "4.0.1-rc2-23601", - "System.Collections": "4.0.11-rc2-23601", - "System.ComponentModel": "4.0.1-rc2-23601", - "System.IO": "4.0.11-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Reflection": "4.1.0-beta-23225", - "System.Reflection.Extensions": "4.0.1-rc2-23601", - "System.Reflection.TypeExtensions": "4.0.1-beta-23409", - "System.Runtime": "4.0.21-rc2-23601", - "System.Runtime.Extensions": "4.0.11-rc2-23601", - "System.Runtime.InteropServices": "4.0.21-rc2-23601", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23601", - "System.Threading.Tasks": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.Net.Http/2.2.22": { - "type": "package", - "dependencies": { - "Microsoft.Bcl": "1.1.9", - "Microsoft.Bcl.Build": "1.0.14" - }, - "compile": { - "lib/portable-net45+win8/System.Net.Http.Extensions.dll": {}, - "lib/portable-net45+win8/System.Net.Http.Primitives.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Net.Http.Extensions.dll": {}, - "lib/portable-net45+win8/System.Net.Http.Primitives.dll": {} - } - }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11-rc2-23601", - "System.Diagnostics.Contracts": "4.0.1-rc2-23601", - "System.Globalization": "4.0.11-rc2-23601", - "System.Globalization.Extensions": "4.0.1-rc2-23601", - "System.Linq": "4.0.1-rc2-23601", - "System.Runtime": "4.0.21-rc2-23601", - "System.Text.Encoding": "4.0.11-rc2-23601" - }, - "compile": { - "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} - }, - "runtime": { - "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "compile": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} - } - }, - "runtime.any.System.Linq.Expressions/4.0.11-rc2-23601": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "runtime.win7.System.Console/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Console.dll": {} - } - }, - "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23601": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {} - } - }, - "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {} - } - }, - "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} - } - }, - "runtime.win7.System.Net.Primitives/4.0.11-rc2-23601": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23601": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} - } - }, - "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", - "System.Security.Cryptography.Cng": "4.0.0-rc2-23601", - "System.Security.Cryptography.Csp": "4.0.0-rc2-23601", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23601", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "runtime.win7.System.Threading/4.0.11-rc2-23601": { - "type": "package", - "compile": { - "ref/dotnet/_._": {} - } - }, - "Rx-Core/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll": {} - } - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll": {} - } - }, - "Rx-Linq/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll": {} - } - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "dependencies": { - "Rx-Core": "2.2.5", - "Rx-Interfaces": "2.2.5" - }, - "compile": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} - }, - "runtime": { - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll": {} - } - }, - "System.AppContext/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Collections.Concurrent.dll": {} - } - }, - "System.ComponentModel/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Primitives": "4.0.0", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Console/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Console.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { - "type": "package", - "dependencies": { - "System.Diagnostics.Tracing": "4.0.0", - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.4/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.dll": {} - } - }, - "System.IO.FileSystem/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.FileSystem.Watcher/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} - } - }, - "System.Linq/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet5.1/System.Linq.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Linq.Expressions.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Net.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Net.Http.dll": {} - } - }, - "System.Net.Primitives/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Net.Primitives.dll": {} - } - }, - "System.Net.WebSockets/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Net.WebSockets.dll": {} - } - }, - "System.ObjectModel/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.1.0-beta-23225": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - } - }, - "System.Reflection.Emit/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.2/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.1-beta-23409": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.21-rc2-23601": { - "type": "package", - "compile": { - "ref/dotnet5.4/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet5.4/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.21-rc2-23601": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.Claims/4.0.1-rc2-23601": { - "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.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601", - "System.Text.Encoding": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Cng.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Csp/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Runtime": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-23601" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Csp.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23601", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-23601" - }, - "compile": { - "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.1/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.Encodings.Web/4.0.0-rc2-23601": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/dotnet5.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet5.4/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.11-rc2-23601": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet5.4/System.Threading.Tasks.dll": {} - } - } - } - }, - "libraries": { - "Glimpse.Common/2.0.0": { - "type": "project", - "path": "../Glimpse.Common/project.json" - }, - "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15850": { - "type": "package", - "serviceable": true, - "sha512": "QzMjQYLn+OP9oqAGBZx5eMvdOJPuJ0xiGoFU95QxSdnOeRKFobOrUF1huJzjGIslOaTxucijCkK1wukF4YNHBA==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll", - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.xml", - "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll", - "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.xml", - "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc2-15850.nupkg", - "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc2-15850.nupkg.sha512", - "Microsoft.AspNet.FileProviders.Abstractions.nuspec" - ] - }, - "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15850": { - "type": "package", - "serviceable": true, - "sha512": "MZmcHRJGwI44n17PzWVB+lS8mn8PuNsl40wWDFcQnjtxu/w5Eoqd4BXdHHyso6ascAccsWA3temfLdCFUAocuQ==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll", - "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.xml", - "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll", - "lib/net451/Microsoft.AspNet.FileProviders.Physical.xml", - "Microsoft.AspNet.FileProviders.Physical.1.0.0-rc2-15850.nupkg", - "Microsoft.AspNet.FileProviders.Physical.1.0.0-rc2-15850.nupkg.sha512", - "Microsoft.AspNet.FileProviders.Physical.nuspec" - ] - }, - "Microsoft.AspNet.Hosting/1.0.0-rc2-16044": { - "type": "package", - "serviceable": true, - "sha512": "lF5DD3oJSFvWsoHMhIl5XLEkiYhKHDbWkYB6tLlEMet6c/VcQ1OrLPm8NdL3KbNiXCdQzSkCMSyWKof+QGEWIw==", - "files": [ - "lib/dnx451/Microsoft.AspNet.Hosting.dll", - "lib/dnx451/Microsoft.AspNet.Hosting.xml", - "lib/dnxcore50/Microsoft.AspNet.Hosting.dll", - "lib/dnxcore50/Microsoft.AspNet.Hosting.xml", - "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll", - "lib/dotnet5.4/Microsoft.AspNet.Hosting.xml", - "lib/net451/Microsoft.AspNet.Hosting.dll", - "lib/net451/Microsoft.AspNet.Hosting.xml", - "Microsoft.AspNet.Hosting.1.0.0-rc2-16044.nupkg", - "Microsoft.AspNet.Hosting.1.0.0-rc2-16044.nupkg.sha512", - "Microsoft.AspNet.Hosting.nuspec" - ] - }, - "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc2-16044": { - "type": "package", - "serviceable": true, - "sha512": "w28elxT0ns/EOETRutr7cunGb7yrZtfKsbrrbT8gdkGmAaJRjx+kqFYSMCknSfOffxQWla4kaVtXK3g0rRKcLQ==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll", - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.xml", - "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll", - "lib/net451/Microsoft.AspNet.Hosting.Abstractions.xml", - "Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc2-16044.nupkg", - "Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc2-16044.nupkg.sha512", - "Microsoft.AspNet.Hosting.Abstractions.nuspec" - ] - }, - "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc2-16044": { - "type": "package", - "serviceable": true, - "sha512": "k0rVJxwlExI8ntzuDm94w2HAoxtOLBohmvOCHketfu5YuBBujOZU6ogVOeTf4l4dgjtKXcWuh1vQhkrH9t1dpw==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll", - "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.xml", - "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll", - "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.xml", - "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-rc2-16044.nupkg", - "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-rc2-16044.nupkg.sha512", - "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec" - ] - }, - "Microsoft.AspNet.Http/1.0.0-rc2-16017": { - "type": "package", - "serviceable": true, - "sha512": "og1abrbVbvvnsIqg13daRGTpVFcia78YXdo8eTim0/nGnHgQLhl9DmyZiAGWVGonuzc1knO1OfwXs8jnk4vgVA==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Http.dll", - "lib/dotnet5.4/Microsoft.AspNet.Http.xml", - "lib/net451/Microsoft.AspNet.Http.dll", - "lib/net451/Microsoft.AspNet.Http.xml", - "Microsoft.AspNet.Http.1.0.0-rc2-16017.nupkg", - "Microsoft.AspNet.Http.1.0.0-rc2-16017.nupkg.sha512", - "Microsoft.AspNet.Http.nuspec" - ] - }, - "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16017": { - "type": "package", - "serviceable": true, - "sha512": "/00ufa9inL+QbCl/5TqQWRYMF8WtFkyqPgu0XLlebx1uofw6yFbsyD0L8QTLB+MyyNLtRpWjnty+hKD77M1dzA==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll", - "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.xml", - "lib/net451/Microsoft.AspNet.Http.Abstractions.dll", - "lib/net451/Microsoft.AspNet.Http.Abstractions.xml", - "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16017.nupkg", - "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16017.nupkg.sha512", - "Microsoft.AspNet.Http.Abstractions.nuspec" - ] - }, - "Microsoft.AspNet.Http.Extensions/1.0.0-rc2-16017": { - "type": "package", - "serviceable": true, - "sha512": "VXTEjuzu6Vo9wPx5RANxAjrR5PAg6mOT8uWGzwsFk07vDmpw2AQI96nUyVlz+gy5ls5790lU+emxrl3TGGl5GA==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll", - "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.xml", - "lib/net451/Microsoft.AspNet.Http.Extensions.dll", - "lib/net451/Microsoft.AspNet.Http.Extensions.xml", - "Microsoft.AspNet.Http.Extensions.1.0.0-rc2-16017.nupkg", - "Microsoft.AspNet.Http.Extensions.1.0.0-rc2-16017.nupkg.sha512", - "Microsoft.AspNet.Http.Extensions.nuspec" - ] - }, - "Microsoft.AspNet.Http.Features/1.0.0-rc2-16017": { - "type": "package", - "serviceable": true, - "sha512": "MRrTZIwVGsr9R0Z+4FVihnwZDV6LRWwYPnScsQVDk2BGVg37vW926rZlgbN0UUl+3e1aY6bG67R5isLM1ZkRLA==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll", - "lib/dotnet5.4/Microsoft.AspNet.Http.Features.xml", - "lib/net451/Microsoft.AspNet.Http.Features.dll", - "lib/net451/Microsoft.AspNet.Http.Features.xml", - "Microsoft.AspNet.Http.Features.1.0.0-rc2-16017.nupkg", - "Microsoft.AspNet.Http.Features.1.0.0-rc2-16017.nupkg.sha512", - "Microsoft.AspNet.Http.Features.nuspec" - ] - }, - "Microsoft.AspNet.WebApi.Client/5.2.2": { - "type": "package", - "serviceable": true, - "sha512": "YVq+s0WeXrPxJk57CoElbtMYf95j76uJcW6nue3Cs4eIer9sgUp4rasSo0gALX3ls1Zf2jMceOLik9X/sJyrwA==", - "files": [ - "lib/net45/System.Net.Http.Formatting.dll", - "lib/net45/System.Net.Http.Formatting.xml", - "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll", - "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.xml", - "Microsoft.AspNet.WebApi.Client.5.2.2.nupkg", - "Microsoft.AspNet.WebApi.Client.5.2.2.nupkg.sha512", - "Microsoft.AspNet.WebApi.Client.nuspec" - ] - }, - "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16017": { - "type": "package", - "serviceable": true, - "sha512": "qa3EZgbEo12XZBlrqsFsAWj21mstI3Sn0MFrXW84dAfL39Gu2PvN67Ly8Lu8HxfyPGNdyW+edz/UOvEcnVhpGw==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll", - "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.xml", - "lib/net451/Microsoft.AspNet.WebUtilities.dll", - "lib/net451/Microsoft.AspNet.WebUtilities.xml", - "Microsoft.AspNet.WebUtilities.1.0.0-rc2-16017.nupkg", - "Microsoft.AspNet.WebUtilities.1.0.0-rc2-16017.nupkg.sha512", - "Microsoft.AspNet.WebUtilities.nuspec" - ] - }, - "Microsoft.Bcl/1.1.9": { - "type": "package", - "sha512": "USQ55innJy8K+tAXvVa1O8dUTp2s7pmJ5cJj6Tl02HtGc2xBDj0P2QH5620HbGXIWKWYhydoeQF8Rm/JRDBGhw==", - "files": [ - "content/monoandroid/_._", - "content/monotouch/_._", - "content/net45/_._", - "content/portable-net45+win8+wp8+wpa81/_._", - "content/portable-net45+win8+wpa81/_._", - "content/portable-net451+win81/_._", - "content/portable-net451+win81+wpa81/_._", - "content/portable-win81+wp81+wpa81/_._", - "content/sl4/_._", - "content/sl5/_._", - "content/win8/_._", - "content/wp8/_._", - "content/wpa81/_._", - "lib/monoandroid/_._", - "lib/monotouch/_._", - "lib/net40/ensureRedirect.xml", - "lib/net40/System.IO.dll", - "lib/net40/System.IO.xml", - "lib/net40/System.Runtime.dll", - "lib/net40/System.Runtime.xml", - "lib/net40/System.Threading.Tasks.dll", - "lib/net40/System.Threading.Tasks.xml", - "lib/net45/_._", - "lib/portable-net40+sl4+win8/ensureRedirect.xml", - "lib/portable-net40+sl4+win8/System.IO.dll", - "lib/portable-net40+sl4+win8/System.IO.xml", - "lib/portable-net40+sl4+win8/System.Runtime.dll", - "lib/portable-net40+sl4+win8/System.Runtime.xml", - "lib/portable-net40+sl4+win8/System.Threading.Tasks.dll", - "lib/portable-net40+sl4+win8/System.Threading.Tasks.xml", - "lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml", - "lib/portable-net40+sl4+win8+wp71+wpa81/System.IO.dll", - "lib/portable-net40+sl4+win8+wp71+wpa81/System.IO.xml", - "lib/portable-net40+sl4+win8+wp71+wpa81/System.Runtime.dll", - "lib/portable-net40+sl4+win8+wp71+wpa81/System.Runtime.xml", - "lib/portable-net40+sl4+win8+wp71+wpa81/System.Threading.Tasks.dll", - "lib/portable-net40+sl4+win8+wp71+wpa81/System.Threading.Tasks.xml", - "lib/portable-net40+sl4+win8+wp8+wpa81/ensureRedirect.xml", - "lib/portable-net40+sl4+win8+wp8+wpa81/System.IO.dll", - "lib/portable-net40+sl4+win8+wp8+wpa81/System.IO.xml", - "lib/portable-net40+sl4+win8+wp8+wpa81/System.Runtime.dll", - "lib/portable-net40+sl4+win8+wp8+wpa81/System.Runtime.xml", - "lib/portable-net40+sl4+win8+wp8+wpa81/System.Threading.Tasks.dll", - "lib/portable-net40+sl4+win8+wp8+wpa81/System.Threading.Tasks.xml", - "lib/portable-net40+sl5+win8+wp8+wpa81/ensureRedirect.xml", - "lib/portable-net40+sl5+win8+wp8+wpa81/System.IO.dll", - "lib/portable-net40+sl5+win8+wp8+wpa81/System.IO.xml", - "lib/portable-net40+sl5+win8+wp8+wpa81/System.Runtime.dll", - "lib/portable-net40+sl5+win8+wp8+wpa81/System.Runtime.xml", - "lib/portable-net40+sl5+win8+wp8+wpa81/System.Threading.Tasks.dll", - "lib/portable-net40+sl5+win8+wp8+wpa81/System.Threading.Tasks.xml", - "lib/portable-net40+win8/ensureRedirect.xml", - "lib/portable-net40+win8/System.IO.dll", - "lib/portable-net40+win8/System.IO.xml", - "lib/portable-net40+win8/System.Runtime.dll", - "lib/portable-net40+win8/System.Runtime.xml", - "lib/portable-net40+win8/System.Threading.Tasks.dll", - "lib/portable-net40+win8/System.Threading.Tasks.xml", - "lib/portable-net40+win8+wp8+wpa81/ensureRedirect.xml", - "lib/portable-net40+win8+wp8+wpa81/System.IO.dll", - "lib/portable-net40+win8+wp8+wpa81/System.IO.xml", - "lib/portable-net40+win8+wp8+wpa81/System.Runtime.dll", - "lib/portable-net40+win8+wp8+wpa81/System.Runtime.xml", - "lib/portable-net40+win8+wp8+wpa81/System.Threading.Tasks.dll", - "lib/portable-net40+win8+wp8+wpa81/System.Threading.Tasks.xml", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/portable-net45+win8+wpa81/_._", - "lib/portable-net451+win81/_._", - "lib/portable-net451+win81+wpa81/_._", - "lib/portable-win81+wp81+wpa81/_._", - "lib/sl4/System.IO.dll", - "lib/sl4/System.IO.xml", - "lib/sl4/System.Runtime.dll", - "lib/sl4/System.Runtime.xml", - "lib/sl4/System.Threading.Tasks.dll", - "lib/sl4/System.Threading.Tasks.xml", - "lib/sl4-windowsphone71/ensureRedirect.xml", - "lib/sl4-windowsphone71/System.IO.dll", - "lib/sl4-windowsphone71/System.IO.xml", - "lib/sl4-windowsphone71/System.Runtime.dll", - "lib/sl4-windowsphone71/System.Runtime.xml", - "lib/sl4-windowsphone71/System.Threading.Tasks.dll", - "lib/sl4-windowsphone71/System.Threading.Tasks.xml", - "lib/sl5/System.IO.dll", - "lib/sl5/System.IO.xml", - "lib/sl5/System.Runtime.dll", - "lib/sl5/System.Runtime.xml", - "lib/sl5/System.Threading.Tasks.dll", - "lib/sl5/System.Threading.Tasks.xml", - "lib/win8/_._", - "lib/wp8/_._", - "lib/wpa81/_._", - "License-Stable.rtf", - "Microsoft.Bcl.1.1.9.nupkg", - "Microsoft.Bcl.1.1.9.nupkg.sha512", - "Microsoft.Bcl.nuspec" - ] - }, - "Microsoft.Bcl.Build/1.0.14": { - "type": "package", - "sha512": "cDLKSvNvRa519hplsbSoYqO69TjdDIhfjtKUM0g20/nVROoWsGav9KCI9HtnGjLmdV1+TcUUDhbotcllibjPEA==", - "files": [ - "content/net40/_._", - "content/netcore45/_._", - "content/portable-net40+win8+sl4+wp71+wpa81/_._", - "content/sl4/_._", - "content/sl4-windowsphone71/_._", - "License-Stable.rtf", - "Microsoft.Bcl.Build.1.0.14.nupkg", - "Microsoft.Bcl.Build.1.0.14.nupkg.sha512", - "Microsoft.Bcl.Build.nuspec", - "tools/Install.ps1", - "tools/Microsoft.Bcl.Build.targets", - "tools/Microsoft.Bcl.Build.Tasks.dll", - "tools/Uninstall.ps1" - ] - }, - "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16251": { - "type": "package", - "serviceable": true, - "sha512": "qA7hM8biWg+cs7B2KpsS7i0/SYjHPUunlTQJkn3xIs4Wr5feVAvYaA3gQoKD3FvTj1f4vInFhTen0+svmT91Xg==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll", - "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.xml", - "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll", - "lib/net451/Microsoft.Extensions.CompilationAbstractions.xml", - "Microsoft.Extensions.CompilationAbstractions.1.0.0-rc2-16251.nupkg", - "Microsoft.Extensions.CompilationAbstractions.1.0.0-rc2-16251.nupkg.sha512", - "Microsoft.Extensions.CompilationAbstractions.nuspec" - ] - }, - "Microsoft.Extensions.Configuration/1.0.0-rc2-15878": { - "type": "package", - "serviceable": true, - "sha512": "aCoP+JyhiVL7djzbg8peHBF5Rp9GNAlCevqOBPFj92HzZ7R5AiLl8IwC7t7h7iMtAOIkb3wOhcw5tHeVgfw/6Q==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll", - "lib/dotnet5.4/Microsoft.Extensions.Configuration.xml", - "lib/net451/Microsoft.Extensions.Configuration.dll", - "lib/net451/Microsoft.Extensions.Configuration.xml", - "lib/netcore50/Microsoft.Extensions.Configuration.dll", - "lib/netcore50/Microsoft.Extensions.Configuration.xml", - "Microsoft.Extensions.Configuration.1.0.0-rc2-15878.nupkg", - "Microsoft.Extensions.Configuration.1.0.0-rc2-15878.nupkg.sha512", - "Microsoft.Extensions.Configuration.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15878": { - "type": "package", - "serviceable": true, - "sha512": "ZghpJY8CfNITWXK2VC+uRmUu0apjzhI9GblCXOUpZLLWtD7+wMFw9VSvaEKEwaKIF1uBN3ucsSBkjuMUDz3JfQ==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net451/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.xml", - "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15878.nupkg", - "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15878.nupkg.sha512", - "Microsoft.Extensions.Configuration.Abstractions.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15878": { - "type": "package", - "serviceable": true, - "sha512": "b6PmeXivNR0LIHeYau4nqZD5/6+fTa56duhpCIKjUASRb8BCyIYbgkEVBtLBpoDPTl3IUC51u7Kg7vIV0OPJgg==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll", - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net451/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net451/Microsoft.Extensions.Configuration.Binder.xml", - "lib/netcore50/Microsoft.Extensions.Configuration.Binder.dll", - "lib/netcore50/Microsoft.Extensions.Configuration.Binder.xml", - "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15878.nupkg", - "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15878.nupkg.sha512", - "Microsoft.Extensions.Configuration.Binder.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc2-15878": { - "type": "package", - "serviceable": true, - "sha512": "vsWP8ZzpmGroht2mbpNHNV70f4R8G7MnCYVSQou/4KQ3rgvu1H0Nm/krhKn2eFlC8qKiWKeoaW7rwLOivN58EQ==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll", - "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.xml", - "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll", - "lib/net451/Microsoft.Extensions.Configuration.CommandLine.xml", - "lib/netcore50/Microsoft.Extensions.Configuration.CommandLine.dll", - "lib/netcore50/Microsoft.Extensions.Configuration.CommandLine.xml", - "Microsoft.Extensions.Configuration.CommandLine.1.0.0-rc2-15878.nupkg", - "Microsoft.Extensions.Configuration.CommandLine.1.0.0-rc2-15878.nupkg.sha512", - "Microsoft.Extensions.Configuration.CommandLine.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-15878": { - "type": "package", - "serviceable": true, - "sha512": "rsP6AG4RohFTx/madT97sXj1qhdvPWufBR+sxJIwIpdPcAdHJEBIMqL5Jqw3vTz8fquo52reArkqwGCw8XEWWA==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", - "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", - "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", - "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", - "lib/netcore50/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", - "lib/netcore50/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", - "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0-rc2-15878.nupkg", - "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0-rc2-15878.nupkg.sha512", - "Microsoft.Extensions.Configuration.EnvironmentVariables.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15878": { - "type": "package", - "serviceable": true, - "sha512": "HUZpsiqOvstHGEdDBCGmzUM7GUCQeWwCh27S5PgwZz8NQaZgkoGLwAXXjNz6ql61jDbKSrXykt5h9HvOVk3lVg==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll", - "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.xml", - "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll", - "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.xml", - "lib/netcore50/Microsoft.Extensions.Configuration.FileExtensions.dll", - "lib/netcore50/Microsoft.Extensions.Configuration.FileExtensions.xml", - "Microsoft.Extensions.Configuration.FileExtensions.1.0.0-rc2-15878.nupkg", - "Microsoft.Extensions.Configuration.FileExtensions.1.0.0-rc2-15878.nupkg.sha512", - "Microsoft.Extensions.Configuration.FileExtensions.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15878": { - "type": "package", - "serviceable": true, - "sha512": "LdrjLMmC7xeVA+sU+2M0ypShrIWuThY5BFpyqWwjugkt9ZHp498d14PDOIdWUbApBQ4pcdCD+AWggxMUywTPrw==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll", - "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.xml", - "lib/net451/Microsoft.Extensions.Configuration.Json.dll", - "lib/net451/Microsoft.Extensions.Configuration.Json.xml", - "lib/netcore50/Microsoft.Extensions.Configuration.Json.dll", - "lib/netcore50/Microsoft.Extensions.Configuration.Json.xml", - "Microsoft.Extensions.Configuration.Json.1.0.0-rc2-15878.nupkg", - "Microsoft.Extensions.Configuration.Json.1.0.0-rc2-15878.nupkg.sha512", - "Microsoft.Extensions.Configuration.Json.nuspec" - ] - }, - "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15848": { - "type": "package", - "serviceable": true, - "sha512": "YlryeceF4o9LBefeAlBc+t+zu8zyFnRYygOSHIWY748rLgTo1yxC5A0AQKdQg7Gr8qokAsYeunGLJZJkvedvnQ==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll", - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.xml", - "lib/net451/Microsoft.Extensions.DependencyInjection.dll", - "lib/net451/Microsoft.Extensions.DependencyInjection.xml", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.dll", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.xml", - "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15848.nupkg", - "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15848.nupkg.sha512", - "Microsoft.Extensions.DependencyInjection.nuspec" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15848": { - "type": "package", - "serviceable": true, - "sha512": "ByRDREn2PEch1loDjkPR27y37ncJMMzw8YTR3x07wEcMIsBEpvZuSyXS/+9AHaikLJicDqpsliSxF7dQOuashw==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15848.nupkg", - "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15848.nupkg.sha512", - "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec" - ] - }, - "Microsoft.Extensions.DiagnosticAdapter/1.0.0-rc2-15858": { - "type": "package", - "serviceable": true, - "sha512": "RvGrwoUMo9oRZ/FklY0z+d+p8a20OSsSnan07LLk4UxgU7Lp33H/tqn4mPWB/dy5JznjTk0Z7na7f3Z4iGxzKQ==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.dll", - "lib/dotnet5.4/Microsoft.Extensions.DiagnosticAdapter.xml", - "lib/net451/Microsoft.Extensions.DiagnosticAdapter.dll", - "lib/net451/Microsoft.Extensions.DiagnosticAdapter.xml", - "Microsoft.Extensions.DiagnosticAdapter.1.0.0-rc2-15858.nupkg", - "Microsoft.Extensions.DiagnosticAdapter.1.0.0-rc2-15858.nupkg.sha512", - "Microsoft.Extensions.DiagnosticAdapter.nuspec" - ] - }, - "Microsoft.Extensions.Logging/1.0.0-rc2-15878": { - "type": "package", - "serviceable": true, - "sha512": "eUzCGY2Seie8aFLZbk5MC3w6lITF2HMry9WGWeGXvRZ6+7HiSEirzEMaViQNclkjopoGZeYv8WkyFUd49KOmlA==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Logging.dll", - "lib/dotnet5.4/Microsoft.Extensions.Logging.xml", - "lib/net451/Microsoft.Extensions.Logging.dll", - "lib/net451/Microsoft.Extensions.Logging.xml", - "lib/netcore50/Microsoft.Extensions.Logging.dll", - "lib/netcore50/Microsoft.Extensions.Logging.xml", - "Microsoft.Extensions.Logging.1.0.0-rc2-15878.nupkg", - "Microsoft.Extensions.Logging.1.0.0-rc2-15878.nupkg.sha512", - "Microsoft.Extensions.Logging.nuspec" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15878": { - "type": "package", - "serviceable": true, - "sha512": "MqLYvcSTwS8d+MHwehEduLOmcIEupGMDDn8Y7U3LTAbE6z8/9dwOuWaexmXrxsuMJH0Yx0WVYGrt73W5uFqO7Q==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net451/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.xml", - "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15878.nupkg", - "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15878.nupkg.sha512", - "Microsoft.Extensions.Logging.Abstractions.nuspec" - ] - }, - "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15858": { - "type": "package", - "serviceable": true, - "sha512": "FHjS7AlUW/GXIyzvOooy2C99r31mr31dSlShxzbcP3461AvmkbhDbjWy3ryF1o3D61azxgxD6V695Apb4+XZ9A==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll", - "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.xml", - "lib/net451/Microsoft.Extensions.OptionsModel.dll", - "lib/net451/Microsoft.Extensions.OptionsModel.xml", - "lib/netcore50/Microsoft.Extensions.OptionsModel.dll", - "lib/netcore50/Microsoft.Extensions.OptionsModel.xml", - "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15858.nupkg", - "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15858.nupkg.sha512", - "Microsoft.Extensions.OptionsModel.nuspec" - ] - }, - "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16251": { - "type": "package", - "serviceable": true, - "sha512": "arE3sevKLvnAzK9Pb+cNQQC0Rw2XOlKiaWLldk24/HH5xDJkfAaWsjdiL3qNnp7fik2K/BuGiJDMFw6beeBRkw==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll", - "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.xml", - "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll", - "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml", - "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16251.nupkg", - "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16251.nupkg.sha512", - "Microsoft.Extensions.PlatformAbstractions.nuspec" - ] - }, - "Microsoft.Extensions.Primitives/1.0.0-rc2-15898": { - "type": "package", - "serviceable": true, - "sha512": "bQVTEkMiBxWN80ta2MgXa1rSURTxVL7EQDYdJT/Ng+XiiN4wShTKpVLvm1tHfFA6FCqjzEvWtx9Ps3MwlDDClQ==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll", - "lib/dotnet5.4/Microsoft.Extensions.Primitives.xml", - "lib/net451/Microsoft.Extensions.Primitives.dll", - "lib/net451/Microsoft.Extensions.Primitives.xml", - "lib/netcore50/Microsoft.Extensions.Primitives.dll", - "lib/netcore50/Microsoft.Extensions.Primitives.xml", - "Microsoft.Extensions.Primitives.1.0.0-rc2-15898.nupkg", - "Microsoft.Extensions.Primitives.1.0.0-rc2-15898.nupkg.sha512", - "Microsoft.Extensions.Primitives.nuspec" - ] - }, - "Microsoft.Net.Http/2.2.22": { - "type": "package", - "serviceable": true, - "sha512": "bqVLJ2UimlAEs2bn3y28lB1pmFRxuysv9pFyB0A86WEMYGYTfDyfjAGjm0fiaSRjlMNU1jVnp8Mxt8qe4OmpXQ==", - "files": [ - "lib/monoandroid/System.Net.Http.Extensions.dll", - "lib/monoandroid/System.Net.Http.Extensions.XML", - "lib/monoandroid/System.Net.Http.Primitives.dll", - "lib/monoandroid/System.Net.Http.Primitives.xml", - "lib/monotouch/System.Net.Http.Extensions.dll", - "lib/monotouch/System.Net.Http.Extensions.XML", - "lib/monotouch/System.Net.Http.Primitives.dll", - "lib/monotouch/System.Net.Http.Primitives.xml", - "lib/net40/ensureRedirect.xml", - "lib/net40/System.Net.Http.dll", - "lib/net40/System.Net.Http.Extensions.dll", - "lib/net40/System.Net.Http.Extensions.XML", - "lib/net40/System.Net.Http.Primitives.dll", - "lib/net40/System.Net.Http.Primitives.xml", - "lib/net40/System.Net.Http.WebRequest.dll", - "lib/net40/System.Net.Http.WebRequest.xml", - "lib/net40/System.Net.Http.xml", - "lib/net45/ensureRedirect.xml", - "lib/net45/System.Net.Http.Extensions.dll", - "lib/net45/System.Net.Http.Extensions.XML", - "lib/net45/System.Net.Http.Primitives.dll", - "lib/net45/System.Net.Http.Primitives.xml", - "lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml", - "lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.dll", - "lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Extensions.dll", - "lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Extensions.XML", - "lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Primitives.dll", - "lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Primitives.XML", - "lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.xml", - "lib/portable-net45+win8/ensureRedirect.xml", - "lib/portable-net45+win8/System.Net.Http.Extensions.dll", - "lib/portable-net45+win8/System.Net.Http.Extensions.XML", - "lib/portable-net45+win8/System.Net.Http.Primitives.dll", - "lib/portable-net45+win8/System.Net.Http.Primitives.xml", - "lib/portable-net45+win8+wpa81/ensureRedirect.xml", - "lib/portable-net45+win8+wpa81/System.Net.Http.Extensions.dll", - "lib/portable-net45+win8+wpa81/System.Net.Http.Extensions.XML", - "lib/portable-net45+win8+wpa81/System.Net.Http.Primitives.dll", - "lib/portable-net45+win8+wpa81/System.Net.Http.Primitives.xml", - "lib/sl4-windowsphone71/System.Net.Http.dll", - "lib/sl4-windowsphone71/System.Net.Http.Extensions.dll", - "lib/sl4-windowsphone71/System.Net.Http.Extensions.XML", - "lib/sl4-windowsphone71/System.Net.Http.Primitives.dll", - "lib/sl4-windowsphone71/System.Net.Http.Primitives.XML", - "lib/sl4-windowsphone71/System.Net.Http.xml", - "lib/win8/System.Net.Http.Extensions.dll", - "lib/win8/System.Net.Http.Extensions.XML", - "lib/win8/System.Net.Http.Primitives.dll", - "lib/win8/System.Net.Http.Primitives.xml", - "lib/wpa81/System.Net.Http.Extensions.dll", - "lib/wpa81/System.Net.Http.Extensions.XML", - "lib/wpa81/System.Net.Http.Primitives.dll", - "lib/wpa81/System.Net.Http.Primitives.xml", - "License-Stable.rtf", - "Microsoft.Net.Http.2.2.22.nupkg", - "Microsoft.Net.Http.2.2.22.nupkg.sha512", - "Microsoft.Net.Http.nuspec" - ] - }, - "Microsoft.Net.Http.Headers/1.0.0-rc2-16017": { - "type": "package", - "serviceable": true, - "sha512": "/RzqzyYYXQMQfJzuwP3JNAw/QbIX71Hu+rbzOaSoxz36BihDrFPrUrOudtGaahExV9l7o455uk5TGVtmMc8byg==", - "files": [ - "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll", - "lib/dotnet5.4/Microsoft.Net.Http.Headers.xml", - "lib/net451/Microsoft.Net.Http.Headers.dll", - "lib/net451/Microsoft.Net.Http.Headers.xml", - "Microsoft.Net.Http.Headers.1.0.0-rc2-16017.nupkg", - "Microsoft.Net.Http.Headers.1.0.0-rc2-16017.nupkg.sha512", - "Microsoft.Net.Http.Headers.nuspec" - ] - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", - "files": [ - "lib/dotnet/Microsoft.Win32.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "Microsoft.Win32.Primitives.4.0.0.nupkg", - "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512", - "Microsoft.Win32.Primitives.nuspec", - "ref/dotnet/de/Microsoft.Win32.Primitives.xml", - "ref/dotnet/es/Microsoft.Win32.Primitives.xml", - "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", - "ref/dotnet/it/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", - "ref/dotnet/Microsoft.Win32.Primitives.dll", - "ref/dotnet/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", - "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "Newtonsoft.Json/6.0.6": { - "type": "package", - "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", - "files": [ - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netcore45/Newtonsoft.Json.dll", - "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", - "Newtonsoft.Json.6.0.6.nupkg", - "Newtonsoft.Json.6.0.6.nupkg.sha512", - "Newtonsoft.Json.nuspec", - "tools/install.ps1" - ] - }, - "runtime.any.System.Linq.Expressions/4.0.11-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "AOWTXm/65MX4ACmWpgcZ3C7Q0oWb19J5ZyuWjchUMKfT5stozvfEfDFOwdZqvAPNC4+uF1Bvsnsa5lgRliNQLw==", - "files": [ - "lib/DNXCore50/System.Linq.Expressions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/_._", - "runtime.any.System.Linq.Expressions.4.0.11-rc2-23601.nupkg", - "runtime.any.System.Linq.Expressions.4.0.11-rc2-23601.nupkg.sha512", - "runtime.any.System.Linq.Expressions.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "yQdfnpkk9iFZth6cLCzjnB2nBEDW5HcN7LX4/gV/oxUOZXRtIyHnbaMMQmASkPJTwtzppXhHAI2QHwKtk37rkA==", - "files": [ - "ref/dotnet/_._", - "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23601.nupkg", - "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23601.nupkg.sha512", - "runtime.win.System.Runtime.InteropServices.RuntimeInformation.nuspec", - "runtimes/win/lib/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll" - ] - }, - "runtime.win7.System.Console/4.0.0-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "BP93EhDm764GiGj4GLa4tpI1y8WVRXARtpSkcIoqEqrwTuj/+yb4NcvuGMU8qXVm4PCqNBkg0n4gFIQy0/gvbg==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Console.4.0.0-rc2-23601.nupkg", - "runtime.win7.System.Console.4.0.0-rc2-23601.nupkg.sha512", - "runtime.win7.System.Console.nuspec", - "runtimes/win7/lib/dotnet5.4/System.Console.dll", - "runtimes/win7/lib/net/_._" - ] - }, - "runtime.win7.System.Diagnostics.Debug/4.0.11-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "GtlWcIP5u8GqswrMHIOCPBYVEEsCjDoY21w/l09ru080J4VZU4KTQfYPudB1h0JXWHFBfv0PG1hd485rj3L/iA==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Diagnostics.Debug.4.0.11-rc2-23601.nupkg", - "runtime.win7.System.Diagnostics.Debug.4.0.11-rc2-23601.nupkg.sha512", - "runtime.win7.System.Diagnostics.Debug.nuspec", - "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll", - "runtimes/win7/lib/netcore50/System.Diagnostics.Debug.dll", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" - ] - }, - "runtime.win7.System.Globalization.Extensions/4.0.1-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "pmN1JC2p+oWocr5r4LUkuIfL5erOHHr8vxzvcAmtm6Jyq2lQ3ih6j9EiBtu/vcT7dBhwLMmDUnx4Uwl7SQEukw==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Globalization.Extensions.4.0.1-rc2-23601.nupkg", - "runtime.win7.System.Globalization.Extensions.4.0.1-rc2-23601.nupkg.sha512", - "runtime.win7.System.Globalization.Extensions.nuspec", - "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll", - "runtimes/win7/lib/net/_._" - ] - }, - "runtime.win7.System.IO.FileSystem/4.0.1-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "3YILGEkZwKzNrcO1OoEXE2CpQgGzUm7oQyKmVEVc0rEindCCYHmdFOxULvphp/onoOXtfpTxdCkQn9XxLr6EnA==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.IO.FileSystem.4.0.1-rc2-23601.nupkg", - "runtime.win7.System.IO.FileSystem.4.0.1-rc2-23601.nupkg.sha512", - "runtime.win7.System.IO.FileSystem.nuspec", - "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll", - "runtimes/win7/lib/net/_._", - "runtimes/win7/lib/netcore50/System.IO.FileSystem.dll", - "runtimes/win7/lib/win8/_._", - "runtimes/win7/lib/wp8/_._", - "runtimes/win7/lib/wpa81/_._" - ] - }, - "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "HV0e913ApoICaupGcq/UXGwWKIUA9j8wrX3kkza7jeCbCjDMq/fNcMojowgSKdrQDeMMUnS2ZrQ0wAW2r70azA==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.IO.FileSystem.Watcher.4.0.0-rc2-23601.nupkg", - "runtime.win7.System.IO.FileSystem.Watcher.4.0.0-rc2-23601.nupkg.sha512", - "runtime.win7.System.IO.FileSystem.Watcher.nuspec", - "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.Watcher.dll", - "runtimes/win7/lib/net/_._", - "runtimes/win7/lib/netcore50/_._", - "runtimes/win7/lib/win8/_._", - "runtimes/win7/lib/wp8/_._", - "runtimes/win7/lib/wpa81/_._" - ] - }, - "runtime.win7.System.Net.Primitives/4.0.11-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "9/IcmwQl4yGdg6e6jkY3+PM14Hs6DB9603/usVj78jNNnJMX2tjI9uAjjuh0h+vn1zML+G3vZk36Pz5VwWv5Cw==", - "files": [ - "lib/DNXCore50/System.Net.Primitives.dll", - "ref/dotnet/_._", - "runtime.win7.System.Net.Primitives.4.0.11-rc2-23601.nupkg", - "runtime.win7.System.Net.Primitives.4.0.11-rc2-23601.nupkg.sha512", - "runtime.win7.System.Net.Primitives.nuspec", - "runtimes/win7/lib/netcore50/System.Net.Primitives.dll" - ] - }, - "runtime.win7.System.Runtime.Extensions/4.0.11-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "9LjxwVk7p+RRg37/VvgXQmPEjgrp1H0Yn6NX5yW5cJzC1ON7KXTeaBrVgO6ILHd4260iD1vVmJ4bpGJL0kjDXg==", - "files": [ - "lib/DNXCore50/System.Runtime.Extensions.dll", - "lib/netcore50/System.Runtime.Extensions.dll", - "ref/dotnet/_._", - "runtime.win7.System.Runtime.Extensions.4.0.11-rc2-23601.nupkg", - "runtime.win7.System.Runtime.Extensions.4.0.11-rc2-23601.nupkg.sha512", - "runtime.win7.System.Runtime.Extensions.nuspec", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" - ] - }, - "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "4W3bNz1Gwq8WcWiAdgSuM9I8ssk4mqRhQYzJ6V5gYt8UFhxvfp/orbR4fgiCo4K83MKuN01TSRuptAhgTgH4OA==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-rc2-23601.nupkg", - "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-rc2-23601.nupkg.sha512", - "runtime.win7.System.Security.Cryptography.Algorithms.nuspec", - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll", - "runtimes/win7/lib/net/_._" - ] - }, - "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "cmBrDSiTinLQ73piaAqRn/uHC0Phx7aW8YaRdIrusprs5Ne7PeDpsayGkpCqEkWKkZfZO4g0qW3eJqMxVufxfA==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-rc2-23601.nupkg", - "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-rc2-23601.nupkg.sha512", - "runtime.win7.System.Security.Cryptography.Encoding.nuspec", - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll", - "runtimes/win7/lib/net/_._" - ] - }, - "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "6r2+mS9KQSzEWfAoRchsbPsp4W4I3EMF0QgFXi69Tv/WwXD5dStN9Fg8yY8TRiJeiIP9XsvOOvtLhBYJ9ZLnTA==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-rc2-23601.nupkg", - "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-rc2-23601.nupkg.sha512", - "runtime.win7.System.Security.Cryptography.X509Certificates.nuspec", - "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win7/lib/net/_._", - "runtimes/win7/lib/netcore50/System.Security.Cryptography.X509Certificates.dll" - ] - }, - "runtime.win7.System.Threading/4.0.11-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "+aJ4LUesUTGurl7aBWl3S4MvE/W7oxpoEqQuKYpH3nmHd1JENfG6T2P6aqvxeTBhKm9efvrlN7w5/EEdiAsC3g==", - "files": [ - "ref/dotnet/_._", - "runtime.win7.System.Threading.4.0.11-rc2-23601.nupkg", - "runtime.win7.System.Threading.4.0.11-rc2-23601.nupkg.sha512", - "runtime.win7.System.Threading.nuspec", - "runtimes/win7/lib/DNXCore50/System.Threading.dll", - "runtimes/win7/lib/netcore50/System.Threading.dll", - "runtimes/win8-aot/lib/netcore50/System.Threading.dll" - ] - }, - "Rx-Core/2.2.5": { - "type": "package", - "sha512": "DfWVTfW6tvRkkqpnRHKxPIvaRZyDJGADuqrE6J2nwejOQbLRWi0rNUwXkViDWz++25BGDy3iRE5OE6Dv8mJxYQ==", - "files": [ - "lib/net40/System.Reactive.Core.dll", - "lib/net40/System.Reactive.Core.XML", - "lib/net45/System.Reactive.Core.dll", - "lib/net45/System.Reactive.Core.XML", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.dll", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.XML", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.XML", - "lib/portable-win81+wpa81/System.Reactive.Core.dll", - "lib/portable-win81+wpa81/System.Reactive.Core.XML", - "lib/portable-windows8+net45+wp8/System.Reactive.Core.dll", - "lib/portable-windows8+net45+wp8/System.Reactive.Core.XML", - "lib/sl5/System.Reactive.Core.dll", - "lib/sl5/System.Reactive.Core.XML", - "lib/windows8/System.Reactive.Core.dll", - "lib/windows8/System.Reactive.Core.XML", - "lib/windowsphone71/System.Reactive.Core.dll", - "lib/windowsphone71/System.Reactive.Core.XML", - "lib/windowsphone8/System.Reactive.Core.dll", - "lib/windowsphone8/System.Reactive.Core.XML", - "Rx-Core.2.2.5.nupkg", - "Rx-Core.2.2.5.nupkg.sha512", - "Rx-Core.nuspec" - ] - }, - "Rx-Interfaces/2.2.5": { - "type": "package", - "sha512": "FKtG2QfMIeUcfB7r3a89VoAiszX3DTvYETkpC6U0FzWpxRK/mcHyzYOsniDfag+NsDG0P1k1c8yNSefXKp3t2A==", - "files": [ - "lib/net40/System.Reactive.Interfaces.dll", - "lib/net40/System.Reactive.Interfaces.XML", - "lib/net45/System.Reactive.Interfaces.dll", - "lib/net45/System.Reactive.Interfaces.XML", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.dll", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.XML", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.XML", - "lib/portable-win81+wpa81/System.Reactive.Interfaces.dll", - "lib/portable-win81+wpa81/System.Reactive.Interfaces.XML", - "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.dll", - "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.XML", - "lib/sl5/System.Reactive.Interfaces.dll", - "lib/sl5/System.Reactive.Interfaces.XML", - "lib/windows8/System.Reactive.Interfaces.dll", - "lib/windows8/System.Reactive.Interfaces.XML", - "lib/windowsphone71/System.Reactive.Interfaces.dll", - "lib/windowsphone71/System.Reactive.Interfaces.XML", - "lib/windowsphone8/System.Reactive.Interfaces.dll", - "lib/windowsphone8/System.Reactive.Interfaces.XML", - "Rx-Interfaces.2.2.5.nupkg", - "Rx-Interfaces.2.2.5.nupkg.sha512", - "Rx-Interfaces.nuspec" - ] - }, - "Rx-Linq/2.2.5": { - "type": "package", - "sha512": "UTeCIu3cWPExxmTzdiVq7SalqTBhUaomBTaAC9LpYPoAopjlFwA3hjVWXoLkGlDc/44wqJemJuEwFP00KphiFg==", - "files": [ - "lib/net40/System.Reactive.Linq.dll", - "lib/net40/System.Reactive.Linq.XML", - "lib/net45/System.Reactive.Linq.dll", - "lib/net45/System.Reactive.Linq.XML", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.dll", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.XML", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.XML", - "lib/portable-win81+wpa81/System.Reactive.Linq.dll", - "lib/portable-win81+wpa81/System.Reactive.Linq.XML", - "lib/portable-windows8+net45+wp8/System.Reactive.Linq.dll", - "lib/portable-windows8+net45+wp8/System.Reactive.Linq.XML", - "lib/sl5/System.Reactive.Linq.dll", - "lib/sl5/System.Reactive.Linq.XML", - "lib/windows8/System.Reactive.Linq.dll", - "lib/windows8/System.Reactive.Linq.XML", - "lib/windowsphone71/System.Reactive.Linq.dll", - "lib/windowsphone71/System.Reactive.Linq.XML", - "lib/windowsphone8/System.Reactive.Linq.dll", - "lib/windowsphone8/System.Reactive.Linq.XML", - "Rx-Linq.2.2.5.nupkg", - "Rx-Linq.2.2.5.nupkg.sha512", - "Rx-Linq.nuspec" - ] - }, - "Rx-PlatformServices/2.2.5": { - "type": "package", - "sha512": "pMnNEvJVjT+wuDib+W/bi5hhIYcre7dW5yxvKrJxnR4iKJ1VLA/dY2FTtjDriHGx7OeGn12lQewXlH2oHiWFPA==", - "files": [ - "lib/net40/System.Reactive.PlatformServices.dll", - "lib/net40/System.Reactive.PlatformServices.XML", - "lib/net45/System.Reactive.PlatformServices.dll", - "lib/net45/System.Reactive.PlatformServices.XML", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.dll", - "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.XML", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll", - "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.XML", - "lib/portable-win81+wpa81/System.Reactive.PlatformServices.dll", - "lib/portable-win81+wpa81/System.Reactive.PlatformServices.XML", - "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.dll", - "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.XML", - "lib/sl5/System.Reactive.PlatformServices.dll", - "lib/sl5/System.Reactive.PlatformServices.XML", - "lib/windows8/System.Reactive.PlatformServices.dll", - "lib/windows8/System.Reactive.PlatformServices.XML", - "lib/windowsphone71/System.Reactive.PlatformServices.dll", - "lib/windowsphone71/System.Reactive.PlatformServices.XML", - "lib/windowsphone8/System.Reactive.PlatformServices.dll", - "lib/windowsphone8/System.Reactive.PlatformServices.XML", - "Rx-PlatformServices.2.2.5.nupkg", - "Rx-PlatformServices.2.2.5.nupkg.sha512", - "Rx-PlatformServices.nuspec" - ] - }, - "System.AppContext/4.0.1-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "2ulHAa7pz43bQyHeqEaPN2HP5ukbUv9WR0erC7G3B+4kvApU9JlrTsr1KBvSt6z+35gbM+r56CPDpNSlxcG8cA==", - "files": [ - "lib/DNXCore50/System.AppContext.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.AppContext.dll", - "lib/netcore50/System.AppContext.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.AppContext.xml", - "ref/dotnet5.4/es/System.AppContext.xml", - "ref/dotnet5.4/fr/System.AppContext.xml", - "ref/dotnet5.4/it/System.AppContext.xml", - "ref/dotnet5.4/ja/System.AppContext.xml", - "ref/dotnet5.4/ko/System.AppContext.xml", - "ref/dotnet5.4/ru/System.AppContext.xml", - "ref/dotnet5.4/System.AppContext.dll", - "ref/dotnet5.4/System.AppContext.xml", - "ref/dotnet5.4/zh-hans/System.AppContext.xml", - "ref/dotnet5.4/zh-hant/System.AppContext.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.AppContext.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.AppContext.4.0.1-rc2-23601.nupkg", - "System.AppContext.4.0.1-rc2-23601.nupkg.sha512", - "System.AppContext.nuspec" - ] - }, - "System.Collections/4.0.11-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "L4+/Uv1hxnW4hqYfB2N4SFaWeKzO1S0Q1ed/NetLcL/KQXzRLuVn7ifY8Gn1feu0xx46AarDP92iU2c6NzxcWA==", - "files": [ - "lib/DNXCore50/System.Collections.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Collections.xml", - "ref/dotnet5.1/es/System.Collections.xml", - "ref/dotnet5.1/fr/System.Collections.xml", - "ref/dotnet5.1/it/System.Collections.xml", - "ref/dotnet5.1/ja/System.Collections.xml", - "ref/dotnet5.1/ko/System.Collections.xml", - "ref/dotnet5.1/ru/System.Collections.xml", - "ref/dotnet5.1/System.Collections.dll", - "ref/dotnet5.1/System.Collections.xml", - "ref/dotnet5.1/zh-hans/System.Collections.xml", - "ref/dotnet5.1/zh-hant/System.Collections.xml", - "ref/dotnet5.4/de/System.Collections.xml", - "ref/dotnet5.4/es/System.Collections.xml", - "ref/dotnet5.4/fr/System.Collections.xml", - "ref/dotnet5.4/it/System.Collections.xml", - "ref/dotnet5.4/ja/System.Collections.xml", - "ref/dotnet5.4/ko/System.Collections.xml", - "ref/dotnet5.4/ru/System.Collections.xml", - "ref/dotnet5.4/System.Collections.dll", - "ref/dotnet5.4/System.Collections.xml", - "ref/dotnet5.4/zh-hans/System.Collections.xml", - "ref/dotnet5.4/zh-hant/System.Collections.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Collections.xml", - "ref/netcore50/es/System.Collections.xml", - "ref/netcore50/fr/System.Collections.xml", - "ref/netcore50/it/System.Collections.xml", - "ref/netcore50/ja/System.Collections.xml", - "ref/netcore50/ko/System.Collections.xml", - "ref/netcore50/ru/System.Collections.xml", - "ref/netcore50/System.Collections.dll", - "ref/netcore50/System.Collections.xml", - "ref/netcore50/zh-hans/System.Collections.xml", - "ref/netcore50/zh-hant/System.Collections.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Collections.dll", - "System.Collections.4.0.11-rc2-23601.nupkg", - "System.Collections.4.0.11-rc2-23601.nupkg.sha512", - "System.Collections.nuspec" - ] - }, - "System.Collections.Concurrent/4.0.11-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "JGENptUKc1yFRNl1/48wEnHmFNVGIaM0HpF/+knGaDyMq9M6iukkkMEXstWtTLGiyZcufpWnKVJhZS/dVmpLVg==", - "files": [ - "lib/dotnet5.4/System.Collections.Concurrent.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.2/de/System.Collections.Concurrent.xml", - "ref/dotnet5.2/es/System.Collections.Concurrent.xml", - "ref/dotnet5.2/fr/System.Collections.Concurrent.xml", - "ref/dotnet5.2/it/System.Collections.Concurrent.xml", - "ref/dotnet5.2/ja/System.Collections.Concurrent.xml", - "ref/dotnet5.2/ko/System.Collections.Concurrent.xml", - "ref/dotnet5.2/ru/System.Collections.Concurrent.xml", - "ref/dotnet5.2/System.Collections.Concurrent.dll", - "ref/dotnet5.2/System.Collections.Concurrent.xml", - "ref/dotnet5.2/zh-hans/System.Collections.Concurrent.xml", - "ref/dotnet5.2/zh-hant/System.Collections.Concurrent.xml", - "ref/dotnet5.4/de/System.Collections.Concurrent.xml", - "ref/dotnet5.4/es/System.Collections.Concurrent.xml", - "ref/dotnet5.4/fr/System.Collections.Concurrent.xml", - "ref/dotnet5.4/it/System.Collections.Concurrent.xml", - "ref/dotnet5.4/ja/System.Collections.Concurrent.xml", - "ref/dotnet5.4/ko/System.Collections.Concurrent.xml", - "ref/dotnet5.4/ru/System.Collections.Concurrent.xml", - "ref/dotnet5.4/System.Collections.Concurrent.dll", - "ref/dotnet5.4/System.Collections.Concurrent.xml", - "ref/dotnet5.4/zh-hans/System.Collections.Concurrent.xml", - "ref/dotnet5.4/zh-hant/System.Collections.Concurrent.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Collections.Concurrent.xml", - "ref/netcore50/es/System.Collections.Concurrent.xml", - "ref/netcore50/fr/System.Collections.Concurrent.xml", - "ref/netcore50/it/System.Collections.Concurrent.xml", - "ref/netcore50/ja/System.Collections.Concurrent.xml", - "ref/netcore50/ko/System.Collections.Concurrent.xml", - "ref/netcore50/ru/System.Collections.Concurrent.xml", - "ref/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Collections.Concurrent.4.0.11-rc2-23601.nupkg", - "System.Collections.Concurrent.4.0.11-rc2-23601.nupkg.sha512", - "System.Collections.Concurrent.nuspec" - ] - }, - "System.ComponentModel/4.0.1-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "HTuyUHo+Kit2+r8+pI6SdhpY7K4IOm6KqvdHBmUr+l7PvzPDPJm5W/jZpS8rmzxd7U2IZJv9rdAMQC3QOgW/uQ==", - "files": [ - "lib/dotnet5.4/System.ComponentModel.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.ComponentModel.xml", - "ref/dotnet5.1/es/System.ComponentModel.xml", - "ref/dotnet5.1/fr/System.ComponentModel.xml", - "ref/dotnet5.1/it/System.ComponentModel.xml", - "ref/dotnet5.1/ja/System.ComponentModel.xml", - "ref/dotnet5.1/ko/System.ComponentModel.xml", - "ref/dotnet5.1/ru/System.ComponentModel.xml", - "ref/dotnet5.1/System.ComponentModel.dll", - "ref/dotnet5.1/System.ComponentModel.xml", - "ref/dotnet5.1/zh-hans/System.ComponentModel.xml", - "ref/dotnet5.1/zh-hant/System.ComponentModel.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.ComponentModel.xml", - "ref/netcore50/es/System.ComponentModel.xml", - "ref/netcore50/fr/System.ComponentModel.xml", - "ref/netcore50/it/System.ComponentModel.xml", - "ref/netcore50/ja/System.ComponentModel.xml", - "ref/netcore50/ko/System.ComponentModel.xml", - "ref/netcore50/ru/System.ComponentModel.xml", - "ref/netcore50/System.ComponentModel.dll", - "ref/netcore50/System.ComponentModel.xml", - "ref/netcore50/zh-hans/System.ComponentModel.xml", - "ref/netcore50/zh-hant/System.ComponentModel.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.ComponentModel.4.0.1-rc2-23601.nupkg", - "System.ComponentModel.4.0.1-rc2-23601.nupkg.sha512", - "System.ComponentModel.nuspec" - ] - }, - "System.ComponentModel.Primitives/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "8xElzEmEH5G6XK7qqxRLQ/2r1IuhXlkz0ZdgKNp6ViDD1ukadd+5hccqg1G/L4AYRy96ddMdvgyJjFW87Cegbw==", - "files": [ - "lib/dotnet/System.ComponentModel.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.ComponentModel.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.ComponentModel.Primitives.xml", - "ref/dotnet/es/System.ComponentModel.Primitives.xml", - "ref/dotnet/fr/System.ComponentModel.Primitives.xml", - "ref/dotnet/it/System.ComponentModel.Primitives.xml", - "ref/dotnet/ja/System.ComponentModel.Primitives.xml", - "ref/dotnet/ko/System.ComponentModel.Primitives.xml", - "ref/dotnet/ru/System.ComponentModel.Primitives.xml", - "ref/dotnet/System.ComponentModel.Primitives.dll", - "ref/dotnet/System.ComponentModel.Primitives.xml", - "ref/dotnet/zh-hans/System.ComponentModel.Primitives.xml", - "ref/dotnet/zh-hant/System.ComponentModel.Primitives.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.ComponentModel.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.ComponentModel.Primitives.4.0.0.nupkg", - "System.ComponentModel.Primitives.4.0.0.nupkg.sha512", - "System.ComponentModel.Primitives.nuspec" - ] - }, - "System.ComponentModel.TypeConverter/4.0.1-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "skmANI/0xmFTohXjbhlvtanEH+Rbim9fBm2IXCX3SzCJpJgfUiITxPkdxyuTdCs0eY4YfYf5YXmf2pxZ7iT7IA==", - "files": [ - "lib/dotnet5.1/System.ComponentModel.TypeConverter.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.TypeConverter.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/es/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/fr/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/it/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/ja/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/ko/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/ru/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll", - "ref/dotnet5.1/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/dotnet5.1/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.TypeConverter.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.ComponentModel.TypeConverter.4.0.1-rc2-23601.nupkg", - "System.ComponentModel.TypeConverter.4.0.1-rc2-23601.nupkg.sha512", - "System.ComponentModel.TypeConverter.nuspec" - ] - }, - "System.Console/4.0.0-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "hDAx1n3VV+89HvapnW+dNQjJteqacKnJDv1uPVeZx/8qhuZcZvg2xsSIuf5F5fc6J6Z+KnXAyTyoeDQgzsgcXQ==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Console.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Console.xml", - "ref/dotnet5.4/es/System.Console.xml", - "ref/dotnet5.4/fr/System.Console.xml", - "ref/dotnet5.4/it/System.Console.xml", - "ref/dotnet5.4/ja/System.Console.xml", - "ref/dotnet5.4/ko/System.Console.xml", - "ref/dotnet5.4/ru/System.Console.xml", - "ref/dotnet5.4/System.Console.dll", - "ref/dotnet5.4/System.Console.xml", - "ref/dotnet5.4/zh-hans/System.Console.xml", - "ref/dotnet5.4/zh-hant/System.Console.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Console.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Console.4.0.0-rc2-23601.nupkg", - "System.Console.4.0.0-rc2-23601.nupkg.sha512", - "System.Console.nuspec" - ] - }, - "System.Diagnostics.Contracts/4.0.1-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "y8ONydrPZ04lKMyVgBNKsSfGSqBDK0LkcUPFWjjsAP05vRhhekDMmljO+uK4dxqY26ArZo2YGEEIpSAmfwk2Rw==", - "files": [ - "lib/DNXCore50/System.Diagnostics.Contracts.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Contracts.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/es/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/fr/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/it/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/ja/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/ko/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/ru/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/System.Diagnostics.Contracts.dll", - "ref/dotnet5.1/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/zh-hans/System.Diagnostics.Contracts.xml", - "ref/dotnet5.1/zh-hant/System.Diagnostics.Contracts.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Diagnostics.Contracts.xml", - "ref/netcore50/es/System.Diagnostics.Contracts.xml", - "ref/netcore50/fr/System.Diagnostics.Contracts.xml", - "ref/netcore50/it/System.Diagnostics.Contracts.xml", - "ref/netcore50/ja/System.Diagnostics.Contracts.xml", - "ref/netcore50/ko/System.Diagnostics.Contracts.xml", - "ref/netcore50/ru/System.Diagnostics.Contracts.xml", - "ref/netcore50/System.Diagnostics.Contracts.dll", - "ref/netcore50/System.Diagnostics.Contracts.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", - "System.Diagnostics.Contracts.4.0.1-rc2-23601.nupkg", - "System.Diagnostics.Contracts.4.0.1-rc2-23601.nupkg.sha512", - "System.Diagnostics.Contracts.nuspec" - ] - }, - "System.Diagnostics.Debug/4.0.11-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "6CtVgMmjwssomCN2kn18JgF6eEeTAf9xeob0xjDonD6zaA+22Im3D5gtCMsgTsZAcnRdpP1BOKouCA050y7SVg==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/es/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/fr/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/it/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/ja/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/ko/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/ru/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/System.Diagnostics.Debug.dll", - "ref/dotnet5.1/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/zh-hans/System.Diagnostics.Debug.xml", - "ref/dotnet5.1/zh-hant/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/de/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/es/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/fr/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/it/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/ja/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/ko/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/ru/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/System.Diagnostics.Debug.dll", - "ref/dotnet5.4/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/zh-hans/System.Diagnostics.Debug.xml", - "ref/dotnet5.4/zh-hant/System.Diagnostics.Debug.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Diagnostics.Debug.xml", - "ref/netcore50/es/System.Diagnostics.Debug.xml", - "ref/netcore50/fr/System.Diagnostics.Debug.xml", - "ref/netcore50/it/System.Diagnostics.Debug.xml", - "ref/netcore50/ja/System.Diagnostics.Debug.xml", - "ref/netcore50/ko/System.Diagnostics.Debug.xml", - "ref/netcore50/ru/System.Diagnostics.Debug.xml", - "ref/netcore50/System.Diagnostics.Debug.dll", - "ref/netcore50/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Diagnostics.Debug.4.0.11-rc2-23601.nupkg", - "System.Diagnostics.Debug.4.0.11-rc2-23601.nupkg.sha512", - "System.Diagnostics.Debug.nuspec" - ] - }, - "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { - "type": "package", - "serviceable": true, - "sha512": "WHVhr5/p8UDjqNV7l9PCxZgOufE2tO4XOWva9pau9c7PzJJTdB1By6scO5dgHLpmlB/u4y27Y9AzT8AqtG8sxw==", - "files": [ - "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll", - "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Diagnostics.DiagnosticSource.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Diagnostics.DiagnosticSource.xml", - "System.Diagnostics.DiagnosticSource.4.0.0-beta-23516.nupkg", - "System.Diagnostics.DiagnosticSource.4.0.0-beta-23516.nupkg.sha512", - "System.Diagnostics.DiagnosticSource.nuspec" - ] - }, - "System.Diagnostics.StackTrace/4.0.1-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "HOZhvSjTfsa5iqilWVee7kUjJarYmjA0/rH3l93ly0mqY2us75InlOI38qltqwkYhdAfjuL2esDpHAsj8OmCGg==", - "files": [ - "lib/DNXCore50/System.Diagnostics.StackTrace.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.StackTrace.dll", - "lib/netcore50/System.Diagnostics.StackTrace.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Diagnostics.StackTrace.xml", - "ref/dotnet5.4/es/System.Diagnostics.StackTrace.xml", - "ref/dotnet5.4/fr/System.Diagnostics.StackTrace.xml", - "ref/dotnet5.4/it/System.Diagnostics.StackTrace.xml", - "ref/dotnet5.4/ja/System.Diagnostics.StackTrace.xml", - "ref/dotnet5.4/ko/System.Diagnostics.StackTrace.xml", - "ref/dotnet5.4/ru/System.Diagnostics.StackTrace.xml", - "ref/dotnet5.4/System.Diagnostics.StackTrace.dll", - "ref/dotnet5.4/System.Diagnostics.StackTrace.xml", - "ref/dotnet5.4/zh-hans/System.Diagnostics.StackTrace.xml", - "ref/dotnet5.4/zh-hant/System.Diagnostics.StackTrace.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.StackTrace.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll", - "System.Diagnostics.StackTrace.4.0.1-rc2-23601.nupkg", - "System.Diagnostics.StackTrace.4.0.1-rc2-23601.nupkg.sha512", - "System.Diagnostics.StackTrace.nuspec" - ] - }, - "System.Diagnostics.Tools/4.0.1-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "ca0aZGPFtBDuyOabtDz6WJZl2WiN4imtUmXYDXaxcMP8Uv7Z4Jl5LOW13IXrMzIAFsO8fabw5NsAVN3u8MZ4Vw==", - "files": [ - "lib/DNXCore50/System.Diagnostics.Tools.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Tools.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/es/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/fr/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/it/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/ja/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/ko/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/ru/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/System.Diagnostics.Tools.dll", - "ref/dotnet5.1/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/zh-hans/System.Diagnostics.Tools.xml", - "ref/dotnet5.1/zh-hant/System.Diagnostics.Tools.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Diagnostics.Tools.xml", - "ref/netcore50/es/System.Diagnostics.Tools.xml", - "ref/netcore50/fr/System.Diagnostics.Tools.xml", - "ref/netcore50/it/System.Diagnostics.Tools.xml", - "ref/netcore50/ja/System.Diagnostics.Tools.xml", - "ref/netcore50/ko/System.Diagnostics.Tools.xml", - "ref/netcore50/ru/System.Diagnostics.Tools.xml", - "ref/netcore50/System.Diagnostics.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", - "System.Diagnostics.Tools.4.0.1-rc2-23601.nupkg", - "System.Diagnostics.Tools.4.0.1-rc2-23601.nupkg.sha512", - "System.Diagnostics.Tools.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.0.0": { - "type": "package", - "sha512": "tzqQJPgD4bKs0eE5Gx9HEsxiHSBGcL42PImkjhwXTQK6iQbLTTB9mi+G7mUyEjlH8LUcm7F5QHEs+O+LpruOrQ==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Diagnostics.Tracing.xml", - "ref/dotnet/es/System.Diagnostics.Tracing.xml", - "ref/dotnet/fr/System.Diagnostics.Tracing.xml", - "ref/dotnet/it/System.Diagnostics.Tracing.xml", - "ref/dotnet/ja/System.Diagnostics.Tracing.xml", - "ref/dotnet/ko/System.Diagnostics.Tracing.xml", - "ref/dotnet/ru/System.Diagnostics.Tracing.xml", - "ref/dotnet/System.Diagnostics.Tracing.dll", - "ref/dotnet/System.Diagnostics.Tracing.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Diagnostics.Tracing.xml", - "ref/netcore50/es/System.Diagnostics.Tracing.xml", - "ref/netcore50/fr/System.Diagnostics.Tracing.xml", - "ref/netcore50/it/System.Diagnostics.Tracing.xml", - "ref/netcore50/ja/System.Diagnostics.Tracing.xml", - "ref/netcore50/ko/System.Diagnostics.Tracing.xml", - "ref/netcore50/ru/System.Diagnostics.Tracing.xml", - "ref/netcore50/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Diagnostics.Tracing.4.0.0.nupkg", - "System.Diagnostics.Tracing.4.0.0.nupkg.sha512", - "System.Diagnostics.Tracing.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "serviceable": true, - "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", - "files": [ - "lib/DNXCore50/System.Diagnostics.Tracing.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Diagnostics.Tracing.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.Diagnostics.Tracing.xml", - "ref/dotnet/es/System.Diagnostics.Tracing.xml", - "ref/dotnet/fr/System.Diagnostics.Tracing.xml", - "ref/dotnet/it/System.Diagnostics.Tracing.xml", - "ref/dotnet/ja/System.Diagnostics.Tracing.xml", - "ref/dotnet/ko/System.Diagnostics.Tracing.xml", - "ref/dotnet/ru/System.Diagnostics.Tracing.xml", - "ref/dotnet/System.Diagnostics.Tracing.dll", - "ref/dotnet/System.Diagnostics.Tracing.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", - "System.Diagnostics.Tracing.4.0.20.nupkg", - "System.Diagnostics.Tracing.4.0.20.nupkg.sha512", - "System.Diagnostics.Tracing.nuspec" - ] - }, - "System.Dynamic.Runtime/4.0.11-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "OmCvJeLa3kjUgQ6hr2a3bvfqONJp57Zu5FlOWDeyRNuXMhFaTJ1RFlDHVX9r2Q9wQHWe9npo1cbTxEqLmTDCDg==", - "files": [ - "lib/DNXCore50/System.Dynamic.Runtime.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Dynamic.Runtime.xml", - "ref/dotnet5.1/es/System.Dynamic.Runtime.xml", - "ref/dotnet5.1/fr/System.Dynamic.Runtime.xml", - "ref/dotnet5.1/it/System.Dynamic.Runtime.xml", - "ref/dotnet5.1/ja/System.Dynamic.Runtime.xml", - "ref/dotnet5.1/ko/System.Dynamic.Runtime.xml", - "ref/dotnet5.1/ru/System.Dynamic.Runtime.xml", - "ref/dotnet5.1/System.Dynamic.Runtime.dll", - "ref/dotnet5.1/System.Dynamic.Runtime.xml", - "ref/dotnet5.1/zh-hans/System.Dynamic.Runtime.xml", - "ref/dotnet5.1/zh-hant/System.Dynamic.Runtime.xml", - "ref/dotnet5.4/de/System.Dynamic.Runtime.xml", - "ref/dotnet5.4/es/System.Dynamic.Runtime.xml", - "ref/dotnet5.4/fr/System.Dynamic.Runtime.xml", - "ref/dotnet5.4/it/System.Dynamic.Runtime.xml", - "ref/dotnet5.4/ja/System.Dynamic.Runtime.xml", - "ref/dotnet5.4/ko/System.Dynamic.Runtime.xml", - "ref/dotnet5.4/ru/System.Dynamic.Runtime.xml", - "ref/dotnet5.4/System.Dynamic.Runtime.dll", - "ref/dotnet5.4/System.Dynamic.Runtime.xml", - "ref/dotnet5.4/zh-hans/System.Dynamic.Runtime.xml", - "ref/dotnet5.4/zh-hant/System.Dynamic.Runtime.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Dynamic.Runtime.xml", - "ref/netcore50/es/System.Dynamic.Runtime.xml", - "ref/netcore50/fr/System.Dynamic.Runtime.xml", - "ref/netcore50/it/System.Dynamic.Runtime.xml", - "ref/netcore50/ja/System.Dynamic.Runtime.xml", - "ref/netcore50/ko/System.Dynamic.Runtime.xml", - "ref/netcore50/ru/System.Dynamic.Runtime.xml", - "ref/netcore50/System.Dynamic.Runtime.dll", - "ref/netcore50/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", - "System.Dynamic.Runtime.4.0.11-rc2-23601.nupkg", - "System.Dynamic.Runtime.4.0.11-rc2-23601.nupkg.sha512", - "System.Dynamic.Runtime.nuspec" - ] - }, - "System.Globalization/4.0.11-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "Fx8Ip9lDIsPIShSpLzUUXKzi2/UsYBWP8ZXV6EjkeG708CthVVOp/HiR8VSM50tmbU90LTkqIso69YefN7OpcQ==", - "files": [ - "lib/DNXCore50/System.Globalization.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Globalization.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Globalization.xml", - "ref/dotnet5.1/es/System.Globalization.xml", - "ref/dotnet5.1/fr/System.Globalization.xml", - "ref/dotnet5.1/it/System.Globalization.xml", - "ref/dotnet5.1/ja/System.Globalization.xml", - "ref/dotnet5.1/ko/System.Globalization.xml", - "ref/dotnet5.1/ru/System.Globalization.xml", - "ref/dotnet5.1/System.Globalization.dll", - "ref/dotnet5.1/System.Globalization.xml", - "ref/dotnet5.1/zh-hans/System.Globalization.xml", - "ref/dotnet5.1/zh-hant/System.Globalization.xml", - "ref/dotnet5.4/de/System.Globalization.xml", - "ref/dotnet5.4/es/System.Globalization.xml", - "ref/dotnet5.4/fr/System.Globalization.xml", - "ref/dotnet5.4/it/System.Globalization.xml", - "ref/dotnet5.4/ja/System.Globalization.xml", - "ref/dotnet5.4/ko/System.Globalization.xml", - "ref/dotnet5.4/ru/System.Globalization.xml", - "ref/dotnet5.4/System.Globalization.dll", - "ref/dotnet5.4/System.Globalization.xml", - "ref/dotnet5.4/zh-hans/System.Globalization.xml", - "ref/dotnet5.4/zh-hant/System.Globalization.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Globalization.xml", - "ref/netcore50/es/System.Globalization.xml", - "ref/netcore50/fr/System.Globalization.xml", - "ref/netcore50/it/System.Globalization.xml", - "ref/netcore50/ja/System.Globalization.xml", - "ref/netcore50/ko/System.Globalization.xml", - "ref/netcore50/ru/System.Globalization.xml", - "ref/netcore50/System.Globalization.dll", - "ref/netcore50/System.Globalization.xml", - "ref/netcore50/zh-hans/System.Globalization.xml", - "ref/netcore50/zh-hant/System.Globalization.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", - "System.Globalization.4.0.11-rc2-23601.nupkg", - "System.Globalization.4.0.11-rc2-23601.nupkg.sha512", - "System.Globalization.nuspec" - ] - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", - "files": [ - "lib/DNXCore50/System.Globalization.Calendars.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Calendars.dll", - "lib/netcore50/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.Globalization.Calendars.xml", - "ref/dotnet/es/System.Globalization.Calendars.xml", - "ref/dotnet/fr/System.Globalization.Calendars.xml", - "ref/dotnet/it/System.Globalization.Calendars.xml", - "ref/dotnet/ja/System.Globalization.Calendars.xml", - "ref/dotnet/ko/System.Globalization.Calendars.xml", - "ref/dotnet/ru/System.Globalization.Calendars.xml", - "ref/dotnet/System.Globalization.Calendars.dll", - "ref/dotnet/System.Globalization.Calendars.xml", - "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", - "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Calendars.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", - "System.Globalization.Calendars.4.0.0.nupkg", - "System.Globalization.Calendars.4.0.0.nupkg.sha512", - "System.Globalization.Calendars.nuspec" - ] - }, - "System.Globalization.Extensions/4.0.1-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "W3/+6UK/Ehetvx60LxoUD47qqNrcB/F2BiVM/X1jH2/BmO+ezVq9TCOAgqrVBLWalcXx6HoCn4whg2+NVVeSNQ==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Globalization.Extensions.xml", - "ref/dotnet5.4/es/System.Globalization.Extensions.xml", - "ref/dotnet5.4/fr/System.Globalization.Extensions.xml", - "ref/dotnet5.4/it/System.Globalization.Extensions.xml", - "ref/dotnet5.4/ja/System.Globalization.Extensions.xml", - "ref/dotnet5.4/ko/System.Globalization.Extensions.xml", - "ref/dotnet5.4/ru/System.Globalization.Extensions.xml", - "ref/dotnet5.4/System.Globalization.Extensions.dll", - "ref/dotnet5.4/System.Globalization.Extensions.xml", - "ref/dotnet5.4/zh-hans/System.Globalization.Extensions.xml", - "ref/dotnet5.4/zh-hant/System.Globalization.Extensions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Extensions.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Globalization.Extensions.4.0.1-rc2-23601.nupkg", - "System.Globalization.Extensions.4.0.1-rc2-23601.nupkg.sha512", - "System.Globalization.Extensions.nuspec" - ] - }, - "System.IO/4.0.11-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "M246HBUKulSQXGNMYPtW53WmU1u1mfPnEINHLzWLZBa4ErH2LMlhtv8U3QXZ6ksB6DE4HjJ8Bd5ADayFnZADDQ==", - "files": [ - "lib/DNXCore50/System.IO.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.IO.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.IO.xml", - "ref/dotnet5.1/es/System.IO.xml", - "ref/dotnet5.1/fr/System.IO.xml", - "ref/dotnet5.1/it/System.IO.xml", - "ref/dotnet5.1/ja/System.IO.xml", - "ref/dotnet5.1/ko/System.IO.xml", - "ref/dotnet5.1/ru/System.IO.xml", - "ref/dotnet5.1/System.IO.dll", - "ref/dotnet5.1/System.IO.xml", - "ref/dotnet5.1/zh-hans/System.IO.xml", - "ref/dotnet5.1/zh-hant/System.IO.xml", - "ref/dotnet5.4/de/System.IO.xml", - "ref/dotnet5.4/es/System.IO.xml", - "ref/dotnet5.4/fr/System.IO.xml", - "ref/dotnet5.4/it/System.IO.xml", - "ref/dotnet5.4/ja/System.IO.xml", - "ref/dotnet5.4/ko/System.IO.xml", - "ref/dotnet5.4/ru/System.IO.xml", - "ref/dotnet5.4/System.IO.dll", - "ref/dotnet5.4/System.IO.xml", - "ref/dotnet5.4/zh-hans/System.IO.xml", - "ref/dotnet5.4/zh-hant/System.IO.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.IO.xml", - "ref/netcore50/es/System.IO.xml", - "ref/netcore50/fr/System.IO.xml", - "ref/netcore50/it/System.IO.xml", - "ref/netcore50/ja/System.IO.xml", - "ref/netcore50/ko/System.IO.xml", - "ref/netcore50/ru/System.IO.xml", - "ref/netcore50/System.IO.dll", - "ref/netcore50/System.IO.xml", - "ref/netcore50/zh-hans/System.IO.xml", - "ref/netcore50/zh-hant/System.IO.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.IO.dll", - "System.IO.4.0.11-rc2-23601.nupkg", - "System.IO.4.0.11-rc2-23601.nupkg.sha512", - "System.IO.nuspec" - ] - }, - "System.IO.FileSystem/4.0.1-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "EgEsNcXnyYvoWd1nf+ITPDqHfoXxMyGzuBlRkEUauEIBEOacNNCjxbw61e9LlUHLtE3vVRKTbukKbv2gHU1uDA==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.IO.FileSystem.xml", - "ref/dotnet5.4/es/System.IO.FileSystem.xml", - "ref/dotnet5.4/fr/System.IO.FileSystem.xml", - "ref/dotnet5.4/it/System.IO.FileSystem.xml", - "ref/dotnet5.4/ja/System.IO.FileSystem.xml", - "ref/dotnet5.4/ko/System.IO.FileSystem.xml", - "ref/dotnet5.4/ru/System.IO.FileSystem.xml", - "ref/dotnet5.4/System.IO.FileSystem.dll", - "ref/dotnet5.4/System.IO.FileSystem.xml", - "ref/dotnet5.4/zh-hans/System.IO.FileSystem.xml", - "ref/dotnet5.4/zh-hant/System.IO.FileSystem.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.IO.FileSystem.4.0.1-rc2-23601.nupkg", - "System.IO.FileSystem.4.0.1-rc2-23601.nupkg.sha512", - "System.IO.FileSystem.nuspec" - ] - }, - "System.IO.FileSystem.Primitives/4.0.1-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "sxPud9ZtaVyUxQ0lqlBsnycvHR4G8Dih61YzSzftfC3AOH18+UqtjIuhXtF7eghEREFpJm1NR224pAXVkfm8pg==", - "files": [ - "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.IO.FileSystem.Primitives.xml", - "ref/dotnet5.4/es/System.IO.FileSystem.Primitives.xml", - "ref/dotnet5.4/fr/System.IO.FileSystem.Primitives.xml", - "ref/dotnet5.4/it/System.IO.FileSystem.Primitives.xml", - "ref/dotnet5.4/ja/System.IO.FileSystem.Primitives.xml", - "ref/dotnet5.4/ko/System.IO.FileSystem.Primitives.xml", - "ref/dotnet5.4/ru/System.IO.FileSystem.Primitives.xml", - "ref/dotnet5.4/System.IO.FileSystem.Primitives.dll", - "ref/dotnet5.4/System.IO.FileSystem.Primitives.xml", - "ref/dotnet5.4/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/dotnet5.4/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.IO.FileSystem.Primitives.4.0.1-rc2-23601.nupkg", - "System.IO.FileSystem.Primitives.4.0.1-rc2-23601.nupkg.sha512", - "System.IO.FileSystem.Primitives.nuspec" - ] - }, - "System.IO.FileSystem.Watcher/4.0.0-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "YK1CAOpuL3MmrH+EJWoWwilMrVdN9ioV/BXWhPgJiCUSaoykJWeyjz7f744a7H7nY4fnuLm08I5D4HP+5CVYAQ==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Watcher.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.IO.FileSystem.Watcher.xml", - "ref/dotnet5.4/es/System.IO.FileSystem.Watcher.xml", - "ref/dotnet5.4/fr/System.IO.FileSystem.Watcher.xml", - "ref/dotnet5.4/it/System.IO.FileSystem.Watcher.xml", - "ref/dotnet5.4/ja/System.IO.FileSystem.Watcher.xml", - "ref/dotnet5.4/ko/System.IO.FileSystem.Watcher.xml", - "ref/dotnet5.4/ru/System.IO.FileSystem.Watcher.xml", - "ref/dotnet5.4/System.IO.FileSystem.Watcher.dll", - "ref/dotnet5.4/System.IO.FileSystem.Watcher.xml", - "ref/dotnet5.4/zh-hans/System.IO.FileSystem.Watcher.xml", - "ref/dotnet5.4/zh-hant/System.IO.FileSystem.Watcher.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Watcher.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.IO.FileSystem.Watcher.4.0.0-rc2-23601.nupkg", - "System.IO.FileSystem.Watcher.4.0.0-rc2-23601.nupkg.sha512", - "System.IO.FileSystem.Watcher.nuspec" - ] - }, - "System.Linq/4.0.1-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "kGrzJd/HYU8ndOZ70xU6fET/y0tIR5oKfOLthDAbUrdD6n9k703gL3OOM3DtG+4qgEIyyhHM0I5iYZ59q6yneg==", - "files": [ - "lib/dotnet5.4/System.Linq.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Linq.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Linq.xml", - "ref/dotnet5.1/es/System.Linq.xml", - "ref/dotnet5.1/fr/System.Linq.xml", - "ref/dotnet5.1/it/System.Linq.xml", - "ref/dotnet5.1/ja/System.Linq.xml", - "ref/dotnet5.1/ko/System.Linq.xml", - "ref/dotnet5.1/ru/System.Linq.xml", - "ref/dotnet5.1/System.Linq.dll", - "ref/dotnet5.1/System.Linq.xml", - "ref/dotnet5.1/zh-hans/System.Linq.xml", - "ref/dotnet5.1/zh-hant/System.Linq.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Linq.xml", - "ref/netcore50/es/System.Linq.xml", - "ref/netcore50/fr/System.Linq.xml", - "ref/netcore50/it/System.Linq.xml", - "ref/netcore50/ja/System.Linq.xml", - "ref/netcore50/ko/System.Linq.xml", - "ref/netcore50/ru/System.Linq.xml", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/netcore50/zh-hans/System.Linq.xml", - "ref/netcore50/zh-hant/System.Linq.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Linq.4.0.1-rc2-23601.nupkg", - "System.Linq.4.0.1-rc2-23601.nupkg.sha512", - "System.Linq.nuspec" - ] - }, - "System.Linq.Expressions/4.0.11-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "P8toY8qe6geTDfW2EiimOb4GQyEya3xH5FuVUINqV9FqlCamKcdW4Hu+GlDSFF2bOof8WKNBtU0bUJT43g0o6g==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Linq.Expressions.xml", - "ref/dotnet5.1/es/System.Linq.Expressions.xml", - "ref/dotnet5.1/fr/System.Linq.Expressions.xml", - "ref/dotnet5.1/it/System.Linq.Expressions.xml", - "ref/dotnet5.1/ja/System.Linq.Expressions.xml", - "ref/dotnet5.1/ko/System.Linq.Expressions.xml", - "ref/dotnet5.1/ru/System.Linq.Expressions.xml", - "ref/dotnet5.1/System.Linq.Expressions.dll", - "ref/dotnet5.1/System.Linq.Expressions.xml", - "ref/dotnet5.1/zh-hans/System.Linq.Expressions.xml", - "ref/dotnet5.1/zh-hant/System.Linq.Expressions.xml", - "ref/dotnet5.4/de/System.Linq.Expressions.xml", - "ref/dotnet5.4/es/System.Linq.Expressions.xml", - "ref/dotnet5.4/fr/System.Linq.Expressions.xml", - "ref/dotnet5.4/it/System.Linq.Expressions.xml", - "ref/dotnet5.4/ja/System.Linq.Expressions.xml", - "ref/dotnet5.4/ko/System.Linq.Expressions.xml", - "ref/dotnet5.4/ru/System.Linq.Expressions.xml", - "ref/dotnet5.4/System.Linq.Expressions.dll", - "ref/dotnet5.4/System.Linq.Expressions.xml", - "ref/dotnet5.4/zh-hans/System.Linq.Expressions.xml", - "ref/dotnet5.4/zh-hant/System.Linq.Expressions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Linq.Expressions.4.0.11-rc2-23601.nupkg", - "System.Linq.Expressions.4.0.11-rc2-23601.nupkg.sha512", - "System.Linq.Expressions.nuspec" - ] - }, - "System.Net.Http/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==", - "files": [ - "lib/DNXCore50/System.Net.Http.dll", - "lib/net45/_._", - "lib/netcore50/System.Net.Http.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/de/System.Net.Http.xml", - "ref/dotnet/es/System.Net.Http.xml", - "ref/dotnet/fr/System.Net.Http.xml", - "ref/dotnet/it/System.Net.Http.xml", - "ref/dotnet/ja/System.Net.Http.xml", - "ref/dotnet/ko/System.Net.Http.xml", - "ref/dotnet/ru/System.Net.Http.xml", - "ref/dotnet/System.Net.Http.dll", - "ref/dotnet/System.Net.Http.xml", - "ref/dotnet/zh-hans/System.Net.Http.xml", - "ref/dotnet/zh-hant/System.Net.Http.xml", - "ref/net45/_._", - "ref/netcore50/System.Net.Http.dll", - "ref/netcore50/System.Net.Http.xml", - "ref/win8/_._", - "ref/wpa81/_._", - "System.Net.Http.4.0.0.nupkg", - "System.Net.Http.4.0.0.nupkg.sha512", - "System.Net.Http.nuspec" - ] - }, - "System.Net.Primitives/4.0.11-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "PMms1jdNQr54gZDnnc70ESo6s7igx4M0hWmyxZrAbh3Q/leEwXqD/r2bdBQUDAE8GJdxuOnJfwHfetGStzNx9w==", - "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Net.Primitives.xml", - "ref/dotnet5.1/es/System.Net.Primitives.xml", - "ref/dotnet5.1/fr/System.Net.Primitives.xml", - "ref/dotnet5.1/it/System.Net.Primitives.xml", - "ref/dotnet5.1/ja/System.Net.Primitives.xml", - "ref/dotnet5.1/ko/System.Net.Primitives.xml", - "ref/dotnet5.1/ru/System.Net.Primitives.xml", - "ref/dotnet5.1/System.Net.Primitives.dll", - "ref/dotnet5.1/System.Net.Primitives.xml", - "ref/dotnet5.1/zh-hans/System.Net.Primitives.xml", - "ref/dotnet5.1/zh-hant/System.Net.Primitives.xml", - "ref/dotnet5.2/de/System.Net.Primitives.xml", - "ref/dotnet5.2/es/System.Net.Primitives.xml", - "ref/dotnet5.2/fr/System.Net.Primitives.xml", - "ref/dotnet5.2/it/System.Net.Primitives.xml", - "ref/dotnet5.2/ja/System.Net.Primitives.xml", - "ref/dotnet5.2/ko/System.Net.Primitives.xml", - "ref/dotnet5.2/ru/System.Net.Primitives.xml", - "ref/dotnet5.2/System.Net.Primitives.dll", - "ref/dotnet5.2/System.Net.Primitives.xml", - "ref/dotnet5.2/zh-hans/System.Net.Primitives.xml", - "ref/dotnet5.2/zh-hant/System.Net.Primitives.xml", - "ref/dotnet5.4/de/System.Net.Primitives.xml", - "ref/dotnet5.4/es/System.Net.Primitives.xml", - "ref/dotnet5.4/fr/System.Net.Primitives.xml", - "ref/dotnet5.4/it/System.Net.Primitives.xml", - "ref/dotnet5.4/ja/System.Net.Primitives.xml", - "ref/dotnet5.4/ko/System.Net.Primitives.xml", - "ref/dotnet5.4/ru/System.Net.Primitives.xml", - "ref/dotnet5.4/System.Net.Primitives.dll", - "ref/dotnet5.4/System.Net.Primitives.xml", - "ref/dotnet5.4/zh-hans/System.Net.Primitives.xml", - "ref/dotnet5.4/zh-hant/System.Net.Primitives.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Net.Primitives.xml", - "ref/netcore50/es/System.Net.Primitives.xml", - "ref/netcore50/fr/System.Net.Primitives.xml", - "ref/netcore50/it/System.Net.Primitives.xml", - "ref/netcore50/ja/System.Net.Primitives.xml", - "ref/netcore50/ko/System.Net.Primitives.xml", - "ref/netcore50/ru/System.Net.Primitives.xml", - "ref/netcore50/System.Net.Primitives.dll", - "ref/netcore50/System.Net.Primitives.xml", - "ref/netcore50/zh-hans/System.Net.Primitives.xml", - "ref/netcore50/zh-hant/System.Net.Primitives.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Net.Primitives.4.0.11-rc2-23601.nupkg", - "System.Net.Primitives.4.0.11-rc2-23601.nupkg.sha512", - "System.Net.Primitives.nuspec" - ] - }, - "System.Net.WebSockets/4.0.0-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "nSg1Tn7wiNI0E9n1FP/UbZSu/K3scKrDDm8eUMGh95U7eaEOyYPzZlUgnQDhXFFmQ9ndL0UmOzbvuzZc6xCvqg==", - "files": [ - "lib/dotnet5.4/System.Net.WebSockets.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.WebSockets.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Net.WebSockets.xml", - "ref/dotnet5.4/es/System.Net.WebSockets.xml", - "ref/dotnet5.4/fr/System.Net.WebSockets.xml", - "ref/dotnet5.4/it/System.Net.WebSockets.xml", - "ref/dotnet5.4/ja/System.Net.WebSockets.xml", - "ref/dotnet5.4/ko/System.Net.WebSockets.xml", - "ref/dotnet5.4/ru/System.Net.WebSockets.xml", - "ref/dotnet5.4/System.Net.WebSockets.dll", - "ref/dotnet5.4/System.Net.WebSockets.xml", - "ref/dotnet5.4/zh-hans/System.Net.WebSockets.xml", - "ref/dotnet5.4/zh-hant/System.Net.WebSockets.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.WebSockets.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Net.WebSockets.4.0.0-rc2-23601.nupkg", - "System.Net.WebSockets.4.0.0-rc2-23601.nupkg.sha512", - "System.Net.WebSockets.nuspec" - ] - }, - "System.ObjectModel/4.0.11-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "w7J3ZF/xi8qEwu4v5GT5C5E3ln41hDIMK3iX61523ohxfbMqa1i7C8FKR578yFDNPb8NaxgeahLr2Kenaygi0w==", - "files": [ - "lib/dotnet5.4/System.ObjectModel.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.ObjectModel.xml", - "ref/dotnet5.1/es/System.ObjectModel.xml", - "ref/dotnet5.1/fr/System.ObjectModel.xml", - "ref/dotnet5.1/it/System.ObjectModel.xml", - "ref/dotnet5.1/ja/System.ObjectModel.xml", - "ref/dotnet5.1/ko/System.ObjectModel.xml", - "ref/dotnet5.1/ru/System.ObjectModel.xml", - "ref/dotnet5.1/System.ObjectModel.dll", - "ref/dotnet5.1/System.ObjectModel.xml", - "ref/dotnet5.1/zh-hans/System.ObjectModel.xml", - "ref/dotnet5.1/zh-hant/System.ObjectModel.xml", - "ref/dotnet5.4/de/System.ObjectModel.xml", - "ref/dotnet5.4/es/System.ObjectModel.xml", - "ref/dotnet5.4/fr/System.ObjectModel.xml", - "ref/dotnet5.4/it/System.ObjectModel.xml", - "ref/dotnet5.4/ja/System.ObjectModel.xml", - "ref/dotnet5.4/ko/System.ObjectModel.xml", - "ref/dotnet5.4/ru/System.ObjectModel.xml", - "ref/dotnet5.4/System.ObjectModel.dll", - "ref/dotnet5.4/System.ObjectModel.xml", - "ref/dotnet5.4/zh-hans/System.ObjectModel.xml", - "ref/dotnet5.4/zh-hant/System.ObjectModel.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "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/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.ObjectModel.4.0.11-rc2-23601.nupkg", - "System.ObjectModel.4.0.11-rc2-23601.nupkg.sha512", - "System.ObjectModel.nuspec" - ] - }, - "System.Reflection/4.1.0-beta-23225": { - "type": "package", - "serviceable": true, - "sha512": "WbLtaCxoe5XdqEyZuGpemSQ8YBJ8cj11zx+yxOxJfHbNrmu7oMQ29+J50swaqg3soUc3BVBMqfIhb/7gocDHQA==", - "files": [ - "lib/DNXCore50/System.Reflection.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Reflection.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Reflection.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", - "System.Reflection.4.1.0-beta-23225.nupkg", - "System.Reflection.4.1.0-beta-23225.nupkg.sha512", - "System.Reflection.nuspec" - ] - }, - "System.Reflection.Emit/4.0.1-rc2-23601": { - "type": "package", - "serviceable": true, - "sha512": "wPxtMTkKx8mfT4pClvFB3+T/p9LAU2zyGP9EPYujkISLZ1ft2g9xXZlDe+Jl9vj3YwVYM8OyezXCm0hQ7B437g==", - "files": [ - "lib/DNXCore50/System.Reflection.Emit.dll", - "lib/MonoAndroid10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/xamarinmac20/_._", - "ref/dotnet5.2/de/System.Reflection.Emit.xml", - "ref/dotnet5.2/es/System.Reflection.Emit.xml", - "ref/dotnet5.2/fr/System.Reflection.Emit.xml", - "ref/dotnet5.2/it/System.Reflection.Emit.xml", - "ref/dotnet5.2/ja/System.Reflection.Emit.xml", - "ref/dotnet5.2/ko/System.Reflection.Emit.xml", - "ref/dotnet5.2/ru/System.Reflection.Emit.xml", - "ref/dotnet5.2/System.Reflection.Emit.dll", - "ref/dotnet5.2/System.Reflection.Emit.xml", - "ref/dotnet5.2/zh-hans/System.Reflection.Emit.xml", - "ref/dotnet5.2/zh-hant/System.Reflection.Emit.xml", - "ref/MonoAndroid10/_._", - "ref/net45/_._", - "ref/xamarinmac20/_._", - "runtimes/aot/lib/netcore50/_._", - "System.Reflection.Emit.4.0.1-rc2-23601.nupkg", - "System.Reflection.Emit.4.0.1-rc2-23601.nupkg.sha512", - "System.Reflection.Emit.nuspec" - ] + "frameworkAssemblies": [ + "System.Web" + ] + } + } + }, + "libraries": { + "Glimpse.Common/2.0.0": { + "type": "project", + "path": "../Glimpse.Common/project.json" }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "type": "package", - "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", - "files": [ - "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/wp80/_._", - "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", - "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", - "ref/net45/_._", - "ref/wp80/_._", - "System.Reflection.Emit.ILGeneration.4.0.0.nupkg", - "System.Reflection.Emit.ILGeneration.4.0.0.nupkg.sha512", - "System.Reflection.Emit.ILGeneration.nuspec" - ] + "SystemWebAdapter/1.0.0": { + "type": "project", + "path": "../../wrap/SystemWebAdapter/project.json" }, - "System.Reflection.Emit.Lightweight/4.0.1-rc2-23601": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc2-15854": { "type": "package", "serviceable": true, - "sha512": "/YhofGMpakJbes0jmsN6os901aZojB5NzcQ83tNHNpydKGfo9WvavSnx5DFnUz2bjoFUf/4P2TGirLDqw2o2ag==", + "sha512": "38s+BbCvBvGibvi9w0A9023aZGyNjfTJvsEzDPDbQekH1WmCNYGqbevkmnTYQocuj2m+zzGv+J8pXKWnMmXCIg==", "files": [ - "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/wp80/_._", - "ref/dotnet5.1/de/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet5.1/es/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet5.1/fr/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet5.1/it/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet5.1/ja/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet5.1/ko/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet5.1/ru/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet5.1/System.Reflection.Emit.Lightweight.dll", - "ref/dotnet5.1/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet5.1/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet5.1/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/net45/_._", - "ref/wp80/_._", - "runtimes/aot/lib/netcore50/_._", - "System.Reflection.Emit.Lightweight.4.0.1-rc2-23601.nupkg", - "System.Reflection.Emit.Lightweight.4.0.1-rc2-23601.nupkg.sha512", - "System.Reflection.Emit.Lightweight.nuspec" + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.xml", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc2-15854.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc2-15854.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec" ] }, - "System.Reflection.Extensions/4.0.1-rc2-23601": { + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc2-15854": { "type": "package", "serviceable": true, - "sha512": "ncXXyE+FSY4+HqwbP0AU26hwU0mCuhThiT8eVxJWswFJFOtUP+yPP/tTlmTUv0VehDgu/l/2HRKXe28ZvMKezA==", + "sha512": "oU740m6pwnpES0vIGjxSH78V5KW6bgpY3CAytGXZUPnZJi1d7OTxoZ46kdespHC3vO/9wcg53VK4XOwzIbzRMg==", "files": [ - "lib/DNXCore50/System.Reflection.Extensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Extensions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Reflection.Extensions.xml", - "ref/dotnet5.1/es/System.Reflection.Extensions.xml", - "ref/dotnet5.1/fr/System.Reflection.Extensions.xml", - "ref/dotnet5.1/it/System.Reflection.Extensions.xml", - "ref/dotnet5.1/ja/System.Reflection.Extensions.xml", - "ref/dotnet5.1/ko/System.Reflection.Extensions.xml", - "ref/dotnet5.1/ru/System.Reflection.Extensions.xml", - "ref/dotnet5.1/System.Reflection.Extensions.dll", - "ref/dotnet5.1/System.Reflection.Extensions.xml", - "ref/dotnet5.1/zh-hans/System.Reflection.Extensions.xml", - "ref/dotnet5.1/zh-hant/System.Reflection.Extensions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "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/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", - "System.Reflection.Extensions.4.0.1-rc2-23601.nupkg", - "System.Reflection.Extensions.4.0.1-rc2-23601.nupkg.sha512", - "System.Reflection.Extensions.nuspec" + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/net451/Microsoft.AspNet.FileProviders.Physical.xml", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-rc2-15854.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-rc2-15854.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec" ] }, - "System.Reflection.Primitives/4.0.0": { + "Microsoft.AspNet.Http/1.0.0-rc2-16021": { "type": "package", "serviceable": true, - "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", + "sha512": "YIkfXklSZ+y9NtfqTCXPJVieXaHKhpk2qRqdqwHqbg1bfAHOgo8XbFQvrPnqCqAWJ4NqOm8MPy8tw9wfM3kcVQ==", "files": [ - "lib/DNXCore50/System.Reflection.Primitives.dll", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Primitives.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/de/System.Reflection.Primitives.xml", - "ref/dotnet/es/System.Reflection.Primitives.xml", - "ref/dotnet/fr/System.Reflection.Primitives.xml", - "ref/dotnet/it/System.Reflection.Primitives.xml", - "ref/dotnet/ja/System.Reflection.Primitives.xml", - "ref/dotnet/ko/System.Reflection.Primitives.xml", - "ref/dotnet/ru/System.Reflection.Primitives.xml", - "ref/dotnet/System.Reflection.Primitives.dll", - "ref/dotnet/System.Reflection.Primitives.xml", - "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", - "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", - "System.Reflection.Primitives.4.0.0.nupkg", - "System.Reflection.Primitives.4.0.0.nupkg.sha512", - "System.Reflection.Primitives.nuspec" + "lib/dotnet5.4/Microsoft.AspNet.Http.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.xml", + "lib/net451/Microsoft.AspNet.Http.dll", + "lib/net451/Microsoft.AspNet.Http.xml", + "Microsoft.AspNet.Http.1.0.0-rc2-16021.nupkg", + "Microsoft.AspNet.Http.1.0.0-rc2-16021.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec" ] }, - "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc2-16021": { "type": "package", "serviceable": true, - "sha512": "n8m144jjCwhN/qtLih35a2sO33fLWm1U3eg51KxqAcAjJcw0nq1zWie8FZognBTPv7BXdW/G8xGbbvDGFoJwZA==", + "sha512": "k0fHOeV4KIyRnuc/O19gekDSjyzakbBVI/2K+HT4zWSKHMRMQSy6hnFPT0xggRx9mpRihKx3vmh8afaMY/vL9Q==", "files": [ - "lib/DNXCore50/de/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/es/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/fr/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/it/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/ja/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/ko/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/ru/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/System.Reflection.TypeExtensions.dll", - "lib/DNXCore50/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/zh-hans/System.Reflection.TypeExtensions.xml", - "lib/DNXCore50/zh-hant/System.Reflection.TypeExtensions.xml", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/de/System.Reflection.TypeExtensions.xml", - "lib/net46/es/System.Reflection.TypeExtensions.xml", - "lib/net46/fr/System.Reflection.TypeExtensions.xml", - "lib/net46/it/System.Reflection.TypeExtensions.xml", - "lib/net46/ja/System.Reflection.TypeExtensions.xml", - "lib/net46/ko/System.Reflection.TypeExtensions.xml", - "lib/net46/ru/System.Reflection.TypeExtensions.xml", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net46/System.Reflection.TypeExtensions.xml", - "lib/net46/zh-hans/System.Reflection.TypeExtensions.xml", - "lib/net46/zh-hant/System.Reflection.TypeExtensions.xml", - "lib/netcore50/de/System.Reflection.TypeExtensions.xml", - "lib/netcore50/es/System.Reflection.TypeExtensions.xml", - "lib/netcore50/fr/System.Reflection.TypeExtensions.xml", - "lib/netcore50/it/System.Reflection.TypeExtensions.xml", - "lib/netcore50/ja/System.Reflection.TypeExtensions.xml", - "lib/netcore50/ko/System.Reflection.TypeExtensions.xml", - "lib/netcore50/ru/System.Reflection.TypeExtensions.xml", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.xml", - "lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml", - "lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Reflection.TypeExtensions.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/de/System.Reflection.TypeExtensions.xml", - "ref/net46/es/System.Reflection.TypeExtensions.xml", - "ref/net46/fr/System.Reflection.TypeExtensions.xml", - "ref/net46/it/System.Reflection.TypeExtensions.xml", - "ref/net46/ja/System.Reflection.TypeExtensions.xml", - "ref/net46/ko/System.Reflection.TypeExtensions.xml", - "ref/net46/ru/System.Reflection.TypeExtensions.xml", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net46/System.Reflection.TypeExtensions.xml", - "ref/net46/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/net46/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/de/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/es/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/fr/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/it/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/ja/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/ko/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/ru/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml", - "System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg", - "System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg.sha512", - "System.Reflection.TypeExtensions.nuspec" + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.xml", + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll", + "lib/net451/Microsoft.AspNet.Http.Abstractions.xml", + "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16021.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-rc2-16021.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec" ] }, - "System.Resources.ResourceManager/4.0.1-rc2-23601": { + "Microsoft.AspNet.Http.Features/1.0.0-rc2-16021": { "type": "package", "serviceable": true, - "sha512": "EMrTq51+HRQ76cbeetdggg5mIGzboMPbR01WSJXkTE+iGX4vwbTz1XSqBxBz/9pzia8j4UWv8MSaGPThcqETrg==", - "files": [ - "lib/DNXCore50/System.Resources.ResourceManager.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Resources.ResourceManager.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/es/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/fr/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/it/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/ja/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/ko/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/ru/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/System.Resources.ResourceManager.dll", - "ref/dotnet5.1/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/zh-hans/System.Resources.ResourceManager.xml", - "ref/dotnet5.1/zh-hant/System.Resources.ResourceManager.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Resources.ResourceManager.xml", - "ref/netcore50/es/System.Resources.ResourceManager.xml", - "ref/netcore50/fr/System.Resources.ResourceManager.xml", - "ref/netcore50/it/System.Resources.ResourceManager.xml", - "ref/netcore50/ja/System.Resources.ResourceManager.xml", - "ref/netcore50/ko/System.Resources.ResourceManager.xml", - "ref/netcore50/ru/System.Resources.ResourceManager.xml", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", - "System.Resources.ResourceManager.4.0.1-rc2-23601.nupkg", - "System.Resources.ResourceManager.4.0.1-rc2-23601.nupkg.sha512", - "System.Resources.ResourceManager.nuspec" - ] - }, - "System.Runtime/4.0.0": { - "type": "package", - "sha512": "Uq9epame8hEqJlj4KaWb67dDJvj4IM37jRFGVeFbugRdPz48bR0voyBhrbf3iSa2tAmlkg4lsa6BUOL9iwlMew==", + "sha512": "vqDLuj+spdiOP6K3VJVQXql8PdasScg5SxrIK5pQDgyQiST/zHmm47pH8RiobJw99y5T/x38CpGjp0aRs5PGNw==", "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Runtime.xml", - "ref/dotnet/es/System.Runtime.xml", - "ref/dotnet/fr/System.Runtime.xml", - "ref/dotnet/it/System.Runtime.xml", - "ref/dotnet/ja/System.Runtime.xml", - "ref/dotnet/ko/System.Runtime.xml", - "ref/dotnet/ru/System.Runtime.xml", - "ref/dotnet/System.Runtime.dll", - "ref/dotnet/System.Runtime.xml", - "ref/dotnet/zh-hans/System.Runtime.xml", - "ref/dotnet/zh-hant/System.Runtime.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Runtime.xml", - "ref/netcore50/es/System.Runtime.xml", - "ref/netcore50/fr/System.Runtime.xml", - "ref/netcore50/it/System.Runtime.xml", - "ref/netcore50/ja/System.Runtime.xml", - "ref/netcore50/ko/System.Runtime.xml", - "ref/netcore50/ru/System.Runtime.xml", - "ref/netcore50/System.Runtime.dll", - "ref/netcore50/System.Runtime.xml", - "ref/netcore50/zh-hans/System.Runtime.xml", - "ref/netcore50/zh-hant/System.Runtime.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Runtime.4.0.0.nupkg", - "System.Runtime.4.0.0.nupkg.sha512", - "System.Runtime.nuspec" + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.xml", + "lib/net451/Microsoft.AspNet.Http.Features.dll", + "lib/net451/Microsoft.AspNet.Http.Features.xml", + "Microsoft.AspNet.Http.Features.1.0.0-rc2-16021.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-rc2-16021.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec" ] }, - "System.Runtime/4.0.21-rc2-23601": { + "Microsoft.AspNet.WebApi.Client/5.2.2": { "type": "package", "serviceable": true, - "sha512": "qZvIiy98kEDCqIkTlvP51vAyEWYPGUvl/iVK3DU/qkEVQvP28TKWQ++yCY11oOvaht0hSQtYZ0o7Lyk3Np0t4A==", + "sha512": "YVq+s0WeXrPxJk57CoElbtMYf95j76uJcW6nue3Cs4eIer9sgUp4rasSo0gALX3ls1Zf2jMceOLik9X/sJyrwA==", "files": [ - "lib/DNXCore50/System.Runtime.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Runtime.xml", - "ref/dotnet5.1/es/System.Runtime.xml", - "ref/dotnet5.1/fr/System.Runtime.xml", - "ref/dotnet5.1/it/System.Runtime.xml", - "ref/dotnet5.1/ja/System.Runtime.xml", - "ref/dotnet5.1/ko/System.Runtime.xml", - "ref/dotnet5.1/ru/System.Runtime.xml", - "ref/dotnet5.1/System.Runtime.dll", - "ref/dotnet5.1/System.Runtime.xml", - "ref/dotnet5.1/zh-hans/System.Runtime.xml", - "ref/dotnet5.1/zh-hant/System.Runtime.xml", - "ref/dotnet5.3/de/System.Runtime.xml", - "ref/dotnet5.3/es/System.Runtime.xml", - "ref/dotnet5.3/fr/System.Runtime.xml", - "ref/dotnet5.3/it/System.Runtime.xml", - "ref/dotnet5.3/ja/System.Runtime.xml", - "ref/dotnet5.3/ko/System.Runtime.xml", - "ref/dotnet5.3/ru/System.Runtime.xml", - "ref/dotnet5.3/System.Runtime.dll", - "ref/dotnet5.3/System.Runtime.xml", - "ref/dotnet5.3/zh-hans/System.Runtime.xml", - "ref/dotnet5.3/zh-hant/System.Runtime.xml", - "ref/dotnet5.4/de/System.Runtime.xml", - "ref/dotnet5.4/es/System.Runtime.xml", - "ref/dotnet5.4/fr/System.Runtime.xml", - "ref/dotnet5.4/it/System.Runtime.xml", - "ref/dotnet5.4/ja/System.Runtime.xml", - "ref/dotnet5.4/ko/System.Runtime.xml", - "ref/dotnet5.4/ru/System.Runtime.xml", - "ref/dotnet5.4/System.Runtime.dll", - "ref/dotnet5.4/System.Runtime.xml", - "ref/dotnet5.4/zh-hans/System.Runtime.xml", - "ref/dotnet5.4/zh-hant/System.Runtime.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Runtime.xml", - "ref/netcore50/es/System.Runtime.xml", - "ref/netcore50/fr/System.Runtime.xml", - "ref/netcore50/it/System.Runtime.xml", - "ref/netcore50/ja/System.Runtime.xml", - "ref/netcore50/ko/System.Runtime.xml", - "ref/netcore50/ru/System.Runtime.xml", - "ref/netcore50/System.Runtime.dll", - "ref/netcore50/System.Runtime.xml", - "ref/netcore50/zh-hans/System.Runtime.xml", - "ref/netcore50/zh-hant/System.Runtime.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", - "System.Runtime.4.0.21-rc2-23601.nupkg", - "System.Runtime.4.0.21-rc2-23601.nupkg.sha512", - "System.Runtime.nuspec" + "lib/net45/System.Net.Http.Formatting.dll", + "lib/net45/System.Net.Http.Formatting.xml", + "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll", + "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.xml", + "Microsoft.AspNet.WebApi.Client.5.2.2.nupkg", + "Microsoft.AspNet.WebApi.Client.5.2.2.nupkg.sha512", + "Microsoft.AspNet.WebApi.Client.nuspec" ] }, - "System.Runtime.Extensions/4.0.11-rc2-23601": { + "Microsoft.AspNet.WebUtilities/1.0.0-rc2-16021": { "type": "package", "serviceable": true, - "sha512": "X4PtiNDHsku9TI/hNigCyPZJ4IqGvtA3g3NSoQ9I4YtqhAirHI7WlCA9vREzKFL3WBAg2AFxsx9D54RXjYXLeA==", + "sha512": "g/js8QKmezUA+9HeKJ0svBDnEzt/JNBhY0PDxCKy/QvY50XF23O6rWrxR3INwI8ZuPKEZPnmwt8p/KTx6e/0xg==", "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Runtime.Extensions.xml", - "ref/dotnet5.1/es/System.Runtime.Extensions.xml", - "ref/dotnet5.1/fr/System.Runtime.Extensions.xml", - "ref/dotnet5.1/it/System.Runtime.Extensions.xml", - "ref/dotnet5.1/ja/System.Runtime.Extensions.xml", - "ref/dotnet5.1/ko/System.Runtime.Extensions.xml", - "ref/dotnet5.1/ru/System.Runtime.Extensions.xml", - "ref/dotnet5.1/System.Runtime.Extensions.dll", - "ref/dotnet5.1/System.Runtime.Extensions.xml", - "ref/dotnet5.1/zh-hans/System.Runtime.Extensions.xml", - "ref/dotnet5.1/zh-hant/System.Runtime.Extensions.xml", - "ref/dotnet5.4/de/System.Runtime.Extensions.xml", - "ref/dotnet5.4/es/System.Runtime.Extensions.xml", - "ref/dotnet5.4/fr/System.Runtime.Extensions.xml", - "ref/dotnet5.4/it/System.Runtime.Extensions.xml", - "ref/dotnet5.4/ja/System.Runtime.Extensions.xml", - "ref/dotnet5.4/ko/System.Runtime.Extensions.xml", - "ref/dotnet5.4/ru/System.Runtime.Extensions.xml", - "ref/dotnet5.4/System.Runtime.Extensions.dll", - "ref/dotnet5.4/System.Runtime.Extensions.xml", - "ref/dotnet5.4/zh-hans/System.Runtime.Extensions.xml", - "ref/dotnet5.4/zh-hant/System.Runtime.Extensions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Runtime.Extensions.xml", - "ref/netcore50/es/System.Runtime.Extensions.xml", - "ref/netcore50/fr/System.Runtime.Extensions.xml", - "ref/netcore50/it/System.Runtime.Extensions.xml", - "ref/netcore50/ja/System.Runtime.Extensions.xml", - "ref/netcore50/ko/System.Runtime.Extensions.xml", - "ref/netcore50/ru/System.Runtime.Extensions.xml", - "ref/netcore50/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Runtime.Extensions.4.0.11-rc2-23601.nupkg", - "System.Runtime.Extensions.4.0.11-rc2-23601.nupkg.sha512", - "System.Runtime.Extensions.nuspec" + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll", + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.xml", + "lib/net451/Microsoft.AspNet.WebUtilities.dll", + "lib/net451/Microsoft.AspNet.WebUtilities.xml", + "Microsoft.AspNet.WebUtilities.1.0.0-rc2-16021.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-rc2-16021.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec" ] }, - "System.Runtime.Handles/4.0.0": { + "Microsoft.Extensions.Configuration/1.0.0-rc2-15881": { "type": "package", "serviceable": true, - "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", + "sha512": "ITu7l7nzMlmjr5KP9e1SkCM4oPvKnYPN4WSPQpAnNUaHxKjr9BSAbsQtwXV/Uu7BcXKy7eHVUAtjzUnSlh+cIA==", "files": [ - "lib/DNXCore50/System.Runtime.Handles.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Runtime.Handles.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.Runtime.Handles.xml", - "ref/dotnet/es/System.Runtime.Handles.xml", - "ref/dotnet/fr/System.Runtime.Handles.xml", - "ref/dotnet/it/System.Runtime.Handles.xml", - "ref/dotnet/ja/System.Runtime.Handles.xml", - "ref/dotnet/ko/System.Runtime.Handles.xml", - "ref/dotnet/ru/System.Runtime.Handles.xml", - "ref/dotnet/System.Runtime.Handles.dll", - "ref/dotnet/System.Runtime.Handles.xml", - "ref/dotnet/zh-hans/System.Runtime.Handles.xml", - "ref/dotnet/zh-hant/System.Runtime.Handles.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", - "System.Runtime.Handles.4.0.0.nupkg", - "System.Runtime.Handles.4.0.0.nupkg.sha512", - "System.Runtime.Handles.nuspec" + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.xml", + "lib/net451/Microsoft.Extensions.Configuration.dll", + "lib/net451/Microsoft.Extensions.Configuration.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.xml", + "Microsoft.Extensions.Configuration.1.0.0-rc2-15881.nupkg", + "Microsoft.Extensions.Configuration.1.0.0-rc2-15881.nupkg.sha512", + "Microsoft.Extensions.Configuration.nuspec" ] }, - "System.Runtime.InteropServices/4.0.21-rc2-23601": { + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-15881": { "type": "package", "serviceable": true, - "sha512": "rJ7Z8EyjONlJVur/oLXcOugo/GH7QTyQ/4nFz+/cpkBEDkpJKgwqElY7iGzKNbHzADNq/y1g62h7YtBGms53vA==", + "sha512": "+Z77zWre+z4xu7HKIDMZXWnPU8ib5XjKYH19XCRu293U5y6j/4fNTTFf+rxkzESVed2kZz/+Xq4a2svkSxbXCA==", "files": [ - "lib/DNXCore50/System.Runtime.InteropServices.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.InteropServices.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.2/de/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/es/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/fr/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/it/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/ja/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/ko/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/ru/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/System.Runtime.InteropServices.dll", - "ref/dotnet5.2/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/zh-hans/System.Runtime.InteropServices.xml", - "ref/dotnet5.2/zh-hant/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/de/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/es/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/fr/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/it/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/ja/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/ko/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/ru/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/System.Runtime.InteropServices.dll", - "ref/dotnet5.3/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/zh-hans/System.Runtime.InteropServices.xml", - "ref/dotnet5.3/zh-hant/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/de/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/es/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/fr/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/it/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/ja/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/ko/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/ru/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/System.Runtime.InteropServices.dll", - "ref/dotnet5.4/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/zh-hans/System.Runtime.InteropServices.xml", - "ref/dotnet5.4/zh-hant/System.Runtime.InteropServices.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Runtime.InteropServices.xml", - "ref/netcore50/es/System.Runtime.InteropServices.xml", - "ref/netcore50/fr/System.Runtime.InteropServices.xml", - "ref/netcore50/it/System.Runtime.InteropServices.xml", - "ref/netcore50/ja/System.Runtime.InteropServices.xml", - "ref/netcore50/ko/System.Runtime.InteropServices.xml", - "ref/netcore50/ru/System.Runtime.InteropServices.xml", - "ref/netcore50/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", - "System.Runtime.InteropServices.4.0.21-rc2-23601.nupkg", - "System.Runtime.InteropServices.4.0.21-rc2-23601.nupkg.sha512", - "System.Runtime.InteropServices.nuspec" + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.xml", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15881.nupkg", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-15881.nupkg.sha512", + "Microsoft.Extensions.Configuration.Abstractions.nuspec" ] }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23601": { + "Microsoft.Extensions.Configuration.Binder/1.0.0-rc2-15881": { "type": "package", "serviceable": true, - "sha512": "cl7EDFOFA12Dj0fOP64uIXC0EzE5rEDouPSD5Cq371PPkZi5HL460BgU7QQl+SoC+T+xDv2tgC4vWnIEJvZxNA==", + "sha512": "E6/pn7opLGE3xwJJgH5ohx/YpAWK7Qc3fvRIcHFq43zeyj0naN6Es2Q7Q1562YjNbpl1824Kz2FmyLJHOSOAWQ==", "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23601.nupkg", - "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23601.nupkg.sha512", - "System.Runtime.InteropServices.RuntimeInformation.nuspec" + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net451/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net451/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.Binder.xml", + "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15881.nupkg", + "Microsoft.Extensions.Configuration.Binder.1.0.0-rc2-15881.nupkg.sha512", + "Microsoft.Extensions.Configuration.Binder.nuspec" ] }, - "System.Runtime.Numerics/4.0.0": { + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-15881": { "type": "package", "serviceable": true, - "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", + "sha512": "eZeqaPJu0em5LYFW2x2yFAXAhwyzJyKGcfjOWKKJ3EBqW4kZ7Sl4TECSxTMiv/cLy8uS5CEOus2V2Z9VBw/rFg==", "files": [ - "lib/dotnet/System.Runtime.Numerics.dll", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/de/System.Runtime.Numerics.xml", - "ref/dotnet/es/System.Runtime.Numerics.xml", - "ref/dotnet/fr/System.Runtime.Numerics.xml", - "ref/dotnet/it/System.Runtime.Numerics.xml", - "ref/dotnet/ja/System.Runtime.Numerics.xml", - "ref/dotnet/ko/System.Runtime.Numerics.xml", - "ref/dotnet/ru/System.Runtime.Numerics.xml", - "ref/dotnet/System.Runtime.Numerics.dll", - "ref/dotnet/System.Runtime.Numerics.xml", - "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", - "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/win8/_._", - "ref/wpa81/_._", - "System.Runtime.Numerics.4.0.0.nupkg", - "System.Runtime.Numerics.4.0.0.nupkg.sha512", - "System.Runtime.Numerics.nuspec" + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.FileExtensions.xml", + "Microsoft.Extensions.Configuration.FileExtensions.1.0.0-rc2-15881.nupkg", + "Microsoft.Extensions.Configuration.FileExtensions.1.0.0-rc2-15881.nupkg.sha512", + "Microsoft.Extensions.Configuration.FileExtensions.nuspec" ] }, - "System.Security.Claims/4.0.1-rc2-23601": { + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-15881": { "type": "package", "serviceable": true, - "sha512": "LOFzsK6mJwKNCDR5pTCtoHMRKmVwDSqDY66ueAIMREfXmLO8xlP2hFfVVLd98TT3SYNSeKoEadvy+7TSyJv8zA==", + "sha512": "4Asn+zljrvmSCC/3qM884HQqpkERZlhKBGfEXPEKgFTeUiiFP8CkLInDlPVCofrTpu9g3j6QAmRW4Z9vdwbZlA==", "files": [ - "lib/dotnet5.4/System.Security.Claims.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Claims.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Security.Claims.xml", - "ref/dotnet5.4/es/System.Security.Claims.xml", - "ref/dotnet5.4/fr/System.Security.Claims.xml", - "ref/dotnet5.4/it/System.Security.Claims.xml", - "ref/dotnet5.4/ja/System.Security.Claims.xml", - "ref/dotnet5.4/ko/System.Security.Claims.xml", - "ref/dotnet5.4/ru/System.Security.Claims.xml", - "ref/dotnet5.4/System.Security.Claims.dll", - "ref/dotnet5.4/System.Security.Claims.xml", - "ref/dotnet5.4/zh-hans/System.Security.Claims.xml", - "ref/dotnet5.4/zh-hant/System.Security.Claims.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Claims.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Security.Claims.4.0.1-rc2-23601.nupkg", - "System.Security.Claims.4.0.1-rc2-23601.nupkg.sha512", - "System.Security.Claims.nuspec" + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.xml", + "lib/net451/Microsoft.Extensions.Configuration.Json.dll", + "lib/net451/Microsoft.Extensions.Configuration.Json.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.Json.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.Json.xml", + "Microsoft.Extensions.Configuration.Json.1.0.0-rc2-15881.nupkg", + "Microsoft.Extensions.Configuration.Json.1.0.0-rc2-15881.nupkg.sha512", + "Microsoft.Extensions.Configuration.Json.nuspec" ] }, - "System.Security.Cryptography.Algorithms/4.0.0-rc2-23601": { + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-15851": { "type": "package", "serviceable": true, - "sha512": "G7/AUlurLRj/ZSFV/0vFwuQ5g8dfEmM+xlsT8GmmFCcItdkkV4gf/1z7lCdw1KiKxj20weFwo7GPdq3uBLq5NQ==", + "sha512": "uMO/WA//4peRRsCGDDPEywulK1AOT7gbyE84sN4ypRLPZbkYWAOv/LlaibxoiK+FUBg5ZcnkjydyBXNsTQAahA==", "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Algorithms.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Algorithms.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Security.Cryptography.Algorithms.4.0.0-rc2-23601.nupkg", - "System.Security.Cryptography.Algorithms.4.0.0-rc2-23601.nupkg.sha512", - "System.Security.Cryptography.Algorithms.nuspec" + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll", + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.xml", + "lib/net451/Microsoft.Extensions.DependencyInjection.dll", + "lib/net451/Microsoft.Extensions.DependencyInjection.xml", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.dll", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.xml", + "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15851.nupkg", + "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-15851.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.nuspec" ] }, - "System.Security.Cryptography.Cng/4.0.0-rc2-23601": { + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15851": { "type": "package", "serviceable": true, - "sha512": "pvsS9yL64fKOv38kQ/h/bLNeD4QyGhJ3LjCSNGl3QNm7GnVGSnLFg0P1wx1CNTUGH4vFWlOLYPCpvMzbaJVq7A==", + "sha512": "qugorlENzmL07+JTFZicpJj3uNdLZT5t6iLbNTDnuvOY04giWTpp9JPpGWJStj7VrwMHUaXVK5WgFcz61i5RsQ==", "files": [ - "lib/dotnet5.4/System.Security.Cryptography.Cng.dll", - "lib/net46/System.Security.Cryptography.Cng.dll", - "ref/dotnet5.4/System.Security.Cryptography.Cng.dll", - "ref/net46/System.Security.Cryptography.Cng.dll", - "System.Security.Cryptography.Cng.4.0.0-rc2-23601.nupkg", - "System.Security.Cryptography.Cng.4.0.0-rc2-23601.nupkg.sha512", - "System.Security.Cryptography.Cng.nuspec" + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15851.nupkg", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15851.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec" ] }, - "System.Security.Cryptography.Csp/4.0.0-rc2-23601": { + "Microsoft.Extensions.Logging/1.0.0-rc2-15883": { "type": "package", "serviceable": true, - "sha512": "cJvPdLjB/3Mn4gKTS21Lj0B0HfUezVn3WYN4OyWh0501l3mYYXIgNo1E8x8vm5tzwRk6sZez0O8Ch0FIr8mFgw==", + "sha512": "2ZPUadfSsmayPLBavEGi3OKipYkwsxp25hbL19/0LwUKjP9eS7d8h6Uu4qgXH75vCfdiF7HEhc3BSx4DTSG6aA==", "files": [ - "lib/DNXCore50/System.Security.Cryptography.Csp.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Csp.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/System.Security.Cryptography.Csp.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Csp.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Security.Cryptography.Csp.4.0.0-rc2-23601.nupkg", - "System.Security.Cryptography.Csp.4.0.0-rc2-23601.nupkg.sha512", - "System.Security.Cryptography.Csp.nuspec" + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll", + "lib/dotnet5.4/Microsoft.Extensions.Logging.xml", + "lib/net451/Microsoft.Extensions.Logging.dll", + "lib/net451/Microsoft.Extensions.Logging.xml", + "lib/netcore50/Microsoft.Extensions.Logging.dll", + "lib/netcore50/Microsoft.Extensions.Logging.xml", + "Microsoft.Extensions.Logging.1.0.0-rc2-15883.nupkg", + "Microsoft.Extensions.Logging.1.0.0-rc2-15883.nupkg.sha512", + "Microsoft.Extensions.Logging.nuspec" ] }, - "System.Security.Cryptography.Encoding/4.0.0-rc2-23601": { + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15883": { "type": "package", "serviceable": true, - "sha512": "aJqAwr8B3h8noRb8UkgJhapNnXXS5vRSbAo0VKhyWFbn//X4rCUVeUmkuCT9S4BNEOKJvpAr9kjPjikjIhn6nw==", + "sha512": "HINpweJPs78GmPl+2+y+2ObcVHP0wyLUj/kYbmooP7T91T7HG406tudUb26YMEaPNggnioGZcGoHUhcJ6xxh8Q==", "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Encoding.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/es/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/fr/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/it/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/ja/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/ko/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/ru/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/System.Security.Cryptography.Encoding.dll", - "ref/dotnet5.4/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/zh-hans/System.Security.Cryptography.Encoding.xml", - "ref/dotnet5.4/zh-hant/System.Security.Cryptography.Encoding.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Encoding.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Security.Cryptography.Encoding.4.0.0-rc2-23601.nupkg", - "System.Security.Cryptography.Encoding.4.0.0-rc2-23601.nupkg.sha512", - "System.Security.Cryptography.Encoding.nuspec" + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net451/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.xml", + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15883.nupkg", + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15883.nupkg.sha512", + "Microsoft.Extensions.Logging.Abstractions.nuspec" ] }, - "System.Security.Cryptography.Primitives/4.0.0-rc2-23601": { + "Microsoft.Extensions.OptionsModel/1.0.0-rc2-15861": { "type": "package", "serviceable": true, - "sha512": "nf/WBYSHyFwnq3E31rD99XrB30B0TonC+vEQI1Ej6WFl3XPXeETC2XypNeLAopWczFuTIL2+T9+BjMdP4gwRxw==", + "sha512": "p7o8XRVKI3aWQZNiX2J9asEbswdu5RRJKu589PG2xYKazqcCVDmxOnDQOnIjUKy4vnRawORCP/SIVtH7ShO1cw==", "files": [ - "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Security.Cryptography.Primitives.4.0.0-rc2-23601.nupkg", - "System.Security.Cryptography.Primitives.4.0.0-rc2-23601.nupkg.sha512", - "System.Security.Cryptography.Primitives.nuspec" + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.dll", + "lib/dotnet5.4/Microsoft.Extensions.OptionsModel.xml", + "lib/net451/Microsoft.Extensions.OptionsModel.dll", + "lib/net451/Microsoft.Extensions.OptionsModel.xml", + "lib/netcore50/Microsoft.Extensions.OptionsModel.dll", + "lib/netcore50/Microsoft.Extensions.OptionsModel.xml", + "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15861.nupkg", + "Microsoft.Extensions.OptionsModel.1.0.0-rc2-15861.nupkg.sha512", + "Microsoft.Extensions.OptionsModel.nuspec" ] }, - "System.Security.Cryptography.X509Certificates/4.0.0-rc2-23601": { + "Microsoft.Extensions.Primitives/1.0.0-rc2-15901": { "type": "package", "serviceable": true, - "sha512": "v772KAZWIrzSTEzYK1ZRNNclb9/TbxzsiWJSgruPgFQVggoKFOq1Q3CWyH1qNdhSOQN0I7wCIIDRq4YF0eaTyw==", + "sha512": "F21oAmpS0qS7HEJ7NaAyc9HmouMTLkfqGfjG3Jg9gzHiOkL/5ZVXG3ibX0LGh3R0u0fgt0KUwqDrCplswytbcA==", "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.X509Certificates.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/de/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/es/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/it/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll", - "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/dotnet5.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.X509Certificates.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Security.Cryptography.X509Certificates.4.0.0-rc2-23601.nupkg", - "System.Security.Cryptography.X509Certificates.4.0.0-rc2-23601.nupkg.sha512", - "System.Security.Cryptography.X509Certificates.nuspec" + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll", + "lib/dotnet5.4/Microsoft.Extensions.Primitives.xml", + "lib/net451/Microsoft.Extensions.Primitives.dll", + "lib/net451/Microsoft.Extensions.Primitives.xml", + "lib/netcore50/Microsoft.Extensions.Primitives.dll", + "lib/netcore50/Microsoft.Extensions.Primitives.xml", + "Microsoft.Extensions.Primitives.1.0.0-rc2-15901.nupkg", + "Microsoft.Extensions.Primitives.1.0.0-rc2-15901.nupkg.sha512", + "Microsoft.Extensions.Primitives.nuspec" ] }, - "System.Security.Principal/4.0.1-rc2-23601": { + "Microsoft.Net.Http.Headers/1.0.0-rc2-16021": { "type": "package", "serviceable": true, - "sha512": "M6IvYV0JoJ9sb0yKuwxLiLBAgmXyMWqagiwyRBc/IiWWL3aHgqmHP/1m6+W/sm3kV00xw9sRG2whak8AEpeguw==", + "sha512": "sVg7Ol6XrcrYcCpBjUHDSLA+0LQkEwxf9VFxemgqYNbL3fcAIaRIPvAz2qEMuV7rAkb0U//tH5HbC2Gwjpsp0w==", "files": [ - "lib/dotnet5.1/System.Security.Principal.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Security.Principal.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Security.Principal.xml", - "ref/dotnet5.1/es/System.Security.Principal.xml", - "ref/dotnet5.1/fr/System.Security.Principal.xml", - "ref/dotnet5.1/it/System.Security.Principal.xml", - "ref/dotnet5.1/ja/System.Security.Principal.xml", - "ref/dotnet5.1/ko/System.Security.Principal.xml", - "ref/dotnet5.1/ru/System.Security.Principal.xml", - "ref/dotnet5.1/System.Security.Principal.dll", - "ref/dotnet5.1/System.Security.Principal.xml", - "ref/dotnet5.1/zh-hans/System.Security.Principal.xml", - "ref/dotnet5.1/zh-hant/System.Security.Principal.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Security.Principal.xml", - "ref/netcore50/es/System.Security.Principal.xml", - "ref/netcore50/fr/System.Security.Principal.xml", - "ref/netcore50/it/System.Security.Principal.xml", - "ref/netcore50/ja/System.Security.Principal.xml", - "ref/netcore50/ko/System.Security.Principal.xml", - "ref/netcore50/ru/System.Security.Principal.xml", - "ref/netcore50/System.Security.Principal.dll", - "ref/netcore50/System.Security.Principal.xml", - "ref/netcore50/zh-hans/System.Security.Principal.xml", - "ref/netcore50/zh-hant/System.Security.Principal.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Security.Principal.4.0.1-rc2-23601.nupkg", - "System.Security.Principal.4.0.1-rc2-23601.nupkg.sha512", - "System.Security.Principal.nuspec" + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll", + "lib/dotnet5.4/Microsoft.Net.Http.Headers.xml", + "lib/net451/Microsoft.Net.Http.Headers.dll", + "lib/net451/Microsoft.Net.Http.Headers.xml", + "Microsoft.Net.Http.Headers.1.0.0-rc2-16021.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-rc2-16021.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec" ] }, - "System.Text.Encoding/4.0.11-rc2-23601": { + "Newtonsoft.Json/6.0.6": { "type": "package", - "serviceable": true, - "sha512": "rTwXjbkVsMh6D9QRZyfBTxJ39XIno46Q1UJahfunnDfxoeIdlHnA+UCgOJy2Ho3u5Q7HJZPgMd20/ESvNUcqww==", + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", "files": [ - "lib/DNXCore50/System.Text.Encoding.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.Encoding.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Text.Encoding.xml", - "ref/dotnet5.1/es/System.Text.Encoding.xml", - "ref/dotnet5.1/fr/System.Text.Encoding.xml", - "ref/dotnet5.1/it/System.Text.Encoding.xml", - "ref/dotnet5.1/ja/System.Text.Encoding.xml", - "ref/dotnet5.1/ko/System.Text.Encoding.xml", - "ref/dotnet5.1/ru/System.Text.Encoding.xml", - "ref/dotnet5.1/System.Text.Encoding.dll", - "ref/dotnet5.1/System.Text.Encoding.xml", - "ref/dotnet5.1/zh-hans/System.Text.Encoding.xml", - "ref/dotnet5.1/zh-hant/System.Text.Encoding.xml", - "ref/dotnet5.4/de/System.Text.Encoding.xml", - "ref/dotnet5.4/es/System.Text.Encoding.xml", - "ref/dotnet5.4/fr/System.Text.Encoding.xml", - "ref/dotnet5.4/it/System.Text.Encoding.xml", - "ref/dotnet5.4/ja/System.Text.Encoding.xml", - "ref/dotnet5.4/ko/System.Text.Encoding.xml", - "ref/dotnet5.4/ru/System.Text.Encoding.xml", - "ref/dotnet5.4/System.Text.Encoding.dll", - "ref/dotnet5.4/System.Text.Encoding.xml", - "ref/dotnet5.4/zh-hans/System.Text.Encoding.xml", - "ref/dotnet5.4/zh-hant/System.Text.Encoding.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Text.Encoding.xml", - "ref/netcore50/es/System.Text.Encoding.xml", - "ref/netcore50/fr/System.Text.Encoding.xml", - "ref/netcore50/it/System.Text.Encoding.xml", - "ref/netcore50/ja/System.Text.Encoding.xml", - "ref/netcore50/ko/System.Text.Encoding.xml", - "ref/netcore50/ru/System.Text.Encoding.xml", - "ref/netcore50/System.Text.Encoding.dll", - "ref/netcore50/System.Text.Encoding.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", - "System.Text.Encoding.4.0.11-rc2-23601.nupkg", - "System.Text.Encoding.4.0.11-rc2-23601.nupkg.sha512", - "System.Text.Encoding.nuspec" + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" ] }, - "System.Text.Encoding.Extensions/4.0.10": { + "Rx-Core/2.2.5": { "type": "package", - "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", + "sha512": "DfWVTfW6tvRkkqpnRHKxPIvaRZyDJGADuqrE6J2nwejOQbLRWi0rNUwXkViDWz++25BGDy3iRE5OE6Dv8mJxYQ==", "files": [ - "lib/DNXCore50/System.Text.Encoding.Extensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Text.Encoding.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/de/System.Text.Encoding.Extensions.xml", - "ref/dotnet/es/System.Text.Encoding.Extensions.xml", - "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", - "ref/dotnet/it/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", - "ref/dotnet/System.Text.Encoding.Extensions.dll", - "ref/dotnet/System.Text.Encoding.Extensions.xml", - "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", - "System.Text.Encoding.Extensions.4.0.10.nupkg", - "System.Text.Encoding.Extensions.4.0.10.nupkg.sha512", - "System.Text.Encoding.Extensions.nuspec" + "lib/net40/System.Reactive.Core.dll", + "lib/net40/System.Reactive.Core.XML", + "lib/net45/System.Reactive.Core.dll", + "lib/net45/System.Reactive.Core.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.XML", + "lib/portable-win81+wpa81/System.Reactive.Core.dll", + "lib/portable-win81+wpa81/System.Reactive.Core.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Core.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Core.XML", + "lib/sl5/System.Reactive.Core.dll", + "lib/sl5/System.Reactive.Core.XML", + "lib/windows8/System.Reactive.Core.dll", + "lib/windows8/System.Reactive.Core.XML", + "lib/windowsphone71/System.Reactive.Core.dll", + "lib/windowsphone71/System.Reactive.Core.XML", + "lib/windowsphone8/System.Reactive.Core.dll", + "lib/windowsphone8/System.Reactive.Core.XML", + "Rx-Core.2.2.5.nupkg", + "Rx-Core.2.2.5.nupkg.sha512", + "Rx-Core.nuspec" ] }, - "System.Text.Encodings.Web/4.0.0-rc2-23601": { + "Rx-Interfaces/2.2.5": { "type": "package", - "serviceable": true, - "sha512": "A81uIO3jmWO2+heJ1vhcp5oXM+wCN36FtDO1I6F7PwUQxW7e5aeNruNRCqXb7yiRnCsQj6B1YhHYn0KPPV+Nrw==", + "sha512": "FKtG2QfMIeUcfB7r3a89VoAiszX3DTvYETkpC6U0FzWpxRK/mcHyzYOsniDfag+NsDG0P1k1c8yNSefXKp3t2A==", "files": [ - "lib/dotnet5.1/System.Text.Encodings.Web.dll", - "System.Text.Encodings.Web.4.0.0-rc2-23601.nupkg", - "System.Text.Encodings.Web.4.0.0-rc2-23601.nupkg.sha512", - "System.Text.Encodings.Web.nuspec" + "lib/net40/System.Reactive.Interfaces.dll", + "lib/net40/System.Reactive.Interfaces.XML", + "lib/net45/System.Reactive.Interfaces.dll", + "lib/net45/System.Reactive.Interfaces.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.XML", + "lib/portable-win81+wpa81/System.Reactive.Interfaces.dll", + "lib/portable-win81+wpa81/System.Reactive.Interfaces.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.XML", + "lib/sl5/System.Reactive.Interfaces.dll", + "lib/sl5/System.Reactive.Interfaces.XML", + "lib/windows8/System.Reactive.Interfaces.dll", + "lib/windows8/System.Reactive.Interfaces.XML", + "lib/windowsphone71/System.Reactive.Interfaces.dll", + "lib/windowsphone71/System.Reactive.Interfaces.XML", + "lib/windowsphone8/System.Reactive.Interfaces.dll", + "lib/windowsphone8/System.Reactive.Interfaces.XML", + "Rx-Interfaces.2.2.5.nupkg", + "Rx-Interfaces.2.2.5.nupkg.sha512", + "Rx-Interfaces.nuspec" ] }, - "System.Text.RegularExpressions/4.0.11-rc2-23601": { + "Rx-Linq/2.2.5": { "type": "package", - "serviceable": true, - "sha512": "0oYcgl0kQG+ZtgElxlFc+MNY28TMpCEQEyPHRHUX37vUHedt+M4gR4wJxOEt888FG91vBo9U/GsxRF+KWnG5Ng==", + "sha512": "UTeCIu3cWPExxmTzdiVq7SalqTBhUaomBTaAC9LpYPoAopjlFwA3hjVWXoLkGlDc/44wqJemJuEwFP00KphiFg==", "files": [ - "lib/dotnet5.4/System.Text.RegularExpressions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/es/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/fr/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/it/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/ja/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/ko/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/ru/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/System.Text.RegularExpressions.dll", - "ref/dotnet5.1/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/zh-hans/System.Text.RegularExpressions.xml", - "ref/dotnet5.1/zh-hant/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/de/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/es/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/fr/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/it/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/ja/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/ko/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/ru/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/System.Text.RegularExpressions.dll", - "ref/dotnet5.4/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/zh-hans/System.Text.RegularExpressions.xml", - "ref/dotnet5.4/zh-hant/System.Text.RegularExpressions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Text.RegularExpressions.xml", - "ref/netcore50/es/System.Text.RegularExpressions.xml", - "ref/netcore50/fr/System.Text.RegularExpressions.xml", - "ref/netcore50/it/System.Text.RegularExpressions.xml", - "ref/netcore50/ja/System.Text.RegularExpressions.xml", - "ref/netcore50/ko/System.Text.RegularExpressions.xml", - "ref/netcore50/ru/System.Text.RegularExpressions.xml", - "ref/netcore50/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Text.RegularExpressions.4.0.11-rc2-23601.nupkg", - "System.Text.RegularExpressions.4.0.11-rc2-23601.nupkg.sha512", - "System.Text.RegularExpressions.nuspec" + "lib/net40/System.Reactive.Linq.dll", + "lib/net40/System.Reactive.Linq.XML", + "lib/net45/System.Reactive.Linq.dll", + "lib/net45/System.Reactive.Linq.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.XML", + "lib/portable-win81+wpa81/System.Reactive.Linq.dll", + "lib/portable-win81+wpa81/System.Reactive.Linq.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.Linq.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.Linq.XML", + "lib/sl5/System.Reactive.Linq.dll", + "lib/sl5/System.Reactive.Linq.XML", + "lib/windows8/System.Reactive.Linq.dll", + "lib/windows8/System.Reactive.Linq.XML", + "lib/windowsphone71/System.Reactive.Linq.dll", + "lib/windowsphone71/System.Reactive.Linq.XML", + "lib/windowsphone8/System.Reactive.Linq.dll", + "lib/windowsphone8/System.Reactive.Linq.XML", + "Rx-Linq.2.2.5.nupkg", + "Rx-Linq.2.2.5.nupkg.sha512", + "Rx-Linq.nuspec" ] }, - "System.Threading/4.0.0": { + "Rx-PlatformServices/2.2.5": { "type": "package", - "sha512": "H6O/9gUrjPDNYanh/7OFGAZHjVXvEuITD0RcnjfvIV04HOGrOPqUBU0kmz9RIX/7YGgCQn1o1S2DX6Cuv8kVGQ==", + "sha512": "pMnNEvJVjT+wuDib+W/bi5hhIYcre7dW5yxvKrJxnR4iKJ1VLA/dY2FTtjDriHGx7OeGn12lQewXlH2oHiWFPA==", "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "License.rtf", - "ref/dotnet/de/System.Threading.xml", - "ref/dotnet/es/System.Threading.xml", - "ref/dotnet/fr/System.Threading.xml", - "ref/dotnet/it/System.Threading.xml", - "ref/dotnet/ja/System.Threading.xml", - "ref/dotnet/ko/System.Threading.xml", - "ref/dotnet/ru/System.Threading.xml", - "ref/dotnet/System.Threading.dll", - "ref/dotnet/System.Threading.xml", - "ref/dotnet/zh-hans/System.Threading.xml", - "ref/dotnet/zh-hant/System.Threading.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Threading.4.0.0.nupkg", - "System.Threading.4.0.0.nupkg.sha512", - "System.Threading.nuspec" + "lib/net40/System.Reactive.PlatformServices.dll", + "lib/net40/System.Reactive.PlatformServices.XML", + "lib/net45/System.Reactive.PlatformServices.dll", + "lib/net45/System.Reactive.PlatformServices.XML", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.dll", + "lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.XML", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll", + "lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.XML", + "lib/portable-win81+wpa81/System.Reactive.PlatformServices.dll", + "lib/portable-win81+wpa81/System.Reactive.PlatformServices.XML", + "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.dll", + "lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.XML", + "lib/sl5/System.Reactive.PlatformServices.dll", + "lib/sl5/System.Reactive.PlatformServices.XML", + "lib/windows8/System.Reactive.PlatformServices.dll", + "lib/windows8/System.Reactive.PlatformServices.XML", + "lib/windowsphone71/System.Reactive.PlatformServices.dll", + "lib/windowsphone71/System.Reactive.PlatformServices.XML", + "lib/windowsphone8/System.Reactive.PlatformServices.dll", + "lib/windowsphone8/System.Reactive.PlatformServices.XML", + "Rx-PlatformServices.2.2.5.nupkg", + "Rx-PlatformServices.2.2.5.nupkg.sha512", + "Rx-PlatformServices.nuspec" ] }, - "System.Threading/4.0.11-rc2-23601": { + "System.Net.Http/4.0.0": { "type": "package", "serviceable": true, - "sha512": "smSdEeXR3Iboe2Xwv0PEBG4qqAqTwfRKQRlv4xuqBWfzhb9ywjp4hJU8dsJR/ySsgHC6xVYuA+8YGLxggLy/tQ==", + "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==", "files": [ - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", + "lib/DNXCore50/System.Net.Http.dll", "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", "lib/win8/_._", - "lib/wp80/_._", "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Threading.xml", - "ref/dotnet5.1/es/System.Threading.xml", - "ref/dotnet5.1/fr/System.Threading.xml", - "ref/dotnet5.1/it/System.Threading.xml", - "ref/dotnet5.1/ja/System.Threading.xml", - "ref/dotnet5.1/ko/System.Threading.xml", - "ref/dotnet5.1/ru/System.Threading.xml", - "ref/dotnet5.1/System.Threading.dll", - "ref/dotnet5.1/System.Threading.xml", - "ref/dotnet5.1/zh-hans/System.Threading.xml", - "ref/dotnet5.1/zh-hant/System.Threading.xml", - "ref/dotnet5.4/de/System.Threading.xml", - "ref/dotnet5.4/es/System.Threading.xml", - "ref/dotnet5.4/fr/System.Threading.xml", - "ref/dotnet5.4/it/System.Threading.xml", - "ref/dotnet5.4/ja/System.Threading.xml", - "ref/dotnet5.4/ko/System.Threading.xml", - "ref/dotnet5.4/ru/System.Threading.xml", - "ref/dotnet5.4/System.Threading.dll", - "ref/dotnet5.4/System.Threading.xml", - "ref/dotnet5.4/zh-hans/System.Threading.xml", - "ref/dotnet5.4/zh-hant/System.Threading.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", + "ref/dotnet/de/System.Net.Http.xml", + "ref/dotnet/es/System.Net.Http.xml", + "ref/dotnet/fr/System.Net.Http.xml", + "ref/dotnet/it/System.Net.Http.xml", + "ref/dotnet/ja/System.Net.Http.xml", + "ref/dotnet/ko/System.Net.Http.xml", + "ref/dotnet/ru/System.Net.Http.xml", + "ref/dotnet/System.Net.Http.dll", + "ref/dotnet/System.Net.Http.xml", + "ref/dotnet/zh-hans/System.Net.Http.xml", + "ref/dotnet/zh-hant/System.Net.Http.xml", "ref/net45/_._", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", "ref/win8/_._", - "ref/wp80/_._", "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "System.Threading.4.0.11-rc2-23601.nupkg", - "System.Threading.4.0.11-rc2-23601.nupkg.sha512", - "System.Threading.nuspec" - ] - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", - "files": [ - "lib/DNXCore50/System.Threading.Overlapped.dll", - "lib/net46/System.Threading.Overlapped.dll", - "lib/netcore50/System.Threading.Overlapped.dll", - "ref/dotnet/de/System.Threading.Overlapped.xml", - "ref/dotnet/es/System.Threading.Overlapped.xml", - "ref/dotnet/fr/System.Threading.Overlapped.xml", - "ref/dotnet/it/System.Threading.Overlapped.xml", - "ref/dotnet/ja/System.Threading.Overlapped.xml", - "ref/dotnet/ko/System.Threading.Overlapped.xml", - "ref/dotnet/ru/System.Threading.Overlapped.xml", - "ref/dotnet/System.Threading.Overlapped.dll", - "ref/dotnet/System.Threading.Overlapped.xml", - "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", - "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", - "ref/net46/System.Threading.Overlapped.dll", - "System.Threading.Overlapped.4.0.0.nupkg", - "System.Threading.Overlapped.4.0.0.nupkg.sha512", - "System.Threading.Overlapped.nuspec" + "System.Net.Http.4.0.0.nupkg", + "System.Net.Http.4.0.0.nupkg.sha512", + "System.Net.Http.nuspec" ] }, - "System.Threading.Tasks/4.0.11-rc2-23601": { + "System.Text.Encodings.Web/4.0.0-rc2-23602": { "type": "package", "serviceable": true, - "sha512": "99/GbSDrmn7bfN2PZREaq/L4MYMIjOyXSm/c8kSdmKQ2qYmRyS66GZENmZWa3IWirw26+c3hYBi/Wj+2pf5xHg==", + "sha512": "5VBIa3Zfncb2TpMw/V2b6TcH9V3PMUkWPnbcXsm+yFpAaB59dSSxXkux4I5pozezlEEZ4sED9Mfv9e3zWv6THA==", "files": [ - "lib/DNXCore50/System.Threading.Tasks.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Tasks.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.1/de/System.Threading.Tasks.xml", - "ref/dotnet5.1/es/System.Threading.Tasks.xml", - "ref/dotnet5.1/fr/System.Threading.Tasks.xml", - "ref/dotnet5.1/it/System.Threading.Tasks.xml", - "ref/dotnet5.1/ja/System.Threading.Tasks.xml", - "ref/dotnet5.1/ko/System.Threading.Tasks.xml", - "ref/dotnet5.1/ru/System.Threading.Tasks.xml", - "ref/dotnet5.1/System.Threading.Tasks.dll", - "ref/dotnet5.1/System.Threading.Tasks.xml", - "ref/dotnet5.1/zh-hans/System.Threading.Tasks.xml", - "ref/dotnet5.1/zh-hant/System.Threading.Tasks.xml", - "ref/dotnet5.4/de/System.Threading.Tasks.xml", - "ref/dotnet5.4/es/System.Threading.Tasks.xml", - "ref/dotnet5.4/fr/System.Threading.Tasks.xml", - "ref/dotnet5.4/it/System.Threading.Tasks.xml", - "ref/dotnet5.4/ja/System.Threading.Tasks.xml", - "ref/dotnet5.4/ko/System.Threading.Tasks.xml", - "ref/dotnet5.4/ru/System.Threading.Tasks.xml", - "ref/dotnet5.4/System.Threading.Tasks.dll", - "ref/dotnet5.4/System.Threading.Tasks.xml", - "ref/dotnet5.4/zh-hans/System.Threading.Tasks.xml", - "ref/dotnet5.4/zh-hant/System.Threading.Tasks.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/de/System.Threading.Tasks.xml", - "ref/netcore50/es/System.Threading.Tasks.xml", - "ref/netcore50/fr/System.Threading.Tasks.xml", - "ref/netcore50/it/System.Threading.Tasks.xml", - "ref/netcore50/ja/System.Threading.Tasks.xml", - "ref/netcore50/ko/System.Threading.Tasks.xml", - "ref/netcore50/ru/System.Threading.Tasks.xml", - "ref/netcore50/System.Threading.Tasks.dll", - "ref/netcore50/System.Threading.Tasks.xml", - "ref/netcore50/zh-hans/System.Threading.Tasks.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", - "System.Threading.Tasks.4.0.11-rc2-23601.nupkg", - "System.Threading.Tasks.4.0.11-rc2-23601.nupkg.sha512", - "System.Threading.Tasks.nuspec" + "lib/dotnet5.1/System.Text.Encodings.Web.dll", + "System.Text.Encodings.Web.4.0.0-rc2-23602.nupkg", + "System.Text.Encodings.Web.4.0.0-rc2-23602.nupkg.sha512", + "System.Text.Encodings.Web.nuspec" ] } }, "projectFileDependencyGroups": { "": [ "Glimpse.Common ", - "Microsoft.Extensions.DiagnosticAdapter >= 1.0.0-*", + "SystemWebAdapter ", "Microsoft.AspNet.FileProviders.Physical >= 1.0.0-*", "Microsoft.AspNet.WebApi.Client >= 5.2.2", - "System.Net.Http >= 4.0.0", - "System.Diagnostics.DiagnosticSource >= 4.0.0-beta-*", "Microsoft.Extensions.Configuration.Json >= 1.0.0-*", - "Microsoft.AspNet.Hosting >= 1.0.0-*" + "System.Net.Http >= 4.0.0" ], - ".NETFramework,Version=v4.5.1": [], - ".NETPlatform,Version=v5.4": [] + ".NETFramework,Version=v4.5.1": [] } } \ No newline at end of file diff --git a/wrap/SystemWebAdapter/SystemWebAdapter.dll b/wrap/SystemWebAdapter/SystemWebAdapter.dll new file mode 100644 index 0000000000000000000000000000000000000000..0a40bc28c3048787e9144ddc7113a0878a7cad33 GIT binary patch literal 37888 zcmeHw3w%`7wf8#b%sXVrJ3t{+XX1^1d+Sr`o(1 zhAdqZiIucO&DGIRQ%QZOx!H`DtPGb#+nP%v%_TDz)|NDx4dGyVx^K8*y=WHEJk6kw zw$&}OTRTWYOVYGTq8pIovU0z2KdvSCK7lV$hNN{%Zq86-NNGgK=Z`@vu3=LCpS&uR zv+x-Yz6&|=1p3a3==nKF)DL<0-bYl}v+P)S36UqI+yi`W3LcDyH^hP8d_4flq_0YD zVDc#;S`m!KqV>Q;wkMF_fw~Fbl+RQQS1=lGG(pI+(m{Ng*Vph(`Aj96o`Om;!g|Gr zWz)$?yQe_zM$w|=pDf6()F~a6FbbKZ=L8^z%U4dWGURbtexl5XLEWxcE0Hf21+b`? zW`Sx{k39j3El{IFkHtW;C5@8-PC{B^3mS3gh6z3TwxA(Sw{aSb9l9ehiOm96bjd{! zfO!{yH%KAdCaz(w1AP>HTFmuGi3~oAR-?f^Xg7eO!W|s~>T+ka92Z+=4Gg>UZMV50 zKf6*B6O?uX8&MKi3z4KU%QUh_-A$m#H#Y++A-8aqD*^2GbgD%ibTgB#{4(b&!VaX< z+&O_xT>E)OSCHGh3Q4zlHK1@v_nKRg&Of4OJ2D-kedM)TfM2{(Y7W(bI>90%Dck2h5vHKxazXCeDA6%Bw52yG9 z)epDSo67y*dioI;48s+>9@VcLCT01hR}Mwui0etaU_=L(#2&J`%p4SV?laF(WO1L7 zbSOJ8D1dwzduHq@RP(uvEl{QdL_7gpM_f-c^Bd5r!~6x3R5q5PXTu0tu|8N8^y8#+ zarFxC&A2%9%@|lfnK(yW^Oyy^hc5t=FZa1}ju>g~(dm{ExnegnBOZU9O27wIyU!C$ z5o?|VcAzw2zkSkv_2{%}yp!|qo&+sCR(HO=Xdml~*0Lj|Q{j7y%?SPA{;*!41nv*I z?syS0Yk{wW$lM9g#;DI#VdRwOxXfFTla{3&$s2-P^EP1p%E?o94(bZ;Zy?9^5p0hb z#Dx9sLYXy7i3%{*%TW%0m`OQ4)wH-P^P8X>oo@+~%rS3AcDa^^K`H7*Zr*{y*tfU= zqBoqS0OS(M(1s>!oIwkhkQ05??78I^*#c)_;Mo_K+p^hq*gsjGu)}=t6J3gr)6Hx& zSrGU(H!PmKpwdAXfCf!wQh!HaHRm_L_U z{J{u1uoy`K84%FQkc8OYAX}e$07K)dNYew8amC~-*YeeX@Ob319MZlC595nt40NB1 z4HT2z_J?`qccl{|v&Q3O`OiFy5%b|Zd^1TgXZwdz2%`ht8G$*dBGkncyBEwX-=Wh= z&_ISvG6H*%tq1M{l%#n-QW)ZCWV{HcWX+tw1IUD>!mtD5z_MR?sqtb}x6*X4lzvG{ zJ^B609eK)NStho#JSEd?mdQ2RNqSnjBga}%Y#Rj~=~p-=vzjzvN6we zS$7679gKthrTI80NYCGb$?2dsTs}4}#n`efjq(SOi*0Lma!V0d$ko_FU>F|CBbEAMf=J_b9c>Rqu&uF*D#Ay2HwK5(H zoo3Op$XBF`E#z949UtZaHdLYal4LpX7fB`?rJlQ9V!Bun$U04FZu&nX#oB=I3S{Y{1kzBsI0#Bec zbw5;u`h`|s)M!-j(jwIEa?SGJ%k17M8`uvf=#@Q3z=Q4IYJNR8|4RUw!FETUL`K>SmJM5#1xt-Xrn71p(d=}SIm)V7j>JZOI z=%O2)`R~2R5RamwKkEcvhoNe#pNJ+iv($z3V@{?MEL zm1EJr+ME85HofiJ-OQg1%RVfz|AT3;2}zZ9ZtW)?==5pQ`tOHbYPeV?Nat5PG0ADje?z98e|?O zoaqU)^JkkXss1;SMP)YMRM~~^TXqf0hrwVeWxNfC`L<1vWciM;gscwUCs=!mgskR& z+7)d3P3f!o7rStFvUlcT;g{t9uHYN7B14@HJ#Py<34Cg^G=+^A6ojQ*<_F6=LUhGD zbgbf=@=<8-SpF9nZ4|l-L02kto4B_59?RjH1#ib8zN{zxRk}P=-^A^vm5;>QF$`C(ZOvJwc!=u=Tnp*Z3T3K26l!qX zpX@77Hy2f7exkXAiqqVpVyq_=#rGO~C*oUu3ji8tHCLo7`u8D3d745#NJwN+i3yZn zX$zbvW-i^kKyPH0+PtL}LZ9+ky~xVP+F9JLbpE*G44bp|gB_H+lQQQ4<#A`*LJ{jC z(eV`9V*6sZ!PoLEC^f~X%ZGGpR3gb9##J^wx#iq~rI&Yuo8)TGFAN;p&TSYXb2d67 z)<0e4Usx*YwnXKY4zUGN@szMJ{|U<2t!NbS6ql*f5lb$v2Qia!314dy zXbJi;%aGgzf}Zzk6-TL;&5kD7!^NoRcH}I!Hjt`rimcdfb(8gz6j`~6812ZwU!ZUTRU^VzT z8cgmbbh;FDqm#N+(n_P)(8E1TH9K1jKy}3xI09bS4Dnu?+qQ`;<)@cpQA;l;FZ(-7 z4rQ|<=NGmd-^6AJr@_8}2^N?z#ujV~aXNb>dkcK4Lw9Z|!3ArXE?xvc~QjuXvUHJL#L5+m+ygA;hs9x{hPH-=S$auN%?9 zB>~7$Zq+U0vka{5>Z9jz5QY^8hZceBMc_Bm;CTW+=Jb(4Wy)7*l$TFwi{L8?us^{1 zVC@gEJx$iiN2{z<%3~KL-x7dFZmQwuHcD1}+sMcB{rVWY_DLo~(y;U44>m z2W~ia{hVC8zLVEkYwy!T_Q1BjBu~nK*je>o7ao=ndcNwvHDV4Po}>3;z(9)!kNtEo z2x9DGSPv2K>08ENpl}3Q$(Mi=jJBM`$=ofVa=11z0?&$=3LdE3wVCmN8)V`W4d$ih z+9s&TkqB-vNn2tb&~4PEz;ML8z)T;2BY}$_7qdSAj$`vL;*~kw>pr689nrE~nXZaw5sAezP`rg( zP;R;`82cr9-!T+fIGnQXbChMlhgy3P%mR*GAlIhhATi8LZX^r92R&qSV<4TPDq^N# za2;hX%q@eytP{tw*amSXRu(8Q*DFfGBe6bSA#s{s)jR02WIDE?|;NOaB zm8_6rvb43`^U(ACI@st^Oj!I11^2o}}>0M8k51k?sZ{$JZk2bP#KefD_0%8;j|u= z^LU%XV_i1LI(Qswp*LV}T##zG*g0cQ%KPa1U|eIxZaEJNf(KJBKj-)GEt;*^O2i8&D(-)02?B+6hpLl3xhP>oqv%u zVpUCT=26)55l25yMW=L;xs;)Ae7ymassJeE%nmT$l;tQeKxF3}ajZvN1CbFM)HAn$a|;3TZir)4%pxSkKfqH4FhhM6Q}sOT zxVTB(y#;!8=>2r@op7akz>6tPZ#3zfxFk*A%$Fm%Q^88lRn@>q91WjgaRI%Nf%Q>@ z<)cepB;Od2t`9z9H6pydffBS$Z{&2(4h-R3HgW6#`EJ6Go}`RL%oCpb*Duq6vyq-& zd){=7v+!Y;wXP~y85~zRZVZPUxYO7OxB-4+*p)J$iY?L~ zaNUFN5dNZ&d0{N&e*aWl8}JR`TYxW$C7)d^)Qiu9FggCXC@rI4go|zx_%DI|`#&-~ zo9fXI7cJ?(wa`VEWH3Be;GYG4PvEZvJ}xv<`hPauMVi23$^T>jf6H>wh>GV5eDohx zpBDQ8N9itlZt!yjE?N(oELxYgZA2bDmHS*l7HzNowAe+?frIrd`h{;Br22uzl+*L} zmuA5fnDXwjvn#S_4AOqe7H(k|*S$;VzbM$5l|=<8bQYi%0ZdP(XAy-#9GcIU7s1K?K39I8?3qQ?cU_i-yXf^rZo zM_oUCI&PHir}^pJqr*ik=R1DZuFwY{eEfv z)D-U8_7=^`$TNV|85Jf0G6ai)*qHj(5fBHMgG=p4NsM8B)@qIcCkt~)M= z+o~7-{e|+TVLLIV_epv-B=^%cKT{4aX3FgWwv)Gt8Sa!??SOeSyC3&u;n3#_hSFKy zjKMBykk+pic)n1M%w!H*1f$?(YNp;l8n;W16sS zYt)HNX*>`gHcK#m&f(!g3o}5GL6I`XvS>bafbvhJjAhdr>O|Rn0|NPBY&e>Q@_k?f zFx_qhrwn?lFpxhB8FL;G zUSF04xOqYz;6_O|BRz!7%0b9^v#1!bzhfBSpK?n9OP!ovG;9>$Rjwf5o{{4K-*Qa? z^tu^Nb5C{W(a5}6fZ2c=UEyM$BhW6M7#PTH6$;OHbB7_n%v~dJ0rCe_)B>;Q|hrCk;WB?nWut&XvunyQ|pL#QZ%~WMycMpPBwab3%&H&b+ z%AQFZ1W#+1x%y=Q>riE{<_yA;W0&RTW&nFgl|7V=a4b>w&+H6fIYTYU?jKc*)yJ+^ zRyGXSJXQ9{_))mKYL|_j5Cpbam34Zm$WOZz_LRp7>;Z-SxZfb^PhAT87v$_uuPJOT z+RI4re0S6^U^x<|9`bHRdzp!{e~b?TYf)uyI;t_(wp*CCAZHS=M-?{OF$pKT&kNQ` zAB;f^OF6v5hvxrYHW!%PhsovhflXCq&zH}I-PmQhqvr!_RArZrt-|TJUAB9y6WBLY z*@$sfh-&S!$T%mkr&QTBdDWQPcG<7;a)G_2$~sC0VW!(<2TC%4m19MOoZ5rqFbims zg?TqSYk}F6|L(jP*kw}I>G@(zGZoP*s$N`Q0qkQ{?}PMa+{3c#o$HSS!!8D&PS53| zs}cHC3HFY*N`J*YnC=zqkoSS1n-J%}uCOCRJAr+qu$zW#hoAXOVQ&t(377|4W!CPH zkvrja?Dj$z|umuV`cf?=ZBWan!7LNEUuoZ%B^Sm~= z8t2Q~1v{h-#-1!ddlhydi?K&lz43)rz+O~XQ#IFnOJOe!YS#nwxxyYR_`7=)d9de& zCTOtdU+!|+AlNn8(KO-o=^p0RXk z0-Ng@NA(G85$4=l!C01yJmYDjV3wTY=_*zBf$<)Vr`r-(#B($VVb^Bf=9xm533kYP|Dd;NDqW+nodxgFG`d4!9}aw*W+cj98}uG_pO0Hy zyhg=t&un^LVJl1b0()PuPFhWG(`<4e03q5zL-HQ-%%RZ=OBZaZV7Jovyhl*BSz+zD z`#p2%1BHDx{~1pW;kiQQGT?{9f8#k1w!qj{jHX8C(Yyo}1a`S#PkFZu7)9sPDuwMB z5CqmD*fXC0rB~BD?68>2GoFug8T*04)>kq1qQZXdXY2!o-J849F^@73%W%CxMT}J_ zY-G_cU{e(~zN!lQkL3!RRpkWMqOc24wt#L_*eaAQpxuH!1>4QVbASh}GK#{I7t#9) zyB+5ih*fY*gx2ZT`rVF2RHCqd>iZmvX{N&7)E{>&qXvatrvJuqA#GRKfB5$~E~N() z_O$;`jurH%!k*OMafIlg!oJA;&=ICD6!xRsU5?e1QE9dQnf|F`4OJ>^U?%LJ<}2)= zUw5vhI)x3*^f{ZcPvLr3W5izam~^vXPkDHZTIl-<<1uQXpIY@~R9dMJ0jRC(R+^(Q z)^#f_wJ>5iqlD>+Pbb}hz%@=e930Wr^aT7;oYo7*v;U8tIBmBu&xIqKoNcQ0L)wVp zhdga`vy@r$Hd*#FBbGw>Rm{|NiF)G$7dzL{gR0(lir@9DPn2Dhb+NOZp0LWi_hD{s zw9C9_V{UGw*DYBf+21@H>Ax%tk_|96(Z{OZ<%1SDH&GrAJ=n9)EvR*FrjZt=MU7hL zl~k>;9TP5gcF;wN^6}9hdphZ6RhAA}I_X)3&B)ZeSCM19#k08dW6xHaXknUWc)VL_ znZgRu+iPfz!X6))?Y)MsS6F3nv3DEYVPW2J=-+mFRAE0qyBgSQigH(Gws*VTckRAm z<=*RP<^*Y7eED@05{xb69F%Prtdl+*lZ##83kti%p<%C12-0~5u$|pVQx(Q`eKT!U z7~AzudQ@R-gSXOW3S%q3jiw@MXD&ReZl|pZ<5_h({Z6o}>6&44ymwHB#Qj&(W*pew zN$rBMEirbZV3uFHlXi70yGzv@f|#La*}bal=M;0^Nxx0hbJDlz&w?G&HemMerneM! zFZ|MOGAFUrhrD;5wZyxd)?1i1yMigNRAsr9hk#u#7|V$#?7Q*YLwBfp%ySPdnQZZN zoprf)PdA=>=n_@NJonIQ!K~iy>DJplWcPL_dfT%sZgJ7>t>QAfe;4}h(e|KejUI

KKy+y^L*UT+)~pg&N;I%DaqZ!Z7o&?gC0ZLK`kkzN8@=2 zmaGv&UG*rL(>?!otmt;HpTV(?M!jJwpVU$(W}QwSiB>KCR;k^V-bd@b<>{XDnQ-G? zYjk%$!}Nhk348Zsfh7hc;T`gf|a_!e}iQE!^lugfj!6igYHo~`t5 z*VcKd^f$F%sod_u{y!(iE*R4&H9G9bwrj;K_XKtTBlLp=4U`Zx< z`qE+V-u0zY?}+7m zeN>ji={FE-@1y02>G#olh^_Zg7%}_-dKhuU0s0s*`vH0vvHAfzD?I~{=?@6~0ii#j z=<}V`$iE6P_W@duSo<)ILgajyVu+>>lRlc$=OcPPOgj)YAEw_UT0TsdB1%3?-$rzN zn0}6^_%MBrX!sL)3{mhWB&0snwlbfPwT=uH@h3lV!R)^0=08Pb*_N(^Z(zz8Cv`)I$$<8lD-aXJk6 z40&~q*IKbQRO76ms`53Y!&uK+wJNMRnL5+&rNmlPs>1n{u}r&cBOlW6a`tIm z0ca)z8WK z1JZvj=5%qzYuc;&e^tMSoGS;suRTJqRDT3`U-cl&i03Mp=HA>Y@ZmUjpT^d;Ph;!a zr~SPM)~I=lVU1Gy3C6;&H$W=Ceh3m~P@|;(rq{Zv^bm3u=zpVI(l6CN(Qio)>3cP{ zoE_Rl-WGiijq$YWnl^MuhkhM3!p`@K{p{1;ET~0#g#T9EYs{~#Caj^e(vjUmQw3nm*owCAg58k_0539r#+8lAb;7^p`pT8ypei&NVw`CAkD zSAmlAndU3TDE$Lt2O!(eK>hjZJB?8W>tPJw)5yOm3qHhPE1G81^*dnH7;6K6K>o(k z575dhOs_vyutQq(I7aFHD*8Ka5FOSSqbrIWHAb*%isS3Z(dg^+i;9c1uahHh4RQ!4 zXkVw7ilUBJ^>?bj4ESzft796pL`Ij;cM(UdUBr=U7jcBzMI4!S5l5t5#F1zhaa7br z9C>yTN1R>6k!BZhgxMvrWS7L3U9#r|2kdpbh$F`?;)t<}I8y8)-br^6@1VPg_sU%o zVRaElfL+9qUl(!2*CjjfF5=yF2wKuG)^2aHq%)BIIikD0+MfkJ2N==+SUlSq(OHMB zu=54ZR%omi@B>6Kt@>I-QmwjC(FAx?Rt#`uX_NB~8MQlP)LLb9T6Lbq*U>Ab*MesI z@Ee``w10vBK5ZK`^NBVRPgisr#olispLh4W^gH}Na_-VU9PjKWh$AE84O8Fr~l(;tG5dR{n8G>nS% zuIr4K2K@o^cVp=m*CBeS`m3&e+O0V|UB3g3U*D(QnDZycYm(k!ysAG84p(E`cj=9e z-?(<^zc2bT;C}Ed!5OgM7gR8tvXL&JLcn2kE?_zC=mc@^?-Ias1x*Ypui5_`TESXgZ+eqpJ9o>gIS!On!|8+{#xV9X}j}d2I>yjgq(u{O9pa!s=yTj zI|S|)cu*h>Vww_x2L(Q$J*E9w`%E)*pPr)+(1+{G^i}#c{RaKJ`qTRF^uOtDqu3Z` zj5HP)wZ_H9ZN|OE^TvN0x?`E6-Eo~`hvQDi{f=iG{hc|^;m%Rcan8xk%bgw0Tb%bh z-*wJ+gG+Z6(>S{A)kdi%&%Q2NhGrrCHl*S&q@8-SY!z6H2$^kKl4MljqeG`i3<20uj3 zpMpmKU#ZZ2R$9mC@EAD(b&Qe|X*Zybk#ZyL1=O)e^&*`HsN=3p8q#=t4rxEGxK9VD zVeeXb|3jlTOgbDyl zaIb;)yZ8wwcF%*69tOz2QRCBx5r8^&(!-D*38=%mMj$;3kblcG66tb49nZ6lLOKYj z2x{G0Sr+M@>c@tRF899jT!*? zmptS6z6Pk%ZHR7koYbrZ+)Yh@caaHrH`>>*a=v({Jd@fCs1(*5tvs7_giXfc-EQ2CQWiUlLj$9E0pKL)(7^oxj_amFhXzJ%IpA#Q&A@vc zLV)K%R|fXhVZa5@l7X}82;dTE$sp{K0hd8b23-XG7<38rW6)(1Bd&mc42*9(U<34H z&=nFlHbOrJ?$xt?TCi3b7};w8<8&=xhs2dv(e+4w4d;UV;$}7yAAMbhzR`jb?tV*TeWY&LwpmZ{pk*r_NP0wy@0z>+Mn)1 zDdJu2Pk`Uk4#C1+ppPhBE5wgG&e6`-R%zF3-_VNioY$NBN@IhO;|Mu6IG=OA;vD8W z*H!CU?fSOs0hgnLBl*-%9CvJStdRH|Mhw76D%FRs-ExO5mF{1zQGL*D8^Lu`=?>#5 zp5FXE<%dmsv~h#n-Rxes6TX45)0Dp2@j%hS}H{PGGZI+d_?zcssKUMZ?jQ`p`LJ^CGc0uB@e+ zc(@7j%x-Lpt(g{UZ?3n-gld}O zS;^yK=O;TH3(g5Qhog~tS`rR5NDrts+}tob(ipa|<5|?w#@GzAx!Ka6ZBj7P8I6%} zb3CO-7P||hk+|ZVR2t2WnoU;utmX!mM0!6X)GX=g;nfi z7OuPk;*VCfENse@;IxJYItHhd;X5XyRm4L8uzXnQR*8)~i( zHv+AT@r;}ig7pGviH28&qtn|~0RlhXxb@`;7B;JSg!@Lx-}=ut`(jxJ}p7gCcg(7-F}knuFYZSa5AixIO|Ow-Lp&nqycQYMLW)J7-Q?q=6>k z$>4CPY0BEVy6K_%weY~RBjHBmAIGewwZ+$9+OrFT6xMpvJn%z~lC+j;AP6);S*Hq@^PHLnh1@m*)G#U;7w^ID5e#dtqJOWIJcDZI43 zC2ScXtBEmQg;dVcXs9{X6p8aXNHwu#CQmCQPr*)V>(_*vPN}A7?v!hb(yZFz>#bf> zjjXe*&G7tC{hCN~7z=*98y-t7RJx(rktisw9mWh3X_*uDUO}0*m8m9Y4~J@(bu%t2 z(^|CH$yggzE4NR-VHNe-aZpWP`w+WHnYT3!?3h+X!qG%4;v^E7nkkE-=DG+wi9~_5 zRHjb;Q?Y|Zq4=8Vq1Y)~!s*m!TS(Mj5NZlro1Em%Lj+@cTNrJKG=~~%RySjeXPmgW z-9|Nt*%>pN7p;k&Dgzefw3%?PyD_o2TB1_w28im`qy$D(hgeBMB%0A^V#Ji$r#O+I z+&Gfvs+9@jkjGS*BiOi-g?S{y%9TG@uWyf;Z= zR$J`Td*-FIpDY63Wsz8<8~LNa$t&*GWkSba3o(!FqIST^_bp{Z~**`75{YP;DO+90V|vfP#j z4z;1JKHj@vhS|~{jjUeNXAy$$=JsSAwP;|T{!$8D>B*oJ}qHVD= zga;OqSi$U&KM?^3PdK1M7&a#yxA?8&V-njzB>ia$*JP$0-X(LAWG4}qE(tf8>yF)K z@?^nov(Fe8e)_nqlEQXpHKj*oSUUy*Yq+fpHDW`A4K1!lBK0%pOuY1Eo&HiaV1NGyv)<2W;vvKHJEq3+AC!u%_o>-Ex6WU z5DtJ+^X$`^lst7#BRMBBO1*a2!I~H(3pJk5SoN;WDmgt4JZQ(}AaO4?ugU}A^mAH6 zs0HhFFi~>6uJd7Al0&c-hJXXh_TVD?PP#tQ0^T*r8LwKI3M+c}jIG7*M=Kv`pRw$$8e63r04nz+v3R#Ocr5uatk_IhfJfBW{}uN z#dwSn@xu+of)<&q@UbaD4ioKFEx8;f*X|SEI0&O;+o`u`YOIr~b;UZw7trQScI8nvt^r%BQo_b%d-2$^Il)VKiaA4>xqnSI4NSxznPnanrRq z4iB_&)e=5rOxCc=_F2uTGr#TZ1zi!y!DbW1oiF#+uYyA5A8@Ds^jmoHkmksye{$ zSr)VIgV-mN*8Y*Va@N8B^tMPN4lHrV60gI?(L$^ZWz(F2c$uqg4c(W*{8>h zE%}Tx{NdN z^EqP*x&Zci=D4wT&MZe(jc~*{uf&vs@O+Y+-VlCHIBq9)GFQiRA6m*hJ+g|CoJW}qa;hB-t22-}bDPjccSr5T_xhPLL zGZMmmg&1xR$Hd?DajRFBw!ZQe3;R?_B0950dCHjGYrEJwn+!)2<*PB~$}uGJ*baK; zS?8^Y5%`v(B_-2`qsv0k2=CHj$FXc%l0@j3vH@ui_IS!CA$On4Rx%i{4W;i>JS$GI z8$K;otR|bCgh~p*h^tiHI(aZGMGJj~P*{wr>gwY7GiOw1A8;gkn>Z^B@}!HAJaUBx zUvZ1|cx5PHH>W9LMogLYThT9c!0jcB_tKjN~x$(`|Ul5KoaAG4V`qdB_p1jZR+{|?QS$z7UsKk8X!OKynQ;_< zO#gSHYaI(I%s4Tvu~E`>YneTa36GtTwMOFLozEwDCug^d$D#Q+-bPa$qP@AnmIb%9 zpc^t*t&&Si9Ul`!>LbER*1&~PbwgA=OM?n{0GdMl_^(RyQI1MN0F|;reTA_2xZS&& zPZj!-NIjMtOp)wl7luOpTAv3X{wA?cji z=OH$UpU`@Lw8eH2o*6ww1}w0(&YlJnUW!heiL7O(Aq4m2ba`+`PL79)K6^YV8I)(v zWw;fAdRR?%T=uhS7Q)-#3-QEIIBJvHhZ?lh4c;?k?i%WpL1iLjG=bp=B zGj;}dqg#fUWvJOMXVkiPXWft!j@>fm~?` zS@JNRT^@=?LpWw>2ydWioFvIOA$!GA+wF%={G{*+R_wMhKZ$zX8x&2QVxuQnw|m1p zgeM_&x85e|CieWo$u=uNSUBvwj_H|CbVtVn&4DWO!#>XDnGBwjH*gY#efjA=g4w>v z(2VTj_(xdwDs`0ArzXbpWMOmT$+l}RL8r{%GzI73Ipwx(;d?MiIpxD+)e`L`N0{XJ zBL(Nmi}@)iaX+&W{hLVhX^)*YTk7mz+7Z$<%{Ypc-`(M!DBnt37@gJB5^u-f*Qmv> zf0y7_xD4y?``jh?z3)=_z4b!;a+kbo@XOjberZc-b}B~nrG@wf?hO2Lw+SVU_*^}t&oRRq#Cqs zjvHOfuH(k^5|DK4)UrBu0YecIT!f1tdn{y+Aop0vJ>C*Rr3dxGLLW#~QYaqr1KY3V zW_CQSXLWQHTCKco)$8KIPm+a@DVzJpRGFRWemCUxBjFW}oI*jimQ7rMmzHR#-`s?~>Yutb}X=)GfwE+2nCci-i_3nm|^Gj`ECbP3m)&)-Tz5 zVIdH^pM}!Ptj@&_x0Y37b@egP#>)a+zt`>ZXD!$L z_~()VU5>Xs=vm9Nmb=_~RwygPmvB}XTwnvbRyY7Do!hG79xc}jnV{o!-2j|PZg=AEy|()uqR2EgUpVu%+5~qqYx>` zjclizZAGYdp)E0u&TBA!MNU>{k<;f+m{GqBF^Qd8FiJ|#@J`ZrR3p?8(W%J72_vSW6hAy-=6oV>>}>{xr8? zu?1w^V%Y}q0>I7#Nav9B z5+`7h)8onN9KkaK*CBZKKLp&VdHR<)tOOIF4$8SwT8Sg8Rb|0OeZI`jQSK7M!&$h( zz&svq(8&#kVTYNW6;ONyTW4nl>(z&8r2C4Tc##f@xeWg?##VyuKCAN)=1~X-fJp?0 zsOg1%(L<)jvjk9#YCJbo=$6sL)OI@xWz=9eR{3Kx-9FcS85&fLS*EP~b2lt^W@hJn zj4+_PQqwe)Ixz8OV%V};*?(NjddHM4%#;>WbB4R&g*q>QqLNe|nbe6&9zEN~<=u&x zRreei5j+^@KiG|(n39HOWK9s|X&7gZu3P4g8G_kics#mj;%PBPPnz4|$?QZg*eck1 zySycsRzrAvxlb<`oZ?XivYdx=V2OeGol;^K6#6Q4owbrtths#{9B>sAz%=~H#>5y%nAxe5vlsnJ@d!Fm9j>g7ml?bYEQD_u-_e}$y6)0-S0N|& zFu2D9la|E^6pNA5nTtd#C&n|F=vE7X+cmgza#qLZTZ zp>Iu*SZgP{tqfUgQVS2D2lMgTHdT1SFYR- z{1Vha^aSF^d?`v`Jco2YFOU8VRP(TOm^*l{m6brA14h#7M#ozrCp?JXT2=OBbrxam z)2so1+3LV}VF0%YSAk{<;VaoAOtkrOwqBTFZ8W%}vgfdb!z!E*t+3GJPgN9`8CZ2* z<+1Jf+y_E2!otEdklEvCr)3ZWSe66WPcaA^0qmgyq%+d)4DgN#ke5D&dj#I&4WQ3r zYD~7+6|j~}q&stgKox%c6#}Inl|Ux=`j|oIc!3igs8?tc7N&vFmJgH(oMm+I%Tn-H z|2(o+#9zYFXsMoeA)cOFkn#*0|FUU)Oaq-;Uao>a9+r`~Wu%_D#+$ID41dHaEAd00 zl3(sEDH&Ti25ip;pYr< zxK>G`q(rD^9im=xE+F8Rp6>E|W(ldKCp*8dlQs z`@vm()^obV#=2i4DRe}2_V+L6|i1k5)KFX;d%A>Vg%S^*x3J_EB|#R!rQE< zqkH>2VdQU5_R43vx%gi61kq*iQugOE1FvkRWr)%006E63#T%{`;%!uQxGuoksul|A zV~+QaSnnC)7WiXb`R#iAflrk27DR!WxN6|a5$0^fi5v%WjJXQYBY%cVt)&u);;~tj zhZ2#d5YP`CkHUyF$P@=v1a(*U!RZ@9Q;D~7S^ui=RxHd_yyuJcVMXChDh5StE}x+( zWi1lZwxhQp#Oq;2L3leCzhTand?rd_h=*B@WJJuwwTPo*68SdaonK+JJ`J&NNT@gh z=1(PjT9Vf?P;q2zMb%tB25%OtOnkX*ev2Jz%Zja=!LKnz!sE3WganQF$Dg@)6Pkt- z1CG|23u~kWGILK><8OR%WZpZk1aF)!!N0MPYYg6)#(!s<^_k>jjT}e$P2d~FJIieC zVy=t)3soCDa@?}5OU5ispG-fd%XlmTPZPas!&t;qG;(6&P$lEgok!2n=s6bEQfC@^ l7n8oOL{HkGnd8-C-Jh|~ZtL$V-f-?2{Xe9E{|znd6S@EZ literal 0 HcmV?d00001 diff --git a/wrap/SystemWebAdapter/SystemWebAdapter.pdb b/wrap/SystemWebAdapter/SystemWebAdapter.pdb new file mode 100644 index 0000000000000000000000000000000000000000..b189e615d05f027f7a78814e41afa4cf2cd661f8 GIT binary patch literal 99840 zcmeIb4V;x#x%YqXVc3F#f}*0L4LB+&j>9|HsJtpDZ}Os8qzp3~869SZ*&Bk=+8CA< z7M-lH=tQMO9V{&DSm_C$u*Y*AI**>L$4>Tt?EkkO&-2kT!%x>gwwU9((%C z#Sx*({U3dwKkw+H8&UM%JbClq*MSB0zWQc(BU@l{7j5{JH?mRQKxIGfU&f?d8yG}G z5D4c+ufAFhef3ov@ZH@v|9L%Hpj`c*_h$XS9;>=+neM6^lltBJZ@4B!?EHr8rn5g# zKmVR#AJ`MURQs!tL2*JdJbm@J(p$;sH~)T(SfE`0*YuYh|8=e6l+xEo5#Lm^8wK%^T+pP=Ma5|2sc*%*J0V zd-sIjzwaHL_qKohsxyE1-2Zw5nC~@T#NMj^54G-n;f|l=x2$d6aK(TB@cRc{dCe&c zUh~Fz0~DaQ>i>IR{MUs``+siOnCcIF=KD)O^42RqbZz4szZR;iJc;Z)m&Yu|Ey|$*JGJebxs~yZZNU z0Q0@(i`ZNBpZjn9pZUt5C7-U}^s!BEKk)Zkm;CW}ZqMj7Z=lzC0eY+cZ<{n^)yRLp z_Xvrb8TkjwC2W+T&DBT8*|#Y-PYK;d~v3&xuxyK*_p;>7|mLrY0K3$WuvI+ z;^pfStUChhtYiJo%*sY%eaMZLz&h($ulB4nfpsq^yt~1lPM%wm*vh9v# zHfGriTF#*kvNKznaxLv`jh!2NNzoQ@Z7$;4Te{9@Z*8Uhpl)yK+Em1~H*{_5?aFTv z$6l@bnVHtijg2{aR&*044~ey0<@xqjABk-_YeO#6mZc~6uzq7jGerzXGWjfL8u|w4$BE-K#}DR! z>-oD}Sk6t&TFJ0S`8cqa?;Ay1$oubLB!7p{pA6p$7e<$n{_A$g?d>IT;qobXjAC{? zIox<%(KG(v`qTg{cU*4NTdu$GiBzdo4_DY@NuX!I%GdgYoCvc#RJ;fN`GK#iwp1gs zuxcd(4MEmd?JMm+t$z1rrB$sct>ThtRf8ezF<-v@L8VoVDy`y@Y1MK<+RwdQ{Z^$_ z%Tij!CDW?KgtW82@xiYtty+%KDlVDU#c^NyF8ImzzPeV~l~#Wz)2cNGzCT!Y|5=Jx zD_2^@CDW?qhP3~7%)thwRf|?y#U<0KXN0s%UYI&WY1LztR&mL+YPliptbhF<)k>=t zt+a|ursdX~;SFX1noHCcoj+K`zQ@XbmQj&MXJIs(Othx`f2DX z(W#8w7e|Am6Qcv%>j%QDpuZKCc=Cq)SM^_K^*=zyBiJ!;_xI$ zHGX_X+>Dp;FUg#^VNY{Hw zv$8jJoz~nedsL$5yF!0bCm|%;!k5sqvp4me(cYG8Y-!70mDwm+z11G}neL;+)WVn1 zeRFT>u6B&xY!6kUcS`M84LR91HsISRB=z2j-uLyU-itD8+Sg|)(b>&uRfA4RN$1c` z#(TFpy3nic{{0F%|D-o{UedYoicIdB#@2Pt<*T5b6zLwuyXQ^!q`kk2?tK_Y+)&tC z=$~{{g*6ABoN0t$&j;X>ys- zzOF4-$(T`8XJ4{5+0RWl5o?J;*iHF9@;58roa`bz-vw>0y)yTQdK@{>mrr{HA>2fjk5-GV-+M>VcWMklIfy-jqQXQv;%kKAVn{8Oh^T~L+(xLjrD zV|>BdL1cq$a&7Pp?DNMXvCpiwb!#%6jVoI-VNU4b+`+7FJheEhr2k%H<=STDO1AHB zQmzy?x|+-96w1TIm(--^W93WOeKzpx%Tzp8$~DzqfC5b+uX>=#<~0RUggkCj1oHh^ z1@@1QCGHGI#jh6lHC!qR^{2881qu{3U(1e}(n^M3x20kqKDpm;3Tc&Bl&W`B`wS;V z=kOcq^I{%;4OP%T$%FaL@eq~XqMnC16!h?GoANx)Fdq0ajt6@mlwIXMJ1)1%;@2JJ z%Ti-JhC@}B5iyUEMLfL!pNjqKWLeHL9-;vKLs{lU^P>gM9visteenVh)mtl2xWIVO zm-A|lzy8giu}37|IDaCv4*C}8MbNXMW1*5Y4(iK%4p(Xq$5WSQgERU2^tcS0iSvGS zD)zVKYDh1IiSSXKPJ$-oPv%U_mc~@ zNZNBIyrhe$WQh8@qMpYE(P&!LOWfN7{QQ)1a}}4g z!zkLRKM1Rg$7-nN8ntuTt%d8M(3_xYPd7tpb1q&srk~_#bI}^;LTDQlTSgtwrO>rd z?8072uu?}o~5x5W9+cWvMR_cRvh8HvI+pm8B@fA5Aq25O0K0NcQBpyxU@AP=^I z17HA^z8d7gGvF1ltQtFk7ePPv3ATWHz)04xQ^7v)G-y5s-9SH-sR8$ZhrnzGiWOix zc)bKn!5HfIJfE^c)g=n|Pt5<{WZ=WhQM4#?V+$vNXj{$~Q{KCP(uXw3J>bLb^(Oa- z<2_t>$!ELtNPITZ4gyrI`#0=uR&i52!oGG5?LmRQ9*6Hyu3v<5UEb1}Ax8e?)6mB$ ztkQ<~v&_Gw=Y%08YHDn4UD?>gZnO5HYX-|cMe%Os;dyFbeLqnDO`YUzsXWpKD898OGnKA*uX>RoA8R z|0lKSqNpnW{}|t3$IWI()QQ7h@?UEDMfQB)Xnat~m)tNCqPf=0{jMNk5b8bD(EI$3pR8@|QzvpjSYZ zeu2?tQ1M?59nO6}U(ZHwwT4iRpk z>6a}O|~Cd#65~WhU^_l*$dmV zEjrps+|fKsFxgHI$xfE}d6TQLJ%qnQ?)QRR*)}1!68na>{Ol6m z{OIe_jnP%DsZHNVZF;t9Q$GxQ+X+eA%J)_HwI}Xhe7E%4f!4PdqmEmfo&eR{PXBP{NaRoSXIP>}DSa>{pL8R2{e`55vU{658S=It6cZ%glb;K!5l>o0s9$4}I+J14pMUE{GI zA5u}UwdAz|g&NB@+{yJmhI|r`uY;Zk9Sa==od~@Esx{?>P_O3%uB3N8I0u{ynqs{r z$Bz*y^Gb^Sw{h^19mYe|$AkX{SLeS?f)3&S6e#`@Z6L^%mg-Pivz`S#Hi!}8J`JyD?B7qRPKtXx7nCzEW1XscMS=AzfQ&Df$D#VG7>H`9#f&R=X5A-#OZ%B zbOzT-KMRV@+_d0a1p&WBzHoeOQV_)h2ot~JIi zgl>gi4gC~!5p)}LG4vkj5~%kTwda-e3*k)g_PY=|7Dz*XPxl8)dv{&W-%4|yv++RE zg?2s@d-(Ap6^|qGc_*8lD2uZ-Whts(%H-_zHmK?szcyb3Rr#rp=!Ph|tr5DC`)i<0 z&~|7BnujtToED6Enl*n%tz@*50h_unS9J& z>HS^g3wE8{$Cv8(P&g>_UHV5MU&+JA>yN~Trt#Oqr-2zd6Xloz+n5{H@ONj_$aOpP z(x{n{@&@@NQCJhEFqUk1jrq5CnQlp2Fu$jN5p*ka2CBQ~rs5s?Yos>**b zz3GzFrb`^3P?n*TQK8lo_wU;&%VVJ|6`W5DatFXIoKFn$?l5`hC*ldGNYp*%C;A-;iE=%>RH?cDWKW=`4SX!f71Om6=vHQXIVcRWJ5hRP8p zoa~AFcO~W8e6;1N@VvS7Q<*+#c7Dp?e`4j&h)dz!XC%yLgkco zNa}ntcY-uqbmaf2_D0OsMd#TZ0FOg?9@V<5`o-CQF;(expEWd_Uz&D2YhmfB zwBGMbu|D=8nU?bBo1-0ZTJLL?PfOb*?e;jW_bKm2@=wJUn>>+U`f8C zNL$16Jf+p1m-nAi&X*EvxqR|v6-JX*dF!C)qo;tj7ce)j`-9x~zD+9Lb5Of{5h#o` z9^;^zR<-}2VQ@Ux>S`098aLQ;aObcTe=gUPxu#rh5APBvy1KnD(OFz8-4%A9b&)$i z#TtkCBg!{Iwb#a2@A9=mmHwU3soeMb8OeREi?J0N68!$;4bUNUJZYkR*R$;YXh+|o zr>TU{{^j3!pD7jlQgp?5zjOvNWyhILw%0}D3+2eu*WCUdexKXlI}198`|9*py7W4K z=Y{~&;T-x?@mVy<_dZmLr?x&M~DxiM8~Ro>A5S!d+WM6=L7y&t9D+xU=7yNtAF+j&Lt^?p;~tYI=O zes{i}b(Q#PO!IzH%68cpcL#l4Aii(z&)Ub$#62*1NMVw!9g(eM9Kk{fY)MBwFF=2F)KioD$>GF@K1J};@d$qk6*pb z_dmcr8h`&ucxdkgGe*NwBiJI)vySq8~ zNTlLMApP!w%BNEsei3+m8K!}4n*P2KC{WG{P?R*INLLd8<-B*8WrO=yI@WX^^;@fPU^OOzjx)%avOkaJH)qh35 z|CdiYy}fy(e*HgwtUOw+F(qRM@Z4aeYsv>z*&^V?M*jl za#`tBh+C9dW$&&k{;m1qOw+o~mfXg=8Lf>iYqHc#Ax|N$b7M!Y{l?D5j@4?TV-J_6 zZrOzTDKpreZCTaQ)R@z5bW)e(*~p~+@qPQq1 zbpF3+&pZ(qzwW`8t8D%_P2IG0xz)S_PQ`MEMd}XEH=&{L*GIJO!p`cyYQk#vVLYI@ zS^G-4w#KDPQ>#A+AErNQZWnE3?{^KoA@rx@dm^^O^u;6SPmbwp=pXgJa8Bbz(_8mK z(Ad2_jQd! zIZ0d8F1)Vg+XZ93YZsyuS>;S-MHAXZa-8kQ*fNs#5bw2lK$rLg=`7`Q zQ)z|szvd9_%c~xSrK;YyqiXXNp?}^3W6wVo1-ZjXr?dSEnm?I~BhuxWi=%s?U$pyQ zg?@?af3<7PvtQ==4|Xl3cXC||6`u>BU*URzU0(zJD%bC_>rK#q;2Ie&{VpiT>pZyf z|1ao$TZwFuqq-9)N07lRYseQhWIACzQ!o4D8fL_?s%%- zNUe{Y?C~{EX1{lVjpk+QqWhaNBnUe1rd^{vV#7^rKxXu%wCux9GXn|7Y-? zog6PMn%H^%Kb&~=T+e|O_c=;L}noPuoCL82|-9G)wbj*^lNKm2BsA^Ur^RPow>Z5IRV6YLKC&vK_!q z=9B-Spmlu+Ysq(3$ft*BiF{!ko2`M4kStRt`OXdbByUDzo8BRzbVoCescfa=SdhE7 zj9e-^J*h-)`0YY($qi?OlI3NZO3yBlyQF1JhWB&#T6uSCpe7{cu0!s1C33H2<3L_j zPs+!f?F zA-&U9Lm%8_GLuUrp7o@^8f2QY(_6M2qE1Rk+VT$MJzS8Nv#GzLejm!U+2joI;@rO< zM2>#r;l>v0482t@J@Zva&b=Q(-ZM#g(>L~t9~H{D+!owPnIA^xZ-Y#0ls##a`%Ff% zzP2Dk8xYQpPKGa7C30TEX4*sWYq6ADm&uOFJp_v5o_!+Hoe$GqLVxxGwZA8b$86x& zJmt@ru_xeoU@OOiaWb!c0@^*i!uz()jQMG<_3NARXRA&o-vxHANooC>ru-Q*rLE@# zQYfom#}xETmi08!%C4faxu`!Ip%WSx#60|(q&$zajEAUrh?e8w*B9k^oNYWr#Y5Ed z(3^tlVmt&qr5S70o>Uk92ouqc`eeLpkOg0{(k|FAO$fAWaa^7byug4VQAu2sY zJr8lHk8SGx;PQH0YCJ@xhiEw--k&Y6$7RMtRC0?YJ5ZQm zJZ3?)^u8Qg4b?LWxt~{X-48k&s&RY{l)mK7scHV7%QgMO{SI|FbUxR#)5Lqe^qk-= z+|jtK-{96d>dz)9ZWMc#$H#qM_2>QD^6wK{1b_9-#Zbne#Cf%0MLfL!TAs(X#$%cB zxDKi@Y#?t^31gY`@cwDx99pt1E;k-LEpcPm^)ZhrMLfK}nTma-B#%bpu@WkOqbcSw zuZV~DAIs~p%6Qxe)mXYZ=22h7!~27&*sn?IakKGgg{qF%#5@)h@$mj#`LeJVkVjg3P zczA!LygjxVkGr9&+fTz!4H1S zlveu);gh(7-=eZLUWfO4h39^>!$@gEd~*LkdB!90JKp4(q_WQgE8EL2elL($*8etF zYAbw-a{M5aLwj0@Z+EoW`8SWk7_+8 z`^zTRn2rr)_SWwv&6C~e*xheUk7nH_T}t=-SDIc=nqEoUF+QY!*^OTDZ=?zhq||oq z*R4mh9t!qaWqNhkSd`T3GwAhv&-Aii!yet9TB&XW)cFWW-L|9K?|P_P_|~aCiN*>$VoZXuJ~LZnF0FqUo00OZXhR z4ept4?n#}!Qu3(w0L%5+Fy7sjKGcpo&~-%5bxr)rwz57V--`8$%`JuZ0jpWc_fufo z)U9vWR&?td?Qh6G(*8zaFQV{{;#%VT98i8Qf~K7h@BXeQtsnObX*I-&hl2J$)YkCn zkfn7;;T^bsEH3YdonrZLIh?Mz6PCZ=A4|3$H_OZBcPmczusE-mt$co5E1$2%@(nMO z&yP9f^POY)&MnEOdhp{xp?;FS@A;PR0;uX`bezBNzGms{`)zsI7a0%I9b#wSr^?%T zg5?vHY*D|iF1%M=vVB`GFZ*KSA?ou^iqFC6ox=*tz%%%J2f%>SX&;~gYy~^Pv)~|@ zNu@0ZJHcKsh{_uYa$pO13cLuWo(WH|3;Z>L`crrg(Q5wBR}+H&mGR&u{B0MNIR6=Z zz(GVPeMr+AK49`pePOuH{?*B>)&f6>HY{#X0=C)mb5VUWj-4>cdz6MHDaKEY4{ZU+>#Wj6PJ2LqkRQKNv zt>O9>sM2pSdM{M*k~y6FkVxaziS8{HI=83&8+Hu{`n#STxij%l6_oA(v>yn+-_qav z5b*S0seK~u&F~krfZB0b|LNW73iCa2|I)0}wfvRRRmu6U6{J_%5Z@bpzw|s<^7_r+ z@9^&R#IIwzd*{{b;rBbir=BUNg21#H2ik4AlPlLQ5Az!&`z-C+b(w4~e3e!X^}^2f zTzgZy8~l!D9jrc4x(*JyK5M#KS91EYBuL-c16|$Gri89Xvp$io+CK>E;V_PCehGnP zK>DLx^u(5nn^tGmWRC9KOgTFSJ;Uz|l6GXCO@FNiddiML&z{)uaVk_HxyEB&Oz-Ai zPi#0ZlUv>1+gEmZ7h#kW)rD&lC6W0QCDYfA!RsV%F2K zG3a^F^i0~3=YQ#gJNl!%)Y1hOe;L6Zh}&==Nv+>WK}nUYF_I=wIc;bGtr+ zajK((Kym`_bE6tJl+Xs_A*D0prmJLj^80s-C)4p`WXD(E%hY!nE`%@Z4X1N>H(fG4 zTst?CMstF2H18S@eS|%WC^a;-uxeu}|E;P`qr(>4Drp-OBn>a$l?->z5cX5Btq8Chuwl zY1p=TJho%Cy|a+t$1j&I$vJ4Z>7BGI>+tmTJ<&TcfL3DDxXu~K6>KVUf3s(rUeOcX zT>EUyGAwoSri)72XHkC-^}j@$!-SEZxPRF~O}F+$*9C1(O?@#%zU2z+p>sBp5%`WU z-xAk59vWvXu5Gw<@(nk%wl_7lX6s#jSI~Z3Ip0Eqq5Zi1?Tb>W)GW%Q_7m#pfR#I0 zN93yLYM}LM3e|Jo9*vNlf9bp16P68%gg7`k9RtAsfF!d78JLHZAxw4(s2GRg==`5O z)7j5}B|2BqK7yW)nVvPVmhRig=|A;MPmMBj)%_Bt?eSO>bnegsjgYkM+1U0>27a}r zBl0T`Z4a{TAv#xL+u#G$FhMKSxPSdWtS8cM>6xCgt#7vr+ua8bD)2Fi+HBBwpXr;l z>pAFqSv{}=)CpOLDR4CNAfBio^w@**&nT~OLH5Gf@R)bB4+NOTertD*-8+)d2 z+*X6WmDn`QVf#$ScyPz8%(3aFp6Mu?&dItS)$?&R=-P|}q>!{H{(CytGhJoRSl3Ey z`7WEQR@-yqCtRtU%wnEvqs)-oFrPY}!gcMpvTW`f$e69%jXrh=%Ng zrXT4A{rqI&_F|o?@;G}sp9H;!)i_fYwSzkJ{vUxU5I-G1W)t3oU77Bdydmz9N$=l+#|?dGx<0#&m}~M-D#R)Dd3q z8JNdZ&lJEiubrZ2c4fYos;9*SahD>Bc0Wf57oJnwmdzom(KRKHP_xErTRHwqQ>F@N4|5Irol>38B0=CcDQ6>JIZ{+@{LzwCA0)sDUH zm9*XWSi2dCGp}He&)wgX(Dy%kU0>OHc4J#}tIX}%OweJM>A;>+944bf73U%tmJhqW zEUw$`>RUD|)*<*L%j{uyvdv9FhhvXWhwv8Ux;gHLK*^Zu6;=#bI(h42|NZ_!$|6KDLk$UJfuq(JT5mqwiypw zQac-629L#ohx7>Zgek(Avh^*^uFLdzUX6Vi7Dx&wd*c3`iXLl%9)}rU-E+eD~oPTnL$q2=VY5Xo>N-dI@aY9@1CpFH%_sys&P4#c`^$kh2-+-s5%=d#lo8k*Y;i`Csvw%1!2%)tP-? zF&&cr=@sa3a@xkfEBKHBp#s~wHB;&L9hbA{R7l!(Hu6RXd5gWgO6+=#mFa-VNUmq* zAY)uCV`G*UQ}mnQ-um4te()jdtk8$-!{^a>kg=4{H_g55sk>9>(ee@-$e0`?3{FzXuxV*Nv7{c9mUKrZ)W4NXZ z=J7dr7mWXI8O6%as?13K)?MP3F^UEFb-Vg?n^KHANM5}>1Er{(l|JLlv=&ES0D;u(-JArtFHX$174gWtczev>Q9TLC4=A)J`ocB)3 zMmLvFRJIWH`R8H71+na}8IN+Zv615;S}J?Dhr7DO>nYhJAbaP{Ci+EX}AmDl4v#zRzkh=jkM{R~i{2}#)>vwWh*5+~~O7k(ejxM=5yQtnKVcvJ(` zi-N|BfzVHoSN8uT=93LS!!^X_#=`IK)tCLbpTf5YQ8Av!{+@hPRrEQipH~+;8?tzYlZ$GeAV*(1Jk6&)bDV8K2-W$2>mYCb-}m7mT}96_>g{(e&q z>hoX2n7%BQ?azCZm;EosL$p-3KYvkP_W!heqLMA@^Ish;;#Un}%=Tv@%FBM-c!-wD z_U9DJ%Vu76HW!s_(Q>l=*@5!1e_}jDOJ)1#`KhSfxcM{7C#vyE)aNg}r%&zMKW8s5 z`)T7Lnv|`6=ATKY;&W)pe)j)azGtDsNc$@&d!5n$f%^INc66RsG-vu}$>sHU&iIKY z^=N>nf2LdhoqI1>zF#}JQS=+A??)qCUl0DSf9_h|j=wV=qOzl?*I_Ci!1TEN_-CNy z^*>-dM3egOg`a=Mn6fV<`E}hM?kgO$e1C%W;rdmm>>Q>1H)S;qbjX`c2~Y0 zPBtE*$$F6f{#jc2@6eoX`ObizOj>@gWcGSz+=f+W{ux)wJ@4X@INqP3KM2E(#|UVD zu2pxM=gxM#m{XwQt^21yM{<2CbTo7-v<|9%R}Y;79Rs}*Iu@$B9S`+wdm>k1ei)tj zdm(kEZx0W5IuFKsQu@#b{Ijp}zUN!vt@;zyd@1Vfw;Dh6CdWg%`DajtcO)jqgiDOa zrOXqAIJXFRNBNS;s@|%s&e$-_GV457A^hlb-$=MfozZZpcq!M3tUO>z_lE zFO$+XL{sCm{#iqLzN{-4A11|V{WFE~e3dqQlV1J8KRZbA9a0~Xeezn;%2uMP7g1l{ z!rZEM;rHVU--NE_o_H&8fZy?W2UPv#dgu`74N%{nHBXE#YO8)vy}XaT()cw&<>NKS ze2U+r>G!$|_DYtk#dwJJg@>pw*D&5Sa+b5B^!NML<$1Ij4^i zcR}S#eG;m%=~FJ9-!J3Rbdt=|;`XSr`+eu~_Wv|IB=a*dufqGD{a$kU`R;R;ZwFNK z-RI-{wMDZ19&7n==zGRvujLKn{Z{z-ebB;sUotiWg7{@&Tp;nd@a@q2s1dldAI z$pdHdE*~7{8qfjm08fDzK?55;OTZ5BAgHckUIwc{9y|`71Cxg{w}b6q58y+=(NNF| zHiM_Yi(u;6>?;ACP1y?uFaXzr4sZu}8tB}}Y!+-Qz#gz4)SQb9a0l1{UIhJ^IF^7` z@E~{`)Q&`Fum#)$4uAopxDOh@U0@feKA&=c9M}S$1qZ>x3n&|S2s{b&ENv>d3+w_1 z!4NuRGq?pj4Gw@Mb?5;e0#AbaizoxQ2RsCx0k42%G~^DjA3O`Dj^Q3qr``tkfc;?f zSl$f=?g0;h8XV8bU_00Ys>h>0Xa$?WF0cU6d*8oGA;$zT|d z!-J&xL6A}5w};H0MZet%_6+Zk()=32w~_fmkXhlkhf2$~tB>bCJP3h)2RZ2ztq)cB zotIKMHR`worp!2e7dht@$vOHn$>nSq+Q#NGG9NS! zbNcr^`Zd7W$eqQV;Byb<`eabpn{Ob_k1Z)@3#C<4#&vO_7M{`txo%y8+`Q*KGcM0o z;{7<0io*DDEcaAS1>7;m19vO0A%J>u{b^)=A=}wE+loKmYgnEKxL!ZP}y(}RBi4`=<(32peI1* zLQjFtgARo*fEH|{{i&|)qWbdVQi@fB56Svk1TWP&?cV9K6sq`ZptO1S{8;UN8Q0R` zI_Rm;w?Wkp-VUvSz5`m&N%eJJw|c3*{5Y0UdvhUaqZROzUMr!pQ4>^pHA7{CRZ!XX zMyTp zmexZ@K;H?ig>HlvbgIQh>a*qR?f~igfo}nYh2Q`kzTcE6ssZD{T+j?|0b9XNun#;9 z4uAm{vsMBPU>WEDo56PQAb2ypF)UC`F~gZ@_TgPPJyCS}PC8BJb5Y^D_xA3EC5>6S zlJ}Lx=P97PA$@W^;NDeg@8w^dY2vkIxs7!*S{qx|WTUg9+QCap;}&+dv^BMKG`5Oo zA%4l~PCkao8!zf4J4oCw6Ko2t9#ka|GM>19X<+HaLEri9oogCfTi%t?TON;Y z-D7r2xw_^zOjY?0Qs-(TzJA>UK_u2EWYhH04+h!u8gI_{_L^v!73tv4FS;|h9mQ*} z@a|a6sUfUEhv$M0bxln=gnBe*K2>g&^CcKEk6Yg?Jb&oRz1b!Vzap=Gj$h%7$>r0Mm%57bS3qf3dHfVs8bKFw5WK&7AynQ#xSqjv;rn3H z(YM1?+&+^!j)$kpKLMJCN(Y*ZJ4-5GMEv56Nsclid$hXtNb18La`8EpZ;rt@>Mz`tYn;!2`r#0{r#N%<4 zIsgWsR6UptR!c#!9qa*5ffqr)2AA#4e|lhnR|%*0zv#CsXw0p2o<~^3sxAF9joS4o z8jR?a;hqkpA?f-TEJj2hrBR9A$)F)RkO~(aOv4i0M1_lfo6aD5o$>!I&0W{)=s==N zX2L{IOX?CED|BZ^&3)7>omFuV09{bY%#rF~hD$&74*YLNlGnW3dc7Kdrx7hXlmj5&>-w(}B z;d|;oH$7iAdp&A&p7FWU^!T~ixyAC|Y5bn3@p^p4?Dc}lU25&P@A*Fd=NEeVL$k-4 z@&5W_W{-7dk6)O+_n96O2KjU?R`2&(d%JqLzrV@!yw37pXYHoZ+JS5&+-LQ436rm` ze_`eLsrAPPm}qqW9IO9xEd6y>u2G{c-$kB|vG#kf_3y7(|GU%l_z#o+iAg^FlyRPJ zvhv+-a$h!mzhd=pn(;l&%JspMeZK3=-k&%9zioETn4KQ5@;r<)pmMA=J5OWc)%9>D zf6-~y-d?u$Hp}$;gXKTju0LVr9d3FLG`rjl5AoU5$J0kF{qQP(eTmi2DC=kUli0~O zJ(pVfPPX>&u$Aw(mi|xHUe2*`XPW7;*80!wR_;xv@8>OlU+a%4v+IxT{uI0abL00@ zlk~osc z`#P)ddDfp&rspMA{}0$W*T2E%A7$zPVEO;q=-oz#TmICkKK&ym|EH$U)n>1&&0cHF zK5H!B9BcRM%q|a@U0ybOJZyHj*UJ3~tH%q?PAwLnF}XhucC+?z-)OJbJIoIALOHBl z>#W?rv~s^-M;_ULQl{yB6y^}Ab5|JzO8 zoo4rGlg+Ni_tr3eSh|;u?~m(@4?d#!Jz;u{v3lHO%BJLO|$ql zVIDPme8uc>r}dvk%QwpGvJ@N04*f0P&#ix4H^%N;`5q1BIN#r&V)dUfeg0s4AFy`z zfL(90{Qa$58MFJNCTE)6Ut{gycB2EWK0aprH`(=_CjV~J@9rU9pO;O}IW|5#V(o8^ z<$KxgkFoJ2WAs*Q7xT=HbFBUU!N#Niu=@F-jeCto`<~M;b?mX#gQ_uJzbd{PxHpPc zY>iUW2Sqh((%1LBz2B7|qVKu*>8aG9*%1-!MS6oH8Tj_3RSdL3#uSjF5W;qRrmCdTiK^-qeZe*R8{R`6iYLT7^Vdh<-5u z3}hK`?}ItOkq*lfg`|5G)6)K@MmWZwuH4c7un&W8fL^Ja`3E z({cxaVPGT}52k`;pc!<4TLAqex(n<8yTF5BA9x%*4W0uB02@-#05B9ZfZ1RL(05ff zfX!el*ba7rJzzh03Ooy51p2Pa5c+-%7!4+anP4GU4pxI4xCiV84}r(Pli(TfJa`3E zGlvZV!@x)|9!v#u!7|VRZUJ|IyTA^x3p@z+fycqq;5nd~Cj8VB6SDf* zVZvnEevwbxI7U3YUV|8q`$c+zj(^ovNbm1k`ms85;M31`>AU*?_{tMPua0I(`;QRj7b?ex;q&?Brybh)tjsN{tr}Dx7 z%DSmD%xGWNmP^*F*TeK%6-6I1{c7>k{|5Rc-V9jiuU;3g<4SzFP`_G3{FQZ#2hY%F zy$+@uK4P$+)*;>NW^Zs?*_sJsL=VRjM%d(A;R^Qix|ojmr59TrYn@Y8$8KJ77s~DP z8c+Pr;2Sedajs%f=EfFYoyQ0gr+4=)J^di~-A}vwm$!6sFQoPNEG=y^q^-rjJhsF~ z_xF6-CfY_wD?RuHi94GV`1*T3?PSJ@)6EXr!$~`T-d-BYb;#r6EDt({JR|Yx(~*4R zL-Y7J%Y*(Q&sLYmb;HKC#hJ{_2{}H_=b1t|LY@JX+3U8jJ=@|x-V}86ah8X+7xHX& zd8FH+d3>DZp)CY^z3B3Ir2>C{&(c!If&Vl3U1{n#+upi9W5o}7e4OQBZE%*^csa&T zNA`Z##5+zyJ|A!SO4en4%G6^YTbGSb)T7oyeOx_;uZb4w(Z_lI;}i9`+2xU~4$b4^ zED!Y<+W20V2cL1h|3E+}gTL?7PoNG%dhOr!i4INg?_2uB`m&z7D3{*fxAfFq;J>OFgMG@aCy!vP@Oh1AqHec2p2fbtzh`OjxkLNZ zzGI)LIIX{DY4MdqT5TL)Kj*@Pa`}6f79Tg*ZoE$$Tng^{eFA^q(&L+k^v_s&o95&6 z{=TJeETq>yW*_=Wsn6~2Tl$rS^uyBS)BF3DzNwIYi%Vaa+JpZ7zNM#+gnqa$PG2pM-Iu!R0CM`};VbXCi&&(l8dgJmt51=J+mJ*eoft zAF{{gH@@_#z;_FNYM(AXGIl86L-#yzX*$gIR$mYJkOBHVe!$0 zLeAQd%e3i5%-K2)@~&Z+U!Td=`DA|ilHB@<>&nYEo#@{|rvra2oeE}(b@H-JC&rJ^ zZ}#Hv`mwoqz3cB=dd7y(cC_d0(;vEi^Kq7kF=B+(MKeBYpQu5d!K}vK-?;FOSl_RG z8q3R=5%i;5^E7B4E93c@4LRK}>=zEQxuzLei%gc%A6MDlr1aCLnzb`Iek_}lNm<94 ztS0I+^jXO|A!@KQ@$SX9+R`k_cS6uHVRPjh*hQImH>}?SWh@LfSNc>Geo)btlOdA2 zanjf2sZaPC1DM;o%H!iKPr}!boW5n|^uES_BI8axmczd^Edse`b(k1$n%#Yw_fVhA z$N4;y68_b8mq!ix&^$iQ@+8WvXLEg>pE0Acjc*$_C+fn-Ssuz9Y&(}ZH_lVy`}sJ_ zlc@K7$vjK=KvnxXT4tf%eZ1wP-h(X7x3MhyZFHzdA7^~MKx??dzWILkx34DEjabEuaiV;2k&%H-oMA9Hoc zr{{@%osV8VpO3eEjfH%##PXc+Vu3-PkGFix-9cWCxz)=npU=lzzQi1^XOVs78+Wv4 zY5H-W^Y<-1jV$zuWz2DX@o$tm=;ZHNT9|~idQRCl@;`zOY5hG*o9I6^%#oJX|Cl+U zi;wepCMSGbJ;&@DxgW>7o)BdC`<6c8+xBB_>KpOH_L6?%?_2tWZ+nYNuf$%Zz~A4u z^azIf1{=TKB-3Q(b1-OofuF;RNv3&~m3-j}SmsVqY z@iRAn-}9b=4Ht#^nKAm9a_g1YFFSPqB|K%jqGTf_l%v}5G+EgHVw1JAD_KXdHu8Cm zC-ro>@tn%o-@X2Y-J;-E2K}{43Oai}#-Dn<()d5s1O8!iILPq4Oa|>?zRAcjr&L;o z@I;1ckIUlunH<_tD2tw%R4&J_o1sR@~$)FDgd(G}!c{$WG z!sc#}@+@vzomo@x2Rtv6!8jUZY^6dfE=!3F&&y;m_68ZF zXwbj2zF;IHz20V8RiV9ko+gXACdjJcnOtSERG{** zJWrFwd=q5ttyq@Ig%6NzZ(F#!(+zUL=kPpD7V}P!)xp`t%F9(=mgi}*n14e1*7?ZF zWEFR$P$tjM`S7Mjm8%UM3^49?<#C%4}BX zNI{0@Wipt5LL1mqu?$x)jal~|M1AeN(2qP%lf^s~>So1Bm6oS)bTlc)^D{YU5acWy zQn{QN?e@}|M0q?vlf#G+*1xYfIi_18y}xhinM_FTxtMy*m=D%YH> zYawx&JU^3@m~$TMfgF{oRF3Coa+q_jxA9~3up=#xt*z%YXWDWtt6DOh$zfzkCto8i zL>1bi=WlYEhl1QzeoJ^{cI;BFirJ-H&)?)G_Ns>QTj8UUJGW(3CdV_GP}*rLi~5@9 zXL6XA-WJB?p2|^Uv7$SXOo#E|oTX;M^E!#0aldGGZ%XQS5x!KoQ(uz}E zI(1!<$rWVL8k-t(nM3yIJ%2BE9CKK()7IffVyCilRnS8OGfl^3^}J0c^H`8Mb40~5 zRV&@f^t??bbJ@Ap2A_8_rE>UiaDh!Wp|ekC`I(zexBMMvOXtOzw&u%QTFtzn4f;6C z!yFUpw4wG0$~kRaZnZ`cY7KY9Z`~E&3%yOsFU@kmFv#`%O)m3Iko!vS%9YKF*#2;mbp07 zxxS?-lk6)#o#kg<3HfJ^l%A5UT z`981lWb6p_^@`((u8HIFA&-xoqrwLof*$_9rBBpn zzbd6Ke(vw@Sz78d*t6B8O?)6BF*f)(%R{{eeV%c73LiKK`uO{no;nNZ^~}ulDLPx= z?^}B6E9kVlkp2+=&&OFF>MYo^7UN^1)^*v{u|54gOG`Zk{&y789>U+pS)Rmrth%j^ z&({^dusD?8r}23wVy`fk*HC|P-jWykhP*zF<;8ZPE$U2K$eVnzZpi23EnmWh`mI29 zRQ!V5kjKYa9&8x&f-?#MG^Ud)3wgAmF z4*FZZ2HPGkl*Zl3U7BgxxQ}v|rEl4|uW`4le7lKb%iV=id5>_nt9;)lZjjHWBdT%G z-#-Ff<@+&lxS1}L<~zvUuJZkvxWzu(A@Z(S$Jcg|?+e}J zyN9^0?D+t3JQ^y}MZfXa4gar?)0>p_t_}sAEhJk}@NYV}HnVbCb7Kd;JgbX+|CyQA z%#AE4+itWIzLO@+96xQ$p z95ZER{SlROxO*3nr0&7KM_$ea>v9FdP8&C7#`Kx9E_cdzU&fQ&JCT%7XS$DEp7uCs zIQFP+)_OK4qA6p>Up`@C{WK@`Ft$C-y>Ce=XM@AajT^Bog9GGO+W%1Zelp4IcO>@jLZHgV# zHnui8zMAbc_a3fYC-dGT{@#nP7{V$1ahkjM_1$}Off;f&Lxlo!<>)(-G z#OWPbDdkb+jUGTiDn|#x{$=BFT zz9!=jn>)bmF>d z6Z47ds_YAi3u9|(8EzzQX&1WaJ&j%Um0uF4u~ngz=YJB%aZ(pbypRfcWd#OeF- zVNNZz^{#I6>D%usyUQ>(=ukAw5EODW) zg#1b>J8UK{=vf-~Vd6p?ERFj(ao%4j=oEPF>LyO_P3}tG{%+!aL|m{-sV=|hCf{?! z4UuAm(tLVvX^o3HG*0KgLwhOBH;TCPy2z(@o^I$OPVYJmbyUhz??2_yhzq50r%(x@ zy_Cj{ATHbsR7_O2wZxt1I2O``xQWD#=_2k%;y6O$LMhM9#D#ua8h1Bwp+A(y?d~Su zqr`Ppz9)zq(SM5^PoL=bPgpYS^7|)hhzo7EG)~{6>MEbUCzUZq zrTO$7Cv#8Pnk|<19C5*B#c_PUg*g6qf$1O)s=qX6*+aiAjXRY%nv4sjac2>SY0Ac( z+YQf2-NeoAChod!;%@3D?%mzQZ6Pkq0j1^pOgH&UnMS# zOQm`aWZlqJ+!@4$zFC^@LgI#YA#YYU`K~1{_!^}=*L1`4cH+9SwSJe-70<5{7y4hR zyobBtxu3W&CYR=WhPbZU{BOI7)5pQfm*FE%3?`0aT`u&EK9U#nQeI@4Vo zG`{?RxKO^*xF2>C_at$lj!N_WvYUL*cN6!!ZsPt(Tvuf{mP+rc41p!eNGo~bGwOKOWgD>@_m!II*SW_j4oxDUl148@1=2a)|bypJ+=7nRU&jt4IeD&3(#D%f^I48vmPcg1%iF>a(o&$=;`R_dO5)Rl`eNz1T z=e}fr!XXuHXMzjzj*oZfRE9r3v4c21XX3&MT!(yBc-;fteQD))-M&C0*ZB^Ga8H!4 zk#HwPjy}lg%Oj#=sBe8?^EmuoeJS(=r-yXu>c9Uq9o`2012Xi!8|_1X5xNZSdI!SS zBsdY2R`-P&7cbYD%k1*THhvqtoD*nz8+vwmyj^MgwB6h|WFxh%Dcb|SVS{|Rd+=6x z2-Ztn%RF}KCC-TllRe`Y+de!N=^c9(J>=*S%UHp}o_)_s9M^g21La;~Tk;IIXI$Ox zx>)@AH-G*OU5LIJ{;^J`&h5jAuEYDkE%I+m?y4J;`rZ3)xJEk9Z^&*s`vdj!?-}-i zJ<&_GztTG&FPhuZcJrLJRqfG5ZH;R)Av+1JMyptl+xw5sr>1Kap6^GNa7d2hH zd|hJj=m>*H)*UH)XJ%!iKQOTTkQ*($0j-l$%FDC81X|(#E68;4Q=t#w1$~?{S8IfL=uuf08dd(Pd6Sbz; z`;1p*__2Ct<}Xl@vF^N8Fud%NPNaQGt*6!3|LK3wxe31nY)!bp7Pj+i<@b&N@);GU zwcD4;#IiHG9IAEc9{dTG2hl*-$ZJ`}wfy>OsN{SA$Y1Lq9yip5r>`C-(Qk(TLKe_k zr3Q51*iMGNd$_0k8P(Ac22h{N`TIyPl63MlC*wm;g`d88H5Xs|8Sd574rW7V!cXs3 zUWO06od(jt-wm_b$0F@s8rsvO9}SP8Lw5L-8hJz8{Y)}idrjotS1G3d9a6Y&IsLU6FI&cxF2V=lk zFb<3d6Tn0;38=2Lmb@6~IV|RiE&-Q<%fM7H4NM0!z)Ua;Tn?@Pm^_*Tt^`+sxnLfc z4;Fxh;A*f4ECx%!Qg98p7AynTfwuvzp_c=#;jRZafEAz-tOQM<8DzjJa3fd^TEI=< zX3z@OfHu$$I>1`c39=vu)`9ilonQml2;K$W4Q>Iqg7<*;f;`v+ZUgTFo5Ahi{on)O z4)8(nA@E^vC)ff$0zL}1f{%f}10M%>flq)>f=_{M;BN3~@ENcjd=~sY_#D^)J`cVC mz6kCC_ku5hFN2-nE8wf(AHd%#>_zY+e=Ff{%Ke*L;Qt3Dw?Zud literal 0 HcmV?d00001 diff --git a/wrap/SystemWebAdapter/project.json b/wrap/SystemWebAdapter/project.json new file mode 100644 index 00000000..c6cb525d --- /dev/null +++ b/wrap/SystemWebAdapter/project.json @@ -0,0 +1,17 @@ +{ + "version": "1.0.0-*", + "frameworks": { + "net451": { + "frameworkAssemblies": { + "System.Web": "" + }, + "dependencies": { + "Microsoft.AspNet.Http": "1.0.0-*" + }, + "bin": { + "assembly": "Wrap/SystemWebAdapter/SystemWebAdapter.dll", + "pdb": "Wrap\\SystemWebAdapter\\SystemWebAdapter.pdb" + } + } + } +} \ No newline at end of file From a88a2a30bf67e0ae26868d441b61c27ad089f10b Mon Sep 17 00:00:00 2001 From: Anthony van der Hoorn Date: Thu, 3 Dec 2015 09:28:45 -0800 Subject: [PATCH 13/72] Add sample systemweb project --- Glimpse.SystemWeb.sln | 7 + .../App_Start/BundleConfig.cs | 31 + .../App_Start/FilterConfig.cs | 13 + .../App_Start/RouteConfig.cs | 23 + .../Content/Site.css | 24 + .../Content/bootstrap.css | 6816 ++++++++++++ .../Content/bootstrap.min.css | 20 + .../Controllers/HomeController.cs | 30 + ...se.AgentServer.SystemWeb.Mvc.Sample.csproj | 213 + .../Global.asax | 1 + .../Global.asax.cs | 21 + .../Properties/AssemblyInfo.cs | 35 + .../Scripts/_references.js | Bin 0 -> 600 bytes .../Scripts/bootstrap.js | 2014 ++++ .../Scripts/bootstrap.min.js | 21 + .../Scripts/jquery-1.10.2.intellisense.js | 2671 +++++ .../Scripts/jquery-1.10.2.js | 9803 +++++++++++++++++ .../Scripts/jquery-1.10.2.min.js | 23 + .../Scripts/jquery-1.10.2.min.map | 1 + .../Scripts/jquery.validate-vsdoc.js | 1302 +++ .../Scripts/jquery.validate.js | 1245 +++ .../Scripts/jquery.validate.min.js | 16 + .../Scripts/jquery.validate.unobtrusive.js | 429 + .../jquery.validate.unobtrusive.min.js | 19 + .../Scripts/modernizr-2.6.2.js | 1416 +++ .../Scripts/respond.js | 340 + .../Scripts/respond.min.js | 20 + .../Views/Home/About.cshtml | 7 + .../Views/Home/Contact.cshtml | 17 + .../Views/Home/Index.cshtml | 31 + .../Views/Shared/Error.cshtml | 13 + .../Views/Shared/_Layout.cshtml | 42 + .../Views/Web.config | 43 + .../Views/_ViewStart.cshtml | 3 + .../Web.Debug.config | 30 + .../Web.Release.config | 31 + .../Web.config | 55 + .../favicon.ico | Bin 0 -> 32038 bytes .../packages.config | 19 + 39 files changed, 26845 insertions(+) create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/App_Start/BundleConfig.cs create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/App_Start/FilterConfig.cs create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/App_Start/RouteConfig.cs create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Content/Site.css create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Content/bootstrap.css create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Content/bootstrap.min.css create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Controllers/HomeController.cs create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample.csproj create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Global.asax create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Global.asax.cs create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Properties/AssemblyInfo.cs create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/_references.js create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/bootstrap.js create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/bootstrap.min.js create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/jquery-1.10.2.intellisense.js create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/jquery-1.10.2.js create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/jquery-1.10.2.min.js create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/jquery-1.10.2.min.map create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/jquery.validate-vsdoc.js create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/jquery.validate.js create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/jquery.validate.min.js create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/jquery.validate.unobtrusive.js create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/jquery.validate.unobtrusive.min.js create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/modernizr-2.6.2.js create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/respond.js create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/respond.min.js create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Views/Home/About.cshtml create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Views/Home/Contact.cshtml create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Views/Home/Index.cshtml create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Views/Shared/Error.cshtml create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Views/Shared/_Layout.cshtml create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Views/Web.config create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Views/_ViewStart.cshtml create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Web.Debug.config create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Web.Release.config create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Web.config create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/favicon.ico create mode 100644 sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/packages.config diff --git a/Glimpse.SystemWeb.sln b/Glimpse.SystemWeb.sln index da45e691..750681df 100644 --- a/Glimpse.SystemWeb.sln +++ b/Glimpse.SystemWeb.sln @@ -24,6 +24,8 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Glimpse.Agent.AspNet", "src EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "sample", "sample", "{4F6B131C-CBEE-44D2-891A-FD88998A3331}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Glimpse.AgentServer.SystemWeb.Mvc.Sample", "sample\Glimpse.AgentServer.SystemWeb.Mvc.Sample\Glimpse.AgentServer.SystemWeb.Mvc.Sample.csproj", "{342C28CC-82F5-4DAD-A176-669BD567479A}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -42,6 +44,10 @@ Global {06F2EF61-61D8-40C9-8BEE-EBF64352DE6F}.Debug|Any CPU.Build.0 = Debug|Any CPU {06F2EF61-61D8-40C9-8BEE-EBF64352DE6F}.Release|Any CPU.ActiveCfg = Release|Any CPU {06F2EF61-61D8-40C9-8BEE-EBF64352DE6F}.Release|Any CPU.Build.0 = Release|Any CPU + {342C28CC-82F5-4DAD-A176-669BD567479A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {342C28CC-82F5-4DAD-A176-669BD567479A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {342C28CC-82F5-4DAD-A176-669BD567479A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {342C28CC-82F5-4DAD-A176-669BD567479A}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -50,5 +56,6 @@ Global {C0FB7983-E851-4567-8540-153F9B7EC42D} = {6AD4BC4F-CA12-4EE0-A6D5-BBE4B9CC56EC} {C6EFFA30-9D16-412C-8FD7-C87B909E030E} = {6AD4BC4F-CA12-4EE0-A6D5-BBE4B9CC56EC} {06F2EF61-61D8-40C9-8BEE-EBF64352DE6F} = {6AD4BC4F-CA12-4EE0-A6D5-BBE4B9CC56EC} + {342C28CC-82F5-4DAD-A176-669BD567479A} = {4F6B131C-CBEE-44D2-891A-FD88998A3331} EndGlobalSection EndGlobal diff --git a/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/App_Start/BundleConfig.cs b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/App_Start/BundleConfig.cs new file mode 100644 index 00000000..4cda1691 --- /dev/null +++ b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/App_Start/BundleConfig.cs @@ -0,0 +1,31 @@ +using System.Web; +using System.Web.Optimization; + +namespace Glimpse.AgentServer.SystemWeb.Mvc.Sample +{ + public class BundleConfig + { + // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862 + public static void RegisterBundles(BundleCollection bundles) + { + bundles.Add(new ScriptBundle("~/bundles/jquery").Include( + "~/Scripts/jquery-{version}.js")); + + bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include( + "~/Scripts/jquery.validate*")); + + // Use the development version of Modernizr to develop with and learn from. Then, when you're + // ready for production, use the build tool at http://modernizr.com to pick only the tests you need. + bundles.Add(new ScriptBundle("~/bundles/modernizr").Include( + "~/Scripts/modernizr-*")); + + bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include( + "~/Scripts/bootstrap.js", + "~/Scripts/respond.js")); + + bundles.Add(new StyleBundle("~/Content/css").Include( + "~/Content/bootstrap.css", + "~/Content/site.css")); + } + } +} diff --git a/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/App_Start/FilterConfig.cs b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/App_Start/FilterConfig.cs new file mode 100644 index 00000000..2cbc76f2 --- /dev/null +++ b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/App_Start/FilterConfig.cs @@ -0,0 +1,13 @@ +using System.Web; +using System.Web.Mvc; + +namespace Glimpse.AgentServer.SystemWeb.Mvc.Sample +{ + public class FilterConfig + { + public static void RegisterGlobalFilters(GlobalFilterCollection filters) + { + filters.Add(new HandleErrorAttribute()); + } + } +} diff --git a/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/App_Start/RouteConfig.cs b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/App_Start/RouteConfig.cs new file mode 100644 index 00000000..11e4fd85 --- /dev/null +++ b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/App_Start/RouteConfig.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Mvc; +using System.Web.Routing; + +namespace Glimpse.AgentServer.SystemWeb.Mvc.Sample +{ + public class RouteConfig + { + public static void RegisterRoutes(RouteCollection routes) + { + routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); + + routes.MapRoute( + name: "Default", + url: "{controller}/{action}/{id}", + defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } + ); + } + } +} diff --git a/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Content/Site.css b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Content/Site.css new file mode 100644 index 00000000..6ea5d8f6 --- /dev/null +++ b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Content/Site.css @@ -0,0 +1,24 @@ +body { + padding-top: 50px; + padding-bottom: 20px; +} + +/* Set padding to keep content from hitting the edges */ +.body-content { + padding-left: 15px; + padding-right: 15px; +} + +/* Override the default bootstrap behavior where horizontal description lists + will truncate terms that are too long to fit in the left column +*/ +.dl-horizontal dt { + white-space: normal; +} + +/* Set width on the form input elements since they're 100% wide by default */ +input, +select, +textarea { + max-width: 280px; +} diff --git a/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Content/bootstrap.css b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Content/bootstrap.css new file mode 100644 index 00000000..6d6e6828 --- /dev/null +++ b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Content/bootstrap.css @@ -0,0 +1,6816 @@ +/* NUGET: BEGIN LICENSE TEXT + * + * Microsoft grants you the right to use these script files for the sole + * purpose of either: (i) interacting through your browser with the Microsoft + * website or online service, subject to the applicable licensing or use + * terms; or (ii) using the files as included with a Microsoft product subject + * to that product's license terms. Microsoft reserves all other rights to the + * files not expressly granted by Microsoft, whether by implication, estoppel + * or otherwise. The notices and licenses below are for informational purposes only. + * + * NUGET: END LICENSE TEXT */ +/*! + * Bootstrap v3.0.0 + * + * Copyright 2013 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world by @mdo and @fat. + */ + +/*! normalize.css v2.1.0 | MIT License | git.io/normalize */ + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section, +summary { + display: block; +} + +audio, +canvas, +video { + display: inline-block; +} + +audio:not([controls]) { + display: none; + height: 0; +} + +[hidden] { + display: none; +} + +html { + font-family: sans-serif; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} + +body { + margin: 0; +} + +a:focus { + outline: thin dotted; +} + +a:active, +a:hover { + outline: 0; +} + +h1 { + margin: 0.67em 0; + font-size: 2em; +} + +abbr[title] { + border-bottom: 1px dotted; +} + +b, +strong { + font-weight: bold; +} + +dfn { + font-style: italic; +} + +hr { + height: 0; + -moz-box-sizing: content-box; + box-sizing: content-box; +} + +mark { + color: #000; + background: #ff0; +} + +code, +kbd, +pre, +samp { + font-family: monospace, serif; + font-size: 1em; +} + +pre { + white-space: pre-wrap; +} + +q { + quotes: "\201C" "\201D" "\2018" "\2019"; +} + +small { + font-size: 80%; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +img { + border: 0; +} + +svg:not(:root) { + overflow: hidden; +} + +figure { + margin: 0; +} + +fieldset { + padding: 0.35em 0.625em 0.75em; + margin: 0 2px; + border: 1px solid #c0c0c0; +} + +legend { + padding: 0; + border: 0; +} + +button, +input, +select, +textarea { + margin: 0; + font-family: inherit; + font-size: 100%; +} + +button, +input { + line-height: normal; +} + +button, +select { + text-transform: none; +} + +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + cursor: pointer; + -webkit-appearance: button; +} + +button[disabled], +html input[disabled] { + cursor: default; +} + +input[type="checkbox"], +input[type="radio"] { + padding: 0; + box-sizing: border-box; +} + +input[type="search"] { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + -webkit-appearance: textfield; +} + +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} + +textarea { + overflow: auto; + vertical-align: top; +} + +table { + border-collapse: collapse; + border-spacing: 0; +} + +@media print { + * { + color: #000 !important; + text-shadow: none !important; + background: transparent !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + .ir a:after, + a[href^="javascript:"]:after, + a[href^="#"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + @page { + margin: 2cm .5cm; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } + .navbar { + display: none; + } + .table td, + .table th { + background-color: #fff !important; + } + .btn > .caret, + .dropup > .btn > .caret { + border-top-color: #000 !important; + } + .label { + border: 1px solid #000; + } + .table { + border-collapse: collapse !important; + } + .table-bordered th, + .table-bordered td { + border: 1px solid #ddd !important; + } +} + +*, +*:before, +*:after { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +html { + font-size: 62.5%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +body { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 1.428571429; + color: #333333; + background-color: #ffffff; +} + +input, +button, +select, +textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +button, +input, +select[multiple], +textarea { + background-image: none; +} + +a { + color: #428bca; + text-decoration: none; +} + +a:hover, +a:focus { + color: #2a6496; + text-decoration: underline; +} + +a:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +img { + vertical-align: middle; +} + +.img-responsive { + display: block; + height: auto; + max-width: 100%; +} + +.img-rounded { + border-radius: 6px; +} + +.img-thumbnail { + display: inline-block; + height: auto; + max-width: 100%; + padding: 4px; + line-height: 1.428571429; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 4px; + -webkit-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} + +.img-circle { + border-radius: 50%; +} + +hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #eeeeee; +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0 0 0 0); + border: 0; +} + +p { + margin: 0 0 10px; +} + +.lead { + margin-bottom: 20px; + font-size: 16.099999999999998px; + font-weight: 200; + line-height: 1.4; +} + +@media (min-width: 768px) { + .lead { + font-size: 21px; + } +} + +small { + font-size: 85%; +} + +cite { + font-style: normal; +} + +.text-muted { + color: #999999; +} + +.text-primary { + color: #428bca; +} + +.text-warning { + color: #c09853; +} + +.text-danger { + color: #b94a48; +} + +.text-success { + color: #468847; +} + +.text-info { + color: #3a87ad; +} + +.text-left { + text-align: left; +} + +.text-right { + text-align: right; +} + +.text-center { + text-align: center; +} + +h1, +h2, +h3, +h4, +h5, +h6, +.h1, +.h2, +.h3, +.h4, +.h5, +.h6 { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-weight: 500; + line-height: 1.1; +} + +h1 small, +h2 small, +h3 small, +h4 small, +h5 small, +h6 small, +.h1 small, +.h2 small, +.h3 small, +.h4 small, +.h5 small, +.h6 small { + font-weight: normal; + line-height: 1; + color: #999999; +} + +h1, +h2, +h3 { + margin-top: 20px; + margin-bottom: 10px; +} + +h4, +h5, +h6 { + margin-top: 10px; + margin-bottom: 10px; +} + +h1, +.h1 { + font-size: 36px; +} + +h2, +.h2 { + font-size: 30px; +} + +h3, +.h3 { + font-size: 24px; +} + +h4, +.h4 { + font-size: 18px; +} + +h5, +.h5 { + font-size: 14px; +} + +h6, +.h6 { + font-size: 12px; +} + +h1 small, +.h1 small { + font-size: 24px; +} + +h2 small, +.h2 small { + font-size: 18px; +} + +h3 small, +.h3 small, +h4 small, +.h4 small { + font-size: 14px; +} + +.page-header { + padding-bottom: 9px; + margin: 40px 0 20px; + border-bottom: 1px solid #eeeeee; +} + +ul, +ol { + margin-top: 0; + margin-bottom: 10px; +} + +ul ul, +ol ul, +ul ol, +ol ol { + margin-bottom: 0; +} + +.list-unstyled { + padding-left: 0; + list-style: none; +} + +.list-inline { + padding-left: 0; + list-style: none; +} + +.list-inline > li { + display: inline-block; + padding-right: 5px; + padding-left: 5px; +} + +dl { + margin-bottom: 20px; +} + +dt, +dd { + line-height: 1.428571429; +} + +dt { + font-weight: bold; +} + +dd { + margin-left: 0; +} + +@media (min-width: 768px) { + .dl-horizontal dt { + float: left; + width: 160px; + overflow: hidden; + clear: left; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap; + } + .dl-horizontal dd { + margin-left: 180px; + } + .dl-horizontal dd:before, + .dl-horizontal dd:after { + display: table; + content: " "; + } + .dl-horizontal dd:after { + clear: both; + } + .dl-horizontal dd:before, + .dl-horizontal dd:after { + display: table; + content: " "; + } + .dl-horizontal dd:after { + clear: both; + } +} + +abbr[title], +abbr[data-original-title] { + cursor: help; + border-bottom: 1px dotted #999999; +} + +abbr.initialism { + font-size: 90%; + text-transform: uppercase; +} + +blockquote { + padding: 10px 20px; + margin: 0 0 20px; + border-left: 5px solid #eeeeee; +} + +blockquote p { + font-size: 17.5px; + font-weight: 300; + line-height: 1.25; +} + +blockquote p:last-child { + margin-bottom: 0; +} + +blockquote small { + display: block; + line-height: 1.428571429; + color: #999999; +} + +blockquote small:before { + content: '\2014 \00A0'; +} + +blockquote.pull-right { + padding-right: 15px; + padding-left: 0; + border-right: 5px solid #eeeeee; + border-left: 0; +} + +blockquote.pull-right p, +blockquote.pull-right small { + text-align: right; +} + +blockquote.pull-right small:before { + content: ''; +} + +blockquote.pull-right small:after { + content: '\00A0 \2014'; +} + +q:before, +q:after, +blockquote:before, +blockquote:after { + content: ""; +} + +address { + display: block; + margin-bottom: 20px; + font-style: normal; + line-height: 1.428571429; +} + +code, +pre { + font-family: Monaco, Menlo, Consolas, "Courier New", monospace; +} + +code { + padding: 2px 4px; + font-size: 90%; + color: #c7254e; + white-space: nowrap; + background-color: #f9f2f4; + border-radius: 4px; +} + +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 1.428571429; + color: #333333; + word-break: break-all; + word-wrap: break-word; + background-color: #f5f5f5; + border: 1px solid #cccccc; + border-radius: 4px; +} + +pre.prettyprint { + margin-bottom: 20px; +} + +pre code { + padding: 0; + font-size: inherit; + color: inherit; + white-space: pre-wrap; + background-color: transparent; + border: 0; +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +.container { + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +.container:before, +.container:after { + display: table; + content: " "; +} + +.container:after { + clear: both; +} + +.container:before, +.container:after { + display: table; + content: " "; +} + +.container:after { + clear: both; +} + +.row { + margin-right: -15px; + margin-left: -15px; +} + +.row:before, +.row:after { + display: table; + content: " "; +} + +.row:after { + clear: both; +} + +.row:before, +.row:after { + display: table; + content: " "; +} + +.row:after { + clear: both; +} + +.col-xs-1, +.col-xs-2, +.col-xs-3, +.col-xs-4, +.col-xs-5, +.col-xs-6, +.col-xs-7, +.col-xs-8, +.col-xs-9, +.col-xs-10, +.col-xs-11, +.col-xs-12, +.col-sm-1, +.col-sm-2, +.col-sm-3, +.col-sm-4, +.col-sm-5, +.col-sm-6, +.col-sm-7, +.col-sm-8, +.col-sm-9, +.col-sm-10, +.col-sm-11, +.col-sm-12, +.col-md-1, +.col-md-2, +.col-md-3, +.col-md-4, +.col-md-5, +.col-md-6, +.col-md-7, +.col-md-8, +.col-md-9, +.col-md-10, +.col-md-11, +.col-md-12, +.col-lg-1, +.col-lg-2, +.col-lg-3, +.col-lg-4, +.col-lg-5, +.col-lg-6, +.col-lg-7, +.col-lg-8, +.col-lg-9, +.col-lg-10, +.col-lg-11, +.col-lg-12 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; +} + +.col-xs-1, +.col-xs-2, +.col-xs-3, +.col-xs-4, +.col-xs-5, +.col-xs-6, +.col-xs-7, +.col-xs-8, +.col-xs-9, +.col-xs-10, +.col-xs-11 { + float: left; +} + +.col-xs-1 { + width: 8.333333333333332%; +} + +.col-xs-2 { + width: 16.666666666666664%; +} + +.col-xs-3 { + width: 25%; +} + +.col-xs-4 { + width: 33.33333333333333%; +} + +.col-xs-5 { + width: 41.66666666666667%; +} + +.col-xs-6 { + width: 50%; +} + +.col-xs-7 { + width: 58.333333333333336%; +} + +.col-xs-8 { + width: 66.66666666666666%; +} + +.col-xs-9 { + width: 75%; +} + +.col-xs-10 { + width: 83.33333333333334%; +} + +.col-xs-11 { + width: 91.66666666666666%; +} + +.col-xs-12 { + width: 100%; +} + +@media (min-width: 768px) { + .container { + max-width: 750px; + } + .col-sm-1, + .col-sm-2, + .col-sm-3, + .col-sm-4, + .col-sm-5, + .col-sm-6, + .col-sm-7, + .col-sm-8, + .col-sm-9, + .col-sm-10, + .col-sm-11 { + float: left; + } + .col-sm-1 { + width: 8.333333333333332%; + } + .col-sm-2 { + width: 16.666666666666664%; + } + .col-sm-3 { + width: 25%; + } + .col-sm-4 { + width: 33.33333333333333%; + } + .col-sm-5 { + width: 41.66666666666667%; + } + .col-sm-6 { + width: 50%; + } + .col-sm-7 { + width: 58.333333333333336%; + } + .col-sm-8 { + width: 66.66666666666666%; + } + .col-sm-9 { + width: 75%; + } + .col-sm-10 { + width: 83.33333333333334%; + } + .col-sm-11 { + width: 91.66666666666666%; + } + .col-sm-12 { + width: 100%; + } + .col-sm-push-1 { + left: 8.333333333333332%; + } + .col-sm-push-2 { + left: 16.666666666666664%; + } + .col-sm-push-3 { + left: 25%; + } + .col-sm-push-4 { + left: 33.33333333333333%; + } + .col-sm-push-5 { + left: 41.66666666666667%; + } + .col-sm-push-6 { + left: 50%; + } + .col-sm-push-7 { + left: 58.333333333333336%; + } + .col-sm-push-8 { + left: 66.66666666666666%; + } + .col-sm-push-9 { + left: 75%; + } + .col-sm-push-10 { + left: 83.33333333333334%; + } + .col-sm-push-11 { + left: 91.66666666666666%; + } + .col-sm-pull-1 { + right: 8.333333333333332%; + } + .col-sm-pull-2 { + right: 16.666666666666664%; + } + .col-sm-pull-3 { + right: 25%; + } + .col-sm-pull-4 { + right: 33.33333333333333%; + } + .col-sm-pull-5 { + right: 41.66666666666667%; + } + .col-sm-pull-6 { + right: 50%; + } + .col-sm-pull-7 { + right: 58.333333333333336%; + } + .col-sm-pull-8 { + right: 66.66666666666666%; + } + .col-sm-pull-9 { + right: 75%; + } + .col-sm-pull-10 { + right: 83.33333333333334%; + } + .col-sm-pull-11 { + right: 91.66666666666666%; + } + .col-sm-offset-1 { + margin-left: 8.333333333333332%; + } + .col-sm-offset-2 { + margin-left: 16.666666666666664%; + } + .col-sm-offset-3 { + margin-left: 25%; + } + .col-sm-offset-4 { + margin-left: 33.33333333333333%; + } + .col-sm-offset-5 { + margin-left: 41.66666666666667%; + } + .col-sm-offset-6 { + margin-left: 50%; + } + .col-sm-offset-7 { + margin-left: 58.333333333333336%; + } + .col-sm-offset-8 { + margin-left: 66.66666666666666%; + } + .col-sm-offset-9 { + margin-left: 75%; + } + .col-sm-offset-10 { + margin-left: 83.33333333333334%; + } + .col-sm-offset-11 { + margin-left: 91.66666666666666%; + } +} + +@media (min-width: 992px) { + .container { + max-width: 970px; + } + .col-md-1, + .col-md-2, + .col-md-3, + .col-md-4, + .col-md-5, + .col-md-6, + .col-md-7, + .col-md-8, + .col-md-9, + .col-md-10, + .col-md-11 { + float: left; + } + .col-md-1 { + width: 8.333333333333332%; + } + .col-md-2 { + width: 16.666666666666664%; + } + .col-md-3 { + width: 25%; + } + .col-md-4 { + width: 33.33333333333333%; + } + .col-md-5 { + width: 41.66666666666667%; + } + .col-md-6 { + width: 50%; + } + .col-md-7 { + width: 58.333333333333336%; + } + .col-md-8 { + width: 66.66666666666666%; + } + .col-md-9 { + width: 75%; + } + .col-md-10 { + width: 83.33333333333334%; + } + .col-md-11 { + width: 91.66666666666666%; + } + .col-md-12 { + width: 100%; + } + .col-md-push-0 { + left: auto; + } + .col-md-push-1 { + left: 8.333333333333332%; + } + .col-md-push-2 { + left: 16.666666666666664%; + } + .col-md-push-3 { + left: 25%; + } + .col-md-push-4 { + left: 33.33333333333333%; + } + .col-md-push-5 { + left: 41.66666666666667%; + } + .col-md-push-6 { + left: 50%; + } + .col-md-push-7 { + left: 58.333333333333336%; + } + .col-md-push-8 { + left: 66.66666666666666%; + } + .col-md-push-9 { + left: 75%; + } + .col-md-push-10 { + left: 83.33333333333334%; + } + .col-md-push-11 { + left: 91.66666666666666%; + } + .col-md-pull-0 { + right: auto; + } + .col-md-pull-1 { + right: 8.333333333333332%; + } + .col-md-pull-2 { + right: 16.666666666666664%; + } + .col-md-pull-3 { + right: 25%; + } + .col-md-pull-4 { + right: 33.33333333333333%; + } + .col-md-pull-5 { + right: 41.66666666666667%; + } + .col-md-pull-6 { + right: 50%; + } + .col-md-pull-7 { + right: 58.333333333333336%; + } + .col-md-pull-8 { + right: 66.66666666666666%; + } + .col-md-pull-9 { + right: 75%; + } + .col-md-pull-10 { + right: 83.33333333333334%; + } + .col-md-pull-11 { + right: 91.66666666666666%; + } + .col-md-offset-0 { + margin-left: 0; + } + .col-md-offset-1 { + margin-left: 8.333333333333332%; + } + .col-md-offset-2 { + margin-left: 16.666666666666664%; + } + .col-md-offset-3 { + margin-left: 25%; + } + .col-md-offset-4 { + margin-left: 33.33333333333333%; + } + .col-md-offset-5 { + margin-left: 41.66666666666667%; + } + .col-md-offset-6 { + margin-left: 50%; + } + .col-md-offset-7 { + margin-left: 58.333333333333336%; + } + .col-md-offset-8 { + margin-left: 66.66666666666666%; + } + .col-md-offset-9 { + margin-left: 75%; + } + .col-md-offset-10 { + margin-left: 83.33333333333334%; + } + .col-md-offset-11 { + margin-left: 91.66666666666666%; + } +} + +@media (min-width: 1200px) { + .container { + max-width: 1170px; + } + .col-lg-1, + .col-lg-2, + .col-lg-3, + .col-lg-4, + .col-lg-5, + .col-lg-6, + .col-lg-7, + .col-lg-8, + .col-lg-9, + .col-lg-10, + .col-lg-11 { + float: left; + } + .col-lg-1 { + width: 8.333333333333332%; + } + .col-lg-2 { + width: 16.666666666666664%; + } + .col-lg-3 { + width: 25%; + } + .col-lg-4 { + width: 33.33333333333333%; + } + .col-lg-5 { + width: 41.66666666666667%; + } + .col-lg-6 { + width: 50%; + } + .col-lg-7 { + width: 58.333333333333336%; + } + .col-lg-8 { + width: 66.66666666666666%; + } + .col-lg-9 { + width: 75%; + } + .col-lg-10 { + width: 83.33333333333334%; + } + .col-lg-11 { + width: 91.66666666666666%; + } + .col-lg-12 { + width: 100%; + } + .col-lg-push-0 { + left: auto; + } + .col-lg-push-1 { + left: 8.333333333333332%; + } + .col-lg-push-2 { + left: 16.666666666666664%; + } + .col-lg-push-3 { + left: 25%; + } + .col-lg-push-4 { + left: 33.33333333333333%; + } + .col-lg-push-5 { + left: 41.66666666666667%; + } + .col-lg-push-6 { + left: 50%; + } + .col-lg-push-7 { + left: 58.333333333333336%; + } + .col-lg-push-8 { + left: 66.66666666666666%; + } + .col-lg-push-9 { + left: 75%; + } + .col-lg-push-10 { + left: 83.33333333333334%; + } + .col-lg-push-11 { + left: 91.66666666666666%; + } + .col-lg-pull-0 { + right: auto; + } + .col-lg-pull-1 { + right: 8.333333333333332%; + } + .col-lg-pull-2 { + right: 16.666666666666664%; + } + .col-lg-pull-3 { + right: 25%; + } + .col-lg-pull-4 { + right: 33.33333333333333%; + } + .col-lg-pull-5 { + right: 41.66666666666667%; + } + .col-lg-pull-6 { + right: 50%; + } + .col-lg-pull-7 { + right: 58.333333333333336%; + } + .col-lg-pull-8 { + right: 66.66666666666666%; + } + .col-lg-pull-9 { + right: 75%; + } + .col-lg-pull-10 { + right: 83.33333333333334%; + } + .col-lg-pull-11 { + right: 91.66666666666666%; + } + .col-lg-offset-0 { + margin-left: 0; + } + .col-lg-offset-1 { + margin-left: 8.333333333333332%; + } + .col-lg-offset-2 { + margin-left: 16.666666666666664%; + } + .col-lg-offset-3 { + margin-left: 25%; + } + .col-lg-offset-4 { + margin-left: 33.33333333333333%; + } + .col-lg-offset-5 { + margin-left: 41.66666666666667%; + } + .col-lg-offset-6 { + margin-left: 50%; + } + .col-lg-offset-7 { + margin-left: 58.333333333333336%; + } + .col-lg-offset-8 { + margin-left: 66.66666666666666%; + } + .col-lg-offset-9 { + margin-left: 75%; + } + .col-lg-offset-10 { + margin-left: 83.33333333333334%; + } + .col-lg-offset-11 { + margin-left: 91.66666666666666%; + } +} + +table { + max-width: 100%; + background-color: transparent; +} + +th { + text-align: left; +} + +.table { + width: 100%; + margin-bottom: 20px; +} + +.table thead > tr > th, +.table tbody > tr > th, +.table tfoot > tr > th, +.table thead > tr > td, +.table tbody > tr > td, +.table tfoot > tr > td { + padding: 8px; + line-height: 1.428571429; + vertical-align: top; + border-top: 1px solid #dddddd; +} + +.table thead > tr > th { + vertical-align: bottom; + border-bottom: 2px solid #dddddd; +} + +.table caption + thead tr:first-child th, +.table colgroup + thead tr:first-child th, +.table thead:first-child tr:first-child th, +.table caption + thead tr:first-child td, +.table colgroup + thead tr:first-child td, +.table thead:first-child tr:first-child td { + border-top: 0; +} + +.table tbody + tbody { + border-top: 2px solid #dddddd; +} + +.table .table { + background-color: #ffffff; +} + +.table-condensed thead > tr > th, +.table-condensed tbody > tr > th, +.table-condensed tfoot > tr > th, +.table-condensed thead > tr > td, +.table-condensed tbody > tr > td, +.table-condensed tfoot > tr > td { + padding: 5px; +} + +.table-bordered { + border: 1px solid #dddddd; +} + +.table-bordered > thead > tr > th, +.table-bordered > tbody > tr > th, +.table-bordered > tfoot > tr > th, +.table-bordered > thead > tr > td, +.table-bordered > tbody > tr > td, +.table-bordered > tfoot > tr > td { + border: 1px solid #dddddd; +} + +.table-bordered > thead > tr > th, +.table-bordered > thead > tr > td { + border-bottom-width: 2px; +} + +.table-striped > tbody > tr:nth-child(odd) > td, +.table-striped > tbody > tr:nth-child(odd) > th { + background-color: #f9f9f9; +} + +.table-hover > tbody > tr:hover > td, +.table-hover > tbody > tr:hover > th { + background-color: #f5f5f5; +} + +table col[class*="col-"] { + display: table-column; + float: none; +} + +table td[class*="col-"], +table th[class*="col-"] { + display: table-cell; + float: none; +} + +.table > thead > tr > td.active, +.table > tbody > tr > td.active, +.table > tfoot > tr > td.active, +.table > thead > tr > th.active, +.table > tbody > tr > th.active, +.table > tfoot > tr > th.active, +.table > thead > tr.active > td, +.table > tbody > tr.active > td, +.table > tfoot > tr.active > td, +.table > thead > tr.active > th, +.table > tbody > tr.active > th, +.table > tfoot > tr.active > th { + background-color: #f5f5f5; +} + +.table > thead > tr > td.success, +.table > tbody > tr > td.success, +.table > tfoot > tr > td.success, +.table > thead > tr > th.success, +.table > tbody > tr > th.success, +.table > tfoot > tr > th.success, +.table > thead > tr.success > td, +.table > tbody > tr.success > td, +.table > tfoot > tr.success > td, +.table > thead > tr.success > th, +.table > tbody > tr.success > th, +.table > tfoot > tr.success > th { + background-color: #dff0d8; + border-color: #d6e9c6; +} + +.table-hover > tbody > tr > td.success:hover, +.table-hover > tbody > tr > th.success:hover, +.table-hover > tbody > tr.success:hover > td { + background-color: #d0e9c6; + border-color: #c9e2b3; +} + +.table > thead > tr > td.danger, +.table > tbody > tr > td.danger, +.table > tfoot > tr > td.danger, +.table > thead > tr > th.danger, +.table > tbody > tr > th.danger, +.table > tfoot > tr > th.danger, +.table > thead > tr.danger > td, +.table > tbody > tr.danger > td, +.table > tfoot > tr.danger > td, +.table > thead > tr.danger > th, +.table > tbody > tr.danger > th, +.table > tfoot > tr.danger > th { + background-color: #f2dede; + border-color: #eed3d7; +} + +.table-hover > tbody > tr > td.danger:hover, +.table-hover > tbody > tr > th.danger:hover, +.table-hover > tbody > tr.danger:hover > td { + background-color: #ebcccc; + border-color: #e6c1c7; +} + +.table > thead > tr > td.warning, +.table > tbody > tr > td.warning, +.table > tfoot > tr > td.warning, +.table > thead > tr > th.warning, +.table > tbody > tr > th.warning, +.table > tfoot > tr > th.warning, +.table > thead > tr.warning > td, +.table > tbody > tr.warning > td, +.table > tfoot > tr.warning > td, +.table > thead > tr.warning > th, +.table > tbody > tr.warning > th, +.table > tfoot > tr.warning > th { + background-color: #fcf8e3; + border-color: #fbeed5; +} + +.table-hover > tbody > tr > td.warning:hover, +.table-hover > tbody > tr > th.warning:hover, +.table-hover > tbody > tr.warning:hover > td { + background-color: #faf2cc; + border-color: #f8e5be; +} + +@media (max-width: 768px) { + .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-x: scroll; + overflow-y: hidden; + border: 1px solid #dddddd; + } + .table-responsive > .table { + margin-bottom: 0; + background-color: #fff; + } + .table-responsive > .table > thead > tr > th, + .table-responsive > .table > tbody > tr > th, + .table-responsive > .table > tfoot > tr > th, + .table-responsive > .table > thead > tr > td, + .table-responsive > .table > tbody > tr > td, + .table-responsive > .table > tfoot > tr > td { + white-space: nowrap; + } + .table-responsive > .table-bordered { + border: 0; + } + .table-responsive > .table-bordered > thead > tr > th:first-child, + .table-responsive > .table-bordered > tbody > tr > th:first-child, + .table-responsive > .table-bordered > tfoot > tr > th:first-child, + .table-responsive > .table-bordered > thead > tr > td:first-child, + .table-responsive > .table-bordered > tbody > tr > td:first-child, + .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; + } + .table-responsive > .table-bordered > thead > tr > th:last-child, + .table-responsive > .table-bordered > tbody > tr > th:last-child, + .table-responsive > .table-bordered > tfoot > tr > th:last-child, + .table-responsive > .table-bordered > thead > tr > td:last-child, + .table-responsive > .table-bordered > tbody > tr > td:last-child, + .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; + } + .table-responsive > .table-bordered > thead > tr:last-child > th, + .table-responsive > .table-bordered > tbody > tr:last-child > th, + .table-responsive > .table-bordered > tfoot > tr:last-child > th, + .table-responsive > .table-bordered > thead > tr:last-child > td, + .table-responsive > .table-bordered > tbody > tr:last-child > td, + .table-responsive > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0; + } +} + +fieldset { + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: inherit; + color: #333333; + border: 0; + border-bottom: 1px solid #e5e5e5; +} + +label { + display: inline-block; + margin-bottom: 5px; + font-weight: bold; +} + +input[type="search"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +input[type="radio"], +input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + /* IE8-9 */ + + line-height: normal; +} + +input[type="file"] { + display: block; +} + +select[multiple], +select[size] { + height: auto; +} + +select optgroup { + font-family: inherit; + font-size: inherit; + font-style: inherit; +} + +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +input[type="number"]::-webkit-outer-spin-button, +input[type="number"]::-webkit-inner-spin-button { + height: auto; +} + +.form-control:-moz-placeholder { + color: #999999; +} + +.form-control::-moz-placeholder { + color: #999999; +} + +.form-control:-ms-input-placeholder { + color: #999999; +} + +.form-control::-webkit-input-placeholder { + color: #999999; +} + +.form-control { + display: block; + width: 100%; + height: 34px; + padding: 6px 12px; + font-size: 14px; + line-height: 1.428571429; + color: #555555; + vertical-align: middle; + background-color: #ffffff; + border: 1px solid #cccccc; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; + transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; +} + +.form-control:focus { + border-color: #66afe9; + outline: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); +} + +.form-control[disabled], +.form-control[readonly], +fieldset[disabled] .form-control { + cursor: not-allowed; + background-color: #eeeeee; +} + +textarea.form-control { + height: auto; +} + +.form-group { + margin-bottom: 15px; +} + +.radio, +.checkbox { + display: block; + min-height: 20px; + padding-left: 20px; + margin-top: 10px; + margin-bottom: 10px; + vertical-align: middle; +} + +.radio label, +.checkbox label { + display: inline; + margin-bottom: 0; + font-weight: normal; + cursor: pointer; +} + +.radio input[type="radio"], +.radio-inline input[type="radio"], +.checkbox input[type="checkbox"], +.checkbox-inline input[type="checkbox"] { + float: left; + margin-left: -20px; +} + +.radio + .radio, +.checkbox + .checkbox { + margin-top: -5px; +} + +.radio-inline, +.checkbox-inline { + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + font-weight: normal; + vertical-align: middle; + cursor: pointer; +} + +.radio-inline + .radio-inline, +.checkbox-inline + .checkbox-inline { + margin-top: 0; + margin-left: 10px; +} + +input[type="radio"][disabled], +input[type="checkbox"][disabled], +.radio[disabled], +.radio-inline[disabled], +.checkbox[disabled], +.checkbox-inline[disabled], +fieldset[disabled] input[type="radio"], +fieldset[disabled] input[type="checkbox"], +fieldset[disabled] .radio, +fieldset[disabled] .radio-inline, +fieldset[disabled] .checkbox, +fieldset[disabled] .checkbox-inline { + cursor: not-allowed; +} + +.input-sm { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} + +select.input-sm { + height: 30px; + line-height: 30px; +} + +textarea.input-sm { + height: auto; +} + +.input-lg { + height: 45px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 6px; +} + +select.input-lg { + height: 45px; + line-height: 45px; +} + +textarea.input-lg { + height: auto; +} + +.has-warning .help-block, +.has-warning .control-label { + color: #c09853; +} + +.has-warning .form-control { + border-color: #c09853; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.has-warning .form-control:focus { + border-color: #a47e3c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; +} + +.has-warning .input-group-addon { + color: #c09853; + background-color: #fcf8e3; + border-color: #c09853; +} + +.has-error .help-block, +.has-error .control-label { + color: #b94a48; +} + +.has-error .form-control { + border-color: #b94a48; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.has-error .form-control:focus { + border-color: #953b39; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; +} + +.has-error .input-group-addon { + color: #b94a48; + background-color: #f2dede; + border-color: #b94a48; +} + +.has-success .help-block, +.has-success .control-label { + color: #468847; +} + +.has-success .form-control { + border-color: #468847; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.has-success .form-control:focus { + border-color: #356635; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; +} + +.has-success .input-group-addon { + color: #468847; + background-color: #dff0d8; + border-color: #468847; +} + +.form-control-static { + padding-top: 7px; + margin-bottom: 0; +} + +.help-block { + display: block; + margin-top: 5px; + margin-bottom: 10px; + color: #737373; +} + +@media (min-width: 768px) { + .form-inline .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .form-control { + display: inline-block; + } + .form-inline .radio, + .form-inline .checkbox { + display: inline-block; + padding-left: 0; + margin-top: 0; + margin-bottom: 0; + } + .form-inline .radio input[type="radio"], + .form-inline .checkbox input[type="checkbox"] { + float: none; + margin-left: 0; + } +} + +.form-horizontal .control-label, +.form-horizontal .radio, +.form-horizontal .checkbox, +.form-horizontal .radio-inline, +.form-horizontal .checkbox-inline { + padding-top: 7px; + margin-top: 0; + margin-bottom: 0; +} + +.form-horizontal .form-group { + margin-right: -15px; + margin-left: -15px; +} + +.form-horizontal .form-group:before, +.form-horizontal .form-group:after { + display: table; + content: " "; +} + +.form-horizontal .form-group:after { + clear: both; +} + +.form-horizontal .form-group:before, +.form-horizontal .form-group:after { + display: table; + content: " "; +} + +.form-horizontal .form-group:after { + clear: both; +} + +@media (min-width: 768px) { + .form-horizontal .control-label { + text-align: right; + } +} + +.btn { + display: inline-block; + padding: 6px 12px; + margin-bottom: 0; + font-size: 14px; + font-weight: normal; + line-height: 1.428571429; + text-align: center; + white-space: nowrap; + vertical-align: middle; + cursor: pointer; + border: 1px solid transparent; + border-radius: 4px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; +} + +.btn:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +.btn:hover, +.btn:focus { + color: #333333; + text-decoration: none; +} + +.btn:active, +.btn.active { + background-image: none; + outline: 0; + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} + +.btn.disabled, +.btn[disabled], +fieldset[disabled] .btn { + pointer-events: none; + cursor: not-allowed; + opacity: 0.65; + filter: alpha(opacity=65); + -webkit-box-shadow: none; + box-shadow: none; +} + +.btn-default { + color: #333333; + background-color: #ffffff; + border-color: #cccccc; +} + +.btn-default:hover, +.btn-default:focus, +.btn-default:active, +.btn-default.active, +.open .dropdown-toggle.btn-default { + color: #333333; + background-color: #ebebeb; + border-color: #adadad; +} + +.btn-default:active, +.btn-default.active, +.open .dropdown-toggle.btn-default { + background-image: none; +} + +.btn-default.disabled, +.btn-default[disabled], +fieldset[disabled] .btn-default, +.btn-default.disabled:hover, +.btn-default[disabled]:hover, +fieldset[disabled] .btn-default:hover, +.btn-default.disabled:focus, +.btn-default[disabled]:focus, +fieldset[disabled] .btn-default:focus, +.btn-default.disabled:active, +.btn-default[disabled]:active, +fieldset[disabled] .btn-default:active, +.btn-default.disabled.active, +.btn-default[disabled].active, +fieldset[disabled] .btn-default.active { + background-color: #ffffff; + border-color: #cccccc; +} + +.btn-primary { + color: #ffffff; + background-color: #428bca; + border-color: #357ebd; +} + +.btn-primary:hover, +.btn-primary:focus, +.btn-primary:active, +.btn-primary.active, +.open .dropdown-toggle.btn-primary { + color: #ffffff; + background-color: #3276b1; + border-color: #285e8e; +} + +.btn-primary:active, +.btn-primary.active, +.open .dropdown-toggle.btn-primary { + background-image: none; +} + +.btn-primary.disabled, +.btn-primary[disabled], +fieldset[disabled] .btn-primary, +.btn-primary.disabled:hover, +.btn-primary[disabled]:hover, +fieldset[disabled] .btn-primary:hover, +.btn-primary.disabled:focus, +.btn-primary[disabled]:focus, +fieldset[disabled] .btn-primary:focus, +.btn-primary.disabled:active, +.btn-primary[disabled]:active, +fieldset[disabled] .btn-primary:active, +.btn-primary.disabled.active, +.btn-primary[disabled].active, +fieldset[disabled] .btn-primary.active { + background-color: #428bca; + border-color: #357ebd; +} + +.btn-warning { + color: #ffffff; + background-color: #f0ad4e; + border-color: #eea236; +} + +.btn-warning:hover, +.btn-warning:focus, +.btn-warning:active, +.btn-warning.active, +.open .dropdown-toggle.btn-warning { + color: #ffffff; + background-color: #ed9c28; + border-color: #d58512; +} + +.btn-warning:active, +.btn-warning.active, +.open .dropdown-toggle.btn-warning { + background-image: none; +} + +.btn-warning.disabled, +.btn-warning[disabled], +fieldset[disabled] .btn-warning, +.btn-warning.disabled:hover, +.btn-warning[disabled]:hover, +fieldset[disabled] .btn-warning:hover, +.btn-warning.disabled:focus, +.btn-warning[disabled]:focus, +fieldset[disabled] .btn-warning:focus, +.btn-warning.disabled:active, +.btn-warning[disabled]:active, +fieldset[disabled] .btn-warning:active, +.btn-warning.disabled.active, +.btn-warning[disabled].active, +fieldset[disabled] .btn-warning.active { + background-color: #f0ad4e; + border-color: #eea236; +} + +.btn-danger { + color: #ffffff; + background-color: #d9534f; + border-color: #d43f3a; +} + +.btn-danger:hover, +.btn-danger:focus, +.btn-danger:active, +.btn-danger.active, +.open .dropdown-toggle.btn-danger { + color: #ffffff; + background-color: #d2322d; + border-color: #ac2925; +} + +.btn-danger:active, +.btn-danger.active, +.open .dropdown-toggle.btn-danger { + background-image: none; +} + +.btn-danger.disabled, +.btn-danger[disabled], +fieldset[disabled] .btn-danger, +.btn-danger.disabled:hover, +.btn-danger[disabled]:hover, +fieldset[disabled] .btn-danger:hover, +.btn-danger.disabled:focus, +.btn-danger[disabled]:focus, +fieldset[disabled] .btn-danger:focus, +.btn-danger.disabled:active, +.btn-danger[disabled]:active, +fieldset[disabled] .btn-danger:active, +.btn-danger.disabled.active, +.btn-danger[disabled].active, +fieldset[disabled] .btn-danger.active { + background-color: #d9534f; + border-color: #d43f3a; +} + +.btn-success { + color: #ffffff; + background-color: #5cb85c; + border-color: #4cae4c; +} + +.btn-success:hover, +.btn-success:focus, +.btn-success:active, +.btn-success.active, +.open .dropdown-toggle.btn-success { + color: #ffffff; + background-color: #47a447; + border-color: #398439; +} + +.btn-success:active, +.btn-success.active, +.open .dropdown-toggle.btn-success { + background-image: none; +} + +.btn-success.disabled, +.btn-success[disabled], +fieldset[disabled] .btn-success, +.btn-success.disabled:hover, +.btn-success[disabled]:hover, +fieldset[disabled] .btn-success:hover, +.btn-success.disabled:focus, +.btn-success[disabled]:focus, +fieldset[disabled] .btn-success:focus, +.btn-success.disabled:active, +.btn-success[disabled]:active, +fieldset[disabled] .btn-success:active, +.btn-success.disabled.active, +.btn-success[disabled].active, +fieldset[disabled] .btn-success.active { + background-color: #5cb85c; + border-color: #4cae4c; +} + +.btn-info { + color: #ffffff; + background-color: #5bc0de; + border-color: #46b8da; +} + +.btn-info:hover, +.btn-info:focus, +.btn-info:active, +.btn-info.active, +.open .dropdown-toggle.btn-info { + color: #ffffff; + background-color: #39b3d7; + border-color: #269abc; +} + +.btn-info:active, +.btn-info.active, +.open .dropdown-toggle.btn-info { + background-image: none; +} + +.btn-info.disabled, +.btn-info[disabled], +fieldset[disabled] .btn-info, +.btn-info.disabled:hover, +.btn-info[disabled]:hover, +fieldset[disabled] .btn-info:hover, +.btn-info.disabled:focus, +.btn-info[disabled]:focus, +fieldset[disabled] .btn-info:focus, +.btn-info.disabled:active, +.btn-info[disabled]:active, +fieldset[disabled] .btn-info:active, +.btn-info.disabled.active, +.btn-info[disabled].active, +fieldset[disabled] .btn-info.active { + background-color: #5bc0de; + border-color: #46b8da; +} + +.btn-link { + font-weight: normal; + color: #428bca; + cursor: pointer; + border-radius: 0; +} + +.btn-link, +.btn-link:active, +.btn-link[disabled], +fieldset[disabled] .btn-link { + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} + +.btn-link, +.btn-link:hover, +.btn-link:focus, +.btn-link:active { + border-color: transparent; +} + +.btn-link:hover, +.btn-link:focus { + color: #2a6496; + text-decoration: underline; + background-color: transparent; +} + +.btn-link[disabled]:hover, +fieldset[disabled] .btn-link:hover, +.btn-link[disabled]:focus, +fieldset[disabled] .btn-link:focus { + color: #999999; + text-decoration: none; +} + +.btn-lg { + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 6px; +} + +.btn-sm, +.btn-xs { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} + +.btn-xs { + padding: 1px 5px; +} + +.btn-block { + display: block; + width: 100%; + padding-right: 0; + padding-left: 0; +} + +.btn-block + .btn-block { + margin-top: 5px; +} + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +.fade { + opacity: 0; + -webkit-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} + +.fade.in { + opacity: 1; +} + +.collapse { + display: none; +} + +.collapse.in { + display: block; +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + transition: height 0.35s ease; +} + +@font-face { + font-family: 'Glyphicons Halflings'; + src: url('../fonts/glyphicons-halflings-regular.eot'); + src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg'); +} + +.glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + -webkit-font-smoothing: antialiased; + font-style: normal; + font-weight: normal; + line-height: 1; +} + +.glyphicon-asterisk:before { + content: "\2a"; +} + +.glyphicon-plus:before { + content: "\2b"; +} + +.glyphicon-euro:before { + content: "\20ac"; +} + +.glyphicon-minus:before { + content: "\2212"; +} + +.glyphicon-cloud:before { + content: "\2601"; +} + +.glyphicon-envelope:before { + content: "\2709"; +} + +.glyphicon-pencil:before { + content: "\270f"; +} + +.glyphicon-glass:before { + content: "\e001"; +} + +.glyphicon-music:before { + content: "\e002"; +} + +.glyphicon-search:before { + content: "\e003"; +} + +.glyphicon-heart:before { + content: "\e005"; +} + +.glyphicon-star:before { + content: "\e006"; +} + +.glyphicon-star-empty:before { + content: "\e007"; +} + +.glyphicon-user:before { + content: "\e008"; +} + +.glyphicon-film:before { + content: "\e009"; +} + +.glyphicon-th-large:before { + content: "\e010"; +} + +.glyphicon-th:before { + content: "\e011"; +} + +.glyphicon-th-list:before { + content: "\e012"; +} + +.glyphicon-ok:before { + content: "\e013"; +} + +.glyphicon-remove:before { + content: "\e014"; +} + +.glyphicon-zoom-in:before { + content: "\e015"; +} + +.glyphicon-zoom-out:before { + content: "\e016"; +} + +.glyphicon-off:before { + content: "\e017"; +} + +.glyphicon-signal:before { + content: "\e018"; +} + +.glyphicon-cog:before { + content: "\e019"; +} + +.glyphicon-trash:before { + content: "\e020"; +} + +.glyphicon-home:before { + content: "\e021"; +} + +.glyphicon-file:before { + content: "\e022"; +} + +.glyphicon-time:before { + content: "\e023"; +} + +.glyphicon-road:before { + content: "\e024"; +} + +.glyphicon-download-alt:before { + content: "\e025"; +} + +.glyphicon-download:before { + content: "\e026"; +} + +.glyphicon-upload:before { + content: "\e027"; +} + +.glyphicon-inbox:before { + content: "\e028"; +} + +.glyphicon-play-circle:before { + content: "\e029"; +} + +.glyphicon-repeat:before { + content: "\e030"; +} + +.glyphicon-refresh:before { + content: "\e031"; +} + +.glyphicon-list-alt:before { + content: "\e032"; +} + +.glyphicon-flag:before { + content: "\e034"; +} + +.glyphicon-headphones:before { + content: "\e035"; +} + +.glyphicon-volume-off:before { + content: "\e036"; +} + +.glyphicon-volume-down:before { + content: "\e037"; +} + +.glyphicon-volume-up:before { + content: "\e038"; +} + +.glyphicon-qrcode:before { + content: "\e039"; +} + +.glyphicon-barcode:before { + content: "\e040"; +} + +.glyphicon-tag:before { + content: "\e041"; +} + +.glyphicon-tags:before { + content: "\e042"; +} + +.glyphicon-book:before { + content: "\e043"; +} + +.glyphicon-print:before { + content: "\e045"; +} + +.glyphicon-font:before { + content: "\e047"; +} + +.glyphicon-bold:before { + content: "\e048"; +} + +.glyphicon-italic:before { + content: "\e049"; +} + +.glyphicon-text-height:before { + content: "\e050"; +} + +.glyphicon-text-width:before { + content: "\e051"; +} + +.glyphicon-align-left:before { + content: "\e052"; +} + +.glyphicon-align-center:before { + content: "\e053"; +} + +.glyphicon-align-right:before { + content: "\e054"; +} + +.glyphicon-align-justify:before { + content: "\e055"; +} + +.glyphicon-list:before { + content: "\e056"; +} + +.glyphicon-indent-left:before { + content: "\e057"; +} + +.glyphicon-indent-right:before { + content: "\e058"; +} + +.glyphicon-facetime-video:before { + content: "\e059"; +} + +.glyphicon-picture:before { + content: "\e060"; +} + +.glyphicon-map-marker:before { + content: "\e062"; +} + +.glyphicon-adjust:before { + content: "\e063"; +} + +.glyphicon-tint:before { + content: "\e064"; +} + +.glyphicon-edit:before { + content: "\e065"; +} + +.glyphicon-share:before { + content: "\e066"; +} + +.glyphicon-check:before { + content: "\e067"; +} + +.glyphicon-move:before { + content: "\e068"; +} + +.glyphicon-step-backward:before { + content: "\e069"; +} + +.glyphicon-fast-backward:before { + content: "\e070"; +} + +.glyphicon-backward:before { + content: "\e071"; +} + +.glyphicon-play:before { + content: "\e072"; +} + +.glyphicon-pause:before { + content: "\e073"; +} + +.glyphicon-stop:before { + content: "\e074"; +} + +.glyphicon-forward:before { + content: "\e075"; +} + +.glyphicon-fast-forward:before { + content: "\e076"; +} + +.glyphicon-step-forward:before { + content: "\e077"; +} + +.glyphicon-eject:before { + content: "\e078"; +} + +.glyphicon-chevron-left:before { + content: "\e079"; +} + +.glyphicon-chevron-right:before { + content: "\e080"; +} + +.glyphicon-plus-sign:before { + content: "\e081"; +} + +.glyphicon-minus-sign:before { + content: "\e082"; +} + +.glyphicon-remove-sign:before { + content: "\e083"; +} + +.glyphicon-ok-sign:before { + content: "\e084"; +} + +.glyphicon-question-sign:before { + content: "\e085"; +} + +.glyphicon-info-sign:before { + content: "\e086"; +} + +.glyphicon-screenshot:before { + content: "\e087"; +} + +.glyphicon-remove-circle:before { + content: "\e088"; +} + +.glyphicon-ok-circle:before { + content: "\e089"; +} + +.glyphicon-ban-circle:before { + content: "\e090"; +} + +.glyphicon-arrow-left:before { + content: "\e091"; +} + +.glyphicon-arrow-right:before { + content: "\e092"; +} + +.glyphicon-arrow-up:before { + content: "\e093"; +} + +.glyphicon-arrow-down:before { + content: "\e094"; +} + +.glyphicon-share-alt:before { + content: "\e095"; +} + +.glyphicon-resize-full:before { + content: "\e096"; +} + +.glyphicon-resize-small:before { + content: "\e097"; +} + +.glyphicon-exclamation-sign:before { + content: "\e101"; +} + +.glyphicon-gift:before { + content: "\e102"; +} + +.glyphicon-leaf:before { + content: "\e103"; +} + +.glyphicon-eye-open:before { + content: "\e105"; +} + +.glyphicon-eye-close:before { + content: "\e106"; +} + +.glyphicon-warning-sign:before { + content: "\e107"; +} + +.glyphicon-plane:before { + content: "\e108"; +} + +.glyphicon-random:before { + content: "\e110"; +} + +.glyphicon-comment:before { + content: "\e111"; +} + +.glyphicon-magnet:before { + content: "\e112"; +} + +.glyphicon-chevron-up:before { + content: "\e113"; +} + +.glyphicon-chevron-down:before { + content: "\e114"; +} + +.glyphicon-retweet:before { + content: "\e115"; +} + +.glyphicon-shopping-cart:before { + content: "\e116"; +} + +.glyphicon-folder-close:before { + content: "\e117"; +} + +.glyphicon-folder-open:before { + content: "\e118"; +} + +.glyphicon-resize-vertical:before { + content: "\e119"; +} + +.glyphicon-resize-horizontal:before { + content: "\e120"; +} + +.glyphicon-hdd:before { + content: "\e121"; +} + +.glyphicon-bullhorn:before { + content: "\e122"; +} + +.glyphicon-certificate:before { + content: "\e124"; +} + +.glyphicon-thumbs-up:before { + content: "\e125"; +} + +.glyphicon-thumbs-down:before { + content: "\e126"; +} + +.glyphicon-hand-right:before { + content: "\e127"; +} + +.glyphicon-hand-left:before { + content: "\e128"; +} + +.glyphicon-hand-up:before { + content: "\e129"; +} + +.glyphicon-hand-down:before { + content: "\e130"; +} + +.glyphicon-circle-arrow-right:before { + content: "\e131"; +} + +.glyphicon-circle-arrow-left:before { + content: "\e132"; +} + +.glyphicon-circle-arrow-up:before { + content: "\e133"; +} + +.glyphicon-circle-arrow-down:before { + content: "\e134"; +} + +.glyphicon-globe:before { + content: "\e135"; +} + +.glyphicon-tasks:before { + content: "\e137"; +} + +.glyphicon-filter:before { + content: "\e138"; +} + +.glyphicon-fullscreen:before { + content: "\e140"; +} + +.glyphicon-dashboard:before { + content: "\e141"; +} + +.glyphicon-heart-empty:before { + content: "\e143"; +} + +.glyphicon-link:before { + content: "\e144"; +} + +.glyphicon-phone:before { + content: "\e145"; +} + +.glyphicon-usd:before { + content: "\e148"; +} + +.glyphicon-gbp:before { + content: "\e149"; +} + +.glyphicon-sort:before { + content: "\e150"; +} + +.glyphicon-sort-by-alphabet:before { + content: "\e151"; +} + +.glyphicon-sort-by-alphabet-alt:before { + content: "\e152"; +} + +.glyphicon-sort-by-order:before { + content: "\e153"; +} + +.glyphicon-sort-by-order-alt:before { + content: "\e154"; +} + +.glyphicon-sort-by-attributes:before { + content: "\e155"; +} + +.glyphicon-sort-by-attributes-alt:before { + content: "\e156"; +} + +.glyphicon-unchecked:before { + content: "\e157"; +} + +.glyphicon-expand:before { + content: "\e158"; +} + +.glyphicon-collapse-down:before { + content: "\e159"; +} + +.glyphicon-collapse-up:before { + content: "\e160"; +} + +.glyphicon-log-in:before { + content: "\e161"; +} + +.glyphicon-flash:before { + content: "\e162"; +} + +.glyphicon-log-out:before { + content: "\e163"; +} + +.glyphicon-new-window:before { + content: "\e164"; +} + +.glyphicon-record:before { + content: "\e165"; +} + +.glyphicon-save:before { + content: "\e166"; +} + +.glyphicon-open:before { + content: "\e167"; +} + +.glyphicon-saved:before { + content: "\e168"; +} + +.glyphicon-import:before { + content: "\e169"; +} + +.glyphicon-export:before { + content: "\e170"; +} + +.glyphicon-send:before { + content: "\e171"; +} + +.glyphicon-floppy-disk:before { + content: "\e172"; +} + +.glyphicon-floppy-saved:before { + content: "\e173"; +} + +.glyphicon-floppy-remove:before { + content: "\e174"; +} + +.glyphicon-floppy-save:before { + content: "\e175"; +} + +.glyphicon-floppy-open:before { + content: "\e176"; +} + +.glyphicon-credit-card:before { + content: "\e177"; +} + +.glyphicon-transfer:before { + content: "\e178"; +} + +.glyphicon-cutlery:before { + content: "\e179"; +} + +.glyphicon-header:before { + content: "\e180"; +} + +.glyphicon-compressed:before { + content: "\e181"; +} + +.glyphicon-earphone:before { + content: "\e182"; +} + +.glyphicon-phone-alt:before { + content: "\e183"; +} + +.glyphicon-tower:before { + content: "\e184"; +} + +.glyphicon-stats:before { + content: "\e185"; +} + +.glyphicon-sd-video:before { + content: "\e186"; +} + +.glyphicon-hd-video:before { + content: "\e187"; +} + +.glyphicon-subtitles:before { + content: "\e188"; +} + +.glyphicon-sound-stereo:before { + content: "\e189"; +} + +.glyphicon-sound-dolby:before { + content: "\e190"; +} + +.glyphicon-sound-5-1:before { + content: "\e191"; +} + +.glyphicon-sound-6-1:before { + content: "\e192"; +} + +.glyphicon-sound-7-1:before { + content: "\e193"; +} + +.glyphicon-copyright-mark:before { + content: "\e194"; +} + +.glyphicon-registration-mark:before { + content: "\e195"; +} + +.glyphicon-cloud-download:before { + content: "\e197"; +} + +.glyphicon-cloud-upload:before { + content: "\e198"; +} + +.glyphicon-tree-conifer:before { + content: "\e199"; +} + +.glyphicon-tree-deciduous:before { + content: "\e200"; +} + +.glyphicon-briefcase:before { + content: "\1f4bc"; +} + +.glyphicon-calendar:before { + content: "\1f4c5"; +} + +.glyphicon-pushpin:before { + content: "\1f4cc"; +} + +.glyphicon-paperclip:before { + content: "\1f4ce"; +} + +.glyphicon-camera:before { + content: "\1f4f7"; +} + +.glyphicon-lock:before { + content: "\1f512"; +} + +.glyphicon-bell:before { + content: "\1f514"; +} + +.glyphicon-bookmark:before { + content: "\1f516"; +} + +.glyphicon-fire:before { + content: "\1f525"; +} + +.glyphicon-wrench:before { + content: "\1f527"; +} + +.caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px solid #000000; + border-right: 4px solid transparent; + border-bottom: 0 dotted; + border-left: 4px solid transparent; + content: ""; +} + +.dropdown { + position: relative; +} + +.dropdown-toggle:focus { + outline: 0; +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + font-size: 14px; + list-style: none; + background-color: #ffffff; + border: 1px solid #cccccc; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + background-clip: padding-box; +} + +.dropdown-menu.pull-right { + right: 0; + left: auto; +} + +.dropdown-menu .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} + +.dropdown-menu > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: normal; + line-height: 1.428571429; + color: #333333; + white-space: nowrap; +} + +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus { + color: #ffffff; + text-decoration: none; + background-color: #428bca; +} + +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + color: #ffffff; + text-decoration: none; + background-color: #428bca; + outline: 0; +} + +.dropdown-menu > .disabled > a, +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + color: #999999; +} + +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + text-decoration: none; + cursor: not-allowed; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.open > .dropdown-menu { + display: block; +} + +.open > a { + outline: 0; +} + +.dropdown-header { + display: block; + padding: 3px 20px; + font-size: 12px; + line-height: 1.428571429; + color: #999999; +} + +.dropdown-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 990; +} + +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} + +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + border-top: 0 dotted; + border-bottom: 4px solid #000000; + content: ""; +} + +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 1px; +} + +@media (min-width: 768px) { + .navbar-right .dropdown-menu { + right: 0; + left: auto; + } +} + +.btn-default .caret { + border-top-color: #333333; +} + +.btn-primary .caret, +.btn-success .caret, +.btn-warning .caret, +.btn-danger .caret, +.btn-info .caret { + border-top-color: #fff; +} + +.dropup .btn-default .caret { + border-bottom-color: #333333; +} + +.dropup .btn-primary .caret, +.dropup .btn-success .caret, +.dropup .btn-warning .caret, +.dropup .btn-danger .caret, +.dropup .btn-info .caret { + border-bottom-color: #fff; +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-block; + vertical-align: middle; +} + +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + float: left; +} + +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover, +.btn-group > .btn:focus, +.btn-group-vertical > .btn:focus, +.btn-group > .btn:active, +.btn-group-vertical > .btn:active, +.btn-group > .btn.active, +.btn-group-vertical > .btn.active { + z-index: 2; +} + +.btn-group > .btn:focus, +.btn-group-vertical > .btn:focus { + outline: none; +} + +.btn-group .btn + .btn, +.btn-group .btn + .btn-group, +.btn-group .btn-group + .btn, +.btn-group .btn-group + .btn-group { + margin-left: -1px; +} + +.btn-toolbar:before, +.btn-toolbar:after { + display: table; + content: " "; +} + +.btn-toolbar:after { + clear: both; +} + +.btn-toolbar:before, +.btn-toolbar:after { + display: table; + content: " "; +} + +.btn-toolbar:after { + clear: both; +} + +.btn-toolbar .btn-group { + float: left; +} + +.btn-toolbar > .btn + .btn, +.btn-toolbar > .btn-group + .btn, +.btn-toolbar > .btn + .btn-group, +.btn-toolbar > .btn-group + .btn-group { + margin-left: 5px; +} + +.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; +} + +.btn-group > .btn:first-child { + margin-left: 0; +} + +.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.btn-group > .btn:last-child:not(:first-child), +.btn-group > .dropdown-toggle:not(:first-child) { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} + +.btn-group > .btn-group { + float: left; +} + +.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} + +.btn-group > .btn-group:first-child > .btn:last-child, +.btn-group > .btn-group:first-child > .dropdown-toggle { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.btn-group > .btn-group:last-child > .btn:first-child { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} + +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} + +.btn-group-xs > .btn { + padding: 5px 10px; + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} + +.btn-group-sm > .btn { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} + +.btn-group-lg > .btn { + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 6px; +} + +.btn-group > .btn + .dropdown-toggle { + padding-right: 8px; + padding-left: 8px; +} + +.btn-group > .btn-lg + .dropdown-toggle { + padding-right: 12px; + padding-left: 12px; +} + +.btn-group.open .dropdown-toggle { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} + +.btn .caret { + margin-left: 0; +} + +.btn-lg .caret { + border-width: 5px 5px 0; + border-bottom-width: 0; +} + +.dropup .btn-lg .caret { + border-width: 0 5px 5px; +} + +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group { + display: block; + float: none; + width: 100%; + max-width: 100%; +} + +.btn-group-vertical > .btn-group:before, +.btn-group-vertical > .btn-group:after { + display: table; + content: " "; +} + +.btn-group-vertical > .btn-group:after { + clear: both; +} + +.btn-group-vertical > .btn-group:before, +.btn-group-vertical > .btn-group:after { + display: table; + content: " "; +} + +.btn-group-vertical > .btn-group:after { + clear: both; +} + +.btn-group-vertical > .btn-group > .btn { + float: none; +} + +.btn-group-vertical > .btn + .btn, +.btn-group-vertical > .btn + .btn-group, +.btn-group-vertical > .btn-group + .btn, +.btn-group-vertical > .btn-group + .btn-group { + margin-top: -1px; + margin-left: 0; +} + +.btn-group-vertical > .btn:not(:first-child):not(:last-child) { + border-radius: 0; +} + +.btn-group-vertical > .btn:first-child:not(:last-child) { + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.btn-group-vertical > .btn:last-child:not(:first-child) { + border-top-right-radius: 0; + border-bottom-left-radius: 4px; + border-top-left-radius: 0; +} + +.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} + +.btn-group-vertical > .btn-group:first-child > .btn:last-child, +.btn-group-vertical > .btn-group:first-child > .dropdown-toggle { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.btn-group-vertical > .btn-group:last-child > .btn:first-child { + border-top-right-radius: 0; + border-top-left-radius: 0; +} + +.btn-group-justified { + display: table; + width: 100%; + border-collapse: separate; + table-layout: fixed; +} + +.btn-group-justified .btn { + display: table-cell; + float: none; + width: 1%; +} + +[data-toggle="buttons"] > .btn > input[type="radio"], +[data-toggle="buttons"] > .btn > input[type="checkbox"] { + display: none; +} + +.input-group { + position: relative; + display: table; + border-collapse: separate; +} + +.input-group.col { + float: none; + padding-right: 0; + padding-left: 0; +} + +.input-group .form-control { + width: 100%; + margin-bottom: 0; +} + +.input-group-lg > .form-control, +.input-group-lg > .input-group-addon, +.input-group-lg > .input-group-btn > .btn { + height: 45px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 6px; +} + +select.input-group-lg > .form-control, +select.input-group-lg > .input-group-addon, +select.input-group-lg > .input-group-btn > .btn { + height: 45px; + line-height: 45px; +} + +textarea.input-group-lg > .form-control, +textarea.input-group-lg > .input-group-addon, +textarea.input-group-lg > .input-group-btn > .btn { + height: auto; +} + +.input-group-sm > .form-control, +.input-group-sm > .input-group-addon, +.input-group-sm > .input-group-btn > .btn { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} + +select.input-group-sm > .form-control, +select.input-group-sm > .input-group-addon, +select.input-group-sm > .input-group-btn > .btn { + height: 30px; + line-height: 30px; +} + +textarea.input-group-sm > .form-control, +textarea.input-group-sm > .input-group-addon, +textarea.input-group-sm > .input-group-btn > .btn { + height: auto; +} + +.input-group-addon, +.input-group-btn, +.input-group .form-control { + display: table-cell; +} + +.input-group-addon:not(:first-child):not(:last-child), +.input-group-btn:not(:first-child):not(:last-child), +.input-group .form-control:not(:first-child):not(:last-child) { + border-radius: 0; +} + +.input-group-addon, +.input-group-btn { + width: 1%; + white-space: nowrap; + vertical-align: middle; +} + +.input-group-addon { + padding: 6px 12px; + font-size: 14px; + font-weight: normal; + line-height: 1; + text-align: center; + background-color: #eeeeee; + border: 1px solid #cccccc; + border-radius: 4px; +} + +.input-group-addon.input-sm { + padding: 5px 10px; + font-size: 12px; + border-radius: 3px; +} + +.input-group-addon.input-lg { + padding: 10px 16px; + font-size: 18px; + border-radius: 6px; +} + +.input-group-addon input[type="radio"], +.input-group-addon input[type="checkbox"] { + margin-top: 0; +} + +.input-group .form-control:first-child, +.input-group-addon:first-child, +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .dropdown-toggle, +.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group-addon:first-child { + border-right: 0; +} + +.input-group .form-control:last-child, +.input-group-addon:last-child, +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .dropdown-toggle, +.input-group-btn:first-child > .btn:not(:first-child) { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} + +.input-group-addon:last-child { + border-left: 0; +} + +.input-group-btn { + position: relative; + white-space: nowrap; +} + +.input-group-btn > .btn { + position: relative; +} + +.input-group-btn > .btn + .btn { + margin-left: -4px; +} + +.input-group-btn > .btn:hover, +.input-group-btn > .btn:active { + z-index: 2; +} + +.nav { + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.nav:before, +.nav:after { + display: table; + content: " "; +} + +.nav:after { + clear: both; +} + +.nav:before, +.nav:after { + display: table; + content: " "; +} + +.nav:after { + clear: both; +} + +.nav > li { + position: relative; + display: block; +} + +.nav > li > a { + position: relative; + display: block; + padding: 10px 15px; +} + +.nav > li > a:hover, +.nav > li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} + +.nav > li.disabled > a { + color: #999999; +} + +.nav > li.disabled > a:hover, +.nav > li.disabled > a:focus { + color: #999999; + text-decoration: none; + cursor: not-allowed; + background-color: transparent; +} + +.nav .open > a, +.nav .open > a:hover, +.nav .open > a:focus { + background-color: #eeeeee; + border-color: #428bca; +} + +.nav .nav-divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} + +.nav > li > a > img { + max-width: none; +} + +.nav-tabs { + border-bottom: 1px solid #dddddd; +} + +.nav-tabs > li { + float: left; + margin-bottom: -1px; +} + +.nav-tabs > li > a { + margin-right: 2px; + line-height: 1.428571429; + border: 1px solid transparent; + border-radius: 4px 4px 0 0; +} + +.nav-tabs > li > a:hover { + border-color: #eeeeee #eeeeee #dddddd; +} + +.nav-tabs > li.active > a, +.nav-tabs > li.active > a:hover, +.nav-tabs > li.active > a:focus { + color: #555555; + cursor: default; + background-color: #ffffff; + border: 1px solid #dddddd; + border-bottom-color: transparent; +} + +.nav-tabs.nav-justified { + width: 100%; + border-bottom: 0; +} + +.nav-tabs.nav-justified > li { + float: none; +} + +.nav-tabs.nav-justified > li > a { + text-align: center; +} + +@media (min-width: 768px) { + .nav-tabs.nav-justified > li { + display: table-cell; + width: 1%; + } +} + +.nav-tabs.nav-justified > li > a { + margin-right: 0; + border-bottom: 1px solid #dddddd; +} + +.nav-tabs.nav-justified > .active > a { + border-bottom-color: #ffffff; +} + +.nav-pills > li { + float: left; +} + +.nav-pills > li > a { + border-radius: 5px; +} + +.nav-pills > li + li { + margin-left: 2px; +} + +.nav-pills > li.active > a, +.nav-pills > li.active > a:hover, +.nav-pills > li.active > a:focus { + color: #ffffff; + background-color: #428bca; +} + +.nav-stacked > li { + float: none; +} + +.nav-stacked > li + li { + margin-top: 2px; + margin-left: 0; +} + +.nav-justified { + width: 100%; +} + +.nav-justified > li { + float: none; +} + +.nav-justified > li > a { + text-align: center; +} + +@media (min-width: 768px) { + .nav-justified > li { + display: table-cell; + width: 1%; + } +} + +.nav-tabs-justified { + border-bottom: 0; +} + +.nav-tabs-justified > li > a { + margin-right: 0; + border-bottom: 1px solid #dddddd; +} + +.nav-tabs-justified > .active > a { + border-bottom-color: #ffffff; +} + +.tabbable:before, +.tabbable:after { + display: table; + content: " "; +} + +.tabbable:after { + clear: both; +} + +.tabbable:before, +.tabbable:after { + display: table; + content: " "; +} + +.tabbable:after { + clear: both; +} + +.tab-content > .tab-pane, +.pill-content > .pill-pane { + display: none; +} + +.tab-content > .active, +.pill-content > .active { + display: block; +} + +.nav .caret { + border-top-color: #428bca; + border-bottom-color: #428bca; +} + +.nav a:hover .caret { + border-top-color: #2a6496; + border-bottom-color: #2a6496; +} + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-right-radius: 0; + border-top-left-radius: 0; +} + +.navbar { + position: relative; + z-index: 1000; + min-height: 50px; + margin-bottom: 20px; + border: 1px solid transparent; +} + +.navbar:before, +.navbar:after { + display: table; + content: " "; +} + +.navbar:after { + clear: both; +} + +.navbar:before, +.navbar:after { + display: table; + content: " "; +} + +.navbar:after { + clear: both; +} + +@media (min-width: 768px) { + .navbar { + border-radius: 4px; + } +} + +.navbar-header:before, +.navbar-header:after { + display: table; + content: " "; +} + +.navbar-header:after { + clear: both; +} + +.navbar-header:before, +.navbar-header:after { + display: table; + content: " "; +} + +.navbar-header:after { + clear: both; +} + +@media (min-width: 768px) { + .navbar-header { + float: left; + } +} + +.navbar-collapse { + max-height: 340px; + padding-right: 15px; + padding-left: 15px; + overflow-x: visible; + border-top: 1px solid transparent; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); + -webkit-overflow-scrolling: touch; +} + +.navbar-collapse:before, +.navbar-collapse:after { + display: table; + content: " "; +} + +.navbar-collapse:after { + clear: both; +} + +.navbar-collapse:before, +.navbar-collapse:after { + display: table; + content: " "; +} + +.navbar-collapse:after { + clear: both; +} + +.navbar-collapse.in { + overflow-y: auto; +} + +@media (min-width: 768px) { + .navbar-collapse { + width: auto; + border-top: 0; + box-shadow: none; + } + .navbar-collapse.collapse { + display: block !important; + height: auto !important; + padding-bottom: 0; + overflow: visible !important; + } + .navbar-collapse.in { + overflow-y: visible; + } + .navbar-collapse .navbar-nav.navbar-left:first-child { + margin-left: -15px; + } + .navbar-collapse .navbar-nav.navbar-right:last-child { + margin-right: -15px; + } + .navbar-collapse .navbar-text:last-child { + margin-right: 0; + } +} + +.container > .navbar-header, +.container > .navbar-collapse { + margin-right: -15px; + margin-left: -15px; +} + +@media (min-width: 768px) { + .container > .navbar-header, + .container > .navbar-collapse { + margin-right: 0; + margin-left: 0; + } +} + +.navbar-static-top { + border-width: 0 0 1px; +} + +@media (min-width: 768px) { + .navbar-static-top { + border-radius: 0; + } +} + +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + border-width: 0 0 1px; +} + +@media (min-width: 768px) { + .navbar-fixed-top, + .navbar-fixed-bottom { + border-radius: 0; + } +} + +.navbar-fixed-top { + top: 0; + z-index: 1030; +} + +.navbar-fixed-bottom { + bottom: 0; + margin-bottom: 0; +} + +.navbar-brand { + float: left; + padding: 15px 15px; + font-size: 18px; + line-height: 20px; +} + +.navbar-brand:hover, +.navbar-brand:focus { + text-decoration: none; +} + +@media (min-width: 768px) { + .navbar > .container .navbar-brand { + margin-left: -15px; + } +} + +.navbar-toggle { + position: relative; + float: right; + padding: 9px 10px; + margin-top: 8px; + margin-right: 15px; + margin-bottom: 8px; + background-color: transparent; + border: 1px solid transparent; + border-radius: 4px; +} + +.navbar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + border-radius: 1px; +} + +.navbar-toggle .icon-bar + .icon-bar { + margin-top: 4px; +} + +@media (min-width: 768px) { + .navbar-toggle { + display: none; + } +} + +.navbar-nav { + margin: 7.5px -15px; +} + +.navbar-nav > li > a { + padding-top: 10px; + padding-bottom: 10px; + line-height: 20px; +} + +@media (max-width: 767px) { + .navbar-nav .open .dropdown-menu { + position: static; + float: none; + width: auto; + margin-top: 0; + background-color: transparent; + border: 0; + box-shadow: none; + } + .navbar-nav .open .dropdown-menu > li > a, + .navbar-nav .open .dropdown-menu .dropdown-header { + padding: 5px 15px 5px 25px; + } + .navbar-nav .open .dropdown-menu > li > a { + line-height: 20px; + } + .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-nav .open .dropdown-menu > li > a:focus { + background-image: none; + } +} + +@media (min-width: 768px) { + .navbar-nav { + float: left; + margin: 0; + } + .navbar-nav > li { + float: left; + } + .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + } +} + +@media (min-width: 768px) { + .navbar-left { + float: left !important; + } + .navbar-right { + float: right !important; + } +} + +.navbar-form { + padding: 10px 15px; + margin-top: 8px; + margin-right: -15px; + margin-bottom: 8px; + margin-left: -15px; + border-top: 1px solid transparent; + border-bottom: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); +} + +@media (min-width: 768px) { + .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .form-control { + display: inline-block; + } + .navbar-form .radio, + .navbar-form .checkbox { + display: inline-block; + padding-left: 0; + margin-top: 0; + margin-bottom: 0; + } + .navbar-form .radio input[type="radio"], + .navbar-form .checkbox input[type="checkbox"] { + float: none; + margin-left: 0; + } +} + +@media (max-width: 767px) { + .navbar-form .form-group { + margin-bottom: 5px; + } +} + +@media (min-width: 768px) { + .navbar-form { + width: auto; + padding-top: 0; + padding-bottom: 0; + margin-right: 0; + margin-left: 0; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; + } +} + +.navbar-nav > li > .dropdown-menu { + margin-top: 0; + border-top-right-radius: 0; + border-top-left-radius: 0; +} + +.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.navbar-nav.pull-right > li > .dropdown-menu, +.navbar-nav > li > .dropdown-menu.pull-right { + right: 0; + left: auto; +} + +.navbar-btn { + margin-top: 8px; + margin-bottom: 8px; +} + +.navbar-text { + float: left; + margin-top: 15px; + margin-bottom: 15px; +} + +@media (min-width: 768px) { + .navbar-text { + margin-right: 15px; + margin-left: 15px; + } +} + +.navbar-default { + background-color: #f8f8f8; + border-color: #e7e7e7; +} + +.navbar-default .navbar-brand { + color: #777777; +} + +.navbar-default .navbar-brand:hover, +.navbar-default .navbar-brand:focus { + color: #5e5e5e; + background-color: transparent; +} + +.navbar-default .navbar-text { + color: #777777; +} + +.navbar-default .navbar-nav > li > a { + color: #777777; +} + +.navbar-default .navbar-nav > li > a:hover, +.navbar-default .navbar-nav > li > a:focus { + color: #333333; + background-color: transparent; +} + +.navbar-default .navbar-nav > .active > a, +.navbar-default .navbar-nav > .active > a:hover, +.navbar-default .navbar-nav > .active > a:focus { + color: #555555; + background-color: #e7e7e7; +} + +.navbar-default .navbar-nav > .disabled > a, +.navbar-default .navbar-nav > .disabled > a:hover, +.navbar-default .navbar-nav > .disabled > a:focus { + color: #cccccc; + background-color: transparent; +} + +.navbar-default .navbar-toggle { + border-color: #dddddd; +} + +.navbar-default .navbar-toggle:hover, +.navbar-default .navbar-toggle:focus { + background-color: #dddddd; +} + +.navbar-default .navbar-toggle .icon-bar { + background-color: #cccccc; +} + +.navbar-default .navbar-collapse, +.navbar-default .navbar-form { + border-color: #e6e6e6; +} + +.navbar-default .navbar-nav > .dropdown > a:hover .caret, +.navbar-default .navbar-nav > .dropdown > a:focus .caret { + border-top-color: #333333; + border-bottom-color: #333333; +} + +.navbar-default .navbar-nav > .open > a, +.navbar-default .navbar-nav > .open > a:hover, +.navbar-default .navbar-nav > .open > a:focus { + color: #555555; + background-color: #e7e7e7; +} + +.navbar-default .navbar-nav > .open > a .caret, +.navbar-default .navbar-nav > .open > a:hover .caret, +.navbar-default .navbar-nav > .open > a:focus .caret { + border-top-color: #555555; + border-bottom-color: #555555; +} + +.navbar-default .navbar-nav > .dropdown > a .caret { + border-top-color: #777777; + border-bottom-color: #777777; +} + +@media (max-width: 767px) { + .navbar-default .navbar-nav .open .dropdown-menu > li > a { + color: #777777; + } + .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { + color: #333333; + background-color: transparent; + } + .navbar-default .navbar-nav .open .dropdown-menu > .active > a, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #555555; + background-color: #e7e7e7; + } + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #cccccc; + background-color: transparent; + } +} + +.navbar-default .navbar-link { + color: #777777; +} + +.navbar-default .navbar-link:hover { + color: #333333; +} + +.navbar-inverse { + background-color: #222222; + border-color: #080808; +} + +.navbar-inverse .navbar-brand { + color: #999999; +} + +.navbar-inverse .navbar-brand:hover, +.navbar-inverse .navbar-brand:focus { + color: #ffffff; + background-color: transparent; +} + +.navbar-inverse .navbar-text { + color: #999999; +} + +.navbar-inverse .navbar-nav > li > a { + color: #999999; +} + +.navbar-inverse .navbar-nav > li > a:hover, +.navbar-inverse .navbar-nav > li > a:focus { + color: #ffffff; + background-color: transparent; +} + +.navbar-inverse .navbar-nav > .active > a, +.navbar-inverse .navbar-nav > .active > a:hover, +.navbar-inverse .navbar-nav > .active > a:focus { + color: #ffffff; + background-color: #080808; +} + +.navbar-inverse .navbar-nav > .disabled > a, +.navbar-inverse .navbar-nav > .disabled > a:hover, +.navbar-inverse .navbar-nav > .disabled > a:focus { + color: #444444; + background-color: transparent; +} + +.navbar-inverse .navbar-toggle { + border-color: #333333; +} + +.navbar-inverse .navbar-toggle:hover, +.navbar-inverse .navbar-toggle:focus { + background-color: #333333; +} + +.navbar-inverse .navbar-toggle .icon-bar { + background-color: #ffffff; +} + +.navbar-inverse .navbar-collapse, +.navbar-inverse .navbar-form { + border-color: #101010; +} + +.navbar-inverse .navbar-nav > .open > a, +.navbar-inverse .navbar-nav > .open > a:hover, +.navbar-inverse .navbar-nav > .open > a:focus { + color: #ffffff; + background-color: #080808; +} + +.navbar-inverse .navbar-nav > .dropdown > a:hover .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +.navbar-inverse .navbar-nav > .dropdown > a .caret { + border-top-color: #999999; + border-bottom-color: #999999; +} + +.navbar-inverse .navbar-nav > .open > a .caret, +.navbar-inverse .navbar-nav > .open > a:hover .caret, +.navbar-inverse .navbar-nav > .open > a:focus .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +@media (max-width: 767px) { + .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { + border-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { + color: #999999; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { + color: #ffffff; + background-color: transparent; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #ffffff; + background-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #444444; + background-color: transparent; + } +} + +.navbar-inverse .navbar-link { + color: #999999; +} + +.navbar-inverse .navbar-link:hover { + color: #ffffff; +} + +.breadcrumb { + padding: 8px 15px; + margin-bottom: 20px; + list-style: none; + background-color: #f5f5f5; + border-radius: 4px; +} + +.breadcrumb > li { + display: inline-block; +} + +.breadcrumb > li + li:before { + padding: 0 5px; + color: #cccccc; + content: "/\00a0"; +} + +.breadcrumb > .active { + color: #999999; +} + +.pagination { + display: inline-block; + padding-left: 0; + margin: 20px 0; + border-radius: 4px; +} + +.pagination > li { + display: inline; +} + +.pagination > li > a, +.pagination > li > span { + position: relative; + float: left; + padding: 6px 12px; + margin-left: -1px; + line-height: 1.428571429; + text-decoration: none; + background-color: #ffffff; + border: 1px solid #dddddd; +} + +.pagination > li:first-child > a, +.pagination > li:first-child > span { + margin-left: 0; + border-bottom-left-radius: 4px; + border-top-left-radius: 4px; +} + +.pagination > li:last-child > a, +.pagination > li:last-child > span { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} + +.pagination > li > a:hover, +.pagination > li > span:hover, +.pagination > li > a:focus, +.pagination > li > span:focus { + background-color: #eeeeee; +} + +.pagination > .active > a, +.pagination > .active > span, +.pagination > .active > a:hover, +.pagination > .active > span:hover, +.pagination > .active > a:focus, +.pagination > .active > span:focus { + z-index: 2; + color: #ffffff; + cursor: default; + background-color: #428bca; + border-color: #428bca; +} + +.pagination > .disabled > span, +.pagination > .disabled > a, +.pagination > .disabled > a:hover, +.pagination > .disabled > a:focus { + color: #999999; + cursor: not-allowed; + background-color: #ffffff; + border-color: #dddddd; +} + +.pagination-lg > li > a, +.pagination-lg > li > span { + padding: 10px 16px; + font-size: 18px; +} + +.pagination-lg > li:first-child > a, +.pagination-lg > li:first-child > span { + border-bottom-left-radius: 6px; + border-top-left-radius: 6px; +} + +.pagination-lg > li:last-child > a, +.pagination-lg > li:last-child > span { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +.pagination-sm > li > a, +.pagination-sm > li > span { + padding: 5px 10px; + font-size: 12px; +} + +.pagination-sm > li:first-child > a, +.pagination-sm > li:first-child > span { + border-bottom-left-radius: 3px; + border-top-left-radius: 3px; +} + +.pagination-sm > li:last-child > a, +.pagination-sm > li:last-child > span { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} + +.pager { + padding-left: 0; + margin: 20px 0; + text-align: center; + list-style: none; +} + +.pager:before, +.pager:after { + display: table; + content: " "; +} + +.pager:after { + clear: both; +} + +.pager:before, +.pager:after { + display: table; + content: " "; +} + +.pager:after { + clear: both; +} + +.pager li { + display: inline; +} + +.pager li > a, +.pager li > span { + display: inline-block; + padding: 5px 14px; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 15px; +} + +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} + +.pager .next > a, +.pager .next > span { + float: right; +} + +.pager .previous > a, +.pager .previous > span { + float: left; +} + +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #999999; + cursor: not-allowed; + background-color: #ffffff; +} + +.label { + display: inline; + padding: .2em .6em .3em; + font-size: 75%; + font-weight: bold; + line-height: 1; + color: #ffffff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: .25em; +} + +.label[href]:hover, +.label[href]:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} + +.label:empty { + display: none; +} + +.label-default { + background-color: #999999; +} + +.label-default[href]:hover, +.label-default[href]:focus { + background-color: #808080; +} + +.label-primary { + background-color: #428bca; +} + +.label-primary[href]:hover, +.label-primary[href]:focus { + background-color: #3071a9; +} + +.label-success { + background-color: #5cb85c; +} + +.label-success[href]:hover, +.label-success[href]:focus { + background-color: #449d44; +} + +.label-info { + background-color: #5bc0de; +} + +.label-info[href]:hover, +.label-info[href]:focus { + background-color: #31b0d5; +} + +.label-warning { + background-color: #f0ad4e; +} + +.label-warning[href]:hover, +.label-warning[href]:focus { + background-color: #ec971f; +} + +.label-danger { + background-color: #d9534f; +} + +.label-danger[href]:hover, +.label-danger[href]:focus { + background-color: #c9302c; +} + +.badge { + display: inline-block; + min-width: 10px; + padding: 3px 7px; + font-size: 12px; + font-weight: bold; + line-height: 1; + color: #ffffff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + background-color: #999999; + border-radius: 10px; +} + +.badge:empty { + display: none; +} + +a.badge:hover, +a.badge:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} + +.btn .badge { + position: relative; + top: -1px; +} + +a.list-group-item.active > .badge, +.nav-pills > .active > a > .badge { + color: #428bca; + background-color: #ffffff; +} + +.nav-pills > li > a > .badge { + margin-left: 3px; +} + +.jumbotron { + padding: 30px; + margin-bottom: 30px; + font-size: 21px; + font-weight: 200; + line-height: 2.1428571435; + color: inherit; + background-color: #eeeeee; +} + +.jumbotron h1 { + line-height: 1; + color: inherit; +} + +.jumbotron p { + line-height: 1.4; +} + +.container .jumbotron { + border-radius: 6px; +} + +@media screen and (min-width: 768px) { + .jumbotron { + padding-top: 48px; + padding-bottom: 48px; + } + .container .jumbotron { + padding-right: 60px; + padding-left: 60px; + } + .jumbotron h1 { + font-size: 63px; + } +} + +.thumbnail { + display: inline-block; + display: block; + height: auto; + max-width: 100%; + padding: 4px; + line-height: 1.428571429; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 4px; + -webkit-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} + +.thumbnail > img { + display: block; + height: auto; + max-width: 100%; +} + +a.thumbnail:hover, +a.thumbnail:focus { + border-color: #428bca; +} + +.thumbnail > img { + margin-right: auto; + margin-left: auto; +} + +.thumbnail .caption { + padding: 9px; + color: #333333; +} + +.alert { + padding: 15px; + margin-bottom: 20px; + border: 1px solid transparent; + border-radius: 4px; +} + +.alert h4 { + margin-top: 0; + color: inherit; +} + +.alert .alert-link { + font-weight: bold; +} + +.alert > p, +.alert > ul { + margin-bottom: 0; +} + +.alert > p + p { + margin-top: 5px; +} + +.alert-dismissable { + padding-right: 35px; +} + +.alert-dismissable .close { + position: relative; + top: -2px; + right: -21px; + color: inherit; +} + +.alert-success { + color: #468847; + background-color: #dff0d8; + border-color: #d6e9c6; +} + +.alert-success hr { + border-top-color: #c9e2b3; +} + +.alert-success .alert-link { + color: #356635; +} + +.alert-info { + color: #3a87ad; + background-color: #d9edf7; + border-color: #bce8f1; +} + +.alert-info hr { + border-top-color: #a6e1ec; +} + +.alert-info .alert-link { + color: #2d6987; +} + +.alert-warning { + color: #c09853; + background-color: #fcf8e3; + border-color: #fbeed5; +} + +.alert-warning hr { + border-top-color: #f8e5be; +} + +.alert-warning .alert-link { + color: #a47e3c; +} + +.alert-danger { + color: #b94a48; + background-color: #f2dede; + border-color: #eed3d7; +} + +.alert-danger hr { + border-top-color: #e6c1c7; +} + +.alert-danger .alert-link { + color: #953b39; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-moz-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-o-keyframes progress-bar-stripes { + from { + background-position: 0 0; + } + to { + background-position: 40px 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +.progress { + height: 20px; + margin-bottom: 20px; + overflow: hidden; + background-color: #f5f5f5; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); +} + +.progress-bar { + float: left; + width: 0; + height: 100%; + font-size: 12px; + color: #ffffff; + text-align: center; + background-color: #428bca; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -webkit-transition: width 0.6s ease; + transition: width 0.6s ease; +} + +.progress-striped .progress-bar { + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 40px 40px; +} + +.progress.active .progress-bar { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -moz-animation: progress-bar-stripes 2s linear infinite; + -ms-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; +} + +.progress-bar-success { + background-color: #5cb85c; +} + +.progress-striped .progress-bar-success { + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-bar-info { + background-color: #5bc0de; +} + +.progress-striped .progress-bar-info { + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-bar-warning { + background-color: #f0ad4e; +} + +.progress-striped .progress-bar-warning { + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-bar-danger { + background-color: #d9534f; +} + +.progress-striped .progress-bar-danger { + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.media, +.media-body { + overflow: hidden; + zoom: 1; +} + +.media, +.media .media { + margin-top: 15px; +} + +.media:first-child { + margin-top: 0; +} + +.media-object { + display: block; +} + +.media-heading { + margin: 0 0 5px; +} + +.media > .pull-left { + margin-right: 10px; +} + +.media > .pull-right { + margin-left: 10px; +} + +.media-list { + padding-left: 0; + list-style: none; +} + +.list-group { + padding-left: 0; + margin-bottom: 20px; +} + +.list-group-item { + position: relative; + display: block; + padding: 10px 15px; + margin-bottom: -1px; + background-color: #ffffff; + border: 1px solid #dddddd; +} + +.list-group-item:first-child { + border-top-right-radius: 4px; + border-top-left-radius: 4px; +} + +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; +} + +.list-group-item > .badge { + float: right; +} + +.list-group-item > .badge + .badge { + margin-right: 5px; +} + +a.list-group-item { + color: #555555; +} + +a.list-group-item .list-group-item-heading { + color: #333333; +} + +a.list-group-item:hover, +a.list-group-item:focus { + text-decoration: none; + background-color: #f5f5f5; +} + +.list-group-item.active, +.list-group-item.active:hover, +.list-group-item.active:focus { + z-index: 2; + color: #ffffff; + background-color: #428bca; + border-color: #428bca; +} + +.list-group-item.active .list-group-item-heading, +.list-group-item.active:hover .list-group-item-heading, +.list-group-item.active:focus .list-group-item-heading { + color: inherit; +} + +.list-group-item.active .list-group-item-text, +.list-group-item.active:hover .list-group-item-text, +.list-group-item.active:focus .list-group-item-text { + color: #e1edf7; +} + +.list-group-item-heading { + margin-top: 0; + margin-bottom: 5px; +} + +.list-group-item-text { + margin-bottom: 0; + line-height: 1.3; +} + +.panel { + margin-bottom: 20px; + background-color: #ffffff; + border: 1px solid transparent; + border-radius: 4px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); +} + +.panel-body { + padding: 15px; +} + +.panel-body:before, +.panel-body:after { + display: table; + content: " "; +} + +.panel-body:after { + clear: both; +} + +.panel-body:before, +.panel-body:after { + display: table; + content: " "; +} + +.panel-body:after { + clear: both; +} + +.panel > .list-group { + margin-bottom: 0; +} + +.panel > .list-group .list-group-item { + border-width: 1px 0; +} + +.panel > .list-group .list-group-item:first-child { + border-top-right-radius: 0; + border-top-left-radius: 0; +} + +.panel > .list-group .list-group-item:last-child { + border-bottom: 0; +} + +.panel-heading + .list-group .list-group-item:first-child { + border-top-width: 0; +} + +.panel > .table { + margin-bottom: 0; +} + +.panel > .panel-body + .table { + border-top: 1px solid #dddddd; +} + +.panel-heading { + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} + +.panel-title { + margin-top: 0; + margin-bottom: 0; + font-size: 16px; +} + +.panel-title > a { + color: inherit; +} + +.panel-footer { + padding: 10px 15px; + background-color: #f5f5f5; + border-top: 1px solid #dddddd; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} + +.panel-group .panel { + margin-bottom: 0; + overflow: hidden; + border-radius: 4px; +} + +.panel-group .panel + .panel { + margin-top: 5px; +} + +.panel-group .panel-heading { + border-bottom: 0; +} + +.panel-group .panel-heading + .panel-collapse .panel-body { + border-top: 1px solid #dddddd; +} + +.panel-group .panel-footer { + border-top: 0; +} + +.panel-group .panel-footer + .panel-collapse .panel-body { + border-bottom: 1px solid #dddddd; +} + +.panel-default { + border-color: #dddddd; +} + +.panel-default > .panel-heading { + color: #333333; + background-color: #f5f5f5; + border-color: #dddddd; +} + +.panel-default > .panel-heading + .panel-collapse .panel-body { + border-top-color: #dddddd; +} + +.panel-default > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #dddddd; +} + +.panel-primary { + border-color: #428bca; +} + +.panel-primary > .panel-heading { + color: #ffffff; + background-color: #428bca; + border-color: #428bca; +} + +.panel-primary > .panel-heading + .panel-collapse .panel-body { + border-top-color: #428bca; +} + +.panel-primary > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #428bca; +} + +.panel-success { + border-color: #d6e9c6; +} + +.panel-success > .panel-heading { + color: #468847; + background-color: #dff0d8; + border-color: #d6e9c6; +} + +.panel-success > .panel-heading + .panel-collapse .panel-body { + border-top-color: #d6e9c6; +} + +.panel-success > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #d6e9c6; +} + +.panel-warning { + border-color: #fbeed5; +} + +.panel-warning > .panel-heading { + color: #c09853; + background-color: #fcf8e3; + border-color: #fbeed5; +} + +.panel-warning > .panel-heading + .panel-collapse .panel-body { + border-top-color: #fbeed5; +} + +.panel-warning > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #fbeed5; +} + +.panel-danger { + border-color: #eed3d7; +} + +.panel-danger > .panel-heading { + color: #b94a48; + background-color: #f2dede; + border-color: #eed3d7; +} + +.panel-danger > .panel-heading + .panel-collapse .panel-body { + border-top-color: #eed3d7; +} + +.panel-danger > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #eed3d7; +} + +.panel-info { + border-color: #bce8f1; +} + +.panel-info > .panel-heading { + color: #3a87ad; + background-color: #d9edf7; + border-color: #bce8f1; +} + +.panel-info > .panel-heading + .panel-collapse .panel-body { + border-top-color: #bce8f1; +} + +.panel-info > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #bce8f1; +} + +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); +} + +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15); +} + +.well-lg { + padding: 24px; + border-radius: 6px; +} + +.well-sm { + padding: 9px; + border-radius: 3px; +} + +.close { + float: right; + font-size: 21px; + font-weight: bold; + line-height: 1; + color: #000000; + text-shadow: 0 1px 0 #ffffff; + opacity: 0.2; + filter: alpha(opacity=20); +} + +.close:hover, +.close:focus { + color: #000000; + text-decoration: none; + cursor: pointer; + opacity: 0.5; + filter: alpha(opacity=50); +} + +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; +} + +.modal-open { + overflow: hidden; +} + +body.modal-open, +.modal-open .navbar-fixed-top, +.modal-open .navbar-fixed-bottom { + margin-right: 15px; +} + +.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + display: none; + overflow: auto; + overflow-y: scroll; +} + +.modal.fade .modal-dialog { + -webkit-transform: translate(0, -25%); + -ms-transform: translate(0, -25%); + transform: translate(0, -25%); + -webkit-transition: -webkit-transform 0.3s ease-out; + -moz-transition: -moz-transform 0.3s ease-out; + -o-transition: -o-transform 0.3s ease-out; + transition: transform 0.3s ease-out; +} + +.modal.in .modal-dialog { + -webkit-transform: translate(0, 0); + -ms-transform: translate(0, 0); + transform: translate(0, 0); +} + +.modal-dialog { + z-index: 1050; + width: auto; + padding: 10px; + margin-right: auto; + margin-left: auto; +} + +.modal-content { + position: relative; + background-color: #ffffff; + border: 1px solid #999999; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + outline: none; + -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + background-clip: padding-box; +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; + background-color: #000000; +} + +.modal-backdrop.fade { + opacity: 0; + filter: alpha(opacity=0); +} + +.modal-backdrop.in { + opacity: 0.5; + filter: alpha(opacity=50); +} + +.modal-header { + min-height: 16.428571429px; + padding: 15px; + border-bottom: 1px solid #e5e5e5; +} + +.modal-header .close { + margin-top: -2px; +} + +.modal-title { + margin: 0; + line-height: 1.428571429; +} + +.modal-body { + position: relative; + padding: 20px; +} + +.modal-footer { + padding: 19px 20px 20px; + margin-top: 15px; + text-align: right; + border-top: 1px solid #e5e5e5; +} + +.modal-footer:before, +.modal-footer:after { + display: table; + content: " "; +} + +.modal-footer:after { + clear: both; +} + +.modal-footer:before, +.modal-footer:after { + display: table; + content: " "; +} + +.modal-footer:after { + clear: both; +} + +.modal-footer .btn + .btn { + margin-bottom: 0; + margin-left: 5px; +} + +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} + +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} + +@media screen and (min-width: 768px) { + .modal-dialog { + right: auto; + left: 50%; + width: 600px; + padding-top: 30px; + padding-bottom: 30px; + } + .modal-content { + -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + } +} + +.tooltip { + position: absolute; + z-index: 1030; + display: block; + font-size: 12px; + line-height: 1.4; + opacity: 0; + filter: alpha(opacity=0); + visibility: visible; +} + +.tooltip.in { + opacity: 0.9; + filter: alpha(opacity=90); +} + +.tooltip.top { + padding: 5px 0; + margin-top: -3px; +} + +.tooltip.right { + padding: 0 5px; + margin-left: 3px; +} + +.tooltip.bottom { + padding: 5px 0; + margin-top: 3px; +} + +.tooltip.left { + padding: 0 5px; + margin-left: -3px; +} + +.tooltip-inner { + max-width: 200px; + padding: 3px 8px; + color: #ffffff; + text-align: center; + text-decoration: none; + background-color: #000000; + border-radius: 4px; +} + +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} + +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-top-color: #000000; + border-width: 5px 5px 0; +} + +.tooltip.top-left .tooltip-arrow { + bottom: 0; + left: 5px; + border-top-color: #000000; + border-width: 5px 5px 0; +} + +.tooltip.top-right .tooltip-arrow { + right: 5px; + bottom: 0; + border-top-color: #000000; + border-width: 5px 5px 0; +} + +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-right-color: #000000; + border-width: 5px 5px 5px 0; +} + +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-left-color: #000000; + border-width: 5px 0 5px 5px; +} + +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-bottom-color: #000000; + border-width: 0 5px 5px; +} + +.tooltip.bottom-left .tooltip-arrow { + top: 0; + left: 5px; + border-bottom-color: #000000; + border-width: 0 5px 5px; +} + +.tooltip.bottom-right .tooltip-arrow { + top: 0; + right: 5px; + border-bottom-color: #000000; + border-width: 0 5px 5px; +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1010; + display: none; + max-width: 276px; + padding: 1px; + text-align: left; + white-space: normal; + background-color: #ffffff; + border: 1px solid #cccccc; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + background-clip: padding-box; +} + +.popover.top { + margin-top: -10px; +} + +.popover.right { + margin-left: 10px; +} + +.popover.bottom { + margin-top: 10px; +} + +.popover.left { + margin-left: -10px; +} + +.popover-title { + padding: 8px 14px; + margin: 0; + font-size: 14px; + font-weight: normal; + line-height: 18px; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-radius: 5px 5px 0 0; +} + +.popover-content { + padding: 9px 14px; +} + +.popover .arrow, +.popover .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} + +.popover .arrow { + border-width: 11px; +} + +.popover .arrow:after { + border-width: 10px; + content: ""; +} + +.popover.top .arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999999; + border-top-color: rgba(0, 0, 0, 0.25); + border-bottom-width: 0; +} + +.popover.top .arrow:after { + bottom: 1px; + margin-left: -10px; + border-top-color: #ffffff; + border-bottom-width: 0; + content: " "; +} + +.popover.right .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-right-color: #999999; + border-right-color: rgba(0, 0, 0, 0.25); + border-left-width: 0; +} + +.popover.right .arrow:after { + bottom: -10px; + left: 1px; + border-right-color: #ffffff; + border-left-width: 0; + content: " "; +} + +.popover.bottom .arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-bottom-color: #999999; + border-bottom-color: rgba(0, 0, 0, 0.25); + border-top-width: 0; +} + +.popover.bottom .arrow:after { + top: 1px; + margin-left: -10px; + border-bottom-color: #ffffff; + border-top-width: 0; + content: " "; +} + +.popover.left .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-left-color: #999999; + border-left-color: rgba(0, 0, 0, 0.25); + border-right-width: 0; +} + +.popover.left .arrow:after { + right: 1px; + bottom: -10px; + border-left-color: #ffffff; + border-right-width: 0; + content: " "; +} + +.carousel { + position: relative; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +.carousel-inner > .item { + position: relative; + display: none; + -webkit-transition: 0.6s ease-in-out left; + transition: 0.6s ease-in-out left; +} + +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + height: auto; + max-width: 100%; + line-height: 1; +} + +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; +} + +.carousel-inner > .active { + left: 0; +} + +.carousel-inner > .next, +.carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} + +.carousel-inner > .next { + left: 100%; +} + +.carousel-inner > .prev { + left: -100%; +} + +.carousel-inner > .next.left, +.carousel-inner > .prev.right { + left: 0; +} + +.carousel-inner > .active.left { + left: -100%; +} + +.carousel-inner > .active.right { + left: 100%; +} + +.carousel-control { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 15%; + font-size: 20px; + color: #ffffff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + opacity: 0.5; + filter: alpha(opacity=50); +} + +.carousel-control.left { + background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001))); + background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%)); + background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); +} + +.carousel-control.right { + right: 0; + left: auto; + background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5))); + background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%)); + background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); +} + +.carousel-control:hover, +.carousel-control:focus { + color: #ffffff; + text-decoration: none; + opacity: 0.9; + filter: alpha(opacity=90); +} + +.carousel-control .icon-prev, +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-left, +.carousel-control .glyphicon-chevron-right { + position: absolute; + top: 50%; + left: 50%; + z-index: 5; + display: inline-block; +} + +.carousel-control .icon-prev, +.carousel-control .icon-next { + width: 20px; + height: 20px; + margin-top: -10px; + margin-left: -10px; + font-family: serif; +} + +.carousel-control .icon-prev:before { + content: '\2039'; +} + +.carousel-control .icon-next:before { + content: '\203a'; +} + +.carousel-indicators { + position: absolute; + bottom: 10px; + left: 50%; + z-index: 15; + width: 60%; + padding-left: 0; + margin-left: -30%; + text-align: center; + list-style: none; +} + +.carousel-indicators li { + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; + cursor: pointer; + border: 1px solid #ffffff; + border-radius: 10px; +} + +.carousel-indicators .active { + width: 12px; + height: 12px; + margin: 0; + background-color: #ffffff; +} + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #ffffff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); +} + +.carousel-caption .btn { + text-shadow: none; +} + +@media screen and (min-width: 768px) { + .carousel-control .icon-prev, + .carousel-control .icon-next { + width: 30px; + height: 30px; + margin-top: -15px; + margin-left: -15px; + font-size: 30px; + } + .carousel-caption { + right: 20%; + left: 20%; + padding-bottom: 30px; + } + .carousel-indicators { + bottom: 20px; + } +} + +.clearfix:before, +.clearfix:after { + display: table; + content: " "; +} + +.clearfix:after { + clear: both; +} + +.pull-right { + float: right !important; +} + +.pull-left { + float: left !important; +} + +.hide { + display: none !important; +} + +.show { + display: block !important; +} + +.invisible { + visibility: hidden; +} + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.affix { + position: fixed; +} + +@-ms-viewport { + width: device-width; +} + +@media screen and (max-width: 400px) { + @-ms-viewport { + width: 320px; + } +} + +.hidden { + display: none !important; + visibility: hidden !important; +} + +.visible-xs { + display: none !important; +} + +tr.visible-xs { + display: none !important; +} + +th.visible-xs, +td.visible-xs { + display: none !important; +} + +@media (max-width: 767px) { + .visible-xs { + display: block !important; + } + tr.visible-xs { + display: table-row !important; + } + th.visible-xs, + td.visible-xs { + display: table-cell !important; + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .visible-xs.visible-sm { + display: block !important; + } + tr.visible-xs.visible-sm { + display: table-row !important; + } + th.visible-xs.visible-sm, + td.visible-xs.visible-sm { + display: table-cell !important; + } +} + +@media (min-width: 992px) and (max-width: 1199px) { + .visible-xs.visible-md { + display: block !important; + } + tr.visible-xs.visible-md { + display: table-row !important; + } + th.visible-xs.visible-md, + td.visible-xs.visible-md { + display: table-cell !important; + } +} + +@media (min-width: 1200px) { + .visible-xs.visible-lg { + display: block !important; + } + tr.visible-xs.visible-lg { + display: table-row !important; + } + th.visible-xs.visible-lg, + td.visible-xs.visible-lg { + display: table-cell !important; + } +} + +.visible-sm { + display: none !important; +} + +tr.visible-sm { + display: none !important; +} + +th.visible-sm, +td.visible-sm { + display: none !important; +} + +@media (max-width: 767px) { + .visible-sm.visible-xs { + display: block !important; + } + tr.visible-sm.visible-xs { + display: table-row !important; + } + th.visible-sm.visible-xs, + td.visible-sm.visible-xs { + display: table-cell !important; + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm { + display: block !important; + } + tr.visible-sm { + display: table-row !important; + } + th.visible-sm, + td.visible-sm { + display: table-cell !important; + } +} + +@media (min-width: 992px) and (max-width: 1199px) { + .visible-sm.visible-md { + display: block !important; + } + tr.visible-sm.visible-md { + display: table-row !important; + } + th.visible-sm.visible-md, + td.visible-sm.visible-md { + display: table-cell !important; + } +} + +@media (min-width: 1200px) { + .visible-sm.visible-lg { + display: block !important; + } + tr.visible-sm.visible-lg { + display: table-row !important; + } + th.visible-sm.visible-lg, + td.visible-sm.visible-lg { + display: table-cell !important; + } +} + +.visible-md { + display: none !important; +} + +tr.visible-md { + display: none !important; +} + +th.visible-md, +td.visible-md { + display: none !important; +} + +@media (max-width: 767px) { + .visible-md.visible-xs { + display: block !important; + } + tr.visible-md.visible-xs { + display: table-row !important; + } + th.visible-md.visible-xs, + td.visible-md.visible-xs { + display: table-cell !important; + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .visible-md.visible-sm { + display: block !important; + } + tr.visible-md.visible-sm { + display: table-row !important; + } + th.visible-md.visible-sm, + td.visible-md.visible-sm { + display: table-cell !important; + } +} + +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md { + display: block !important; + } + tr.visible-md { + display: table-row !important; + } + th.visible-md, + td.visible-md { + display: table-cell !important; + } +} + +@media (min-width: 1200px) { + .visible-md.visible-lg { + display: block !important; + } + tr.visible-md.visible-lg { + display: table-row !important; + } + th.visible-md.visible-lg, + td.visible-md.visible-lg { + display: table-cell !important; + } +} + +.visible-lg { + display: none !important; +} + +tr.visible-lg { + display: none !important; +} + +th.visible-lg, +td.visible-lg { + display: none !important; +} + +@media (max-width: 767px) { + .visible-lg.visible-xs { + display: block !important; + } + tr.visible-lg.visible-xs { + display: table-row !important; + } + th.visible-lg.visible-xs, + td.visible-lg.visible-xs { + display: table-cell !important; + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .visible-lg.visible-sm { + display: block !important; + } + tr.visible-lg.visible-sm { + display: table-row !important; + } + th.visible-lg.visible-sm, + td.visible-lg.visible-sm { + display: table-cell !important; + } +} + +@media (min-width: 992px) and (max-width: 1199px) { + .visible-lg.visible-md { + display: block !important; + } + tr.visible-lg.visible-md { + display: table-row !important; + } + th.visible-lg.visible-md, + td.visible-lg.visible-md { + display: table-cell !important; + } +} + +@media (min-width: 1200px) { + .visible-lg { + display: block !important; + } + tr.visible-lg { + display: table-row !important; + } + th.visible-lg, + td.visible-lg { + display: table-cell !important; + } +} + +.hidden-xs { + display: block !important; +} + +tr.hidden-xs { + display: table-row !important; +} + +th.hidden-xs, +td.hidden-xs { + display: table-cell !important; +} + +@media (max-width: 767px) { + .hidden-xs { + display: none !important; + } + tr.hidden-xs { + display: none !important; + } + th.hidden-xs, + td.hidden-xs { + display: none !important; + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .hidden-xs.hidden-sm { + display: none !important; + } + tr.hidden-xs.hidden-sm { + display: none !important; + } + th.hidden-xs.hidden-sm, + td.hidden-xs.hidden-sm { + display: none !important; + } +} + +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-xs.hidden-md { + display: none !important; + } + tr.hidden-xs.hidden-md { + display: none !important; + } + th.hidden-xs.hidden-md, + td.hidden-xs.hidden-md { + display: none !important; + } +} + +@media (min-width: 1200px) { + .hidden-xs.hidden-lg { + display: none !important; + } + tr.hidden-xs.hidden-lg { + display: none !important; + } + th.hidden-xs.hidden-lg, + td.hidden-xs.hidden-lg { + display: none !important; + } +} + +.hidden-sm { + display: block !important; +} + +tr.hidden-sm { + display: table-row !important; +} + +th.hidden-sm, +td.hidden-sm { + display: table-cell !important; +} + +@media (max-width: 767px) { + .hidden-sm.hidden-xs { + display: none !important; + } + tr.hidden-sm.hidden-xs { + display: none !important; + } + th.hidden-sm.hidden-xs, + td.hidden-sm.hidden-xs { + display: none !important; + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .hidden-sm { + display: none !important; + } + tr.hidden-sm { + display: none !important; + } + th.hidden-sm, + td.hidden-sm { + display: none !important; + } +} + +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-sm.hidden-md { + display: none !important; + } + tr.hidden-sm.hidden-md { + display: none !important; + } + th.hidden-sm.hidden-md, + td.hidden-sm.hidden-md { + display: none !important; + } +} + +@media (min-width: 1200px) { + .hidden-sm.hidden-lg { + display: none !important; + } + tr.hidden-sm.hidden-lg { + display: none !important; + } + th.hidden-sm.hidden-lg, + td.hidden-sm.hidden-lg { + display: none !important; + } +} + +.hidden-md { + display: block !important; +} + +tr.hidden-md { + display: table-row !important; +} + +th.hidden-md, +td.hidden-md { + display: table-cell !important; +} + +@media (max-width: 767px) { + .hidden-md.hidden-xs { + display: none !important; + } + tr.hidden-md.hidden-xs { + display: none !important; + } + th.hidden-md.hidden-xs, + td.hidden-md.hidden-xs { + display: none !important; + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .hidden-md.hidden-sm { + display: none !important; + } + tr.hidden-md.hidden-sm { + display: none !important; + } + th.hidden-md.hidden-sm, + td.hidden-md.hidden-sm { + display: none !important; + } +} + +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-md { + display: none !important; + } + tr.hidden-md { + display: none !important; + } + th.hidden-md, + td.hidden-md { + display: none !important; + } +} + +@media (min-width: 1200px) { + .hidden-md.hidden-lg { + display: none !important; + } + tr.hidden-md.hidden-lg { + display: none !important; + } + th.hidden-md.hidden-lg, + td.hidden-md.hidden-lg { + display: none !important; + } +} + +.hidden-lg { + display: block !important; +} + +tr.hidden-lg { + display: table-row !important; +} + +th.hidden-lg, +td.hidden-lg { + display: table-cell !important; +} + +@media (max-width: 767px) { + .hidden-lg.hidden-xs { + display: none !important; + } + tr.hidden-lg.hidden-xs { + display: none !important; + } + th.hidden-lg.hidden-xs, + td.hidden-lg.hidden-xs { + display: none !important; + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .hidden-lg.hidden-sm { + display: none !important; + } + tr.hidden-lg.hidden-sm { + display: none !important; + } + th.hidden-lg.hidden-sm, + td.hidden-lg.hidden-sm { + display: none !important; + } +} + +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-lg.hidden-md { + display: none !important; + } + tr.hidden-lg.hidden-md { + display: none !important; + } + th.hidden-lg.hidden-md, + td.hidden-lg.hidden-md { + display: none !important; + } +} + +@media (min-width: 1200px) { + .hidden-lg { + display: none !important; + } + tr.hidden-lg { + display: none !important; + } + th.hidden-lg, + td.hidden-lg { + display: none !important; + } +} + +.visible-print { + display: none !important; +} + +tr.visible-print { + display: none !important; +} + +th.visible-print, +td.visible-print { + display: none !important; +} + +@media print { + .visible-print { + display: block !important; + } + tr.visible-print { + display: table-row !important; + } + th.visible-print, + td.visible-print { + display: table-cell !important; + } + .hidden-print { + display: none !important; + } + tr.hidden-print { + display: none !important; + } + th.hidden-print, + td.hidden-print { + display: none !important; + } +} \ No newline at end of file diff --git a/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Content/bootstrap.min.css b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Content/bootstrap.min.css new file mode 100644 index 00000000..df89a503 --- /dev/null +++ b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Content/bootstrap.min.css @@ -0,0 +1,20 @@ +/* NUGET: BEGIN LICENSE TEXT + * + * Microsoft grants you the right to use these script files for the sole + * purpose of either: (i) interacting through your browser with the Microsoft + * website or online service, subject to the applicable licensing or use + * terms; or (ii) using the files as included with a Microsoft product subject + * to that product's license terms. Microsoft reserves all other rights to the + * files not expressly granted by Microsoft, whether by implication, estoppel + * or otherwise. The notices and licenses below are for informational purposes only. + * + * NUGET: END LICENSE TEXT */ +/*! + * Bootstrap v3.0.0 + * + * Copyright 2013 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world by @mdo and @fat. + *//*! normalize.css v2.1.0 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{margin:.67em 0;font-size:2em}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{height:0;-moz-box-sizing:content-box;box-sizing:content-box}mark{color:#000;background:#ff0}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid #c0c0c0}legend{padding:0;border:0}button,input,select,textarea{margin:0;font-family:inherit;font-size:100%}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{padding:0;box-sizing:border-box}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}@page{margin:2cm .5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.428571429;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}button,input,select[multiple],textarea{background-image:none}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}img{vertical-align:middle}.img-responsive{display:block;height:auto;max-width:100%}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;height:auto;max-width:100%;padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);border:0}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16.099999999999998px;font-weight:200;line-height:1.4}@media(min-width:768px){.lead{font-size:21px}}small{font-size:85%}cite{font-style:normal}.text-muted{color:#999}.text-primary{color:#428bca}.text-warning{color:#c09853}.text-danger{color:#b94a48}.text-success{color:#468847}.text-info{color:#3a87ad}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:500;line-height:1.1}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-weight:normal;line-height:1;color:#999}h1,h2,h3{margin-top:20px;margin-bottom:10px}h4,h5,h6{margin-top:10px;margin-bottom:10px}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}h1 small,.h1 small{font-size:24px}h2 small,.h2 small{font-size:18px}h3 small,.h3 small,h4 small,.h4 small{font-size:14px}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-bottom:20px}dt,dd{line-height:1.428571429}dt{font-weight:bold}dd{margin-left:0}@media(min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}abbr.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{font-size:17.5px;font-weight:300;line-height:1.25}blockquote p:last-child{margin-bottom:0}blockquote small{display:block;line-height:1.428571429;color:#999}blockquote small:before{content:'\2014 \00A0'}blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right}blockquote.pull-right small:before{content:''}blockquote.pull-right small:after{content:'\00A0 \2014'}q:before,q:after,blockquote:before,blockquote:after{content:""}address{display:block;margin-bottom:20px;font-style:normal;line-height:1.428571429}code,pre{font-family:Monaco,Menlo,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;white-space:nowrap;background-color:#f9f2f4;border-radius:4px}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre.prettyprint{margin-bottom:20px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}.row{margin-right:-15px;margin-left:-15px}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11{float:left}.col-xs-1{width:8.333333333333332%}.col-xs-2{width:16.666666666666664%}.col-xs-3{width:25%}.col-xs-4{width:33.33333333333333%}.col-xs-5{width:41.66666666666667%}.col-xs-6{width:50%}.col-xs-7{width:58.333333333333336%}.col-xs-8{width:66.66666666666666%}.col-xs-9{width:75%}.col-xs-10{width:83.33333333333334%}.col-xs-11{width:91.66666666666666%}.col-xs-12{width:100%}@media(min-width:768px){.container{max-width:750px}.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11{float:left}.col-sm-1{width:8.333333333333332%}.col-sm-2{width:16.666666666666664%}.col-sm-3{width:25%}.col-sm-4{width:33.33333333333333%}.col-sm-5{width:41.66666666666667%}.col-sm-6{width:50%}.col-sm-7{width:58.333333333333336%}.col-sm-8{width:66.66666666666666%}.col-sm-9{width:75%}.col-sm-10{width:83.33333333333334%}.col-sm-11{width:91.66666666666666%}.col-sm-12{width:100%}.col-sm-push-1{left:8.333333333333332%}.col-sm-push-2{left:16.666666666666664%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.33333333333333%}.col-sm-push-5{left:41.66666666666667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.333333333333336%}.col-sm-push-8{left:66.66666666666666%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.33333333333334%}.col-sm-push-11{left:91.66666666666666%}.col-sm-pull-1{right:8.333333333333332%}.col-sm-pull-2{right:16.666666666666664%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.33333333333333%}.col-sm-pull-5{right:41.66666666666667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.333333333333336%}.col-sm-pull-8{right:66.66666666666666%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.33333333333334%}.col-sm-pull-11{right:91.66666666666666%}.col-sm-offset-1{margin-left:8.333333333333332%}.col-sm-offset-2{margin-left:16.666666666666664%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.33333333333333%}.col-sm-offset-5{margin-left:41.66666666666667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.333333333333336%}.col-sm-offset-8{margin-left:66.66666666666666%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.33333333333334%}.col-sm-offset-11{margin-left:91.66666666666666%}}@media(min-width:992px){.container{max-width:970px}.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11{float:left}.col-md-1{width:8.333333333333332%}.col-md-2{width:16.666666666666664%}.col-md-3{width:25%}.col-md-4{width:33.33333333333333%}.col-md-5{width:41.66666666666667%}.col-md-6{width:50%}.col-md-7{width:58.333333333333336%}.col-md-8{width:66.66666666666666%}.col-md-9{width:75%}.col-md-10{width:83.33333333333334%}.col-md-11{width:91.66666666666666%}.col-md-12{width:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.333333333333332%}.col-md-push-2{left:16.666666666666664%}.col-md-push-3{left:25%}.col-md-push-4{left:33.33333333333333%}.col-md-push-5{left:41.66666666666667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.333333333333336%}.col-md-push-8{left:66.66666666666666%}.col-md-push-9{left:75%}.col-md-push-10{left:83.33333333333334%}.col-md-push-11{left:91.66666666666666%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.333333333333332%}.col-md-pull-2{right:16.666666666666664%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.33333333333333%}.col-md-pull-5{right:41.66666666666667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.333333333333336%}.col-md-pull-8{right:66.66666666666666%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.33333333333334%}.col-md-pull-11{right:91.66666666666666%}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:8.333333333333332%}.col-md-offset-2{margin-left:16.666666666666664%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.33333333333333%}.col-md-offset-5{margin-left:41.66666666666667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.333333333333336%}.col-md-offset-8{margin-left:66.66666666666666%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.33333333333334%}.col-md-offset-11{margin-left:91.66666666666666%}}@media(min-width:1200px){.container{max-width:1170px}.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11{float:left}.col-lg-1{width:8.333333333333332%}.col-lg-2{width:16.666666666666664%}.col-lg-3{width:25%}.col-lg-4{width:33.33333333333333%}.col-lg-5{width:41.66666666666667%}.col-lg-6{width:50%}.col-lg-7{width:58.333333333333336%}.col-lg-8{width:66.66666666666666%}.col-lg-9{width:75%}.col-lg-10{width:83.33333333333334%}.col-lg-11{width:91.66666666666666%}.col-lg-12{width:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.333333333333332%}.col-lg-push-2{left:16.666666666666664%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.33333333333333%}.col-lg-push-5{left:41.66666666666667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.333333333333336%}.col-lg-push-8{left:66.66666666666666%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.33333333333334%}.col-lg-push-11{left:91.66666666666666%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.333333333333332%}.col-lg-pull-2{right:16.666666666666664%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.33333333333333%}.col-lg-pull-5{right:41.66666666666667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.333333333333336%}.col-lg-pull-8{right:66.66666666666666%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.33333333333334%}.col-lg-pull-11{right:91.66666666666666%}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:8.333333333333332%}.col-lg-offset-2{margin-left:16.666666666666664%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.33333333333333%}.col-lg-offset-5{margin-left:41.66666666666667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.333333333333336%}.col-lg-offset-8{margin-left:66.66666666666666%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.33333333333334%}.col-lg-offset-11{margin-left:91.66666666666666%}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table thead>tr>th,.table tbody>tr>th,.table tfoot>tr>th,.table thead>tr>td,.table tbody>tr>td,.table tfoot>tr>td{padding:8px;line-height:1.428571429;vertical-align:top;border-top:1px solid #ddd}.table thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table caption+thead tr:first-child th,.table colgroup+thead tr:first-child th,.table thead:first-child tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child td{border-top:0}.table tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed thead>tr>th,.table-condensed tbody>tr>th,.table-condensed tfoot>tr>th,.table-condensed thead>tr>td,.table-condensed tbody>tr>td,.table-condensed tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{display:table-cell;float:none}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8;border-color:#d6e9c6}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td{background-color:#d0e9c6;border-color:#c9e2b3}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede;border-color:#eed3d7}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td{background-color:#ebcccc;border-color:#e6c1c7}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3;border-color:#fbeed5}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td{background-color:#faf2cc;border-color:#f8e5be}@media(max-width:768px){.table-responsive{width:100%;margin-bottom:15px;overflow-x:scroll;overflow-y:hidden;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0;background-color:#fff}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>thead>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>thead>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}select[multiple],select[size]{height:auto}select optgroup{font-family:inherit;font-size:inherit;font-style:inherit}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}input[type="number"]::-webkit-outer-spin-button,input[type="number"]::-webkit-inner-spin-button{height:auto}.form-control:-moz-placeholder{color:#999}.form-control::-moz-placeholder{color:#999}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle;background-color:#fff;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee}textarea.form-control{height:auto}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;padding-left:20px;margin-top:10px;margin-bottom:10px;vertical-align:middle}.radio label,.checkbox label{display:inline;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm{height:auto}.input-lg{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:45px;line-height:45px}textarea.input-lg{height:auto}.has-warning .help-block,.has-warning .control-label{color:#c09853}.has-warning .form-control{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e}.has-warning .input-group-addon{color:#c09853;background-color:#fcf8e3;border-color:#c09853}.has-error .help-block,.has-error .control-label{color:#b94a48}.has-error .form-control{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392}.has-error .input-group-addon{color:#b94a48;background-color:#f2dede;border-color:#b94a48}.has-success .help-block,.has-success .control-label{color:#468847}.has-success .form-control{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b}.has-success .input-group-addon{color:#468847;background-color:#dff0d8;border-color:#468847}.form-control-static{padding-top:7px;margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block}.form-inline .radio,.form-inline .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:none;margin-left:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}@media(min-width:768px){.form-horizontal .control-label{text-align:right}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;border:1px solid transparent;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-link{font-weight:normal;color:#428bca;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-xs{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';-webkit-font-smoothing:antialiased;font-style:normal;font-weight:normal;line-height:1}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-print:before{content:"\e045"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-briefcase:before{content:"\1f4bc"}.glyphicon-calendar:before{content:"\1f4c5"}.glyphicon-pushpin:before{content:"\1f4cc"}.glyphicon-paperclip:before{content:"\1f4ce"}.glyphicon-camera:before{content:"\1f4f7"}.glyphicon-lock:before{content:"\1f512"}.glyphicon-bell:before{content:"\1f514"}.glyphicon-bookmark:before{content:"\1f516"}.glyphicon-fire:before{content:"\1f525"}.glyphicon-wrench:before{content:"\1f527"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid #000;border-right:4px solid transparent;border-bottom:0 dotted;border-left:4px solid transparent;content:""}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#fff;text-decoration:none;background-color:#428bca}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#999}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0 dotted;border-bottom:4px solid #000;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media(min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}}.btn-default .caret{border-top-color:#333}.btn-primary .caret,.btn-success .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret{border-top-color:#fff}.dropup .btn-default .caret{border-bottom-color:#333}.dropup .btn-primary .caret,.dropup .btn-success .caret,.dropup .btn-warning .caret,.dropup .btn-danger .caret,.dropup .btn-info .caret{border-bottom-color:#fff}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar .btn-group{float:left}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group,.btn-toolbar>.btn-group+.btn-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group-xs>.btn{padding:5px 10px;padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-bottom-left-radius:4px;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child>.btn:last-child,.btn-group-vertical>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;border-collapse:separate;table-layout:fixed}.btn-group-justified .btn{display:table-cell;float:none;width:1%}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group.col{float:none;padding-right:0;padding-left:0}.input-group .form-control{width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:45px;line-height:45px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-4px}.input-group-btn>.btn:hover,.input-group-btn>.btn:active{z-index:2}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center}@media(min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}}.nav-tabs.nav-justified>li>a{margin-right:0;border-bottom:1px solid #ddd}.nav-tabs.nav-justified>.active>a{border-bottom-color:#fff}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:5px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center}@media(min-width:768px){.nav-justified>li{display:table-cell;width:1%}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-bottom:1px solid #ddd}.nav-tabs-justified>.active>a{border-bottom-color:#fff}.tabbable:before,.tabbable:after{display:table;content:" "}.tabbable:after{clear:both}.tabbable:before,.tabbable:after{display:table;content:" "}.tabbable:after{clear:both}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.nav .caret{border-top-color:#428bca;border-bottom-color:#428bca}.nav a:hover .caret{border-top-color:#2a6496;border-bottom-color:#2a6496}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;z-index:1000;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}@media(min-width:768px){.navbar{border-radius:4px}}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}@media(min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media(min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-collapse .navbar-nav.navbar-left:first-child{margin-left:-15px}.navbar-collapse .navbar-nav.navbar-right:last-child{margin-right:-15px}.navbar-collapse .navbar-text:last-child{margin-right:0}}.container>.navbar-header,.container>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.container>.navbar-header,.container>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{border-width:0 0 1px}@media(min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;border-width:0 0 1px}@media(min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;z-index:1030}.navbar-fixed-bottom{bottom:0;margin-bottom:0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media(min-width:768px){.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;border:1px solid transparent;border-radius:4px}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media(max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}@media(min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}@media(min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{float:none;margin-left:0}}@media(max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media(min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-nav.pull-right>li>.dropdown-menu,.navbar-nav>li>.dropdown-menu.pull-right{right:0;left:auto}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-text{float:left;margin-top:15px;margin-bottom:15px}@media(min-width:768px){.navbar-text{margin-right:15px;margin-left:15px}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#ccc}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e6e6e6}.navbar-default .navbar-nav>.dropdown>a:hover .caret,.navbar-default .navbar-nav>.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.open>a .caret,.navbar-default .navbar-nav>.open>a:hover .caret,.navbar-default .navbar-nav>.open>a:focus .caret{border-top-color:#555;border-bottom-color:#555}.navbar-default .navbar-nav>.dropdown>a .caret{border-top-color:#777;border-bottom-color:#777}@media(max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.dropdown>a:hover .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .navbar-nav>.dropdown>a .caret{border-top-color:#999;border-bottom-color:#999}.navbar-inverse .navbar-nav>.open>a .caret,.navbar-inverse .navbar-nav>.open>a:hover .caret,.navbar-inverse .navbar-nav>.open>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}@media(max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.428571429;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{background-color:#eee}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;cursor:default;background-color:#428bca;border-color:#428bca}.pagination>.disabled>span,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:#808080}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#999;border-radius:10px}.badge:empty{display:none}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.btn .badge{position:relative;top:-1px}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;font-size:21px;font-weight:200;line-height:2.1428571435;color:inherit;background-color:#eee}.jumbotron h1{line-height:1;color:inherit}.jumbotron p{line-height:1.4}.container .jumbotron{border-radius:6px}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1{font-size:63px}}.thumbnail{display:inline-block;display:block;height:auto;max-width:100%;padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img{display:block;height:auto;max-width:100%}a.thumbnail:hover,a.thumbnail:focus{border-color:#428bca}.thumbnail>img{margin-right:auto;margin-left:auto}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#356635}.alert-info{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#2d6987}.alert-warning{color:#c09853;background-color:#fcf8e3;border-color:#fbeed5}.alert-warning hr{border-top-color:#f8e5be}.alert-warning .alert-link{color:#a47e3c}.alert-danger{color:#b94a48;background-color:#f2dede;border-color:#eed3d7}.alert-danger hr{border-top-color:#e6c1c7}.alert-danger .alert-link{color:#953b39}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0}.panel>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.list-group .list-group-item:last-child{border-bottom:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table{margin-bottom:0}.panel>.panel-body+.table{border-top:1px solid #ddd}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-title{margin-top:0;margin-bottom:0;font-size:16px}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-group .panel{margin-bottom:0;overflow:hidden;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-warning{border-color:#fbeed5}.panel-warning>.panel-heading{color:#c09853;background-color:#fcf8e3;border-color:#fbeed5}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#fbeed5}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#fbeed5}.panel-danger{border-color:#eed3d7}.panel-danger>.panel-heading{color:#b94a48;background-color:#f2dede;border-color:#eed3d7}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#eed3d7}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#eed3d7}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}body.modal-open,.modal-open .navbar-fixed-top,.modal-open .navbar-fixed-bottom{margin-right:15px}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;display:none;overflow:auto;overflow-y:scroll}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{z-index:1050;width:auto;padding:10px;margin-right:auto;margin-left:auto}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1030;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{min-height:16.428571429px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.428571429}.modal-body{position:relative;padding:20px}.modal-footer{padding:19px 20px 20px;margin-top:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media screen and (min-width:768px){.modal-dialog{right:auto;left:50%;width:600px;padding-top:30px;padding-bottom:30px}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}}.tooltip{position:absolute;z-index:1030;display:block;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-right .tooltip-arrow{right:5px;bottom:0;border-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-bottom-color:#000;border-width:0 5px 5px}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);background-clip:padding-box}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0;content:" "}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}.popover.right .arrow:after{bottom:-10px;left:1px;border-right-color:#fff;border-left-width:0;content:" "}.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);border-top-width:0}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0;content:" "}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);border-right-width:0}.popover.left .arrow:after{right:1px;bottom:-10px;border-left-color:#fff;border-right-width:0;content:" "}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;height:auto;max-width:100%;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);opacity:.5;filter:alpha(opacity=50)}.carousel-control.left{background-image:-webkit-gradient(linear,0 top,100% top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0.0001)));background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.5) 0),color-stop(rgba(0,0,0,0.0001) 100%));background-image:-moz-linear-gradient(left,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1)}.carousel-control.right{right:0;left:auto;background-image:-webkit-gradient(linear,0 top,100% top,from(rgba(0,0,0,0.0001)),to(rgba(0,0,0,0.5)));background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.0001) 0),color-stop(rgba(0,0,0,0.5) 100%));background-image:-moz-linear-gradient(left,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1)}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;left:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after{display:table;content:" "}.clearfix:after{clear:both}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.affix{position:fixed}@-ms-viewport{width:device-width}@media screen and (max-width:400px){@-ms-viewport{width:320px}}.hidden{display:none!important;visibility:hidden!important}.visible-xs{display:none!important}tr.visible-xs{display:none!important}th.visible-xs,td.visible-xs{display:none!important}@media(max-width:767px){.visible-xs{display:block!important}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-xs.visible-sm{display:block!important}tr.visible-xs.visible-sm{display:table-row!important}th.visible-xs.visible-sm,td.visible-xs.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-xs.visible-md{display:block!important}tr.visible-xs.visible-md{display:table-row!important}th.visible-xs.visible-md,td.visible-xs.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-xs.visible-lg{display:block!important}tr.visible-xs.visible-lg{display:table-row!important}th.visible-xs.visible-lg,td.visible-xs.visible-lg{display:table-cell!important}}.visible-sm{display:none!important}tr.visible-sm{display:none!important}th.visible-sm,td.visible-sm{display:none!important}@media(max-width:767px){.visible-sm.visible-xs{display:block!important}tr.visible-sm.visible-xs{display:table-row!important}th.visible-sm.visible-xs,td.visible-sm.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-sm{display:block!important}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-sm.visible-md{display:block!important}tr.visible-sm.visible-md{display:table-row!important}th.visible-sm.visible-md,td.visible-sm.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-sm.visible-lg{display:block!important}tr.visible-sm.visible-lg{display:table-row!important}th.visible-sm.visible-lg,td.visible-sm.visible-lg{display:table-cell!important}}.visible-md{display:none!important}tr.visible-md{display:none!important}th.visible-md,td.visible-md{display:none!important}@media(max-width:767px){.visible-md.visible-xs{display:block!important}tr.visible-md.visible-xs{display:table-row!important}th.visible-md.visible-xs,td.visible-md.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-md.visible-sm{display:block!important}tr.visible-md.visible-sm{display:table-row!important}th.visible-md.visible-sm,td.visible-md.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-md{display:block!important}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-md.visible-lg{display:block!important}tr.visible-md.visible-lg{display:table-row!important}th.visible-md.visible-lg,td.visible-md.visible-lg{display:table-cell!important}}.visible-lg{display:none!important}tr.visible-lg{display:none!important}th.visible-lg,td.visible-lg{display:none!important}@media(max-width:767px){.visible-lg.visible-xs{display:block!important}tr.visible-lg.visible-xs{display:table-row!important}th.visible-lg.visible-xs,td.visible-lg.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-lg.visible-sm{display:block!important}tr.visible-lg.visible-sm{display:table-row!important}th.visible-lg.visible-sm,td.visible-lg.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-lg.visible-md{display:block!important}tr.visible-lg.visible-md{display:table-row!important}th.visible-lg.visible-md,td.visible-lg.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-lg{display:block!important}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}.hidden-xs{display:block!important}tr.hidden-xs{display:table-row!important}th.hidden-xs,td.hidden-xs{display:table-cell!important}@media(max-width:767px){.hidden-xs{display:none!important}tr.hidden-xs{display:none!important}th.hidden-xs,td.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-xs.hidden-sm{display:none!important}tr.hidden-xs.hidden-sm{display:none!important}th.hidden-xs.hidden-sm,td.hidden-xs.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-xs.hidden-md{display:none!important}tr.hidden-xs.hidden-md{display:none!important}th.hidden-xs.hidden-md,td.hidden-xs.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-xs.hidden-lg{display:none!important}tr.hidden-xs.hidden-lg{display:none!important}th.hidden-xs.hidden-lg,td.hidden-xs.hidden-lg{display:none!important}}.hidden-sm{display:block!important}tr.hidden-sm{display:table-row!important}th.hidden-sm,td.hidden-sm{display:table-cell!important}@media(max-width:767px){.hidden-sm.hidden-xs{display:none!important}tr.hidden-sm.hidden-xs{display:none!important}th.hidden-sm.hidden-xs,td.hidden-sm.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}tr.hidden-sm{display:none!important}th.hidden-sm,td.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-sm.hidden-md{display:none!important}tr.hidden-sm.hidden-md{display:none!important}th.hidden-sm.hidden-md,td.hidden-sm.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-sm.hidden-lg{display:none!important}tr.hidden-sm.hidden-lg{display:none!important}th.hidden-sm.hidden-lg,td.hidden-sm.hidden-lg{display:none!important}}.hidden-md{display:block!important}tr.hidden-md{display:table-row!important}th.hidden-md,td.hidden-md{display:table-cell!important}@media(max-width:767px){.hidden-md.hidden-xs{display:none!important}tr.hidden-md.hidden-xs{display:none!important}th.hidden-md.hidden-xs,td.hidden-md.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-md.hidden-sm{display:none!important}tr.hidden-md.hidden-sm{display:none!important}th.hidden-md.hidden-sm,td.hidden-md.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}tr.hidden-md{display:none!important}th.hidden-md,td.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-md.hidden-lg{display:none!important}tr.hidden-md.hidden-lg{display:none!important}th.hidden-md.hidden-lg,td.hidden-md.hidden-lg{display:none!important}}.hidden-lg{display:block!important}tr.hidden-lg{display:table-row!important}th.hidden-lg,td.hidden-lg{display:table-cell!important}@media(max-width:767px){.hidden-lg.hidden-xs{display:none!important}tr.hidden-lg.hidden-xs{display:none!important}th.hidden-lg.hidden-xs,td.hidden-lg.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-lg.hidden-sm{display:none!important}tr.hidden-lg.hidden-sm{display:none!important}th.hidden-lg.hidden-sm,td.hidden-lg.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-lg.hidden-md{display:none!important}tr.hidden-lg.hidden-md{display:none!important}th.hidden-lg.hidden-md,td.hidden-lg.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-lg{display:none!important}tr.hidden-lg{display:none!important}th.hidden-lg,td.hidden-lg{display:none!important}}.visible-print{display:none!important}tr.visible-print{display:none!important}th.visible-print,td.visible-print{display:none!important}@media print{.visible-print{display:block!important}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}.hidden-print{display:none!important}tr.hidden-print{display:none!important}th.hidden-print,td.hidden-print{display:none!important}} \ No newline at end of file diff --git a/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Controllers/HomeController.cs b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Controllers/HomeController.cs new file mode 100644 index 00000000..1cae25a1 --- /dev/null +++ b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Controllers/HomeController.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Mvc; + +namespace Glimpse.AgentServer.SystemWeb.Mvc.Sample.Controllers +{ + public class HomeController : Controller + { + public ActionResult Index() + { + return View(); + } + + public ActionResult About() + { + ViewBag.Message = "Your application description page."; + + return View(); + } + + public ActionResult Contact() + { + ViewBag.Message = "Your contact page."; + + return View(); + } + } +} \ No newline at end of file diff --git a/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample.csproj b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample.csproj new file mode 100644 index 00000000..726dce42 --- /dev/null +++ b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample.csproj @@ -0,0 +1,213 @@ + + + + + + + Debug + AnyCPU + + + 2.0 + {342C28CC-82F5-4DAD-A176-669BD567479A} + {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Library + Properties + Glimpse.AgentServer.SystemWeb.Mvc.Sample + Glimpse.AgentServer.SystemWeb.Mvc.Sample + v4.5.1 + false + true + + + + + + + + + + true + full + false + bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\ + TRACE + prompt + 4 + + + + ..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll + True + + + + + + + + + + + + + + + + + + + + + + True + ..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll + + + + + + + True + ..\..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.Helpers.dll + + + True + ..\..\packages\Microsoft.AspNet.Mvc.5.2.3\lib\net45\System.Web.Mvc.dll + + + ..\..\packages\Microsoft.AspNet.Web.Optimization.1.1.3\lib\net40\System.Web.Optimization.dll + + + True + ..\..\packages\Microsoft.AspNet.Razor.3.2.3\lib\net45\System.Web.Razor.dll + + + True + ..\..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.dll + + + True + ..\..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Deployment.dll + + + True + ..\..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Razor.dll + + + True + ..\..\packages\WebGrease.1.5.2\lib\WebGrease.dll + + + True + ..\..\packages\Antlr.3.4.1.9004\lib\Antlr3.Runtime.dll + + + + + ..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll + + + + + + + + + Global.asax + + + + + + + + + + + + + + + + + + + + + + + + + + Web.config + + + Web.config + + + + + + + + + + + + + + + + + + + 10.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + + + + + + + + True + True + 6187 + / + http://localhost:6187/ + False + False + + + False + + + + + + + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + + + \ No newline at end of file diff --git a/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Global.asax b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Global.asax new file mode 100644 index 00000000..6af34a55 --- /dev/null +++ b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Global.asax @@ -0,0 +1 @@ +<%@ Application Codebehind="Global.asax.cs" Inherits="Glimpse.AgentServer.SystemWeb.Mvc.Sample.MvcApplication" Language="C#" %> diff --git a/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Global.asax.cs b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Global.asax.cs new file mode 100644 index 00000000..6fcbe863 --- /dev/null +++ b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Global.asax.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Mvc; +using System.Web.Optimization; +using System.Web.Routing; + +namespace Glimpse.AgentServer.SystemWeb.Mvc.Sample +{ + public class MvcApplication : System.Web.HttpApplication + { + protected void Application_Start() + { + AreaRegistration.RegisterAllAreas(); + FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters); + RouteConfig.RegisterRoutes(RouteTable.Routes); + BundleConfig.RegisterBundles(BundleTable.Bundles); + } + } +} diff --git a/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Properties/AssemblyInfo.cs b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..2298c6fd --- /dev/null +++ b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Glimpse.AgentServer.SystemWeb.Mvc.Sample")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Glimpse.AgentServer.SystemWeb.Mvc.Sample")] +[assembly: AssemblyCopyright("Copyright © 2015")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("5410e5ca-d1d9-4d5b-9425-58b95da3e11a")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Revision and Build Numbers +// by using the '*' as shown below: +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/_references.js b/sample/Glimpse.AgentServer.SystemWeb.Mvc.Sample/Scripts/_references.js new file mode 100644 index 0000000000000000000000000000000000000000..cbe7a470804985788af6cf4a4528208724d9f657 GIT binary patch literal 600 zcmb`EK@Ng25Jmsm#5)l8ptx|Q-UV!p5~NCjL=UgNmMtqKO*50u%mMmfFsHGNhek8P1&g>8a!P0ey(CHGVZ_rJwH@fOY zU#hJ#?bsn!-2EH5(j)3>(Vi-Ym1{FAHPgULYIK|UB0HPjDRPg04(CU|J+}_{_K!m) WJO|H5X2HMwLkmCbVK{V}3DOsrl3 (this.$items.length - 1) || pos < 0) return + + if (this.sliding) return this.$element.one('slid', function () { that.to(pos) }) + if (activeIndex == pos) return this.pause().cycle() + + return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos])) + } + + Carousel.prototype.pause = function (e) { + e || (this.paused = true) + + if (this.$element.find('.next, .prev').length && $.support.transition.end) { + this.$element.trigger($.support.transition.end) + this.cycle(true) + } + + this.interval = clearInterval(this.interval) + + return this + } + + Carousel.prototype.next = function () { + if (this.sliding) return + return this.slide('next') + } + + Carousel.prototype.prev = function () { + if (this.sliding) return + return this.slide('prev') + } + + Carousel.prototype.slide = function (type, next) { + var $active = this.$element.find('.item.active') + var $next = next || $active[type]() + var isCycling = this.interval + var direction = type == 'next' ? 'left' : 'right' + var fallback = type == 'next' ? 'first' : 'last' + var that = this + + if (!$next.length) { + if (!this.options.wrap) return + $next = this.$element.find('.item')[fallback]() + } + + this.sliding = true + + isCycling && this.pause() + + var e = $.Event('slide.bs.carousel', { relatedTarget: $next[0], direction: direction }) + + if ($next.hasClass('active')) return + + if (this.$indicators.length) { + this.$indicators.find('.active').removeClass('active') + this.$element.one('slid', function () { + var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()]) + $nextIndicator && $nextIndicator.addClass('active') + }) + } + + if ($.support.transition && this.$element.hasClass('slide')) { + this.$element.trigger(e) + if (e.isDefaultPrevented()) return + $next.addClass(type) + $next[0].offsetWidth // force reflow + $active.addClass(direction) + $next.addClass(direction) + $active + .one($.support.transition.end, function () { + $next.removeClass([type, direction].join(' ')).addClass('active') + $active.removeClass(['active', direction].join(' ')) + that.sliding = false + setTimeout(function () { that.$element.trigger('slid') }, 0) + }) + .emulateTransitionEnd(600) + } else { + this.$element.trigger(e) + if (e.isDefaultPrevented()) return + $active.removeClass('active') + $next.addClass('active') + this.sliding = false + this.$element.trigger('slid') + } + + isCycling && this.cycle() + + return this + } + + + // CAROUSEL PLUGIN DEFINITION + // ========================== + + var old = $.fn.carousel + + $.fn.carousel = function (option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.carousel') + var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option) + var action = typeof option == 'string' ? option : options.slide + + if (!data) $this.data('bs.carousel', (data = new Carousel(this, options))) + if (typeof option == 'number') data.to(option) + else if (action) data[action]() + else if (options.interval) data.pause().cycle() + }) + } + + $.fn.carousel.Constructor = Carousel + + + // CAROUSEL NO CONFLICT + // ==================== + + $.fn.carousel.noConflict = function () { + $.fn.carousel = old + return this + } + + + // CAROUSEL DATA-API + // ================= + + $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) { + var $this = $(this), href + var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7 + var options = $.extend({}, $target.data(), $this.data()) + var slideIndex = $this.attr('data-slide-to') + if (slideIndex) options.interval = false + + $target.carousel(options) + + if (slideIndex = $this.attr('data-slide-to')) { + $target.data('bs.carousel').to(slideIndex) + } + + e.preventDefault() + }) + + $(window).on('load', function () { + $('[data-ride="carousel"]').each(function () { + var $carousel = $(this) + $carousel.carousel($carousel.data()) + }) + }) + +}(window.jQuery); + +/* ======================================================================== + * Bootstrap: collapse.js v3.0.0 + * http://twbs.github.com/bootstrap/javascript.html#collapse + * ======================================================================== + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ======================================================================== */ + + ++function ($) { "use strict"; + + // COLLAPSE PUBLIC CLASS DEFINITION + // ================================ + + var Collapse = function (element, options) { + this.$element = $(element) + this.options = $.extend({}, Collapse.DEFAULTS, options) + this.transitioning = null + + if (this.options.parent) this.$parent = $(this.options.parent) + if (this.options.toggle) this.toggle() + } + + Collapse.DEFAULTS = { + toggle: true + } + + Collapse.prototype.dimension = function () { + var hasWidth = this.$element.hasClass('width') + return hasWidth ? 'width' : 'height' + } + + Collapse.prototype.show = function () { + if (this.transitioning || this.$element.hasClass('in')) return + + var startEvent = $.Event('show.bs.collapse') + this.$element.trigger(startEvent) + if (startEvent.isDefaultPrevented()) return + + var actives = this.$parent && this.$parent.find('> .panel > .in') + + if (actives && actives.length) { + var hasData = actives.data('bs.collapse') + if (hasData && hasData.transitioning) return + actives.collapse('hide') + hasData || actives.data('bs.collapse', null) + } + + var dimension = this.dimension() + + this.$element + .removeClass('collapse') + .addClass('collapsing') + [dimension](0) + + this.transitioning = 1 + + var complete = function () { + this.$element + .removeClass('collapsing') + .addClass('in') + [dimension]('auto') + this.transitioning = 0 + this.$element.trigger('shown.bs.collapse') + } + + if (!$.support.transition) return complete.call(this) + + var scrollSize = $.camelCase(['scroll', dimension].join('-')) + + this.$element + .one($.support.transition.end, $.proxy(complete, this)) + .emulateTransitionEnd(350) + [dimension](this.$element[0][scrollSize]) + } + + Collapse.prototype.hide = function () { + if (this.transitioning || !this.$element.hasClass('in')) return + + var startEvent = $.Event('hide.bs.collapse') + this.$element.trigger(startEvent) + if (startEvent.isDefaultPrevented()) return + + var dimension = this.dimension() + + this.$element + [dimension](this.$element[dimension]()) + [0].offsetHeight + + this.$element + .addClass('collapsing') + .removeClass('collapse') + .removeClass('in') + + this.transitioning = 1 + + var complete = function () { + this.transitioning = 0 + this.$element + .trigger('hidden.bs.collapse') + .removeClass('collapsing') + .addClass('collapse') + } + + if (!$.support.transition) return complete.call(this) + + this.$element + [dimension](0) + .one($.support.transition.end, $.proxy(complete, this)) + .emulateTransitionEnd(350) + } + + Collapse.prototype.toggle = function () { + this[this.$element.hasClass('in') ? 'hide' : 'show']() + } + + + // COLLAPSE PLUGIN DEFINITION + // ========================== + + var old = $.fn.collapse + + $.fn.collapse = function (option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.collapse') + var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option) + + if (!data) $this.data('bs.collapse', (data = new Collapse(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + $.fn.collapse.Constructor = Collapse + + + // COLLAPSE NO CONFLICT + // ==================== + + $.fn.collapse.noConflict = function () { + $.fn.collapse = old + return this + } + + + // COLLAPSE DATA-API + // ================= + + $(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) { + var $this = $(this), href + var target = $this.attr('data-target') + || e.preventDefault() + || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7 + var $target = $(target) + var data = $target.data('bs.collapse') + var option = data ? 'toggle' : $this.data() + var parent = $this.attr('data-parent') + var $parent = parent && $(parent) + + if (!data || !data.transitioning) { + if ($parent) $parent.find('[data-toggle=collapse][data-parent="' + parent + '"]').not($this).addClass('collapsed') + $this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed') + } + + $target.collapse(option) + }) + +}(window.jQuery); + +/* ======================================================================== + * Bootstrap: dropdown.js v3.0.0 + * http://twbs.github.com/bootstrap/javascript.html#dropdowns + * ======================================================================== + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ======================================================================== */ + + ++function ($) { "use strict"; + + // DROPDOWN CLASS DEFINITION + // ========================= + + var backdrop = '.dropdown-backdrop' + var toggle = '[data-toggle=dropdown]' + var Dropdown = function (element) { + var $el = $(element).on('click.bs.dropdown', this.toggle) + } + + Dropdown.prototype.toggle = function (e) { + var $this = $(this) + + if ($this.is('.disabled, :disabled')) return + + var $parent = getParent($this) + var isActive = $parent.hasClass('open') + + clearMenus() + + if (!isActive) { + if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) { + // if mobile we we use a backdrop because click events don't delegate + $('