From 4386d8e50943a98bb12461988c7ed882197cfcd6 Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Mon, 15 Jul 2019 08:05:52 -0700 Subject: [PATCH 01/34] scaffolding --- .vscode/launch.json | 36 + .vscode/tasks.json | 36 + Controllers/ValuesController.cs | 38 + Models/AwsomApiContext.cs | 11 + Models/usersModel.cs | 22 + Program.cs | 24 + Properties/launchSettings.json | 30 + Startup.cs | 54 + appsettings.Development.json | 9 + appsettings.json | 8 + awsomAPI.csproj | 18 + .../netcoreapp2.2/awsomAPI.AssemblyInfo.cs | 24 + .../awsomAPI.AssemblyInfoInputs.cache | 1 + .../awsomAPI.RazorAssemblyInfo.cache | 1 + .../awsomAPI.RazorAssemblyInfo.cs | 20 + obj/Debug/netcoreapp2.2/awsomAPI.assets.cache | Bin 0 -> 112462 bytes .../awsomAPI.csproj.CoreCompileInputs.cache | 1 + .../awsomAPI.csprojAssemblyReference.cache | Bin 0 -> 203099 bytes obj/Debug/netcoreapp2.2/project.razor.json | 2945 ++++ obj/awsomAPI.csproj.nuget.cache | 5 + obj/awsomAPI.csproj.nuget.dgspec.json | 73 + obj/awsomAPI.csproj.nuget.g.props | 29 + obj/awsomAPI.csproj.nuget.g.targets | 17 + obj/project.assets.json | 12221 ++++++++++++++++ 24 files changed, 15623 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/tasks.json create mode 100644 Controllers/ValuesController.cs create mode 100644 Models/AwsomApiContext.cs create mode 100644 Models/usersModel.cs create mode 100644 Program.cs create mode 100644 Properties/launchSettings.json create mode 100644 Startup.cs create mode 100644 appsettings.Development.json create mode 100644 appsettings.json create mode 100644 awsomAPI.csproj create mode 100644 obj/Debug/netcoreapp2.2/awsomAPI.AssemblyInfo.cs create mode 100644 obj/Debug/netcoreapp2.2/awsomAPI.AssemblyInfoInputs.cache create mode 100644 obj/Debug/netcoreapp2.2/awsomAPI.RazorAssemblyInfo.cache create mode 100644 obj/Debug/netcoreapp2.2/awsomAPI.RazorAssemblyInfo.cs create mode 100644 obj/Debug/netcoreapp2.2/awsomAPI.assets.cache create mode 100644 obj/Debug/netcoreapp2.2/awsomAPI.csproj.CoreCompileInputs.cache create mode 100644 obj/Debug/netcoreapp2.2/awsomAPI.csprojAssemblyReference.cache create mode 100644 obj/Debug/netcoreapp2.2/project.razor.json create mode 100644 obj/awsomAPI.csproj.nuget.cache create mode 100644 obj/awsomAPI.csproj.nuget.dgspec.json create mode 100644 obj/awsomAPI.csproj.nuget.g.props create mode 100644 obj/awsomAPI.csproj.nuget.g.targets create mode 100644 obj/project.assets.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..ff8b0aa --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,36 @@ +{ + // Use IntelliSense to find out which attributes exist for C# debugging + // Use hover for the description of the existing attributes + // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md + "version": "0.2.0", + "configurations": [ + { + "name": ".NET Core Launch (web)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + // If you have changed target frameworks, make sure to update the program path. + "program": "${workspaceFolder}/bin/Debug/netcoreapp2.2/awsomAPI.dll", + "args": [], + "cwd": "${workspaceFolder}", + "stopAtEntry": false, + // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser + "serverReadyAction": { + "action": "openExternally", + "pattern": "^\\s*Now listening on:\\s+(https?://\\S+)" + }, + "env": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "sourceFileMap": { + "/Views": "${workspaceFolder}/Views" + } + }, + { + "name": ".NET Core Attach", + "type": "coreclr", + "request": "attach", + "processId": "${command:pickProcess}" + } + ] +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..8d69e4d --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,36 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/awsomAPI.csproj" + ], + "problemMatcher": "$tsc" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/awsomAPI.csproj" + ], + "problemMatcher": "$tsc" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "${workspaceFolder}/awsomAPI.csproj" + ], + "problemMatcher": "$tsc" + } + ] +} \ No newline at end of file diff --git a/Controllers/ValuesController.cs b/Controllers/ValuesController.cs new file mode 100644 index 0000000..da6e344 --- /dev/null +++ b/Controllers/ValuesController.cs @@ -0,0 +1,38 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; + +namespace awsomAPI.Controllers +{ + [Route("/")] + [ApiController] + public class rolesController : ControllerBase + { + [HttpGet] + public ActionResult> Get() + { + } + + [HttpGet("{id}")] + public ActionResult Get() + { + } + + [HttpPost] + public void Post() + { + } + + [HttpPut("{id}")] + public void Put() + { + } + + [HttpDelete("{id}")] + public void Delete() + { + } + } +} diff --git a/Models/AwsomApiContext.cs b/Models/AwsomApiContext.cs new file mode 100644 index 0000000..afb4166 --- /dev/null +++ b/Models/AwsomApiContext.cs @@ -0,0 +1,11 @@ +using Microsoft.EntityFrameworkCore; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations.Schema; + +namespace awsomAPI.Models { + public class AwsomApiContext : DbContext { + public AwsomApiContext(DbContextOptions options) : base(options) {} + public DbSet Users { get; set; } + } + +} \ No newline at end of file diff --git a/Models/usersModel.cs b/Models/usersModel.cs new file mode 100644 index 0000000..d5433d9 --- /dev/null +++ b/Models/usersModel.cs @@ -0,0 +1,22 @@ +using System.Collections; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace awsomAPI.Models { + [Table("Users")] + public class User { + [Key, Required] + public long Id { get; set; } + [Required] + public string FirstName { get; set; } + [Required] + public string LastName { get; set; } + [Required] + public string Email { get; set; } + [Required] + //Morgana - Change this to enum with teacher (or user) and admin as the options + //Default should be user + public string Role { get; set; } + } +} \ No newline at end of file diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..a0220a8 --- /dev/null +++ b/Program.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore; +using Microsoft.AspNetCore.Hosting; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.Logging; + +namespace awsomAPI +{ + public class Program + { + public static void Main(string[] args) + { + CreateWebHostBuilder(args).Build().Run(); + } + + public static IWebHostBuilder CreateWebHostBuilder(string[] args) => + WebHost.CreateDefaultBuilder(args) + .UseStartup(); + } +} diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json new file mode 100644 index 0000000..6e45d61 --- /dev/null +++ b/Properties/launchSettings.json @@ -0,0 +1,30 @@ +{ + "$schema": "http://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54721", + "sslPort": 44340 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "api/values", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "awsomAPI": { + "commandName": "Project", + "launchBrowser": true, + "launchUrl": "api/values", + "applicationUrl": "https://localhost:5001;http://localhost:5000", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} \ No newline at end of file diff --git a/Startup.cs b/Startup.cs new file mode 100644 index 0000000..c8b36f8 --- /dev/null +++ b/Startup.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Hosting; +using Microsoft.AspNetCore.HttpsPolicy; +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using Microsoft.Extensions.Options; +using Npgsql.EntityFrameworkCore.PostgreSQL; +using awsomAPI.Models; + +namespace awsomAPI +{ + public class Startup + { + public Startup(IConfiguration configuration) + { + Configuration = configuration; + } + + public IConfiguration Configuration { get; } + + // This method gets called by the runtime. Use this method to add services to the container. + public void ConfigureServices(IServiceCollection services) + { + services.AddDbContext( opt => + opt.UseNpgsql("CONNECTION STRING GOES HERE")); + services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); + } + + // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. + public void Configure(IApplicationBuilder app, IHostingEnvironment env) + { + if (env.IsDevelopment()) + { + app.UseDeveloperExceptionPage(); + } + else + { + // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts. + app.UseHsts(); + } + + app.UseHttpsRedirection(); + app.UseMvc(); + } + } +} diff --git a/appsettings.Development.json b/appsettings.Development.json new file mode 100644 index 0000000..a2880cb --- /dev/null +++ b/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Debug", + "System": "Information", + "Microsoft": "Information" + } + } +} diff --git a/appsettings.json b/appsettings.json new file mode 100644 index 0000000..7376aad --- /dev/null +++ b/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/awsomAPI.csproj b/awsomAPI.csproj new file mode 100644 index 0000000..8480b27 --- /dev/null +++ b/awsomAPI.csproj @@ -0,0 +1,18 @@ + + + + netcoreapp2.2 + fabc38fd-f85d-4e0d-92e8-94ad286b1580 + InProcess + awsomAPI + + + + + + + + + + + diff --git a/obj/Debug/netcoreapp2.2/awsomAPI.AssemblyInfo.cs b/obj/Debug/netcoreapp2.2/awsomAPI.AssemblyInfo.cs new file mode 100644 index 0000000..de73065 --- /dev/null +++ b/obj/Debug/netcoreapp2.2/awsomAPI.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("fabc38fd-f85d-4e0d-92e8-94ad286b1580")] +[assembly: System.Reflection.AssemblyCompanyAttribute("awsomAPI")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("awsomAPI")] +[assembly: System.Reflection.AssemblyTitleAttribute("awsomAPI")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/netcoreapp2.2/awsomAPI.AssemblyInfoInputs.cache b/obj/Debug/netcoreapp2.2/awsomAPI.AssemblyInfoInputs.cache new file mode 100644 index 0000000..cf9b63e --- /dev/null +++ b/obj/Debug/netcoreapp2.2/awsomAPI.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +da133f55135ba898da6e00fcba99021b7b27de94 diff --git a/obj/Debug/netcoreapp2.2/awsomAPI.RazorAssemblyInfo.cache b/obj/Debug/netcoreapp2.2/awsomAPI.RazorAssemblyInfo.cache new file mode 100644 index 0000000..6b06944 --- /dev/null +++ b/obj/Debug/netcoreapp2.2/awsomAPI.RazorAssemblyInfo.cache @@ -0,0 +1 @@ +e3839eecd01944a3f6aed533735602011ac68bc1 diff --git a/obj/Debug/netcoreapp2.2/awsomAPI.RazorAssemblyInfo.cs b/obj/Debug/netcoreapp2.2/awsomAPI.RazorAssemblyInfo.cs new file mode 100644 index 0000000..42aafda --- /dev/null +++ b/obj/Debug/netcoreapp2.2/awsomAPI.RazorAssemblyInfo.cs @@ -0,0 +1,20 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.RelatedAssemblyAttribute("awsomAPI.Views")] +[assembly: Microsoft.AspNetCore.Razor.Hosting.RazorLanguageVersionAttribute("2.1")] +[assembly: Microsoft.AspNetCore.Razor.Hosting.RazorConfigurationNameAttribute("MVC-2.1")] +[assembly: Microsoft.AspNetCore.Razor.Hosting.RazorExtensionAssemblyNameAttribute("MVC-2.1", "Microsoft.AspNetCore.Mvc.Razor.Extensions")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/netcoreapp2.2/awsomAPI.assets.cache b/obj/Debug/netcoreapp2.2/awsomAPI.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..43ca965fe522148c80f487e9112cb65dad424f92 GIT binary patch literal 112462 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 ZILtG1B;>g8+0)Xsd{ot7ZLT9L{~rlo;}`${ literal 0 HcmV?d00001 diff --git a/obj/Debug/netcoreapp2.2/awsomAPI.csproj.CoreCompileInputs.cache b/obj/Debug/netcoreapp2.2/awsomAPI.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..4f813db --- /dev/null +++ b/obj/Debug/netcoreapp2.2/awsomAPI.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d3036403c87e5f2cf1e60dee5749aa6d2be918a4 diff --git a/obj/Debug/netcoreapp2.2/awsomAPI.csprojAssemblyReference.cache b/obj/Debug/netcoreapp2.2/awsomAPI.csprojAssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..939bbdba78ae6488e2127636a191ed3d0965c4dd GIT binary patch literal 203099 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\n implementation targeting <a> elements.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "a", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-action", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "a", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-controller", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "a", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-area", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "a", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-page", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "a", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-page-handler", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "a", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-fragment", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "a", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-host", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "a", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-protocol", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "a", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-route", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "a", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-all-route-data", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "a", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-route-", + "NameComparison": 1, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-action", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the action method.\n \n \n Must be null if or is non-null.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Action" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-controller", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the controller.\n \n \n Must be null if or is non-null.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Controller" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-area", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the area.\n \n \n Must be null if is non-null.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Area" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-page", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the page.\n \n \n Must be null if or , \n is non-null.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Page" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-page-handler", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the page handler.\n \n \n Must be null if or , or \n is non-null.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "PageHandler" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-protocol", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The protocol for the URL, such as \"http\" or \"https\".\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Protocol" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-host", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The host name.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Host" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-fragment", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The URL fragment name.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Fragment" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-route", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Name of the route.\n \n \n Must be null if one of , , \n or is non-null.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Route" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-all-route-data", + "TypeName": "System.Collections.Generic.IDictionary", + "IsEnum": false, + "IndexerNamePrefix": "asp-route-", + "IndexerTypeName": "System.String", + "Documentation": "\n \n Additional parameters for the route.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "RouteValues" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <cache> elements.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "cache", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "priority", + "TypeName": "Microsoft.Extensions.Caching.Memory.CacheItemPriority?", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets the policy for the cache entry.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Priority" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "vary-by", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets a to vary the cached result by.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "VaryBy" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-header", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "VaryByHeader" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-query", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "VaryByQuery" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-route", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "VaryByRoute" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-cookie", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "VaryByCookie" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-user", + "TypeName": "System.Boolean", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by the Identity for the logged in\n .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "VaryByUser" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-culture", + "TypeName": "System.Boolean", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by request culture.\n \n Setting this to true would result in the result to be varied by \n and .\n \n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "VaryByCulture" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "expires-on", + "TypeName": "System.DateTimeOffset?", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets the exact the cache entry should be evicted.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "ExpiresOn" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "expires-after", + "TypeName": "System.TimeSpan?", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "ExpiresAfter" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "expires-sliding", + "TypeName": "System.TimeSpan?", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets the duration from last access that the cache entry should be evicted.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "ExpiresSliding" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "enabled", + "TypeName": "System.Boolean", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets the value which determines if the tag helper is enabled or not.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Enabled" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <distributed-cache> elements.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "distributed-cache", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "name", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "name", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets a unique name to discriminate cached entries.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Name" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "vary-by", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets a to vary the cached result by.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "VaryBy" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-header", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "VaryByHeader" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-query", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "VaryByQuery" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-route", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "VaryByRoute" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-cookie", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "VaryByCookie" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-user", + "TypeName": "System.Boolean", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by the Identity for the logged in\n .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "VaryByUser" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-culture", + "TypeName": "System.Boolean", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by request culture.\n \n Setting this to true would result in the result to be varied by \n and .\n \n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "VaryByCulture" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "expires-on", + "TypeName": "System.DateTimeOffset?", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets the exact the cache entry should be evicted.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "ExpiresOn" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "expires-after", + "TypeName": "System.TimeSpan?", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "ExpiresAfter" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "expires-sliding", + "TypeName": "System.TimeSpan?", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets the duration from last access that the cache entry should be evicted.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "ExpiresSliding" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "enabled", + "TypeName": "System.Boolean", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets the value which determines if the tag helper is enabled or not.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Enabled" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <environment> elements that conditionally renders\n content based on the current value of .\n If the environment is not listed in the specified or , \n or if it is in , the content will not be rendered.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "environment", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "names", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n A comma separated list of environment names in which the content should be rendered.\n If the current environment is also in the list, the content will not be rendered.\n \n \n The specified environment names are compared case insensitively to the current value of\n .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Names" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "include", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n A comma separated list of environment names in which the content should be rendered.\n If the current environment is also in the list, the content will not be rendered.\n \n \n The specified environment names are compared case insensitively to the current value of\n .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Include" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "exclude", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n A comma separated list of environment names in which the content will not be rendered.\n \n \n The specified environment names are compared case insensitively to the current value of\n .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Exclude" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <button> elements and <input> elements with\n their type attribute set to image or submit.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "button", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-action", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "button", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-controller", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "button", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-area", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "button", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-page", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "button", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-page-handler", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "button", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-fragment", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "button", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-route", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "button", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-all-route-data", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "button", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-route-", + "NameComparison": 1, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "image", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-action", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "image", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-controller", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "image", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-area", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "image", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-page", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "image", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-page-handler", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "image", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-fragment", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "image", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-route", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "image", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-all-route-data", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "image", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-route-", + "NameComparison": 1, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "submit", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-action", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "submit", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-controller", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "submit", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-area", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "submit", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-page", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "submit", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-page-handler", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "submit", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-fragment", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "submit", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-route", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "submit", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-all-route-data", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "NameComparison": 0, + "Value": "submit", + "ValueComparison": 1, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "asp-route-", + "NameComparison": 1, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-action", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the action method.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Action" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-controller", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the controller.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Controller" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-area", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the area.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Area" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-page", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the page.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Page" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-page-handler", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the page handler.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "PageHandler" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-fragment", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets the URL fragment.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Fragment" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-route", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Name of the route.\n \n \n Must be null if or is non-null.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Route" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-all-route-data", + "TypeName": "System.Collections.Generic.IDictionary", + "IsEnum": false, + "IndexerNamePrefix": "asp-route-", + "IndexerTypeName": "System.String", + "Documentation": "\n \n Additional parameters for the route.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "RouteValues" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <form> elements.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "form", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-action", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the action method.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Action" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-controller", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the controller.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Controller" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-area", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the area.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Area" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-page", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the page.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Page" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-page-handler", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the page handler.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "PageHandler" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-antiforgery", + "TypeName": "System.Boolean?", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Whether the antiforgery token should be generated.\n \n Defaults to false if user provides an action attribute\n or if the method is ; true otherwise.\n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Antiforgery" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-fragment", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Gets or sets the URL fragment.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Fragment" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-route", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Name of the route.\n \n \n Must be null if or is non-null.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Route" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-all-route-data", + "TypeName": "System.Collections.Generic.IDictionary", + "IsEnum": false, + "IndexerNamePrefix": "asp-route-", + "IndexerTypeName": "System.String", + "Documentation": "\n \n Additional parameters for the route.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "RouteValues" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <img> elements that supports file versioning.\n \n \n The tag helper won't process for cases with just the 'src' attribute.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "img", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-append-version", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + }, + { + "Name": "src", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "src", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Source of the image.\n \n \n Passed through to the generated HTML in all cases.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Src" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-append-version", + "TypeName": "System.Boolean", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Value indicating if file version should be appended to the src urls.\n \n \n If true then a query string \"v\" with the encoded content of the file is added.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "AppendVersion" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <input> elements with an asp-for attribute.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "input", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-for", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-for", + "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "For" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-format", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The format string (see https://msdn.microsoft.com/en-us/library/txafckwd.aspx) used to format the\n result. Sets the generated \"value\" attribute to that formatted string.\n \n \n Not used if the provided (see ) or calculated \"type\" attribute value is\n checkbox, password, or radio. That is, is used when calling\n .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Format" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "type", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The type of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine the \n helper to call and the default value. A default is not calculated\n if the provided (see ) or calculated \"type\" attribute value is checkbox,\n hidden, password, or radio.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "InputTypeName" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "name", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine whether is\n valid with an empty .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Name" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "value", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The value of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine the generated \"checked\" attribute\n if is \"radio\". Must not be null in that case.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Value" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <label> elements with an asp-for attribute.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "label", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-for", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-for", + "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "For" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <link> elements that supports fallback href paths.\n \n \n The tag helper won't process for cases with just the 'href' attribute.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "link", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-href-include", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "link", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-href-exclude", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "link", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-fallback-href", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "link", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-fallback-href-include", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "link", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-fallback-href-exclude", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "link", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-fallback-test-class", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "link", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-fallback-test-property", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "link", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-fallback-test-value", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "link", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-append-version", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "href", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Address of the linked resource.\n \n \n Passed through to the generated HTML in all cases.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Href" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-href-include", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to load.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "HrefInclude" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-href-exclude", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to exclude from loading.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "HrefExclude" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-href", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The URL of a CSS stylesheet to fallback to in the case the primary one fails.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "FallbackHref" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-suppress-fallback-integrity", + "TypeName": "System.Boolean", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Boolean value that determines if an integrity hash will be compared with value.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "SuppressFallbackIntegrity" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-append-version", + "TypeName": "System.Boolean?", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Value indicating if file version should be appended to the href urls.\n \n \n If true then a query string \"v\" with the encoded content of the file is added.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "AppendVersion" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-href-include", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to fallback to in the case the primary\n one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "FallbackHrefInclude" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-href-exclude", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to exclude from the fallback list, in\n the case the primary one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "FallbackHrefExclude" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-test-class", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The class name defined in the stylesheet to use for the fallback test.\n Must be used in conjunction with and ,\n and either or .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "FallbackTestClass" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-test-property", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The CSS property name to use for the fallback test.\n Must be used in conjunction with and ,\n and either or .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "FallbackTestProperty" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-test-value", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The CSS property value to use for the fallback test.\n Must be used in conjunction with and ,\n and either or .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "FallbackTestValue" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <option> elements.\n \n \n This works in conjunction with . It reads elements\n content but does not modify that content. The only modification it makes is to add a selected attribute\n in some cases.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "option", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "value", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Specifies a value for the <option> element.\n \n \n Passed through to the generated HTML in all cases.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Value" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n Renders a partial view.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "partial", + "ParentTag": null, + "TagStructure": 2, + "Attributes": [ + { + "Name": "name", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "name", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name or path of the partial view that is rendered to the response.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Name" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "for", + "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n An expression to be evaluated against the current model. Cannot be used together with .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "For" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "model", + "TypeName": "System.Object", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The model to pass into the partial view. Cannot be used together with .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Model" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "optional", + "TypeName": "System.Boolean", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n When optional, executing the tag helper will no-op if the view cannot be located. \n Otherwise will throw stating the view could not be found.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Optional" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "fallback-name", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n View to lookup if the view specified by cannot be located.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "FallbackName" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "view-data", + "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary", + "IsEnum": false, + "IndexerNamePrefix": "view-data-", + "IndexerTypeName": "System.Object", + "Documentation": "\n \n A to pass into the partial view.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "ViewData" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <script> elements that supports fallback src paths.\n \n \n The tag helper won't process for cases with just the 'src' attribute.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "script", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-src-include", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "script", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-src-exclude", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "script", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-fallback-src", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "script", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-fallback-src-include", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "script", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-fallback-src-exclude", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "script", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-fallback-test", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "script", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-append-version", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "src", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Address of the external script to use.\n \n \n Passed through to the generated HTML in all cases.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Src" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-src-include", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to load.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "SrcInclude" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-src-exclude", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to exclude from loading.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "SrcExclude" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-src", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The URL of a Script tag to fallback to in the case the primary one fails.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "FallbackSrc" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-suppress-fallback-integrity", + "TypeName": "System.Boolean", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Boolean value that determines if an integrity hash will be compared with value.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "SuppressFallbackIntegrity" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-append-version", + "TypeName": "System.Boolean?", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Value indicating if file version should be appended to src urls.\n \n \n A query string \"v\" with the encoded content of the file is added.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "AppendVersion" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-src-include", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to fallback to in the case the\n primary one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "FallbackSrcInclude" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-src-exclude", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to exclude from the fallback list, in\n the case the primary one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "FallbackSrcExclude" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-test", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The script method defined in the primary script to use for the fallback test.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "FallbackTestExpression" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <select> elements with asp-for and/or\n asp-items attribute(s).\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "select", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-for", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + }, + { + "TagName": "select", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-items", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-for", + "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "For" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-items", + "TypeName": "System.Collections.Generic.IEnumerable", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n A collection of objects used to populate the <select> element with\n <optgroup> and <option> elements.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Items" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "name", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine whether is\n valid with an empty .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Name" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <textarea> elements with an asp-for attribute.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "textarea", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-for", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-for", + "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "For" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "name", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The name of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine whether is\n valid with an empty .\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "Name" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting any HTML element with an asp-validation-for\n attribute.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "span", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-validation-for", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-validation-for", + "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": null, + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "For" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting any HTML element with an asp-validation-summary\n attribute.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "div", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-validation-summary", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-validation-summary", + "TypeName": "Microsoft.AspNetCore.Mvc.Rendering.ValidationSummary", + "IsEnum": true, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n If or , appends a validation\n summary. Otherwise (, the default), this tag helper does nothing.\n \n \n Thrown if setter is called with an undefined value e.g.\n (ValidationSummary)23.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "ValidationSummary" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper" + } + }, + { + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.SpaServices.Prerendering.PrerenderTagHelper", + "AssemblyName": "Microsoft.AspNetCore.SpaServices", + "Documentation": "\n \n A tag helper for prerendering JavaScript applications on the server.\n \n ", + "TagOutputHint": null, + "TagMatchingRules": [ + { + "TagName": "*", + "ParentTag": null, + "TagStructure": 0, + "Attributes": [ + { + "Name": "asp-prerender-module", + "NameComparison": 0, + "Value": null, + "ValueComparison": 0, + "Diagnostics": [], + "Metadata": {} + } + ], + "Diagnostics": [] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-prerender-module", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n Specifies the path to the JavaScript module containing prerendering code.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "ModuleName" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-prerender-export", + "TypeName": "System.String", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n If set, specifies the name of the CommonJS export that is the prerendering function to execute.\n If not set, the JavaScript module's default CommonJS export must itself be the prerendering function.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "ExportName" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-prerender-data", + "TypeName": "System.Object", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n An optional JSON-serializable parameter to be supplied to the prerendering code.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "CustomDataParameter" + }, + "BoundAttributeParameters": [] + }, + { + "Kind": "ITagHelper", + "Name": "asp-prerender-timeout", + "TypeName": "System.Int32", + "IsEnum": false, + "IndexerNamePrefix": null, + "IndexerTypeName": null, + "Documentation": "\n \n The maximum duration to wait for prerendering to complete.\n \n ", + "Diagnostics": [], + "Metadata": { + "Common.PropertyName": "TimeoutMillisecondsParameter" + }, + "BoundAttributeParameters": [] + } + ], + "AllowedChildTags": [], + "Diagnostics": [], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.SpaServices.Prerendering.PrerenderTagHelper" + } + } + ], + "CSharpLanguageVersion": 703 + }, + "RootNamespace": "awsomAPI", + "Documents": [] +} \ No newline at end of file diff --git a/obj/awsomAPI.csproj.nuget.cache b/obj/awsomAPI.csproj.nuget.cache new file mode 100644 index 0000000..b868830 --- /dev/null +++ b/obj/awsomAPI.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "tnBIt7VNPbZXFSuCNCuxNSBNP/LeEoeBRM/3rf5okB5p6q2u9TZnpKoDLNwg869cnv3U0n8v9/lvmZcJPyirJQ==", + "success": true +} \ No newline at end of file diff --git a/obj/awsomAPI.csproj.nuget.dgspec.json b/obj/awsomAPI.csproj.nuget.dgspec.json new file mode 100644 index 0000000..7dc3f56 --- /dev/null +++ b/obj/awsomAPI.csproj.nuget.dgspec.json @@ -0,0 +1,73 @@ +{ + "format": 1, + "restore": { + "/home/morgana/codefellows/401/final-project/awsomAPI/awsomAPI.csproj": {} + }, + "projects": { + "/home/morgana/codefellows/401/final-project/awsomAPI/awsomAPI.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/morgana/codefellows/401/final-project/awsomAPI/awsomAPI.csproj", + "projectName": "awsomAPI", + "projectPath": "/home/morgana/codefellows/401/final-project/awsomAPI/awsomAPI.csproj", + "packagesPath": "/home/morgana/.nuget/packages/", + "outputPath": "/home/morgana/codefellows/401/final-project/awsomAPI/obj/", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "/usr/share/dotnet/sdk/NuGetFallbackFolder" + ], + "configFilePaths": [ + "/home/morgana/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp2.2" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp2.2": { + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp2.2": { + "dependencies": { + "Microsoft.AspNetCore.App": { + "suppressParent": "All", + "target": "Package", + "version": "[2.2.0, )", + "autoReferenced": true + }, + "Microsoft.AspNetCore.Razor.Design": { + "suppressParent": "All", + "target": "Package", + "version": "[2.2.0, )" + }, + "Microsoft.NETCore.App": { + "suppressParent": "All", + "target": "Package", + "version": "[2.2.0, )", + "autoReferenced": true + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[2.2.4, )" + } + }, + "imports": [ + "net461" + ], + "assetTargetFallback": true, + "warn": true + } + } + } + } +} \ No newline at end of file diff --git a/obj/awsomAPI.csproj.nuget.g.props b/obj/awsomAPI.csproj.nuget.g.props new file mode 100644 index 0000000..34c6449 --- /dev/null +++ b/obj/awsomAPI.csproj.nuget.g.props @@ -0,0 +1,29 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/morgana/.nuget/packages/ + /home/morgana/.nuget/packages/;/usr/share/dotnet/sdk/NuGetFallbackFolder + PackageReference + 5.1.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + + + + + /usr/share/dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.2.0 + /usr/share/dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.analyzers/1.1.0 + /usr/share/dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor.design/2.2.0 + + \ No newline at end of file diff --git a/obj/awsomAPI.csproj.nuget.g.targets b/obj/awsomAPI.csproj.nuget.g.targets new file mode 100644 index 0000000..b5586cd --- /dev/null +++ b/obj/awsomAPI.csproj.nuget.g.targets @@ -0,0 +1,17 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + + + + + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..beda1eb --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,12221 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v2.2": { + "Microsoft.AspNet.WebApi.Client/5.2.6": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "10.0.1", + "Newtonsoft.Json.Bson": "1.0.1" + }, + "compile": { + "lib/netstandard2.0/System.Net.Http.Formatting.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Net.Http.Formatting.dll": {} + } + }, + "Microsoft.AspNetCore/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Diagnostics": "2.2.0", + "Microsoft.AspNetCore.HostFiltering": "2.2.0", + "Microsoft.AspNetCore.Hosting": "2.2.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.Server.IIS": "2.2.0", + "Microsoft.AspNetCore.Server.IISIntegration": "2.2.0", + "Microsoft.AspNetCore.Server.Kestrel": "2.2.0", + "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0", + "Microsoft.Extensions.Configuration.CommandLine": "2.2.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0", + "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0", + "Microsoft.Extensions.Configuration.Json": "2.2.0", + "Microsoft.Extensions.Configuration.UserSecrets": "2.2.0", + "Microsoft.Extensions.Logging": "2.2.0", + "Microsoft.Extensions.Logging.Configuration": "2.2.0", + "Microsoft.Extensions.Logging.Console": "2.2.0", + "Microsoft.Extensions.Logging.Debug": "2.2.0", + "Microsoft.Extensions.Logging.EventSource": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.dll": {} + } + }, + "Microsoft.AspNetCore.Antiforgery/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.DataProtection": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {} + } + }, + "Microsoft.AspNetCore.App/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.WebApi.Client": "[5.2.6, 5.3.0)", + "Microsoft.AspNetCore": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Antiforgery": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Authentication": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Authentication.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Authentication.Cookies": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Authentication.Core": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Authentication.Facebook": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Authentication.Google": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Authentication.JwtBearer": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Authentication.OAuth": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Authentication.OpenIdConnect": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Authentication.Twitter": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Authentication.WsFederation": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Authorization": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Authorization.Policy": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Connections.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.CookiePolicy": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Cors": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Cryptography.Internal": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.DataProtection": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.DataProtection.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.DataProtection.Extensions": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Diagnostics": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.HostFiltering": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Hosting": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Hosting.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Html.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Http": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Http.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Http.Connections": "[1.1.0, 1.2.0)", + "Microsoft.AspNetCore.Http.Connections.Common": "[1.1.0, 1.2.0)", + "Microsoft.AspNetCore.Http.Extensions": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Http.Features": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.HttpOverrides": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.HttpsPolicy": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Identity": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Identity.UI": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.JsonPatch": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Localization": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Localization.Routing": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.MiddlewareAnalysis": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Mvc": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Mvc.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Mvc.Analyzers": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Mvc.Core": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Mvc.Cors": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Mvc.Localization": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Mvc.Razor": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Mvc.RazorPages": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Mvc.TagHelpers": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.NodeServices": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Owin": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Razor": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Razor.Design": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Razor.Language": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Razor.Runtime": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.ResponseCaching": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.ResponseCompression": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Rewrite": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Routing": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Routing.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Server.HttpSys": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Server.IIS": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Server.IISIntegration": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Server.Kestrel": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Server.Kestrel.Core": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Server.Kestrel.Https": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.Session": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.SignalR": "[1.1.0, 1.2.0)", + "Microsoft.AspNetCore.SignalR.Common": "[1.1.0, 1.2.0)", + "Microsoft.AspNetCore.SignalR.Core": "[1.1.0, 1.2.0)", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "[1.1.0, 1.2.0)", + "Microsoft.AspNetCore.SpaServices": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.SpaServices.Extensions": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.StaticFiles": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.WebSockets": "[2.2.0, 2.3.0)", + "Microsoft.AspNetCore.WebUtilities": "[2.2.0, 2.3.0)", + "Microsoft.CodeAnalysis.Razor": "[2.2.0, 2.3.0)", + "Microsoft.EntityFrameworkCore": "[2.2.0, 2.3.0)", + "Microsoft.EntityFrameworkCore.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.EntityFrameworkCore.Analyzers": "[2.2.0, 2.3.0)", + "Microsoft.EntityFrameworkCore.Design": "[2.2.0, 2.3.0)", + "Microsoft.EntityFrameworkCore.InMemory": "[2.2.0, 2.3.0)", + "Microsoft.EntityFrameworkCore.Relational": "[2.2.0, 2.3.0)", + "Microsoft.EntityFrameworkCore.SqlServer": "[2.2.0, 2.3.0)", + "Microsoft.EntityFrameworkCore.Tools": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Caching.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Caching.Memory": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Caching.SqlServer": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Configuration": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Configuration.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Configuration.Binder": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Configuration.CommandLine": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Configuration.FileExtensions": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Configuration.Ini": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Configuration.Json": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Configuration.KeyPerFile": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Configuration.UserSecrets": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Configuration.Xml": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.DependencyInjection": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.DependencyInjection.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.DiagnosticAdapter": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Diagnostics.HealthChecks": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.FileProviders.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.FileProviders.Composite": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.FileProviders.Embedded": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.FileProviders.Physical": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.FileSystemGlobbing": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Hosting": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Hosting.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Http": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Identity.Core": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Identity.Stores": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Localization": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Localization.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Logging": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Logging.Abstractions": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Logging.Configuration": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Logging.Console": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Logging.Debug": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Logging.EventSource": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Logging.TraceSource": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.ObjectPool": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Options": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Options.ConfigurationExtensions": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Options.DataAnnotations": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.Primitives": "[2.2.0, 2.3.0)", + "Microsoft.Extensions.WebEncoders": "[2.2.0, 2.3.0)", + "Microsoft.Net.Http.Headers": "[2.2.0, 2.3.0)", + "System.IO.Pipelines": "4.5.2" + }, + "compile": { + "lib/netcoreapp2.2/_._": {} + }, + "runtime": { + "lib/netcoreapp2.2/_._": {} + }, + "build": { + "build/netcoreapp2.2/Microsoft.AspNetCore.App.props": {}, + "build/netcoreapp2.2/Microsoft.AspNetCore.App.targets": {} + } + }, + "Microsoft.AspNetCore.Authentication/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Core": "2.2.0", + "Microsoft.AspNetCore.DataProtection": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Microsoft.Extensions.WebEncoders": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Cookies/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Facebook/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.OAuth": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Google/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.OAuth": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication": "2.2.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.MicrosoftAccount/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.OAuth": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.OAuth/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication": "2.2.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.OpenIdConnect/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.OAuth": "2.2.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Twitter/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.OAuth": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.WsFederation/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication": "2.2.0", + "Microsoft.IdentityModel.Protocols.WsFederation": "5.3.0", + "System.IdentityModel.Tokens.Jwt": "5.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.WsFederation.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.WsFederation.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.CookiePolicy/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll": {} + } + }, + "Microsoft.AspNetCore.Cors/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {} + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} + } + }, + "Microsoft.AspNetCore.DataProtection/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "2.2.0", + "Microsoft.AspNetCore.DataProtection.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Microsoft.Win32.Registry": "4.5.0", + "System.Security.Cryptography.Xml": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {} + } + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.DataProtection.Extensions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.DataProtection": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Diagnostics/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.FileProviders.Physical": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "System.Diagnostics.DiagnosticSource": "4.5.0", + "System.Reflection.Metadata": "1.6.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {} + } + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.EntityFrameworkCore.Relational": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} + } + }, + "Microsoft.AspNetCore.HostFiltering/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Configuration": "2.2.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0", + "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.FileProviders.Physical": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "System.Diagnostics.DiagnosticSource": "4.5.0", + "System.Reflection.Metadata": "1.6.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Html.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.WebSockets": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "Microsoft.AspNetCore.HttpOverrides/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {} + } + }, + "Microsoft.AspNetCore.HttpsPolicy/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Configuration.Binder": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.dll": {} + } + }, + "Microsoft.AspNetCore.Identity/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Cookies": "2.2.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.Extensions.Identity.Core": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll": {} + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Identity": "2.2.0", + "Microsoft.EntityFrameworkCore.Relational": "2.2.0", + "Microsoft.Extensions.Identity.Stores": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.AspNetCore.Identity.UI/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Identity": "2.2.0", + "Microsoft.AspNetCore.Mvc": "2.2.0", + "Microsoft.AspNetCore.StaticFiles": "2.2.0", + "Microsoft.Extensions.FileProviders.Embedded": "2.2.0", + "Microsoft.Extensions.Identity.Stores": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.V3.dll": {}, + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.V4.dll": {}, + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.V3.dll": {}, + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.V4.dll": {}, + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.dll": {} + } + }, + "Microsoft.AspNetCore.JsonPatch/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {} + } + }, + "Microsoft.AspNetCore.Localization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Localization.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {} + } + }, + "Microsoft.AspNetCore.Localization.Routing/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Localization": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll": {} + } + }, + "Microsoft.AspNetCore.MiddlewareAnalysis/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "System.Diagnostics.DiagnosticSource": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Analyzers": "2.2.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.2.0", + "Microsoft.AspNetCore.Mvc.Cors": "2.2.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.2.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.2.0", + "Microsoft.AspNetCore.Mvc.Localization": "2.2.0", + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.2.0", + "Microsoft.AspNetCore.Mvc.RazorPages": "2.2.0", + "Microsoft.AspNetCore.Mvc.TagHelpers": "2.2.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.2.0", + "Microsoft.AspNetCore.Razor.Design": "2.2.0", + "Microsoft.Extensions.Caching.Memory": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Analyzers/2.2.0": { + "type": "package" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Core": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Core": "2.2.0", + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.DependencyModel": "2.1.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Diagnostics.DiagnosticSource": "4.5.0", + "System.Threading.Tasks.Extensions": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Cors/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cors": "2.2.0", + "Microsoft.AspNetCore.Mvc.Core": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Core": "2.2.0", + "Microsoft.Extensions.Localization": "2.2.0", + "System.ComponentModel.Annotations": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "2.2.0", + "Microsoft.AspNetCore.Mvc.Core": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Core": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Localization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Localization": "2.2.0", + "Microsoft.AspNetCore.Mvc.Razor": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.Localization": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.2.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.2.0", + "Microsoft.AspNetCore.Razor.Runtime": "2.2.0", + "Microsoft.CodeAnalysis.CSharp": "2.8.0", + "Microsoft.CodeAnalysis.Razor": "2.2.0", + "Microsoft.Extensions.Caching.Memory": "2.2.0", + "Microsoft.Extensions.FileProviders.Composite": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "2.2.0", + "Microsoft.CodeAnalysis.Razor": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + }, + "build": { + "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.props": {}, + "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.targets": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting": "2.2.0", + "Microsoft.AspNetCore.Mvc.RazorPages": "2.2.0" + }, + "build": { + "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.targets": {} + } + }, + "Microsoft.AspNetCore.Mvc.RazorPages/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor": "2.2.0", + "Microsoft.AspNetCore.Razor.Runtime": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Caching.Memory": "2.2.0", + "Microsoft.Extensions.FileSystemGlobbing": "2.2.0", + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Antiforgery": "2.2.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Html.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Mvc.Core": "2.2.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.2.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.2.0", + "Microsoft.Extensions.WebEncoders": "2.2.0", + "Newtonsoft.Json.Bson": "1.0.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + } + }, + "Microsoft.AspNetCore.NodeServices/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Console": "2.2.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll": {} + } + }, + "Microsoft.AspNetCore.Owin/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll": {} + } + }, + "Microsoft.AspNetCore.Razor/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Html.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {} + } + }, + "Microsoft.AspNetCore.Razor.Design/2.2.0": { + "type": "package", + "build": { + "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.AspNetCore.Razor.Design.props": {} + } + }, + "Microsoft.AspNetCore.Razor.Language/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.AspNetCore.Razor.Runtime/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Html.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Razor": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {} + } + }, + "Microsoft.AspNetCore.ResponseCaching/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0", + "Microsoft.Extensions.Caching.Memory": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll": {} + } + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.ResponseCompression/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.1/Microsoft.AspNetCore.ResponseCompression.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.AspNetCore.ResponseCompression.dll": {} + } + }, + "Microsoft.AspNetCore.Rewrite/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll": {} + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Server.HttpSys/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Core": "2.2.0", + "Microsoft.AspNetCore.Hosting": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "Microsoft.Win32.Registry": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll": {} + } + }, + "Microsoft.AspNetCore.Server.IIS/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Core": "2.2.0", + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "System.IO.Pipelines": "4.5.2", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Server.IIS.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Server.IIS.dll": {} + }, + "build": { + "build/netstandard2.0/Microsoft.AspNetCore.Server.IIS.targets": {} + }, + "runtimeTargets": { + "runtimes/win-x64/nativeassets/netcoreapp2.2/aspnetcorev2_inprocess.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/nativeassets/netcoreapp2.2/aspnetcorev2_inprocess.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.AspNetCore.Server.IISIntegration/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Core": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.HttpOverrides": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "System.Buffers": "4.5.0", + "System.IO.Pipelines": "4.5.2", + "System.Memory": "4.5.1", + "System.Numerics.Vectors": "4.5.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.1", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {} + }, + "build": { + "build/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.targets": {} + } + }, + "Microsoft.AspNetCore.Server.Kestrel/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting": "2.2.0", + "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0", + "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.Configuration.Binder": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Memory": "4.5.1", + "System.Numerics.Vectors": "4.5.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.1", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Threading.Tasks.Extensions": "4.5.1" + }, + "compile": { + "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} + } + }, + "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {} + } + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} + } + }, + "Microsoft.AspNetCore.Session/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.DataProtection": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Caching.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Session.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Session.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Connections": "1.1.0", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + } + }, + "Microsoft.AspNetCore.SpaServices/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.TagHelpers": "2.2.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.2.0", + "Microsoft.AspNetCore.NodeServices": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll": {} + } + }, + "Microsoft.AspNetCore.SpaServices.Extensions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.SpaServices": "2.2.0", + "Microsoft.AspNetCore.StaticFiles": "2.2.0", + "Microsoft.AspNetCore.WebSockets": "2.2.0", + "Microsoft.Extensions.FileProviders.Physical": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.StaticFiles/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.WebEncoders": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll": {} + } + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "System.Net.WebSockets.WebSocketProtocol": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {} + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/2.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Collections.Immutable": "1.3.1", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.FileVersionInfo": "4.3.0", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.2", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.CodePages": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0", + "System.Threading.Thread": "4.3.0", + "System.ValueTuple": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0", + "System.Xml.XPath.XDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/2.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[2.8.0]" + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.Razor/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "2.2.0", + "Microsoft.CodeAnalysis.CSharp": "2.8.0", + "Microsoft.CodeAnalysis.Common": "2.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.DotNet.PlatformAbstractions/2.1.0": { + "type": "package", + "dependencies": { + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore/2.2.4": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "2.2.4", + "Microsoft.EntityFrameworkCore.Analyzers": "2.2.4", + "Microsoft.Extensions.Caching.Memory": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.Logging": "2.2.0", + "Remotion.Linq": "2.2.0", + "System.Collections.Immutable": "1.5.0", + "System.ComponentModel.Annotations": "4.5.0", + "System.Diagnostics.DiagnosticSource": "4.5.0", + "System.Interactive.Async": "3.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/2.2.4": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/2.2.4": { + "type": "package" + }, + "Microsoft.EntityFrameworkCore.Design/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.EntityFrameworkCore.Relational": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {} + }, + "build": { + "build/netcoreapp2.0/Microsoft.EntityFrameworkCore.Design.props": {} + } + }, + "Microsoft.EntityFrameworkCore.InMemory/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/2.2.4": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "2.2.4" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.SqlServer/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "2.2.0", + "System.Data.SqlClient": "4.6.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Tools/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Caching.Memory/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} + } + }, + "Microsoft.Extensions.Caching.SqlServer/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "System.Data.SqlClient": "4.6.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll": {} + } + }, + "Microsoft.Extensions.Configuration/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "2.2.0", + "Microsoft.Extensions.FileProviders.Physical": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Ini/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "2.2.0", + "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "2.2.0", + "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.Configuration.KeyPerFile/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "2.2.0", + "Microsoft.Extensions.FileProviders.Physical": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.KeyPerFile.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.KeyPerFile.dll": {} + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Json": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {} + }, + "build": { + "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props": {}, + "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {} + } + }, + "Microsoft.Extensions.Configuration.Xml/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "2.2.0", + "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0", + "System.Security.Cryptography.Xml": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.PlatformAbstractions": "2.1.0", + "Newtonsoft.Json": "9.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Linq": "4.1.0" + }, + "compile": { + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.DiagnosticAdapter/2.2.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "4.5.0" + }, + "compile": { + "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll": {} + } + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} + } + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Composite/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Embedded/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll": {} + }, + "build": { + "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props": {}, + "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props": {}, + "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.FileSystemGlobbing": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + } + }, + "Microsoft.Extensions.Hosting/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.FileProviders.Physical": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Http/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {} + } + }, + "Microsoft.Extensions.Identity.Core/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.2.0", + "Microsoft.Extensions.Logging": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "System.ComponentModel.Annotations": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {} + } + }, + "Microsoft.Extensions.Identity.Stores/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Identity.Core": "2.2.0", + "Microsoft.Extensions.Logging": "2.2.0", + "System.ComponentModel.Annotations": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {} + } + }, + "Microsoft.Extensions.Localization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Localization.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {} + } + }, + "Microsoft.Extensions.Localization.Abstractions/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Binder": "2.2.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging.Configuration/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "2.2.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Logging.Console/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging": "2.2.0", + "Microsoft.Extensions.Logging.Configuration": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {} + } + }, + "Microsoft.Extensions.Logging.Debug/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {} + } + }, + "Microsoft.Extensions.Logging.EventSource/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "2.2.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {} + } + }, + "Microsoft.Extensions.Logging.TraceSource/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll": {} + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + } + }, + "Microsoft.Extensions.Options/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Primitives": "2.2.0", + "System.ComponentModel.Annotations": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", + "Microsoft.Extensions.Configuration.Binder": "2.2.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + } + }, + "Microsoft.Extensions.Options.DataAnnotations/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "System.ComponentModel.Annotations": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Options.DataAnnotations.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.DataAnnotations.dll": {} + } + }, + "Microsoft.Extensions.Primitives/2.2.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.1", + "System.Runtime.CompilerServices.Unsafe": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/5.3.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "5.3.0", + "Newtonsoft.Json": "10.0.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/5.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols/5.3.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "5.3.0", + "Microsoft.IdentityModel.Tokens": "5.3.0", + "System.Collections.Specialized": "4.3.0", + "System.Diagnostics.Contracts": "4.3.0", + "System.Net.Http": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.3.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "5.3.0", + "Newtonsoft.Json": "10.0.1", + "System.Dynamic.Runtime": "4.3.0", + "System.IdentityModel.Tokens.Jwt": "5.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols.WsFederation/5.3.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "5.3.0", + "Microsoft.IdentityModel.Tokens.Saml": "5.3.0", + "Microsoft.IdentityModel.Xml": "5.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.WsFederation.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.WsFederation.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens/5.3.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "5.3.0", + "Newtonsoft.Json": "10.0.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Serialization.Xml": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens.Saml/5.3.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "5.3.0", + "Microsoft.IdentityModel.Xml": "5.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.dll": {} + } + }, + "Microsoft.IdentityModel.Xml/5.3.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "5.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Xml.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Xml.dll": {} + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.NETCore.App/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.DotNetHostPolicy": "2.2.0", + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "NETStandard.Library": "2.0.3" + }, + "compile": { + "ref/netcoreapp2.2/Microsoft.CSharp.dll": {}, + "ref/netcoreapp2.2/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp2.2/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp2.2/System.AppContext.dll": {}, + "ref/netcoreapp2.2/System.Buffers.dll": {}, + "ref/netcoreapp2.2/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp2.2/System.Collections.Immutable.dll": {}, + "ref/netcoreapp2.2/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp2.2/System.Collections.Specialized.dll": {}, + "ref/netcoreapp2.2/System.Collections.dll": {}, + "ref/netcoreapp2.2/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp2.2/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp2.2/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp2.2/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp2.2/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp2.2/System.ComponentModel.dll": {}, + "ref/netcoreapp2.2/System.Configuration.dll": {}, + "ref/netcoreapp2.2/System.Console.dll": {}, + "ref/netcoreapp2.2/System.Core.dll": {}, + "ref/netcoreapp2.2/System.Data.Common.dll": {}, + "ref/netcoreapp2.2/System.Data.dll": {}, + "ref/netcoreapp2.2/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp2.2/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp2.2/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp2.2/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp2.2/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp2.2/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp2.2/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp2.2/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp2.2/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp2.2/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp2.2/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp2.2/System.Drawing.dll": {}, + "ref/netcoreapp2.2/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp2.2/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp2.2/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp2.2/System.Globalization.dll": {}, + "ref/netcoreapp2.2/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp2.2/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp2.2/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp2.2/System.IO.Compression.dll": {}, + "ref/netcoreapp2.2/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp2.2/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp2.2/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp2.2/System.IO.FileSystem.dll": {}, + "ref/netcoreapp2.2/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp2.2/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp2.2/System.IO.Pipes.dll": {}, + "ref/netcoreapp2.2/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp2.2/System.IO.dll": {}, + "ref/netcoreapp2.2/System.Linq.Expressions.dll": {}, + "ref/netcoreapp2.2/System.Linq.Parallel.dll": {}, + "ref/netcoreapp2.2/System.Linq.Queryable.dll": {}, + "ref/netcoreapp2.2/System.Linq.dll": {}, + "ref/netcoreapp2.2/System.Memory.dll": {}, + "ref/netcoreapp2.2/System.Net.Http.dll": {}, + "ref/netcoreapp2.2/System.Net.HttpListener.dll": {}, + "ref/netcoreapp2.2/System.Net.Mail.dll": {}, + "ref/netcoreapp2.2/System.Net.NameResolution.dll": {}, + "ref/netcoreapp2.2/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp2.2/System.Net.Ping.dll": {}, + "ref/netcoreapp2.2/System.Net.Primitives.dll": {}, + "ref/netcoreapp2.2/System.Net.Requests.dll": {}, + "ref/netcoreapp2.2/System.Net.Security.dll": {}, + "ref/netcoreapp2.2/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp2.2/System.Net.Sockets.dll": {}, + "ref/netcoreapp2.2/System.Net.WebClient.dll": {}, + "ref/netcoreapp2.2/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp2.2/System.Net.WebProxy.dll": {}, + "ref/netcoreapp2.2/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp2.2/System.Net.WebSockets.dll": {}, + "ref/netcoreapp2.2/System.Net.dll": {}, + "ref/netcoreapp2.2/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp2.2/System.Numerics.dll": {}, + "ref/netcoreapp2.2/System.ObjectModel.dll": {}, + "ref/netcoreapp2.2/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp2.2/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp2.2/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp2.2/System.Reflection.Emit.dll": {}, + "ref/netcoreapp2.2/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp2.2/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp2.2/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp2.2/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp2.2/System.Reflection.dll": {}, + "ref/netcoreapp2.2/System.Resources.Reader.dll": {}, + "ref/netcoreapp2.2/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp2.2/System.Resources.Writer.dll": {}, + "ref/netcoreapp2.2/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp2.2/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp2.2/System.Runtime.Handles.dll": {}, + "ref/netcoreapp2.2/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp2.2/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp2.2/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp2.2/System.Runtime.Loader.dll": {}, + "ref/netcoreapp2.2/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp2.2/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp2.2/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp2.2/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp2.2/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp2.2/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp2.2/System.Runtime.dll": {}, + "ref/netcoreapp2.2/System.Security.Claims.dll": {}, + "ref/netcoreapp2.2/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp2.2/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp2.2/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp2.2/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp2.2/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp2.2/System.Security.Principal.dll": {}, + "ref/netcoreapp2.2/System.Security.SecureString.dll": {}, + "ref/netcoreapp2.2/System.Security.dll": {}, + "ref/netcoreapp2.2/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp2.2/System.ServiceProcess.dll": {}, + "ref/netcoreapp2.2/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp2.2/System.Text.Encoding.dll": {}, + "ref/netcoreapp2.2/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp2.2/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp2.2/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp2.2/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp2.2/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp2.2/System.Threading.Tasks.dll": {}, + "ref/netcoreapp2.2/System.Threading.Thread.dll": {}, + "ref/netcoreapp2.2/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp2.2/System.Threading.Timer.dll": {}, + "ref/netcoreapp2.2/System.Threading.dll": {}, + "ref/netcoreapp2.2/System.Transactions.Local.dll": {}, + "ref/netcoreapp2.2/System.Transactions.dll": {}, + "ref/netcoreapp2.2/System.ValueTuple.dll": {}, + "ref/netcoreapp2.2/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp2.2/System.Web.dll": {}, + "ref/netcoreapp2.2/System.Windows.dll": {}, + "ref/netcoreapp2.2/System.Xml.Linq.dll": {}, + "ref/netcoreapp2.2/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp2.2/System.Xml.Serialization.dll": {}, + "ref/netcoreapp2.2/System.Xml.XDocument.dll": {}, + "ref/netcoreapp2.2/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp2.2/System.Xml.XPath.dll": {}, + "ref/netcoreapp2.2/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp2.2/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp2.2/System.Xml.dll": {}, + "ref/netcoreapp2.2/System.dll": {}, + "ref/netcoreapp2.2/WindowsBase.dll": {}, + "ref/netcoreapp2.2/mscorlib.dll": {}, + "ref/netcoreapp2.2/netstandard.dll": {} + }, + "build": { + "build/netcoreapp2.2/Microsoft.NETCore.App.props": {}, + "build/netcoreapp2.2/Microsoft.NETCore.App.targets": {} + } + }, + "Microsoft.NETCore.DotNetAppHost/2.2.0": { + "type": "package" + }, + "Microsoft.NETCore.DotNetHostPolicy/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.DotNetHostResolver": "2.2.0" + } + }, + "Microsoft.NETCore.DotNetHostResolver/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.DotNetAppHost": "2.2.0" + } + }, + "Microsoft.NETCore.Platforms/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Registry/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Newtonsoft.Json.Bson/1.0.1": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "Newtonsoft.Json": "10.0.1" + }, + "compile": { + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {} + } + }, + "Npgsql/4.0.7": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3", + "System.Runtime.CompilerServices.Unsafe": "4.5.2", + "System.Threading.Tasks.Extensions": "4.5.2", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Npgsql.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Npgsql.dll": {} + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/2.2.4": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "2.2.4", + "Microsoft.EntityFrameworkCore.Abstractions": "2.2.4", + "Microsoft.EntityFrameworkCore.Relational": "2.2.4", + "Npgsql": "4.0.7" + }, + "compile": { + "lib/netstandard2.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {} + } + }, + "Remotion.Linq/2.2.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Queryable": "4.0.1", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Remotion.Linq.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Data.SqlClient.sni/4.5.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.5.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel.Annotations/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Data.SqlClient/4.6.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.5.0", + "System.Security.Principal.Windows": "4.5.0", + "System.Text.Encoding.CodePages": "4.5.0", + "runtime.native.System.Data.SqlClient.sni": "4.5.0" + }, + "compile": { + "ref/netcoreapp2.1/System.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Contracts/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.5.0": { + "type": "package", + "compile": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.FileVersionInfo/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Reflection.Metadata": "1.4.1", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.1", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IdentityModel.Tokens.Jwt/5.3.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "5.3.0", + "Microsoft.IdentityModel.Tokens": "5.3.0", + "Newtonsoft.Json": "10.0.1" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + } + }, + "System.Interactive.Async/3.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Interactive.Async.dll": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "compile": { + "ref/netstandard1.3/System.IO.Pipelines.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Queryable.dll": {} + } + }, + "System.Memory/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": {} + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0", + "System.Xml.XmlSerializer": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.5.2": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Private.DataContractSerialization": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Pkcs/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Xml/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.Pkcs": "4.5.0", + "System.Security.Permissions": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Cryptography.Xml.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {} + } + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/4.5.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/System.Threading.Channels.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Threading.Channels.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.2": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "System.Xml.XPath/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": {} + } + }, + "System.Xml.XPath.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0", + "System.Xml.XPath": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.WebApi.Client/5.2.6": { + "sha512": "owAlEIUZXWSnkK8Z1c+zR47A0X6ykF4XjbPok4lQKNuciUfHLGPd6QnI+rt/8KlQ17PmF+I4S3f+m+Qe4IvViw==", + "type": "package", + "path": "microsoft.aspnet.webapi.client/5.2.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.Net.Http.Formatting.dll", + "lib/net45/System.Net.Http.Formatting.xml", + "lib/netstandard2.0/System.Net.Http.Formatting.dll", + "lib/netstandard2.0/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.6.nupkg.sha512", + "microsoft.aspnet.webapi.client.nuspec" + ] + }, + "Microsoft.AspNetCore/2.2.0": { + "sha512": "Bs75iht4lXS8uVWy/Cbsr9i0m2jRtnrfPEWU+6t0dQTZcJEfF9b7G2F7XvstLFWkAKSgYRzFkAwi/KypY0Qtew==", + "type": "package", + "path": "microsoft.aspnetcore/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.xml", + "microsoft.aspnetcore.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.nuspec" + ] + }, + "Microsoft.AspNetCore.Antiforgery/2.2.0": { + "sha512": "fVQsSXNZz38Ysx8iKwwqfOLHhLrAeKEMBS5Ia3Lh7BJjOC2vPV28/yk08AovOMsB3SNQPGnE7bv+lsIBTmAkvw==", + "type": "package", + "path": "microsoft.aspnetcore.antiforgery/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.xml", + "microsoft.aspnetcore.antiforgery.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.antiforgery.nuspec" + ] + }, + "Microsoft.AspNetCore.App/2.2.0": { + "sha512": "L3W3kgOOU5+2Tdtnzywcs4/a3XFbwcM7Ghvr2uWnhLUvBithluWlGI+0/lXFrDysXaRMLSRJdExSLuSJJQYuTg==", + "type": "package", + "path": "microsoft.aspnetcore.app/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netcoreapp2.2/Microsoft.AspNetCore.App.props", + "build/netcoreapp2.2/Microsoft.AspNetCore.App.targets", + "lib/netcoreapp2.2/_._", + "microsoft.aspnetcore.app.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.app.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication/2.2.0": { + "sha512": "b0R9X7L6zMqNsssKDvhYHuNi5x0s4DyHTeXybIAyGaitKiW1Q5aAGKdV2codHPiePv9yHfC9hAMyScXQ/xXhPw==", + "type": "package", + "path": "microsoft.aspnetcore.authentication/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.xml", + "microsoft.aspnetcore.authentication.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml", + "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.Cookies/2.2.0": { + "sha512": "Iar9VFlBHkZGdSG9ZUTmn6Q8Qg+6CtW5G/TyJI2F8B432TOH+nZlkU7O0W0byow6xsxqOYeTviSHz4cCJ3amfQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.cookies/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.xml", + "microsoft.aspnetcore.authentication.cookies.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.cookies.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "sha512": "XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.core/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml", + "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.core.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.Facebook/2.2.0": { + "sha512": "SOc/wjoBntSWVZ6uG0R/TqQ0xmxu2H1PhkuYxINYpkUB7s3cQQuRDyZtJIdQonzpWVwBRj0ImwktiMaBF/7ihQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.facebook/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.xml", + "microsoft.aspnetcore.authentication.facebook.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.facebook.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.Google/2.2.0": { + "sha512": "norGVE0KRIT0pdNKhlLlsMi/7O69ACpx2RSj8rMHCoMRETCYH4PTqUbHI1kkfAGNUtcuQ8VIGIXSa1ZdGKWcdA==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.google/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.xml", + "microsoft.aspnetcore.authentication.google.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.google.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/2.2.0": { + "sha512": "FnyoLdiIo8KDobVcDuUYYFSbQYp1OR8vSMIOcW6M5+dtF9TC6XvCCS8Ook+DSbqUj6HPxwOIKa5BeIZm1/EpMw==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.jwtbearer/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", + "microsoft.aspnetcore.authentication.jwtbearer.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.jwtbearer.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.MicrosoftAccount/2.2.0": { + "sha512": "troBjvJAMK7P2Vb5sDOzCztq9vR8BJtajDznam2XuQai7kLh5z7cmkB+2zMin+K/HzNjqItJSuSyuaK2PoZ8nA==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.microsoftaccount/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.xml", + "microsoft.aspnetcore.authentication.microsoftaccount.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.microsoftaccount.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.OAuth/2.2.0": { + "sha512": "i33SSdJd0g3ENRnHczgzrOlru3ciPsyYHMgAh90sbURS8wuBx0Y4xXfRQcYfu1W0/uiHQO832KNb/ICINWqLzA==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.oauth/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.xml", + "microsoft.aspnetcore.authentication.oauth.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.oauth.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.OpenIdConnect/2.2.0": { + "sha512": "y4iu3vMFnkMTaqT9mCJhD3XUMfavNP0CoOeNOHd7ArqZfgzs3GqAPcBc8Ld6mK2u5OOva8C6bhnQfRu9z0qJKQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.openidconnect/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.xml", + "microsoft.aspnetcore.authentication.openidconnect.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.openidconnect.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.Twitter/2.2.0": { + "sha512": "wKfJeBL+13duv0o4q9zp4pW7UopBHaLafnq2GiIJTcu1x3RR/1N4sRIIppLSIJdulgM1XfNOivlIE2FEfZpmog==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.twitter/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.xml", + "microsoft.aspnetcore.authentication.twitter.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.twitter.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.WsFederation/2.2.0": { + "sha512": "TIBkO7Tx8uWXNL5Z7/6+iKdhTS+D9dpJMNcmiVxrAJUqxL4EWGHNqJyUp5yqI76GmbrT4GD23T3cUsSuCi7E0A==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.wsfederation/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.WsFederation.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.WsFederation.xml", + "microsoft.aspnetcore.authentication.wsfederation.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.wsfederation.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "type": "package", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml", + "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.policy.nuspec" + ] + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "sha512": "Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "type": "package", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml", + "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.connections.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.CookiePolicy/2.2.0": { + "sha512": "Kn9CvhNsxRup/5SJfD4/YP3AbFwLJX8u3tKKyQszjUIvjE7M6lU93W44zlqBxltS94gTdLmo2ixPWDNeZthi1w==", + "type": "package", + "path": "microsoft.aspnetcore.cookiepolicy/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.xml", + "microsoft.aspnetcore.cookiepolicy.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.cookiepolicy.nuspec" + ] + }, + "Microsoft.AspNetCore.Cors/2.2.0": { + "sha512": "LFlTM3ThS3ZCILuKnjy8HyK9/IlDh3opogdbCVx6tMGyDzTQBgMPXLjGDLtMk5QmLDCcP3l1TO3z/+1viA8GUg==", + "type": "package", + "path": "microsoft.aspnetcore.cors/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cors.xml", + "microsoft.aspnetcore.cors.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.cors.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": { + "sha512": "GXmMD8/vuTLPLvKzKEPz/4vapC5e0cwx1tUVd83ePRyWF9CCrn/pg4/1I+tGkQqFLPvi3nlI2QtPtC6MQN8Nww==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.internal/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/2.2.0": { + "sha512": "NCY0PH3nrFYbhqiq72rwWsUXlV4OAE0MOukvGvIBOTnEPMC1yVL42k1DXLnaIu+c0yfMAxIIG9Iuaykp9BQQQw==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.keyderivation/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "microsoft.aspnetcore.cryptography.keyderivation.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.cryptography.keyderivation.nuspec" + ] + }, + "Microsoft.AspNetCore.DataProtection/2.2.0": { + "sha512": "G6dvu5Nd2vjpYbzazZ//qBFbSEf2wmBUbyAR7E4AwO3gWjhoJD5YxpThcGJb7oE3VUcW65SVMXT+cPCiiBg8Sg==", + "type": "package", + "path": "microsoft.aspnetcore.dataprotection/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml", + "microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.dataprotection.nuspec" + ] + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": { + "sha512": "seANFXmp8mb5Y12m1ShiElJ3ZdOT3mBN3wA1GPhHJIvZ/BxOCPyqEOR+810OWsxEZwA5r5fDRNpG/CqiJmQnJg==", + "type": "package", + "path": "microsoft.aspnetcore.dataprotection.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml", + "microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.dataprotection.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.DataProtection.Extensions/2.2.0": { + "sha512": "Goo1xU9WJnEJ0dKDgYFF+hFQqRMLKjf9zc8Bu3PaBdGncR7QwDMeFIkO7FEM6izaC38QjYrs1Q5AsmljkPyOrw==", + "type": "package", + "path": "microsoft.aspnetcore.dataprotection.extensions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.xml", + "microsoft.aspnetcore.dataprotection.extensions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.dataprotection.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Diagnostics/2.2.0": { + "sha512": "RobNuZecn/eefWVApOE+OWAZXCdgfzm8pB7tBvJkahsjWfn1a+bLM9I2cuKlp/9aFBok1O/oDXlgYSvaQYu/yg==", + "type": "package", + "path": "microsoft.aspnetcore.diagnostics/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.xml", + "microsoft.aspnetcore.diagnostics.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.diagnostics.nuspec" + ] + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": { + "sha512": "pva9ggfUDtnJIKzv0+wxwTX7LduDx6xLSpMqWwdOJkW52L0t31PI78+v+WqqMpUtMzcKug24jGs3nTFpAmA/2g==", + "type": "package", + "path": "microsoft.aspnetcore.diagnostics.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml", + "microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.diagnostics.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/2.2.0": { + "sha512": "xAIXyVmrTcVIJ38/j0TVMRlChC25k+cEAeSYotWhAnho3urzf1EfhoyyNdVytZbbBskue5i6XBL8gA1vlp5KGg==", + "type": "package", + "path": "microsoft.aspnetcore.diagnostics.entityframeworkcore/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.xml", + "microsoft.aspnetcore.diagnostics.entityframeworkcore.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.diagnostics.entityframeworkcore.nuspec" + ] + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/2.2.0": { + "sha512": "RNmdLy9yncTprony49cuwhyTKoROpVflGM+pKlHA1671F00QUsjoY1Oi6xoa9XsUrfRDRYlxbt2CHYCMLzMh7Q==", + "type": "package", + "path": "microsoft.aspnetcore.diagnostics.healthchecks/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.HealthChecks.xml", + "microsoft.aspnetcore.diagnostics.healthchecks.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.diagnostics.healthchecks.nuspec" + ] + }, + "Microsoft.AspNetCore.HostFiltering/2.2.0": { + "sha512": "JSX6ZlVWDkokZ+xCKDhUVQNqbmFn1lHQNzJc8K4Y/uTUocZS83+b/8Q7y/yx3oJ362etGMVy0keAvmCdqbP8nA==", + "type": "package", + "path": "microsoft.aspnetcore.hostfiltering/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.xml", + "microsoft.aspnetcore.hostfiltering.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hostfiltering.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting/2.2.0": { + "sha512": "7t4RbUGugpHtQmzAkc9fpDdYJg6t/jcB2VVnjensVYbZFnLDU8pNrG0hrekk1DQG7P2UzpSqKLzDsFF0/lkkbw==", + "type": "package", + "path": "microsoft.aspnetcore.hosting/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.xml", + "microsoft.aspnetcore.hosting.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.server.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Html.Abstractions/2.2.0": { + "sha512": "Y4rs5aMEXY8G7wJo5S3EEt6ltqyOTr/qOeZzfn+hw/fuQj5GppGckMY5psGLETo1U9hcT5MmAhaT5xtusM1b5g==", + "type": "package", + "path": "microsoft.aspnetcore.html.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.xml", + "microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.html.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", + "type": "package", + "path": "microsoft.aspnetcore.http/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml", + "microsoft.aspnetcore.http.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "type": "package", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", + "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "sha512": "ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==", + "type": "package", + "path": "microsoft.aspnetcore.http.connections/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.xml", + "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.http.connections.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "sha512": "mYk5QUUjyXQmlyDHWDjkLYDArt97plwe6KsDsNVhDEQ+HgZMKGjISyM6YSA7BERQNR25kXBTbIYfSy1vePGQgg==", + "type": "package", + "path": "microsoft.aspnetcore.http.connections.common/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.xml", + "microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.http.connections.common.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "type": "package", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", + "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.HttpOverrides/2.2.0": { + "sha512": "pOlLQyNKQduGbtbgB55RyTHFeshSfKi3DmofrVjk+UBQjyp+Tm0RNNJFQf+sv34hlFsel+VnD79QyO9Zk/c3oA==", + "type": "package", + "path": "microsoft.aspnetcore.httpoverrides/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.xml", + "microsoft.aspnetcore.httpoverrides.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.httpoverrides.nuspec" + ] + }, + "Microsoft.AspNetCore.HttpsPolicy/2.2.0": { + "sha512": "0EmmwzAkWEPCC8rpg9nGfcOiitIOYkZ13f+b5ED7AAZvz/ZwkdWbeMarGf77lSyA+Mb9O/iAt4LWup0RRMVOJw==", + "type": "package", + "path": "microsoft.aspnetcore.httpspolicy/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.xml", + "microsoft.aspnetcore.httpspolicy.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.httpspolicy.nuspec" + ] + }, + "Microsoft.AspNetCore.Identity/2.2.0": { + "sha512": "F16BKeS96wKhyIyhaFR7m8kRIwIvPUW9Dx7IlGWmu2IIwnUDCdo+2z7IrWKA8r77pZQ1UE9kYcBPg5456YdAIA==", + "type": "package", + "path": "microsoft.aspnetcore.identity/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.xml", + "microsoft.aspnetcore.identity.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.identity.nuspec" + ] + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/2.2.0": { + "sha512": "PGJ8f8sE9vbnyPJpSCMYAjh1itkM8uL9QnkO5lQSSJGeyG4b1+zNoLS+leJgjGnlkTzgWPffc4OuqH7wsYahWw==", + "type": "package", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml", + "microsoft.aspnetcore.identity.entityframeworkcore.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.identity.entityframeworkcore.nuspec" + ] + }, + "Microsoft.AspNetCore.Identity.UI/2.2.0": { + "sha512": "T4B/Uaqd4u7jN6XDHbEBTZO002HquQKU49V+PvWEGKoiJBgZ96JskDr/NsfgVin8n8/bRSx+4A1WwlkMDKcNBg==", + "type": "package", + "path": "microsoft.aspnetcore.identity.ui/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "THIRD-PARTY-NOTICES.txt", + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.V3.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.V4.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.xml", + "microsoft.aspnetcore.identity.ui.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.identity.ui.nuspec" + ] + }, + "Microsoft.AspNetCore.JsonPatch/2.2.0": { + "sha512": "o9BB9hftnCsyJalz9IT0DUFxz8Xvgh3TOfGWolpuf19duxB4FySq7c25XDYBmBMS+sun5/PsEUAi58ra4iJAoA==", + "type": "package", + "path": "microsoft.aspnetcore.jsonpatch/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml", + "microsoft.aspnetcore.jsonpatch.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.jsonpatch.nuspec" + ] + }, + "Microsoft.AspNetCore.Localization/2.2.0": { + "sha512": "+PGX1mEfq19EVvskBBb9XBQrXZpZrh6hYhX0x3FkPTEqr+rDM2ZmsEwAAMRmzcidmlDM1/7cyDSU/WhkecU8tA==", + "type": "package", + "path": "microsoft.aspnetcore.localization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Localization.xml", + "microsoft.aspnetcore.localization.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.localization.nuspec" + ] + }, + "Microsoft.AspNetCore.Localization.Routing/2.2.0": { + "sha512": "kjheDUpXWaGOH8bUQafFAkUvw74xoe0Y2hojgeYaAg5LKvaFUwupkz8wgyhfSbLdejxEQJ6PsA7Zq/AcdPoIUQ==", + "type": "package", + "path": "microsoft.aspnetcore.localization.routing/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.xml", + "microsoft.aspnetcore.localization.routing.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.localization.routing.nuspec" + ] + }, + "Microsoft.AspNetCore.MiddlewareAnalysis/2.2.0": { + "sha512": "GISp0KoVyJ4llqkmUOWFbOb7g/rOABlsf0Nt8a4eanY71XfUCM0dqBaMct3IUE3KWUvjhKPACQimxgMjPcF7pA==", + "type": "package", + "path": "microsoft.aspnetcore.middlewareanalysis/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.xml", + "microsoft.aspnetcore.middlewareanalysis.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.middlewareanalysis.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc/2.2.0": { + "sha512": "noun9xcrEvOs/ubczt2OluY9/bOOM2erv1D/gyyYtfS2sfyx2uGknUIAWoqmqc401TvQDysyx8S4M9j5zPIVBw==", + "type": "package", + "path": "microsoft.aspnetcore.mvc/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.xml", + "microsoft.aspnetcore.mvc.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "sha512": "ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml", + "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Analyzers/2.2.0": { + "sha512": "Wxxt1rFVHITp4MDaGQP/wyl+ROVVVeQCTWI6C8hxI8X66C4u6gcxvelqgnmsn+dISMCdE/7FQOwgiMx1HxuZqA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.analyzers/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/Microsoft.AspNetCore.Mvc.Analyzers.dll", + "microsoft.aspnetcore.mvc.analyzers.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.analyzers.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/2.2.0": { + "sha512": "iSREQct43Xg2t3KiQ2648e064al/HSLPXpI5yO9VPeTGDspWKHW23XFHRKPN1YjIQHHfBj8ytXbiF0XcSxp5pg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.apiexplorer/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.xml", + "microsoft.aspnetcore.mvc.apiexplorer.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.apiexplorer.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.0": { + "sha512": "ALiY4a6BYsghw8PT5+VU593Kqp911U3w9f/dH9/ZoI3ezDsDAGiObqPu/HP1oXK80Ceu0XdQ3F0bx5AXBeuN/Q==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.core/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml", + "microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.core.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Cors/2.2.0": { + "sha512": "oINjMqhU7yzT2T9AMuvktlWlMd40i0do8E1aYslJS+c5fof+EMhjnwTh6cHN1dfrgjkoXJ/gutxn5Qaqf/81Kg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.cors/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.xml", + "microsoft.aspnetcore.mvc.cors.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.cors.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/2.2.0": { + "sha512": "WOw4SA3oT47aiU7ZjN/88j+b79YU6VftmHmxK29Km3PTI7WZdmw675QTcgWfsjEX4joCB82v7TvarO3D0oqOyw==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.dataannotations/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.xml", + "microsoft.aspnetcore.mvc.dataannotations.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.dataannotations.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": { + "sha512": "ScWwXrkAvw6PekWUFkIr5qa9NKn4uZGRvxtt3DvtUrBYW5Iu2y4SS/vx79JN0XDHNYgAJ81nVs+4M7UE1Y/O+g==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.formatters.json/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.xml", + "microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.formatters.json.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.2.0": { + "sha512": "4pUhKtqhaNqSeMRRyEw1kGjg/pNLczzd4VAsanMGI539sCdkl1JBaoFojZb1helVdUvX9a1Jo+lYXq0lnwB/GQ==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.formatters.xml/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.xml", + "microsoft.aspnetcore.mvc.formatters.xml.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.formatters.xml.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Localization/2.2.0": { + "sha512": "H1L4pP124mrN6duwOtNVIJUqy4CczC2/ah4MXarRt9ZRpJd2zNp1j3tJCgyEQpqai6zNVP6Vp2ZRMQcNDcNAKA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.localization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.xml", + "microsoft.aspnetcore.mvc.localization.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.localization.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor/2.2.0": { + "sha512": "TXvEOjp3r6qDEjmDtv3pXjQr/Zia9PpoGkl1MyTEqKqrUehBTpAdCjA8APXFwun19lH20OuyU+e4zDYv9g134w==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.xml", + "microsoft.aspnetcore.mvc.razor.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.2.0": { + "sha512": "Sei/0moqBDQKaAYT9PtOeRtvYgHQQLyw/jm3exHw2w9VdzejiMEqCQrN2d63Dk4y7IY0Irr/P9JUFkoVURRcNw==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.extensions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.props", + "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.targets", + "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll", + "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml", + "microsoft.aspnetcore.mvc.razor.extensions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/2.2.0": { + "sha512": "dys8ggIDth3g5GBpCfeayU9sNg6Z9IbKFKOuaXbVaAiZQUd+Egk9op4NLHpqfR9Ey2HGw+u87LYC55bhEeOpag==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.viewcompilation/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks.dll", + "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.targets", + "build/netstandard2.0/net461/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation-x86.exe", + "build/netstandard2.0/net461/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.exe", + "build/netstandard2.0/netcoreapp2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.dll", + "microsoft.aspnetcore.mvc.razor.viewcompilation.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.viewcompilation.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.RazorPages/2.2.0": { + "sha512": "GsMs4QKCf5VgdGZq9/nfAVkMJ/8uE4ie0Iugv4FtxbHBmMdpPQQBfTFKoUpwMbgIRw7hzV8xy2HPPU5o58PsdQ==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razorpages/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.xml", + "microsoft.aspnetcore.mvc.razorpages.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.razorpages.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/2.2.0": { + "sha512": "hsrm/dLx7ztfWV+WEE7O8YqEePW7TmUwFwR7JsOUSTKaV9uSeghdmoOsYuk0HeoTiMhRxH8InQVE9/BgBj+jog==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.taghelpers/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.xml", + "microsoft.aspnetcore.mvc.taghelpers.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.taghelpers.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/2.2.0": { + "sha512": "dt7MGkzCFVTAD5oesI8UeVVeiSgaZ0tPdFstQjG6YLJSCiq1koOUSHMpf0PASGdOW/H9hxXkolIBhT5dWqJi7g==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.viewfeatures/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.xml", + "microsoft.aspnetcore.mvc.viewfeatures.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.viewfeatures.nuspec" + ] + }, + "Microsoft.AspNetCore.NodeServices/2.2.0": { + "sha512": "ML+s+nv/ri3MxM4vXjTK3S4K925TGklSKH74VOkCqWQF9ki5yuYcyxaWTUsCyAXliw+N8HMNmW++uU81JngDDg==", + "type": "package", + "path": "microsoft.aspnetcore.nodeservices/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.xml", + "microsoft.aspnetcore.nodeservices.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.nodeservices.nuspec" + ] + }, + "Microsoft.AspNetCore.Owin/2.2.0": { + "sha512": "h9QIdnrH7fOTQgUwjz/v0fDk8j8JNtUB233gYFtngt7jLoVc7vfMEGs9rnOWh8ubz+JdrMt7UBrva07af4Smxw==", + "type": "package", + "path": "microsoft.aspnetcore.owin/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Owin.xml", + "microsoft.aspnetcore.owin.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.owin.nuspec" + ] + }, + "Microsoft.AspNetCore.Razor/2.2.0": { + "sha512": "V54PIyDCFl8COnTp9gezNHpUNHk7F9UnerGeZy3UfbnwYvfzbo+ipqQmSgeoESH8e0JvKhRTyQyZquW2EPtCmg==", + "type": "package", + "path": "microsoft.aspnetcore.razor/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.xml", + "microsoft.aspnetcore.razor.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.razor.nuspec" + ] + }, + "Microsoft.AspNetCore.Razor.Design/2.2.0": { + "sha512": "VLWK+ZtMMNukY6XjxYHc7mz33vkquoEzQJHm/LCF5REVxIaexLr+UTImljRRJBdUDJluDAQwU+59IX0rFDfURA==", + "type": "package", + "path": "microsoft.aspnetcore.razor.design/2.2.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.CodeGeneration.targets", + "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.props", + "buildMultiTargeting/Microsoft.AspNetCore.Razor.Design.props", + "microsoft.aspnetcore.razor.design.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.razor.design.nuspec", + "tools/Microsoft.AspNetCore.Razor.Language.dll", + "tools/Microsoft.CodeAnalysis.CSharp.dll", + "tools/Microsoft.CodeAnalysis.Razor.dll", + "tools/Microsoft.CodeAnalysis.dll", + "tools/Newtonsoft.Json.dll", + "tools/runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "tools/runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "tools/rzc.deps.json", + "tools/rzc.dll", + "tools/rzc.runtimeconfig.json" + ] + }, + "Microsoft.AspNetCore.Razor.Language/2.2.0": { + "sha512": "IeyzVFXZdpUAnWKWoNYE0SsP1Eu7JLjZaC94jaI1VfGtK57QykROz/iGMc8D0VcqC8i02qYTPQN/wPKm6PfidA==", + "type": "package", + "path": "microsoft.aspnetcore.razor.language/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.AspNetCore.Razor.Language.dll", + "lib/net46/Microsoft.AspNetCore.Razor.Language.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.xml", + "microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.razor.language.nuspec" + ] + }, + "Microsoft.AspNetCore.Razor.Runtime/2.2.0": { + "sha512": "7YqK+H61lN6yj9RiQUko7oaOhKtRR9Q/kBcoWNRemhJdTIWOh1OmdvJKzZrMWOlff3BAjejkPQm+0V0qXk+B1w==", + "type": "package", + "path": "microsoft.aspnetcore.razor.runtime/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.xml", + "microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.razor.runtime.nuspec" + ] + }, + "Microsoft.AspNetCore.ResponseCaching/2.2.0": { + "sha512": "MEBP1UwGD7X1vhO43LN5KhZDt4HMTX7u1YA0nq7HR6IDRhWczHczJPDu3GbL01IMdb03hyT/glJIv8PI5zKtnA==", + "type": "package", + "path": "microsoft.aspnetcore.responsecaching/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.xml", + "microsoft.aspnetcore.responsecaching.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.responsecaching.nuspec" + ] + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "sha512": "CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", + "type": "package", + "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml", + "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.responsecaching.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.ResponseCompression/2.2.0": { + "sha512": "RvSstOhebIMDdRLd4iWjA6z2o2kGGwEYGPajvTXwndOA3TZpWH3FOIV4L7mehN/HoKrbTbX5vZ54ZFDwWoAFKA==", + "type": "package", + "path": "microsoft.aspnetcore.responsecompression/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Microsoft.AspNetCore.ResponseCompression.dll", + "lib/net461/Microsoft.AspNetCore.ResponseCompression.xml", + "lib/netcoreapp2.1/Microsoft.AspNetCore.ResponseCompression.dll", + "lib/netcoreapp2.1/Microsoft.AspNetCore.ResponseCompression.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.xml", + "microsoft.aspnetcore.responsecompression.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.responsecompression.nuspec" + ] + }, + "Microsoft.AspNetCore.Rewrite/2.2.0": { + "sha512": "jztwQxyn4CcWZj/1mQtFiZ5+pIWYltHIXk5ykyrXMjO6qaKVvc+mlffSUCQ0AOl3vH7vxsZnda8poHwVaT0QIA==", + "type": "package", + "path": "microsoft.aspnetcore.rewrite/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.xml", + "microsoft.aspnetcore.rewrite.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.rewrite.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml", + "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml", + "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Server.HttpSys/2.2.0": { + "sha512": "tei37PK4c6CKd7tGgAOkpbePwu8WLjqsEfiAfLbaMXnmp7o30bzcIxtraTrjvq2SpRAFA9p6WwUbmyqQxXPcfQ==", + "type": "package", + "path": "microsoft.aspnetcore.server.httpsys/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.xml", + "microsoft.aspnetcore.server.httpsys.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.server.httpsys.nuspec" + ] + }, + "Microsoft.AspNetCore.Server.IIS/2.2.0": { + "sha512": "6NEwFAJFrnZ0f5eJB1ReIpgPM1ZRDj3IE3Rda01nD3vJANCyJFjZ4SGW3Ckn1AmMi225fGflWzpCKLb7/l43jw==", + "type": "package", + "path": "microsoft.aspnetcore.server.iis/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard2.0/Microsoft.AspNetCore.Server.IIS.targets", + "lib/netstandard2.0/Microsoft.AspNetCore.Server.IIS.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Server.IIS.xml", + "microsoft.aspnetcore.server.iis.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.server.iis.nuspec", + "runtimes/win-x64/nativeassets/netcoreapp2.2/aspnetcorev2_inprocess.dll", + "runtimes/win-x86/nativeassets/netcoreapp2.2/aspnetcorev2_inprocess.dll" + ] + }, + "Microsoft.AspNetCore.Server.IISIntegration/2.2.0": { + "sha512": "iVjgAg+doTTrTFCOq6kZRpebXq94YGCx9efMIwO5QhwdY/sHAjfrVz2lXzji63G96YjJVK3ZRrlpgS2fd49ABw==", + "type": "package", + "path": "microsoft.aspnetcore.server.iisintegration/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.targets", + "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.xml", + "microsoft.aspnetcore.server.iisintegration.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.server.iisintegration.nuspec" + ] + }, + "Microsoft.AspNetCore.Server.Kestrel/2.2.0": { + "sha512": "D0vGB8Tp0UNMiAhT+pwAVeqDDx2OFrfpu/plwm0WhA+1DZvTLc99eDwGISL6LAY8x7a12lhl9w7/m+VdoyDu8Q==", + "type": "package", + "path": "microsoft.aspnetcore.server.kestrel/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.xml", + "microsoft.aspnetcore.server.kestrel.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.server.kestrel.nuspec" + ] + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": { + "sha512": "F6/Vesd3ODq/ISbHfcvfRf7IzRtTvrNX8VA36Knm5e7bteJhoRA2GKQUVQ+neoO1njLvaQKnjcA3rdCZ6AF6cg==", + "type": "package", + "path": "microsoft.aspnetcore.server.kestrel.core/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll", + "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.xml", + "microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.server.kestrel.core.nuspec" + ] + }, + "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": { + "sha512": "nEH5mU6idUYS3/+9BKw2stMOM25ZdGwIH4P4kyj6PVkMPgQUTkBQ7l/ScPkepdhejcOlPa+g3+M4dYsSYPUJ8g==", + "type": "package", + "path": "microsoft.aspnetcore.server.kestrel.https/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll", + "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.xml", + "microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.server.kestrel.https.nuspec" + ] + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": { + "sha512": "j1ai2CG8BGp4mYf2TWSFjjy1pRgW9XbqhdR4EOVvrlFVbcpEPfXNIPEdjkcgK+txWCupGzkFnFF8oZsASMtmyw==", + "type": "package", + "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.xml", + "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.server.kestrel.transport.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.0": { + "sha512": "qTACI0wePgAKCH+YKrMgChyfqJpjwgGZEtSuwBw6TjWLQ66THGasleia/7EZz2t2eAjwWxw8RA/D8ODrBqpj9A==", + "type": "package", + "path": "microsoft.aspnetcore.server.kestrel.transport.sockets/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll", + "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml", + "microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.server.kestrel.transport.sockets.nuspec" + ] + }, + "Microsoft.AspNetCore.Session/2.2.0": { + "sha512": "lOjJVh293AKaOEPi1MIC1/G9gOVZMrve2a05o56oslK6bo0PMgMB17rmPomvqrJAjMdlWZ/MGdN2y78Z9wzWTw==", + "type": "package", + "path": "microsoft.aspnetcore.session/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Session.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Session.xml", + "microsoft.aspnetcore.session.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.session.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "sha512": "V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==", + "type": "package", + "path": "microsoft.aspnetcore.signalr/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.xml", + "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "sha512": "TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.xml", + "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.common.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "sha512": "mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.xml", + "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.core.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "sha512": "BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml", + "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.protocols.json.nuspec" + ] + }, + "Microsoft.AspNetCore.SpaServices/2.2.0": { + "sha512": "hUAsOd45CQbUV47b/c5wp6uKM0Fa6MXekFHbRb+jEPjzmrxLPn9nAKK1dYmyMAqSBRL8c6zVCWQk+TOP7eGs/A==", + "type": "package", + "path": "microsoft.aspnetcore.spaservices/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.xml", + "microsoft.aspnetcore.spaservices.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.spaservices.nuspec" + ] + }, + "Microsoft.AspNetCore.SpaServices.Extensions/2.2.0": { + "sha512": "RvzzubzGPD+dGCfKVVtAvyIsnWpAWOA/x1n6fGLwICPER7Ze6budQGFPdZ7yuXTwtTMRvHa4O4AaGLG1XmoXGw==", + "type": "package", + "path": "microsoft.aspnetcore.spaservices.extensions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.Extensions.xml", + "microsoft.aspnetcore.spaservices.extensions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.spaservices.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.StaticFiles/2.2.0": { + "sha512": "byZDrjir6Co5EoWbraQyG0qbPCUG6XgGYQstipMF9lucOAjq/mqnIyt8B8iMWnin/ghZoOln9Y01af4rUAwOhA==", + "type": "package", + "path": "microsoft.aspnetcore.staticfiles/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.xml", + "microsoft.aspnetcore.staticfiles.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.staticfiles.nuspec" + ] + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "sha512": "ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==", + "type": "package", + "path": "microsoft.aspnetcore.websockets/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.xml", + "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.websockets.nuspec" + ] + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "type": "package", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml", + "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.webutilities.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/1.1.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.rtf", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/2.8.0": { + "sha512": "06AzG7oOLKTCN1EnoVYL1bQz+Zwa10LMpUn7Kc+PdpN8CQXRqXTyhfxuKIz6t0qWfoatBNXdHD0OLcEYp5pOvQ==", + "type": "package", + "path": "microsoft.codeanalysis.common/2.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.3/Microsoft.CodeAnalysis.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.pdb", + "lib/netstandard1.3/Microsoft.CodeAnalysis.xml", + "microsoft.codeanalysis.common.2.8.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/2.8.0": { + "sha512": "RizcFXuHgGmeuZhxxE1qQdhFA9lGOHlk0MJlCUt6LOnYsevo72gNikPcbANFHY02YK8L/buNrihchY0TroGvXQ==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/2.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml", + "microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Razor/2.2.0": { + "sha512": "2qL0Qyu5qHzg6/JzF80mLgsqn9NP/Q0mQwjH+Z+DiqcuODJx8segjN4un2Tnz6bEAWv8FCRFNXR/s5wzlxqA8A==", + "type": "package", + "path": "microsoft.codeanalysis.razor/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.CodeAnalysis.Razor.dll", + "lib/net46/Microsoft.CodeAnalysis.Razor.xml", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.xml", + "microsoft.codeanalysis.razor.2.2.0.nupkg.sha512", + "microsoft.codeanalysis.razor.nuspec" + ] + }, + "Microsoft.CSharp/4.5.0": { + "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "type": "package", + "path": "microsoft.csharp/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.5.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.DotNet.PlatformAbstractions/2.1.0": { + "sha512": "9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==", + "type": "package", + "path": "microsoft.dotnet.platformabstractions/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll", + "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll", + "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512", + "microsoft.dotnet.platformabstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/2.2.4": { + "sha512": "aQ0sAe2mOtSp3StjKT2wDA/BO3k8BLfpIXIG1MOlGytjQWQOvW3BzDPfgXOhxbSa7Bhdsx97aYzZUGD3DQAQjQ==", + "type": "package", + "path": "microsoft.entityframeworkcore/2.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.2.2.4.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/2.2.4": { + "sha512": "GjtIOANlpy7JcGK0Q169n52713hIHHfxUHq1+xoWlAZYSI0h/n2DrEWwCIsrnInU8FaLq4cIG7UgMTL0CnUUPw==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/2.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.2.2.4.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/2.2.4": { + "sha512": "cLJo6dikdFQd2j9cFHhC2M1rzUeYvJLR/m7cBcuKRI6ek5t5ZyGZ0hzEJwCQmKRDV4tAl5p+NIrfDjfqTK8POw==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/2.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "microsoft.entityframeworkcore.analyzers.2.2.4.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Design/2.2.0": { + "sha512": "mcsUEzg1bWvPgj/isz7aabDy41x+x8WBTmSF+JFsDGe3K5ZElWT2FSr3LLmkXk/5BLWJ3f9SDe0YR55u3ZgHrw==", + "type": "package", + "path": "microsoft.entityframeworkcore.design/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net461/Microsoft.EntityFrameworkCore.Design.props", + "build/netcoreapp2.0/Microsoft.EntityFrameworkCore.Design.props", + "lib/net461/Microsoft.EntityFrameworkCore.Design.dll", + "lib/net461/Microsoft.EntityFrameworkCore.Design.xml", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.xml", + "microsoft.entityframeworkcore.design.2.2.0.nupkg.sha512", + "microsoft.entityframeworkcore.design.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.InMemory/2.2.0": { + "sha512": "WxvRXUwCGdY1Ze8GfZteWadsxrxpFRfZN8WJ1jcXZKp5eYo5WwmiBq5e3xIZR8cHxznqlqczJ3NpXjqyYpNK9w==", + "type": "package", + "path": "microsoft.entityframeworkcore.inmemory/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.xml", + "microsoft.entityframeworkcore.inmemory.2.2.0.nupkg.sha512", + "microsoft.entityframeworkcore.inmemory.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/2.2.4": { + "sha512": "Ga+kJhoSBNYv8C2gQl2sB5bTBkWsLFn92CPjZA5ql/MyxJTWri6lf44/GSYEcOQj0tqF5HhMAaB1HxQMiIPBcQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/2.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.2.2.4.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.SqlServer/2.2.0": { + "sha512": "rCGBF6Hab9633Dh2xtiAcJnDxf2CjaBrGyoagoCoYHH5Ftbdw5zX/e9ABgif5ngzh7DsrBcgxK/3gHBZ2n+TGA==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlserver/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.xml", + "microsoft.entityframeworkcore.sqlserver.2.2.0.nupkg.sha512", + "microsoft.entityframeworkcore.sqlserver.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Tools/2.2.0": { + "sha512": "F253CmzpL7eXFKpK++/GIVbyVMZyXYq388osdkggsA1eL7c8ZGwHho0jE3LGA+L6WuXm6KbwQMtnt15zZAqzzA==", + "type": "package", + "path": "microsoft.entityframeworkcore.tools/2.2.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.tools.2.2.0.nupkg.sha512", + "microsoft.entityframeworkcore.tools.nuspec", + "tools/EntityFrameworkCore.PowerShell2.psd1", + "tools/EntityFrameworkCore.PowerShell2.psm1", + "tools/EntityFrameworkCore.psd1", + "tools/EntityFrameworkCore.psm1", + "tools/about_EntityFrameworkCore.help.txt", + "tools/init.ps1", + "tools/install.ps1", + "tools/net461/any/ef.exe", + "tools/net461/win-x86/ef.exe", + "tools/netcoreapp2.0/any/ef.dll", + "tools/netcoreapp2.0/any/ef.runtimeconfig.json" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/2.2.0": { + "sha512": "spsJkYo8gGJapaxTSQFN/wqA+ghpJMLwB4ZyTB+fSdpd7AmMFP/YSpIcGmczcw4KggpxLGhLk7lCkSIlgvHaqQ==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Memory/2.2.0": { + "sha512": "yFs44RzB2Pzfoj4uk+mEz3MTTQKyeWb8gDhv5GyVPfHnLv0eQhGwzbw/5WpxAcVyOgG/H3/0ULY6g0/7/B+r7w==", + "type": "package", + "path": "microsoft.extensions.caching.memory/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.2.2.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec" + ] + }, + "Microsoft.Extensions.Caching.SqlServer/2.2.0": { + "sha512": "hDAunudTCNyVb22W+ctToi9T3mcrix2L+GfnuhbIcbzgXVyUGMULUJmb2D5ElIJKkcGxkC/lM1aBMgHsSFFZcA==", + "type": "package", + "path": "microsoft.extensions.caching.sqlserver/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.xml", + "microsoft.extensions.caching.sqlserver.2.2.0.nupkg.sha512", + "microsoft.extensions.caching.sqlserver.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/2.2.0": { + "sha512": "nOP8R1mVb/6mZtm2qgAJXn/LFm/2kMjHDAg/QJLFG6CuWYJtaD3p1BwQhufBVvRzL9ceJ/xF0SQ0qsI2GkDQAA==", + "type": "package", + "path": "microsoft.extensions.configuration/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.2.2.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { + "sha512": "65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Binder/2.2.0": { + "sha512": "vJ9xvOZCnUAIHcGC3SU35r3HKmHTVIeHzo6u/qzlHAqD8m6xv92MLin4oJntTvkpKxVX3vI1GFFkIQtU3AdlsQ==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.CommandLine/2.2.0": { + "sha512": "4kJIGOSRqD1Ccqerst4t/zsNs51plR7BIxbdKO1J/9rL+2DuNT+ieAuEv+HROelqTam3yOpKFR7TtHBt3oLpOA==", + "type": "package", + "path": "microsoft.extensions.configuration.commandline/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "microsoft.extensions.configuration.commandline.2.2.0.nupkg.sha512", + "microsoft.extensions.configuration.commandline.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": { + "sha512": "gIqt9PkKO01hZ0zmHnWrZ1E45MDreZTVoyDbL1kMWKtDgxxWTJpYtESTEcgpvR1uB1iex1zKGYzJpOMgmuP5TQ==", + "type": "package", + "path": "microsoft.extensions.configuration.environmentvariables/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg.sha512", + "microsoft.extensions.configuration.environmentvariables.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": { + "sha512": "H1qCpWBC8Ed4tguTR/qYkbb3F6DI5Su3t8xyFo3/5MzAd8PwPpHzgX8X04KbBxKmk173Pb64x7xMHarczVFQUA==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Ini/2.2.0": { + "sha512": "uEDasBxY7m0GJseqHD8QhfiznxDMhxN9YE3j01Es6eks42rRm3yL8ZMbRxuEjyKqGZqjjt+Vr297/nKcg0eOow==", + "type": "package", + "path": "microsoft.extensions.configuration.ini/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.xml", + "microsoft.extensions.configuration.ini.2.2.0.nupkg.sha512", + "microsoft.extensions.configuration.ini.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Json/2.2.0": { + "sha512": "jUDdmLyFmLf9V3mqnMzSAzAv4QigJ67tZh5Q7HBXeBnESL2UyeesNG6jSBti+b63JpxZf+EDyn+anx3gyrNxug==", + "type": "package", + "path": "microsoft.extensions.configuration.json/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.2.2.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.KeyPerFile/2.2.0": { + "sha512": "qK7vVxtUrpxdQPhvjF3RVYkcV86q/QfMBWqvvXAKYYkQ+H/4GXxk5cbPaSWdMZB5YU1GBEFBuZg9MZxDRvPJkg==", + "type": "package", + "path": "microsoft.extensions.configuration.keyperfile/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.KeyPerFile.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.KeyPerFile.xml", + "microsoft.extensions.configuration.keyperfile.2.2.0.nupkg.sha512", + "microsoft.extensions.configuration.keyperfile.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.UserSecrets/2.2.0": { + "sha512": "2/N2xo6/sNbVshnKktmq5lwaQbsAR2SrzCVrJEeMP8OKZVI7SzT8P6/WXZF8/YC7dTYsMe3nrHzgl1cF9i5ZKQ==", + "type": "package", + "path": "microsoft.extensions.configuration.usersecrets/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props", + "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "microsoft.extensions.configuration.usersecrets.2.2.0.nupkg.sha512", + "microsoft.extensions.configuration.usersecrets.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Xml/2.2.0": { + "sha512": "toCFesKf2KZgRtb6T7tulnJv3IBVL+Gqd4KE3ebQZ20wA2Z5Rp6A44MsRGZ1ollmihzkxxBDavVfgufFeji3Sw==", + "type": "package", + "path": "microsoft.extensions.configuration.xml/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.xml", + "microsoft.extensions.configuration.xml.2.2.0.nupkg.sha512", + "microsoft.extensions.configuration.xml.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection/2.2.0": { + "sha512": "MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { + "sha512": "f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.DependencyModel/2.1.0": { + "sha512": "nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec" + ] + }, + "Microsoft.Extensions.DiagnosticAdapter/2.2.0": { + "sha512": "Av0QGyboU9hYcprPduZg8Ny4mtp1Z0xOfZGCiBhYMh6a0loNomZ74U1P9EJUBksT2ZJd0+hh/pOQIVdAJ8+AbA==", + "type": "package", + "path": "microsoft.extensions.diagnosticadapter/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Microsoft.Extensions.DiagnosticAdapter.dll", + "lib/net461/Microsoft.Extensions.DiagnosticAdapter.xml", + "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll", + "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.xml", + "lib/netstandard2.0/Microsoft.Extensions.DiagnosticAdapter.dll", + "lib/netstandard2.0/Microsoft.Extensions.DiagnosticAdapter.xml", + "microsoft.extensions.diagnosticadapter.2.2.0.nupkg.sha512", + "microsoft.extensions.diagnosticadapter.nuspec" + ] + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/2.2.0": { + "sha512": "p9njfetdebuplBCkIJPqyxsUIOBf/7B/RhPXZnFjh+/wqWNRqhP/1s18q1me9XP0l8uCD8TqJRPC+L0MCoUGRA==", + "type": "package", + "path": "microsoft.extensions.diagnostics.healthchecks/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.xml", + "microsoft.extensions.diagnostics.healthchecks.2.2.0.nupkg.sha512", + "microsoft.extensions.diagnostics.healthchecks.nuspec" + ] + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/2.2.0": { + "sha512": "cO6f4csTakJXuLWnU/p5mfQInyNq5sSi4mS2YtQZcGoHynU6P/TD6gjqt1TRnVfwuZLw3tmmw2ipFrHbBUqWew==", + "type": "package", + "path": "microsoft.extensions.diagnostics.healthchecks.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.xml", + "microsoft.extensions.diagnostics.healthchecks.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.diagnostics.healthchecks.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "sha512": "EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.FileProviders.Composite/2.2.0": { + "sha512": "Az/RxWB+UlyVN/TvQFaGXx8XAXVZN5WQnnuJOsjwBzghSJc1i8zqNjIypPHOedcuIXs2XSWgOSL6YQ3BlCnoJA==", + "type": "package", + "path": "microsoft.extensions.fileproviders.composite/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml", + "microsoft.extensions.fileproviders.composite.2.2.0.nupkg.sha512", + "microsoft.extensions.fileproviders.composite.nuspec" + ] + }, + "Microsoft.Extensions.FileProviders.Embedded/2.2.0": { + "sha512": "6e22jnVntG9JLLowjY40UBPLXkKTRlDpFHmo2evN8lwZIpO89ZRGz6JRdqhnVYCaavq5KeFU2W5VKPA5y5farA==", + "type": "package", + "path": "microsoft.extensions.fileproviders.embedded/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props", + "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets", + "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props", + "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.xml", + "microsoft.extensions.fileproviders.embedded.2.2.0.nupkg.sha512", + "microsoft.extensions.fileproviders.embedded.nuspec", + "tasks/net461/Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll", + "tasks/netstandard1.5/Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/2.2.0": { + "sha512": "tbDHZnBJkjYd9NjlRZ9ondDiv1Te3KYCTW2RWpR1B0e1Z8+EnFRo7qNnHkkSCixLdlPZzhjlX24d/PixQ7w2dA==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/2.2.0": { + "sha512": "ZSsHZp3PyW6vk37tDEdypjgGlNtpJ0EixBMOfUod2Thx7GtwfFSAQXUQx8a8BN8vfWKGGMbp7jPWdoHx/At4wQ==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec" + ] + }, + "Microsoft.Extensions.Hosting/2.2.0": { + "sha512": "PxZPd5QbWr8+3JN2segEaD7IAYI+mR8ZmMqgo6GOk+E+UKnRcbC3RSQgJrZYuWVQwJCvdxesO5e64LSHC1zC8g==", + "type": "package", + "path": "microsoft.extensions.hosting/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml", + "microsoft.extensions.hosting.2.2.0.nupkg.sha512", + "microsoft.extensions.hosting.nuspec" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Http/2.2.0": { + "sha512": "hZ8mz6FgxSeFtkHzw+Ad0QOt2yjjpq4WaG9itnkyChtXYTrDlbkw3af2WJ9wdEAAyYqOlQaVDB6MJSEo8dd/vw==", + "type": "package", + "path": "microsoft.extensions.http/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Http.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.xml", + "microsoft.extensions.http.2.2.0.nupkg.sha512", + "microsoft.extensions.http.nuspec" + ] + }, + "Microsoft.Extensions.Identity.Core/2.2.0": { + "sha512": "/C+Valwg8IeUwDIunusittHivA9iyf82Jr1yeUFWO2zH2mDMMeYgjRyDLZqfL/7Vq94PEQsgv1XAaDfAX8msMw==", + "type": "package", + "path": "microsoft.extensions.identity.core/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml", + "microsoft.extensions.identity.core.2.2.0.nupkg.sha512", + "microsoft.extensions.identity.core.nuspec" + ] + }, + "Microsoft.Extensions.Identity.Stores/2.2.0": { + "sha512": "WY6os4m5LcG7XXHQK1vQggjdNFs7h6CsidVLOzPjG7Cb1zwRYKzfRT/pSUD40JNGvVp4oNENjLPvu/30ufIGNw==", + "type": "package", + "path": "microsoft.extensions.identity.stores/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml", + "microsoft.extensions.identity.stores.2.2.0.nupkg.sha512", + "microsoft.extensions.identity.stores.nuspec" + ] + }, + "Microsoft.Extensions.Localization/2.2.0": { + "sha512": "3nBQLeBrcd4Rgd9vQi4gF5NgAWxnQrHekjjwlgww4wyLNfJDizjiex2resOLoAuAgy3y2IIAWjOpbr0UKR2ykw==", + "type": "package", + "path": "microsoft.extensions.localization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Localization.dll", + "lib/netstandard2.0/Microsoft.Extensions.Localization.xml", + "microsoft.extensions.localization.2.2.0.nupkg.sha512", + "microsoft.extensions.localization.nuspec" + ] + }, + "Microsoft.Extensions.Localization.Abstractions/2.2.0": { + "sha512": "FQzXG/lYR9UOM2zHpqsjTRpp3EghIYo3FCsQpfmtbp+glPaU0WXZfNmMjyqBRmMj1Sq93fPnC+G9zzYRauuRQA==", + "type": "package", + "path": "microsoft.extensions.localization.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml", + "microsoft.extensions.localization.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.localization.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/2.2.0": { + "sha512": "Nxqhadc9FCmFHzU+fz3oc8sFlE6IadViYg8dfUdGzJZ2JUxnCsRghBhhOWdM4B2zSZqEc+0BjliBh/oNdRZuig==", + "type": "package", + "path": "microsoft.extensions.logging/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.2.2.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "sha512": "B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging.Configuration/2.2.0": { + "sha512": "ukU1mQGX9+xBsEzpNd13yl4deFVYI+fxxnmKpOhvNZsF+/trCrAUQh+9QM5pPGHbfYkz3lLQ4BXfKCP0502dLw==", + "type": "package", + "path": "microsoft.extensions.logging.configuration/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml", + "microsoft.extensions.logging.configuration.2.2.0.nupkg.sha512", + "microsoft.extensions.logging.configuration.nuspec" + ] + }, + "Microsoft.Extensions.Logging.Console/2.2.0": { + "sha512": "1eGgcOJ++PMxW6sn++j6U7wsWvhEBm/5ScqBUUBGLRE8M7AHahi9tsxivDMqEXVM3F0/pshHl3kEpMXtw4BeFg==", + "type": "package", + "path": "microsoft.extensions.logging.console/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml", + "microsoft.extensions.logging.console.2.2.0.nupkg.sha512", + "microsoft.extensions.logging.console.nuspec" + ] + }, + "Microsoft.Extensions.Logging.Debug/2.2.0": { + "sha512": "JjqWtshxUujSnxslFccCRAaH8uFOciqXkYdRw+h5MwpC4sUc+ju9yZzvVi6PA5vW09ckv26EkasEvXrofGiaJg==", + "type": "package", + "path": "microsoft.extensions.logging.debug/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", + "microsoft.extensions.logging.debug.2.2.0.nupkg.sha512", + "microsoft.extensions.logging.debug.nuspec" + ] + }, + "Microsoft.Extensions.Logging.EventSource/2.2.0": { + "sha512": "oOa5H+vdNgpsxE6vgtX4U/godKtX2edVi+QjlWb2PBQfavGIQ3WxtjxN+B0DQAjwBNdV4mW8cgOiDEZ8KdR7Ig==", + "type": "package", + "path": "microsoft.extensions.logging.eventsource/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml", + "microsoft.extensions.logging.eventsource.2.2.0.nupkg.sha512", + "microsoft.extensions.logging.eventsource.nuspec" + ] + }, + "Microsoft.Extensions.Logging.TraceSource/2.2.0": { + "sha512": "2laIg/Mf1OhhduUKVN3//j+sYceyUocgGC/ySx6cnZFeNf2mezs32TmRZyzfkQAZQ6azlo/0wTxi8BgIVUyRYA==", + "type": "package", + "path": "microsoft.extensions.logging.tracesource/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.xml", + "microsoft.extensions.logging.tracesource.2.2.0.nupkg.sha512", + "microsoft.extensions.logging.tracesource.nuspec" + ] + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "type": "package", + "path": "microsoft.extensions.objectpool/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/2.2.0": { + "sha512": "UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==", + "type": "package", + "path": "microsoft.extensions.options/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.2.2.0.nupkg.sha512", + "microsoft.extensions.options.nuspec" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/2.2.0": { + "sha512": "d4WS6yVXaw43ffiUnHj8oG1t2B6RbDDiQcgdA+Eq//NlPa3Wd+GTJFKj4OM4eDF3GjVumGr/CEVRS/jcYoF5LA==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.2.2.0.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec" + ] + }, + "Microsoft.Extensions.Options.DataAnnotations/2.2.0": { + "sha512": "Xk7okx/u+ZQb8xvz71FwVmfZjwDh2DWrovhtQXprWE16KqaP8bs6A8wb0h9nTSFh9rcFDVeo42d47iduu01XvQ==", + "type": "package", + "path": "microsoft.extensions.options.dataannotations/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Options.DataAnnotations.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.DataAnnotations.xml", + "microsoft.extensions.options.dataannotations.2.2.0.nupkg.sha512", + "microsoft.extensions.options.dataannotations.nuspec" + ] + }, + "Microsoft.Extensions.Primitives/2.2.0": { + "sha512": "azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==", + "type": "package", + "path": "microsoft.extensions.primitives/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.2.2.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec" + ] + }, + "Microsoft.Extensions.WebEncoders/2.2.0": { + "sha512": "V8XcqYcpcdBAxUhLeyYcuKmxu4CtNQA9IphTnARpQGhkop4A93v2XgM3AtaVVJo3H2cDWxWM6aeO8HxkifREqw==", + "type": "package", + "path": "microsoft.extensions.webencoders/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll", + "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.xml", + "microsoft.extensions.webencoders.2.2.0.nupkg.sha512", + "microsoft.extensions.webencoders.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/5.3.0": { + "sha512": "5LW5VYvGZLvrbEGxyaE6dSQhT1B5frnpwX/c4/PWrNXeuJ6GkYmiOPf2u5Iwk1qQXPTvDedwEfnBg+i/0cFAyA==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/5.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.pdb", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net451/Microsoft.IdentityModel.JsonWebTokens.pdb", + "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.pdb", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.pdb", + "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.pdb", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.5.3.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/5.3.0": { + "sha512": "o+bBauEMOi6ZI0MlJEC69Sw9UPwKLFmN+lD942g9UCx5pfiLFvJBKp8OPmxtGFL02ZxzXCIUyhyKn85izBDsnQ==", + "type": "package", + "path": "microsoft.identitymodel.logging/5.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.pdb", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net451/Microsoft.IdentityModel.Logging.dll", + "lib/net451/Microsoft.IdentityModel.Logging.pdb", + "lib/net451/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.pdb", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard1.4/Microsoft.IdentityModel.Logging.pdb", + "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.pdb", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.5.3.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/5.3.0": { + "sha512": "o2Fx9cYQHKtOyVrCXB41kEmny1Zvm+fqXNTD5heB9yPY0C+qYm7fo1yCvtHaH2JPEersGW0iS2dE0s65kWkVEw==", + "type": "package", + "path": "microsoft.identitymodel.protocols/5.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.pdb", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net451/Microsoft.IdentityModel.Protocols.dll", + "lib/net451/Microsoft.IdentityModel.Protocols.pdb", + "lib/net451/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.pdb", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.pdb", + "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.pdb", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.5.3.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.3.0": { + "sha512": "NihXp2JT3fRbTq6AOQhEQT8TuJzhUNg9TOeK+TxlkkvanllWFF0gfXH5hTRn9Qn68HJQXtp/mtLbCWzi+4bCSg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/5.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb", + "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb", + "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.5.3.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.WsFederation/5.3.0": { + "sha512": "6nGUoC+foCQ2UTsRD/Z6TLgsghuX10tunLXxuLE+LljW9H1oANqAQWrP8DNP++nfXke+qu1zVi6yBl6MMK/Dfg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.wsfederation/5.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.WsFederation.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.WsFederation.pdb", + "lib/net45/Microsoft.IdentityModel.Protocols.WsFederation.xml", + "lib/net451/Microsoft.IdentityModel.Protocols.WsFederation.dll", + "lib/net451/Microsoft.IdentityModel.Protocols.WsFederation.pdb", + "lib/net451/Microsoft.IdentityModel.Protocols.WsFederation.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.WsFederation.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.WsFederation.pdb", + "lib/net461/Microsoft.IdentityModel.Protocols.WsFederation.xml", + "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.WsFederation.dll", + "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.WsFederation.pdb", + "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.WsFederation.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.WsFederation.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.WsFederation.pdb", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.WsFederation.xml", + "microsoft.identitymodel.protocols.wsfederation.5.3.0.nupkg.sha512", + "microsoft.identitymodel.protocols.wsfederation.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/5.3.0": { + "sha512": "/piauST4FL0qzVI6oqLWxqhFReg12KwVGy0jRlnVOpGMeOVSKdtNVtHsN/hARc25hOOPEp9WKMce5ILzyMx/tQ==", + "type": "package", + "path": "microsoft.identitymodel.tokens/5.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.pdb", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net451/Microsoft.IdentityModel.Tokens.dll", + "lib/net451/Microsoft.IdentityModel.Tokens.pdb", + "lib/net451/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.pdb", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.pdb", + "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.pdb", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.5.3.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens.Saml/5.3.0": { + "sha512": "XS6zgN7jKG7QDqG3fV9BRADs8HmRJ6vJDKVBPFFly9MCkS6KMFps4hBdBJ5ycPrXtPBfnISCLiGLHP54blCvWw==", + "type": "package", + "path": "microsoft.identitymodel.tokens.saml/5.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.Saml.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.Saml.pdb", + "lib/net45/Microsoft.IdentityModel.Tokens.Saml.xml", + "lib/net451/Microsoft.IdentityModel.Tokens.Saml.dll", + "lib/net451/Microsoft.IdentityModel.Tokens.Saml.pdb", + "lib/net451/Microsoft.IdentityModel.Tokens.Saml.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.Saml.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.Saml.pdb", + "lib/net461/Microsoft.IdentityModel.Tokens.Saml.xml", + "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.Saml.dll", + "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.Saml.pdb", + "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.Saml.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.pdb", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.xml", + "microsoft.identitymodel.tokens.saml.5.3.0.nupkg.sha512", + "microsoft.identitymodel.tokens.saml.nuspec" + ] + }, + "Microsoft.IdentityModel.Xml/5.3.0": { + "sha512": "i4uFRjipeRXGhyfHmJaZ3PkOQIWhwxBJABNDWNaxcwUvramMCWYRLE1P3g4sLjiw8zXehH6eZwxww8F+dB7/+g==", + "type": "package", + "path": "microsoft.identitymodel.xml/5.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Xml.dll", + "lib/net45/Microsoft.IdentityModel.Xml.pdb", + "lib/net45/Microsoft.IdentityModel.Xml.xml", + "lib/net451/Microsoft.IdentityModel.Xml.dll", + "lib/net451/Microsoft.IdentityModel.Xml.pdb", + "lib/net451/Microsoft.IdentityModel.Xml.xml", + "lib/net461/Microsoft.IdentityModel.Xml.dll", + "lib/net461/Microsoft.IdentityModel.Xml.pdb", + "lib/net461/Microsoft.IdentityModel.Xml.xml", + "lib/netstandard1.4/Microsoft.IdentityModel.Xml.dll", + "lib/netstandard1.4/Microsoft.IdentityModel.Xml.pdb", + "lib/netstandard1.4/Microsoft.IdentityModel.Xml.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Xml.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Xml.pdb", + "lib/netstandard2.0/Microsoft.IdentityModel.Xml.xml", + "microsoft.identitymodel.xml.5.3.0.nupkg.sha512", + "microsoft.identitymodel.xml.nuspec" + ] + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "type": "package", + "path": "microsoft.net.http.headers/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", + "microsoft.net.http.headers.2.2.0.nupkg.sha512", + "microsoft.net.http.headers.nuspec" + ] + }, + "Microsoft.NETCore.App/2.2.0": { + "sha512": "7z5l8Jp324S8bU8+yyWeYHXUFYvKyiI5lqS1dXgTzOx1H69Qbf6df12kCKlNX45LpMfCMd4U3M6p7Rl5Zk7SLA==", + "type": "package", + "path": "microsoft.netcore.app/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "Microsoft.NETCore.App.versions.txt", + "THIRD-PARTY-NOTICES.TXT", + "build/netcoreapp2.2/Microsoft.NETCore.App.PlatformManifest.txt", + "build/netcoreapp2.2/Microsoft.NETCore.App.props", + "build/netcoreapp2.2/Microsoft.NETCore.App.targets", + "microsoft.netcore.app.2.2.0.nupkg.sha512", + "microsoft.netcore.app.nuspec", + "ref/netcoreapp2.2/Microsoft.CSharp.dll", + "ref/netcoreapp2.2/Microsoft.CSharp.xml", + "ref/netcoreapp2.2/Microsoft.VisualBasic.dll", + "ref/netcoreapp2.2/Microsoft.VisualBasic.xml", + "ref/netcoreapp2.2/Microsoft.Win32.Primitives.dll", + "ref/netcoreapp2.2/Microsoft.Win32.Primitives.xml", + "ref/netcoreapp2.2/System.AppContext.dll", + "ref/netcoreapp2.2/System.Buffers.dll", + "ref/netcoreapp2.2/System.Buffers.xml", + "ref/netcoreapp2.2/System.Collections.Concurrent.dll", + "ref/netcoreapp2.2/System.Collections.Concurrent.xml", + "ref/netcoreapp2.2/System.Collections.Immutable.dll", + "ref/netcoreapp2.2/System.Collections.Immutable.xml", + "ref/netcoreapp2.2/System.Collections.NonGeneric.dll", + "ref/netcoreapp2.2/System.Collections.NonGeneric.xml", + "ref/netcoreapp2.2/System.Collections.Specialized.dll", + "ref/netcoreapp2.2/System.Collections.Specialized.xml", + "ref/netcoreapp2.2/System.Collections.dll", + "ref/netcoreapp2.2/System.Collections.xml", + "ref/netcoreapp2.2/System.ComponentModel.Annotations.dll", + "ref/netcoreapp2.2/System.ComponentModel.Annotations.xml", + "ref/netcoreapp2.2/System.ComponentModel.DataAnnotations.dll", + "ref/netcoreapp2.2/System.ComponentModel.EventBasedAsync.dll", + "ref/netcoreapp2.2/System.ComponentModel.EventBasedAsync.xml", + "ref/netcoreapp2.2/System.ComponentModel.Primitives.dll", + "ref/netcoreapp2.2/System.ComponentModel.Primitives.xml", + "ref/netcoreapp2.2/System.ComponentModel.TypeConverter.dll", + "ref/netcoreapp2.2/System.ComponentModel.TypeConverter.xml", + "ref/netcoreapp2.2/System.ComponentModel.dll", + "ref/netcoreapp2.2/System.ComponentModel.xml", + "ref/netcoreapp2.2/System.Configuration.dll", + "ref/netcoreapp2.2/System.Console.dll", + "ref/netcoreapp2.2/System.Console.xml", + "ref/netcoreapp2.2/System.Core.dll", + "ref/netcoreapp2.2/System.Data.Common.dll", + "ref/netcoreapp2.2/System.Data.Common.xml", + "ref/netcoreapp2.2/System.Data.dll", + "ref/netcoreapp2.2/System.Diagnostics.Contracts.dll", + "ref/netcoreapp2.2/System.Diagnostics.Contracts.xml", + "ref/netcoreapp2.2/System.Diagnostics.Debug.dll", + "ref/netcoreapp2.2/System.Diagnostics.Debug.xml", + "ref/netcoreapp2.2/System.Diagnostics.DiagnosticSource.dll", + "ref/netcoreapp2.2/System.Diagnostics.DiagnosticSource.xml", + "ref/netcoreapp2.2/System.Diagnostics.FileVersionInfo.dll", + "ref/netcoreapp2.2/System.Diagnostics.FileVersionInfo.xml", + "ref/netcoreapp2.2/System.Diagnostics.Process.dll", + "ref/netcoreapp2.2/System.Diagnostics.Process.xml", + "ref/netcoreapp2.2/System.Diagnostics.StackTrace.dll", + "ref/netcoreapp2.2/System.Diagnostics.StackTrace.xml", + "ref/netcoreapp2.2/System.Diagnostics.TextWriterTraceListener.dll", + "ref/netcoreapp2.2/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netcoreapp2.2/System.Diagnostics.Tools.dll", + "ref/netcoreapp2.2/System.Diagnostics.Tools.xml", + "ref/netcoreapp2.2/System.Diagnostics.TraceSource.dll", + "ref/netcoreapp2.2/System.Diagnostics.TraceSource.xml", + "ref/netcoreapp2.2/System.Diagnostics.Tracing.dll", + "ref/netcoreapp2.2/System.Diagnostics.Tracing.xml", + "ref/netcoreapp2.2/System.Drawing.Primitives.dll", + "ref/netcoreapp2.2/System.Drawing.Primitives.xml", + "ref/netcoreapp2.2/System.Drawing.dll", + "ref/netcoreapp2.2/System.Dynamic.Runtime.dll", + "ref/netcoreapp2.2/System.Globalization.Calendars.dll", + "ref/netcoreapp2.2/System.Globalization.Extensions.dll", + "ref/netcoreapp2.2/System.Globalization.dll", + "ref/netcoreapp2.2/System.IO.Compression.Brotli.dll", + "ref/netcoreapp2.2/System.IO.Compression.FileSystem.dll", + "ref/netcoreapp2.2/System.IO.Compression.ZipFile.dll", + "ref/netcoreapp2.2/System.IO.Compression.ZipFile.xml", + "ref/netcoreapp2.2/System.IO.Compression.dll", + "ref/netcoreapp2.2/System.IO.Compression.xml", + "ref/netcoreapp2.2/System.IO.FileSystem.DriveInfo.dll", + "ref/netcoreapp2.2/System.IO.FileSystem.DriveInfo.xml", + "ref/netcoreapp2.2/System.IO.FileSystem.Primitives.dll", + "ref/netcoreapp2.2/System.IO.FileSystem.Watcher.dll", + "ref/netcoreapp2.2/System.IO.FileSystem.Watcher.xml", + "ref/netcoreapp2.2/System.IO.FileSystem.dll", + "ref/netcoreapp2.2/System.IO.FileSystem.xml", + "ref/netcoreapp2.2/System.IO.IsolatedStorage.dll", + "ref/netcoreapp2.2/System.IO.IsolatedStorage.xml", + "ref/netcoreapp2.2/System.IO.MemoryMappedFiles.dll", + "ref/netcoreapp2.2/System.IO.MemoryMappedFiles.xml", + "ref/netcoreapp2.2/System.IO.Pipes.dll", + "ref/netcoreapp2.2/System.IO.Pipes.xml", + "ref/netcoreapp2.2/System.IO.UnmanagedMemoryStream.dll", + "ref/netcoreapp2.2/System.IO.dll", + "ref/netcoreapp2.2/System.Linq.Expressions.dll", + "ref/netcoreapp2.2/System.Linq.Expressions.xml", + "ref/netcoreapp2.2/System.Linq.Parallel.dll", + "ref/netcoreapp2.2/System.Linq.Parallel.xml", + "ref/netcoreapp2.2/System.Linq.Queryable.dll", + "ref/netcoreapp2.2/System.Linq.Queryable.xml", + "ref/netcoreapp2.2/System.Linq.dll", + "ref/netcoreapp2.2/System.Linq.xml", + "ref/netcoreapp2.2/System.Memory.dll", + "ref/netcoreapp2.2/System.Memory.xml", + "ref/netcoreapp2.2/System.Net.Http.dll", + "ref/netcoreapp2.2/System.Net.Http.xml", + "ref/netcoreapp2.2/System.Net.HttpListener.dll", + "ref/netcoreapp2.2/System.Net.HttpListener.xml", + "ref/netcoreapp2.2/System.Net.Mail.dll", + "ref/netcoreapp2.2/System.Net.Mail.xml", + "ref/netcoreapp2.2/System.Net.NameResolution.dll", + "ref/netcoreapp2.2/System.Net.NameResolution.xml", + "ref/netcoreapp2.2/System.Net.NetworkInformation.dll", + "ref/netcoreapp2.2/System.Net.NetworkInformation.xml", + "ref/netcoreapp2.2/System.Net.Ping.dll", + "ref/netcoreapp2.2/System.Net.Ping.xml", + "ref/netcoreapp2.2/System.Net.Primitives.dll", + "ref/netcoreapp2.2/System.Net.Primitives.xml", + "ref/netcoreapp2.2/System.Net.Requests.dll", + "ref/netcoreapp2.2/System.Net.Requests.xml", + "ref/netcoreapp2.2/System.Net.Security.dll", + "ref/netcoreapp2.2/System.Net.Security.xml", + "ref/netcoreapp2.2/System.Net.ServicePoint.dll", + "ref/netcoreapp2.2/System.Net.ServicePoint.xml", + "ref/netcoreapp2.2/System.Net.Sockets.dll", + "ref/netcoreapp2.2/System.Net.Sockets.xml", + "ref/netcoreapp2.2/System.Net.WebClient.dll", + "ref/netcoreapp2.2/System.Net.WebClient.xml", + "ref/netcoreapp2.2/System.Net.WebHeaderCollection.dll", + "ref/netcoreapp2.2/System.Net.WebHeaderCollection.xml", + "ref/netcoreapp2.2/System.Net.WebProxy.dll", + "ref/netcoreapp2.2/System.Net.WebProxy.xml", + "ref/netcoreapp2.2/System.Net.WebSockets.Client.dll", + "ref/netcoreapp2.2/System.Net.WebSockets.Client.xml", + "ref/netcoreapp2.2/System.Net.WebSockets.dll", + "ref/netcoreapp2.2/System.Net.WebSockets.xml", + "ref/netcoreapp2.2/System.Net.dll", + "ref/netcoreapp2.2/System.Numerics.Vectors.dll", + "ref/netcoreapp2.2/System.Numerics.Vectors.xml", + "ref/netcoreapp2.2/System.Numerics.dll", + "ref/netcoreapp2.2/System.ObjectModel.dll", + "ref/netcoreapp2.2/System.ObjectModel.xml", + "ref/netcoreapp2.2/System.Reflection.DispatchProxy.dll", + "ref/netcoreapp2.2/System.Reflection.DispatchProxy.xml", + "ref/netcoreapp2.2/System.Reflection.Emit.ILGeneration.dll", + "ref/netcoreapp2.2/System.Reflection.Emit.ILGeneration.xml", + "ref/netcoreapp2.2/System.Reflection.Emit.Lightweight.dll", + "ref/netcoreapp2.2/System.Reflection.Emit.Lightweight.xml", + "ref/netcoreapp2.2/System.Reflection.Emit.dll", + "ref/netcoreapp2.2/System.Reflection.Emit.xml", + "ref/netcoreapp2.2/System.Reflection.Extensions.dll", + "ref/netcoreapp2.2/System.Reflection.Metadata.dll", + "ref/netcoreapp2.2/System.Reflection.Metadata.xml", + "ref/netcoreapp2.2/System.Reflection.Primitives.dll", + "ref/netcoreapp2.2/System.Reflection.Primitives.xml", + "ref/netcoreapp2.2/System.Reflection.TypeExtensions.dll", + "ref/netcoreapp2.2/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp2.2/System.Reflection.dll", + "ref/netcoreapp2.2/System.Resources.Reader.dll", + "ref/netcoreapp2.2/System.Resources.ResourceManager.dll", + "ref/netcoreapp2.2/System.Resources.ResourceManager.xml", + "ref/netcoreapp2.2/System.Resources.Writer.dll", + "ref/netcoreapp2.2/System.Resources.Writer.xml", + "ref/netcoreapp2.2/System.Runtime.CompilerServices.VisualC.dll", + "ref/netcoreapp2.2/System.Runtime.CompilerServices.VisualC.xml", + "ref/netcoreapp2.2/System.Runtime.Extensions.dll", + "ref/netcoreapp2.2/System.Runtime.Extensions.xml", + "ref/netcoreapp2.2/System.Runtime.Handles.dll", + "ref/netcoreapp2.2/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/netcoreapp2.2/System.Runtime.InteropServices.RuntimeInformation.xml", + "ref/netcoreapp2.2/System.Runtime.InteropServices.WindowsRuntime.dll", + "ref/netcoreapp2.2/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netcoreapp2.2/System.Runtime.InteropServices.dll", + "ref/netcoreapp2.2/System.Runtime.InteropServices.xml", + "ref/netcoreapp2.2/System.Runtime.Loader.dll", + "ref/netcoreapp2.2/System.Runtime.Loader.xml", + "ref/netcoreapp2.2/System.Runtime.Numerics.dll", + "ref/netcoreapp2.2/System.Runtime.Numerics.xml", + "ref/netcoreapp2.2/System.Runtime.Serialization.Formatters.dll", + "ref/netcoreapp2.2/System.Runtime.Serialization.Formatters.xml", + "ref/netcoreapp2.2/System.Runtime.Serialization.Json.dll", + "ref/netcoreapp2.2/System.Runtime.Serialization.Json.xml", + "ref/netcoreapp2.2/System.Runtime.Serialization.Primitives.dll", + "ref/netcoreapp2.2/System.Runtime.Serialization.Primitives.xml", + "ref/netcoreapp2.2/System.Runtime.Serialization.Xml.dll", + "ref/netcoreapp2.2/System.Runtime.Serialization.Xml.xml", + "ref/netcoreapp2.2/System.Runtime.Serialization.dll", + "ref/netcoreapp2.2/System.Runtime.dll", + "ref/netcoreapp2.2/System.Runtime.xml", + "ref/netcoreapp2.2/System.Security.Claims.dll", + "ref/netcoreapp2.2/System.Security.Claims.xml", + "ref/netcoreapp2.2/System.Security.Cryptography.Algorithms.dll", + "ref/netcoreapp2.2/System.Security.Cryptography.Algorithms.xml", + "ref/netcoreapp2.2/System.Security.Cryptography.Csp.dll", + "ref/netcoreapp2.2/System.Security.Cryptography.Csp.xml", + "ref/netcoreapp2.2/System.Security.Cryptography.Encoding.dll", + "ref/netcoreapp2.2/System.Security.Cryptography.Encoding.xml", + "ref/netcoreapp2.2/System.Security.Cryptography.Primitives.dll", + "ref/netcoreapp2.2/System.Security.Cryptography.Primitives.xml", + "ref/netcoreapp2.2/System.Security.Cryptography.X509Certificates.dll", + "ref/netcoreapp2.2/System.Security.Cryptography.X509Certificates.xml", + "ref/netcoreapp2.2/System.Security.Principal.dll", + "ref/netcoreapp2.2/System.Security.Principal.xml", + "ref/netcoreapp2.2/System.Security.SecureString.dll", + "ref/netcoreapp2.2/System.Security.dll", + "ref/netcoreapp2.2/System.ServiceModel.Web.dll", + "ref/netcoreapp2.2/System.ServiceProcess.dll", + "ref/netcoreapp2.2/System.Text.Encoding.Extensions.dll", + "ref/netcoreapp2.2/System.Text.Encoding.Extensions.xml", + "ref/netcoreapp2.2/System.Text.Encoding.dll", + "ref/netcoreapp2.2/System.Text.RegularExpressions.dll", + "ref/netcoreapp2.2/System.Text.RegularExpressions.xml", + "ref/netcoreapp2.2/System.Threading.Overlapped.dll", + "ref/netcoreapp2.2/System.Threading.Overlapped.xml", + "ref/netcoreapp2.2/System.Threading.Tasks.Dataflow.dll", + "ref/netcoreapp2.2/System.Threading.Tasks.Dataflow.xml", + "ref/netcoreapp2.2/System.Threading.Tasks.Extensions.dll", + "ref/netcoreapp2.2/System.Threading.Tasks.Extensions.xml", + "ref/netcoreapp2.2/System.Threading.Tasks.Parallel.dll", + "ref/netcoreapp2.2/System.Threading.Tasks.Parallel.xml", + "ref/netcoreapp2.2/System.Threading.Tasks.dll", + "ref/netcoreapp2.2/System.Threading.Tasks.xml", + "ref/netcoreapp2.2/System.Threading.Thread.dll", + "ref/netcoreapp2.2/System.Threading.Thread.xml", + "ref/netcoreapp2.2/System.Threading.ThreadPool.dll", + "ref/netcoreapp2.2/System.Threading.ThreadPool.xml", + "ref/netcoreapp2.2/System.Threading.Timer.dll", + "ref/netcoreapp2.2/System.Threading.Timer.xml", + "ref/netcoreapp2.2/System.Threading.dll", + "ref/netcoreapp2.2/System.Threading.xml", + "ref/netcoreapp2.2/System.Transactions.Local.dll", + "ref/netcoreapp2.2/System.Transactions.Local.xml", + "ref/netcoreapp2.2/System.Transactions.dll", + "ref/netcoreapp2.2/System.ValueTuple.dll", + "ref/netcoreapp2.2/System.Web.HttpUtility.dll", + "ref/netcoreapp2.2/System.Web.HttpUtility.xml", + "ref/netcoreapp2.2/System.Web.dll", + "ref/netcoreapp2.2/System.Windows.dll", + "ref/netcoreapp2.2/System.Xml.Linq.dll", + "ref/netcoreapp2.2/System.Xml.ReaderWriter.dll", + "ref/netcoreapp2.2/System.Xml.ReaderWriter.xml", + "ref/netcoreapp2.2/System.Xml.Serialization.dll", + "ref/netcoreapp2.2/System.Xml.XDocument.dll", + "ref/netcoreapp2.2/System.Xml.XDocument.xml", + "ref/netcoreapp2.2/System.Xml.XPath.XDocument.dll", + "ref/netcoreapp2.2/System.Xml.XPath.XDocument.xml", + "ref/netcoreapp2.2/System.Xml.XPath.dll", + "ref/netcoreapp2.2/System.Xml.XPath.xml", + "ref/netcoreapp2.2/System.Xml.XmlDocument.dll", + "ref/netcoreapp2.2/System.Xml.XmlSerializer.dll", + "ref/netcoreapp2.2/System.Xml.XmlSerializer.xml", + "ref/netcoreapp2.2/System.Xml.dll", + "ref/netcoreapp2.2/System.dll", + "ref/netcoreapp2.2/WindowsBase.dll", + "ref/netcoreapp2.2/mscorlib.dll", + "ref/netcoreapp2.2/netstandard.dll", + "runtime.json" + ] + }, + "Microsoft.NETCore.DotNetAppHost/2.2.0": { + "sha512": "DrhaKInRKKvN6Ns2VNIlC7ZffLOp9THf8cO6X4fytPRJovJUbF49/zzx4WfgX9E44FMsw9hT8hrKiIqDSHvGvA==", + "type": "package", + "path": "microsoft.netcore.dotnetapphost/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.dotnetapphost.2.2.0.nupkg.sha512", + "microsoft.netcore.dotnetapphost.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.DotNetHostPolicy/2.2.0": { + "sha512": "FJie7IoPZFaPgNDxhZGmDBQP/Bs5vPdfca/G2Wf9gd6LIvMYkZcibtmJwB4tcf4KXkaOYfIOo4Cl9sEPMsSzkw==", + "type": "package", + "path": "microsoft.netcore.dotnethostpolicy/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.dotnethostpolicy.2.2.0.nupkg.sha512", + "microsoft.netcore.dotnethostpolicy.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.DotNetHostResolver/2.2.0": { + "sha512": "spDm3AJYmebthDNhzY17YLPtvbc+Y1lCLVeiIH1uLJ/hZaM+40pBiPefFR8J1u66Ndkqi8ipR2tEbqPnYnjRhw==", + "type": "package", + "path": "microsoft.netcore.dotnethostresolver/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.dotnethostresolver.2.2.0.nupkg.sha512", + "microsoft.netcore.dotnethostresolver.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Platforms/2.2.0": { + "sha512": "T/J+XZo+YheFTJh8/4uoeJDdz5qOmOMkjg6/VL8mHJ9AnP8+fmV/kcbxeXsob0irRNiChf+V0ig1MCRLp/+Kog==", + "type": "package", + "path": "microsoft.netcore.platforms/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.2.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/2.0.0": { + "sha512": "odP/tJj1z6GylFpNo7pMtbd/xQgTC3Ex2If63dRTL38bBNMwsBnJ+RceUIyHdRBC0oik/3NehYT+oECwBhIM3Q==", + "type": "package", + "path": "microsoft.netcore.targets/2.0.0", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.2.0.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Registry/4.5.0": { + "sha512": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==", + "type": "package", + "path": "microsoft.win32.registry/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "microsoft.win32.registry.4.5.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "NETStandard.Library/2.0.3": { + "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", + "type": "package", + "path": "netstandard.library/2.0.3", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/netstandard2.0/NETStandard.Library.targets", + "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", + "build/netstandard2.0/ref/System.AppContext.dll", + "build/netstandard2.0/ref/System.Collections.Concurrent.dll", + "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", + "build/netstandard2.0/ref/System.Collections.Specialized.dll", + "build/netstandard2.0/ref/System.Collections.dll", + "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", + "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", + "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", + "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", + "build/netstandard2.0/ref/System.ComponentModel.dll", + "build/netstandard2.0/ref/System.Console.dll", + "build/netstandard2.0/ref/System.Core.dll", + "build/netstandard2.0/ref/System.Data.Common.dll", + "build/netstandard2.0/ref/System.Data.dll", + "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", + "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", + "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", + "build/netstandard2.0/ref/System.Diagnostics.Process.dll", + "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", + "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", + "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", + "build/netstandard2.0/ref/System.Drawing.Primitives.dll", + "build/netstandard2.0/ref/System.Drawing.dll", + "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", + "build/netstandard2.0/ref/System.Globalization.Calendars.dll", + "build/netstandard2.0/ref/System.Globalization.Extensions.dll", + "build/netstandard2.0/ref/System.Globalization.dll", + "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", + "build/netstandard2.0/ref/System.IO.Compression.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", + "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", + "build/netstandard2.0/ref/System.IO.Pipes.dll", + "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", + "build/netstandard2.0/ref/System.IO.dll", + "build/netstandard2.0/ref/System.Linq.Expressions.dll", + "build/netstandard2.0/ref/System.Linq.Parallel.dll", + "build/netstandard2.0/ref/System.Linq.Queryable.dll", + "build/netstandard2.0/ref/System.Linq.dll", + "build/netstandard2.0/ref/System.Net.Http.dll", + "build/netstandard2.0/ref/System.Net.NameResolution.dll", + "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", + "build/netstandard2.0/ref/System.Net.Ping.dll", + "build/netstandard2.0/ref/System.Net.Primitives.dll", + "build/netstandard2.0/ref/System.Net.Requests.dll", + "build/netstandard2.0/ref/System.Net.Security.dll", + "build/netstandard2.0/ref/System.Net.Sockets.dll", + "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.dll", + "build/netstandard2.0/ref/System.Net.dll", + "build/netstandard2.0/ref/System.Numerics.dll", + "build/netstandard2.0/ref/System.ObjectModel.dll", + "build/netstandard2.0/ref/System.Reflection.Extensions.dll", + "build/netstandard2.0/ref/System.Reflection.Primitives.dll", + "build/netstandard2.0/ref/System.Reflection.dll", + "build/netstandard2.0/ref/System.Resources.Reader.dll", + "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", + "build/netstandard2.0/ref/System.Resources.Writer.dll", + "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", + "build/netstandard2.0/ref/System.Runtime.Extensions.dll", + "build/netstandard2.0/ref/System.Runtime.Handles.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", + "build/netstandard2.0/ref/System.Runtime.Numerics.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.dll", + "build/netstandard2.0/ref/System.Runtime.dll", + "build/netstandard2.0/ref/System.Security.Claims.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", + "build/netstandard2.0/ref/System.Security.Principal.dll", + "build/netstandard2.0/ref/System.Security.SecureString.dll", + "build/netstandard2.0/ref/System.ServiceModel.Web.dll", + "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", + "build/netstandard2.0/ref/System.Text.Encoding.dll", + "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", + "build/netstandard2.0/ref/System.Threading.Overlapped.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.dll", + "build/netstandard2.0/ref/System.Threading.Thread.dll", + "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", + "build/netstandard2.0/ref/System.Threading.Timer.dll", + "build/netstandard2.0/ref/System.Threading.dll", + "build/netstandard2.0/ref/System.Transactions.dll", + "build/netstandard2.0/ref/System.ValueTuple.dll", + "build/netstandard2.0/ref/System.Web.dll", + "build/netstandard2.0/ref/System.Windows.dll", + "build/netstandard2.0/ref/System.Xml.Linq.dll", + "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", + "build/netstandard2.0/ref/System.Xml.Serialization.dll", + "build/netstandard2.0/ref/System.Xml.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.dll", + "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", + "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", + "build/netstandard2.0/ref/System.Xml.dll", + "build/netstandard2.0/ref/System.dll", + "build/netstandard2.0/ref/mscorlib.dll", + "build/netstandard2.0/ref/netstandard.dll", + "build/netstandard2.0/ref/netstandard.xml", + "lib/netstandard1.0/_._", + "netstandard.library.2.0.3.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/11.0.2": { + "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "type": "package", + "path": "newtonsoft.json/11.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "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/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.11.0.2.nupkg.sha512", + "newtonsoft.json.nuspec" + ] + }, + "Newtonsoft.Json.Bson/1.0.1": { + "sha512": "5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==", + "type": "package", + "path": "newtonsoft.json.bson/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Newtonsoft.Json.Bson.dll", + "lib/net45/Newtonsoft.Json.Bson.xml", + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll", + "lib/netstandard1.3/Newtonsoft.Json.Bson.xml", + "newtonsoft.json.bson.1.0.1.nupkg.sha512", + "newtonsoft.json.bson.nuspec" + ] + }, + "Npgsql/4.0.7": { + "sha512": "MtKdc1CjuS0BnHti51Skw5A1cbk0JmUxgRIepqq8zkgZ3kYpBOQJcrTGH+305I7kqQBtGs9Y/kpJjv/GBExulw==", + "type": "package", + "path": "npgsql/4.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Npgsql.dll", + "lib/net45/Npgsql.pdb", + "lib/net45/Npgsql.xml", + "lib/net451/Npgsql.dll", + "lib/net451/Npgsql.pdb", + "lib/net451/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.pdb", + "lib/netstandard2.0/Npgsql.xml", + "npgsql.4.0.7.nupkg.sha512", + "npgsql.nuspec" + ] + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/2.2.4": { + "sha512": "5UriY41Ef+4JoHFl6fH568JmrPHPQPpWBgoEJOAeYWQYQXaT2d5e/mCznzns6jKziZJIEPwd+E42QI3HmJT9WQ==", + "type": "package", + "path": "npgsql.entityframeworkcore.postgresql/2.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", + "lib/netstandard2.0/Npgsql.EntityFrameworkCore.PostgreSQL.pdb", + "npgsql.entityframeworkcore.postgresql.2.2.4.nupkg.sha512", + "npgsql.entityframeworkcore.postgresql.nuspec" + ] + }, + "Remotion.Linq/2.2.0": { + "sha512": "fK/76UmpC0FXBlGDFVPLJHQlDLYnGC+XY3eoDgCgbtrhi0vzbXDQ3n/IYHhqSKqXQfGw/u04A1drWs7rFVkRjw==", + "type": "package", + "path": "remotion.linq/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/Remotion.Linq.XML", + "lib/net35/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/netstandard1.0/Remotion.Linq.dll", + "lib/netstandard1.0/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "remotion.linq.2.2.0.nupkg.sha512", + "remotion.linq.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "LdIvj7Bi2jiaNTqY/ezZGVXHe1KI5fjLSI026O1TjVzsmdgTP/zTF+f3nwHCjwttyhsPBEiswv0PekimPWZwWg==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.5.0": { + "sha512": "AJfX7owAAkMjWQYhoml5IBfXh8UyYPjktn8pK0BFGAdKgBS7HqMz1fw5vdzfZUWfhtTPDGCjgNttt46ZyEmSjg==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.5.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "b+V9JC/Ii3sR659flBeaBJww111425tgjcDS1k+hqV4sGh9FALRDBvJnDtQ895gAzpPTUOFDHdqaZ2Et7BpZMg==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "Kh9W4agE0r/hK8AX1LvyQI2NrKHBL8pO0gRoDTdDb0LL6Ta1Z2OtFx3lOaAE0ZpCUc/dt9Wzs3rA7a3IsKdOVA==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.5.0": { + "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", + "type": "package", + "path": "system.buffers/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.0.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "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/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "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/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.5.0": { + "sha512": "EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==", + "type": "package", + "path": "system.collections.immutable/1.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.5.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "NoPBj0ykejqAWW4p4gGtrrL+3c84ZLSvGnHgq422ew1Rj4WKj1FA8/BCybqC111EtgcqUl6ZJNFYYS22HLgbjA==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.5.0": { + "sha512": "UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", + "type": "package", + "path": "system.componentmodel.annotations/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/portable-net45+win8/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.4.5.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Data.SqlClient/4.6.0": { + "sha512": "gwItUWW1BMCckicFO85c8frFaMK8SGqYn5IeA3GSX4Lmid+CjXETfoHz7Uv+Vx6L0No7iRc/7cBL8gd6o9k9/g==", + "type": "package", + "path": "system.data.sqlclient/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/netcoreapp2.1/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netcoreapp2.1/System.Data.SqlClient.dll", + "ref/netcoreapp2.1/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", + "system.data.sqlclient.4.6.0.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Contracts/4.3.0": { + "sha512": "eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==", + "type": "package", + "path": "system.diagnostics.contracts/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/netstandard1.0/System.Diagnostics.Contracts.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/netcore50/System.Diagnostics.Contracts.xml", + "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/zh-hans/System.Diagnostics.Contracts.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/System.Diagnostics.Contracts.dll", + "ref/netstandard1.0/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/de/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/es/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/it/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "system.diagnostics.contracts.4.3.0.nupkg.sha512", + "system.diagnostics.contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "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/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.5.0": { + "sha512": "eIHRELiYDQvsMToML81QFkXEEYXUSUT2F28t1SGrevWqP+epFdw80SyAXIKTXOHrIEXReFOEnEr7XlGiC2GgOg==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Diagnostics.DiagnosticSource.dll", + "lib/net45/System.Diagnostics.DiagnosticSource.xml", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.FileVersionInfo/4.3.0": { + "sha512": "omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==", + "type": "package", + "path": "system.diagnostics.fileversioninfo/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.FileVersionInfo.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.FileVersionInfo.dll", + "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", + "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", + "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512", + "system.diagnostics.fileversioninfo.nuspec" + ] + }, + "System.Diagnostics.StackTrace/4.3.0": { + "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "type": "package", + "path": "system.diagnostics.stacktrace/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.StackTrace.dll", + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.StackTrace.dll", + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll", + "ref/netstandard1.3/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll", + "system.diagnostics.stacktrace.4.3.0.nupkg.sha512", + "system.diagnostics.stacktrace.nuspec" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "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/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "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/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "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/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/5.3.0": { + "sha512": "EdcMk+36u9gQtbwTiPQ7ckIfiADBwOmCZ6rGD2rfkaozIdW1t7vbXk/FPVAu2r9KgCQZ5245Z+P0YMM/0Q0G2g==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/5.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.pdb", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net451/System.IdentityModel.Tokens.Jwt.dll", + "lib/net451/System.IdentityModel.Tokens.Jwt.pdb", + "lib/net451/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.pdb", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.pdb", + "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.pdb", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.5.3.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.Interactive.Async/3.2.0": { + "sha512": "C07p0dAA5lGqYUPiPCK3paR709gqS4aMDDsje0v0pvffwzLaxmsn5YQTfZbyNG5qrudPx+BCxTqISnncQ3wIoQ==", + "type": "package", + "path": "system.interactive.async/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.xml", + "lib/net46/System.Interactive.Async.dll", + "lib/net46/System.Interactive.Async.xml", + "lib/netstandard1.0/System.Interactive.Async.dll", + "lib/netstandard1.0/System.Interactive.Async.xml", + "lib/netstandard1.3/System.Interactive.Async.dll", + "lib/netstandard1.3/System.Interactive.Async.xml", + "lib/netstandard2.0/System.Interactive.Async.dll", + "lib/netstandard2.0/System.Interactive.Async.xml", + "system.interactive.async.3.2.0.nupkg.sha512", + "system.interactive.async.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "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/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.IO.Pipelines/4.5.2": { + "sha512": "NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "type": "package", + "path": "system.io.pipelines/4.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/System.IO.Pipelines.dll", + "lib/netcoreapp2.1/System.IO.Pipelines.xml", + "lib/netstandard1.3/System.IO.Pipelines.dll", + "lib/netstandard1.3/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "ref/netstandard1.3/System.IO.Pipelines.dll", + "system.io.pipelines.4.5.2.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "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/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "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/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.1": { + "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", + "type": "package", + "path": "system.linq.queryable/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Queryable.dll", + "lib/netstandard1.3/System.Linq.Queryable.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Linq.Queryable.dll", + "ref/netcore50/System.Linq.Queryable.xml", + "ref/netcore50/de/System.Linq.Queryable.xml", + "ref/netcore50/es/System.Linq.Queryable.xml", + "ref/netcore50/fr/System.Linq.Queryable.xml", + "ref/netcore50/it/System.Linq.Queryable.xml", + "ref/netcore50/ja/System.Linq.Queryable.xml", + "ref/netcore50/ko/System.Linq.Queryable.xml", + "ref/netcore50/ru/System.Linq.Queryable.xml", + "ref/netcore50/zh-hans/System.Linq.Queryable.xml", + "ref/netcore50/zh-hant/System.Linq.Queryable.xml", + "ref/netstandard1.0/System.Linq.Queryable.dll", + "ref/netstandard1.0/System.Linq.Queryable.xml", + "ref/netstandard1.0/de/System.Linq.Queryable.xml", + "ref/netstandard1.0/es/System.Linq.Queryable.xml", + "ref/netstandard1.0/fr/System.Linq.Queryable.xml", + "ref/netstandard1.0/it/System.Linq.Queryable.xml", + "ref/netstandard1.0/ja/System.Linq.Queryable.xml", + "ref/netstandard1.0/ko/System.Linq.Queryable.xml", + "ref/netstandard1.0/ru/System.Linq.Queryable.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.queryable.4.0.1.nupkg.sha512", + "system.linq.queryable.nuspec" + ] + }, + "System.Memory/4.5.3": { + "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "type": "package", + "path": "system.memory/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.3.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "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/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "sha512": "FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==", + "type": "package", + "path": "system.net.websockets.websocketprotocol/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll", + "lib/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll", + "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll", + "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512", + "system.net.websockets.websocketprotocol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Private.DataContractSerialization/4.3.0": { + "sha512": "yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==", + "type": "package", + "path": "system.private.datacontractserialization/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.3/System.Private.DataContractSerialization.dll", + "ref/netstandard/_._", + "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll", + "system.private.datacontractserialization.4.3.0.nupkg.sha512", + "system.private.datacontractserialization.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "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/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.6.0": { + "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "type": "package", + "path": "system.reflection.metadata/1.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.6.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "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/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "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/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.CompilerServices.Unsafe/4.5.2": { + "sha512": "wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "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/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "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/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Runtime.Serialization.Xml/4.3.0": { + "sha512": "nUQx/5OVgrqEba3+j7OdiofvVq9koWZAC7Z3xGI8IIViZqApWnZ5+lLcwYgTlbkobrl/Rat+Jb8GeD4WQESD2A==", + "type": "package", + "path": "system.runtime.serialization.xml/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Xml.dll", + "lib/netcore50/System.Runtime.Serialization.Xml.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Xml.dll", + "ref/netcore50/System.Runtime.Serialization.Xml.dll", + "ref/netcore50/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/de/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/es/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/it/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Xml.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.xml.4.3.0.nupkg.sha512", + "system.runtime.serialization.xml.nuspec" + ] + }, + "System.Security.AccessControl/4.5.0": { + "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "type": "package", + "path": "system.security.accesscontrol/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.5.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Claims/4.3.0": { + "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "type": "package", + "path": "system.security.claims/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.3.0.nupkg.sha512", + "system.security.claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "yO2k5o+Z+DiFRBvvB9vdRRAGHi6bm02M9OWXfCqQ8K0UxD3Woc3svQheZfb7PoTEFs0kGacO0IzzMWsb6Mkeow==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "vOYy7Jv9KsG3ld2hLt0GoERd82SZi4BelrbXLwI9yFBYX7kpbvUCWYo4eyevk47cuJXZ9ZLVAryANcc7iY71aA==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Pkcs/4.5.0": { + "sha512": "TGQX51gxpY3K3I6LJlE2LAftVlIMqJf0cBGhz68Y89jjk3LJCB6SrwiD+YN1fkqemBvWGs+GjyMJukl6d6goyQ==", + "type": "package", + "path": "system.security.cryptography.pkcs/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Cryptography.Pkcs.dll", + "lib/net461/System.Security.Cryptography.Pkcs.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "ref/net46/System.Security.Cryptography.Pkcs.dll", + "ref/net461/System.Security.Cryptography.Pkcs.dll", + "ref/net461/System.Security.Cryptography.Pkcs.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml", + "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "system.security.cryptography.pkcs.4.5.0.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Cryptography.Xml/4.5.0": { + "sha512": "i2Jn6rGXR63J0zIklImGRkDIJL4b1NfPSEbIVHBlqoIb12lfXIigCbDRpDmIEzwSo/v1U5y/rYJdzZYSyCWxvg==", + "type": "package", + "path": "system.security.cryptography.xml/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Cryptography.Xml.dll", + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", + "ref/net461/System.Security.Cryptography.Xml.dll", + "ref/net461/System.Security.Cryptography.Xml.xml", + "ref/netstandard2.0/System.Security.Cryptography.Xml.dll", + "ref/netstandard2.0/System.Security.Cryptography.Xml.xml", + "system.security.cryptography.xml.4.5.0.nupkg.sha512", + "system.security.cryptography.xml.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Permissions/4.5.0": { + "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "type": "package", + "path": "system.security.permissions/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.5.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal/4.3.0": { + "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "type": "package", + "path": "system.security.principal/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "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/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.principal.4.3.0.nupkg.sha512", + "system.security.principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.5.0": { + "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "type": "package", + "path": "system.security.principal.windows/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.5.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "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/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.5.0": { + "sha512": "S0wEUiKcLvRlkFUXca8uio1UQ5bYQzYgOmOKtCqaBQC3GR9AJjh43otcM32IGsAyvadFTaAMw9Irm6dS4Evfng==", + "type": "package", + "path": "system.text.encoding.codepages/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll", + "ref/netstandard1.3/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml", + "ref/netstandard2.0/System.Text.Encoding.CodePages.dll", + "ref/netstandard2.0/System.Text.Encoding.CodePages.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.5.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/4.5.0": { + "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==", + "type": "package", + "path": "system.text.encodings.web/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/System.Text.Encodings.Web.dll", + "lib/netstandard1.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.4.5.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "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/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "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/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Channels/4.5.0": { + "sha512": "MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "type": "package", + "path": "system.threading.channels/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/System.Threading.Channels.dll", + "lib/netcoreapp2.1/System.Threading.Channels.xml", + "lib/netstandard1.3/System.Threading.Channels.dll", + "lib/netstandard1.3/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "system.threading.channels.4.5.0.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "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/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.2": { + "sha512": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.2.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "sha512": "cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==", + "type": "package", + "path": "system.threading.tasks.parallel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.Parallel.dll", + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.Parallel.dll", + "ref/netcore50/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.parallel.4.3.0.nupkg.sha512", + "system.threading.tasks.parallel.nuspec" + ] + }, + "System.Threading.Thread/4.3.0": { + "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", + "type": "package", + "path": "system.threading.thread/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.Thread.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.xml", + "ref/netstandard1.3/de/System.Threading.Thread.xml", + "ref/netstandard1.3/es/System.Threading.Thread.xml", + "ref/netstandard1.3/fr/System.Threading.Thread.xml", + "ref/netstandard1.3/it/System.Threading.Thread.xml", + "ref/netstandard1.3/ja/System.Threading.Thread.xml", + "ref/netstandard1.3/ko/System.Threading.Thread.xml", + "ref/netstandard1.3/ru/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.thread.4.3.0.nupkg.sha512", + "system.threading.thread.nuspec" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.3.0": { + "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==", + "type": "package", + "path": "system.xml.xmlserializer/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "lib/netstandard1.3/System.Xml.XmlSerializer.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.xml", + "ref/netcore50/de/System.Xml.XmlSerializer.xml", + "ref/netcore50/es/System.Xml.XmlSerializer.xml", + "ref/netcore50/fr/System.Xml.XmlSerializer.xml", + "ref/netcore50/it/System.Xml.XmlSerializer.xml", + "ref/netcore50/ja/System.Xml.XmlSerializer.xml", + "ref/netcore50/ko/System.Xml.XmlSerializer.xml", + "ref/netcore50/ru/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/System.Xml.XmlSerializer.dll", + "ref/netstandard1.0/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/System.Xml.XmlSerializer.dll", + "ref/netstandard1.3/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "system.xml.xmlserializer.4.3.0.nupkg.sha512", + "system.xml.xmlserializer.nuspec" + ] + }, + "System.Xml.XPath/4.3.0": { + "sha512": "v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", + "type": "package", + "path": "system.xml.xpath/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.dll", + "lib/netstandard1.3/System.Xml.XPath.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.xml", + "ref/netstandard1.3/de/System.Xml.XPath.xml", + "ref/netstandard1.3/es/System.Xml.XPath.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.xml", + "ref/netstandard1.3/it/System.Xml.XPath.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.4.3.0.nupkg.sha512", + "system.xml.xpath.nuspec" + ] + }, + "System.Xml.XPath.XDocument/4.3.0": { + "sha512": "jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==", + "type": "package", + "path": "system.xml.xpath.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.XDocument.dll", + "lib/netstandard1.3/System.Xml.XPath.XDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XPath.XDocument.dll", + "ref/netstandard1.3/System.Xml.XPath.XDocument.dll", + "ref/netstandard1.3/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.XDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.xdocument.4.3.0.nupkg.sha512", + "system.xml.xpath.xdocument.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v2.2": [ + "Microsoft.AspNetCore.App >= 2.2.0", + "Microsoft.AspNetCore.Razor.Design >= 2.2.0", + "Microsoft.NETCore.App >= 2.2.0", + "Npgsql.EntityFrameworkCore.PostgreSQL >= 2.2.4" + ] + }, + "packageFolders": { + "/home/morgana/.nuget/packages/": {}, + "/usr/share/dotnet/sdk/NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/morgana/codefellows/401/final-project/awsomAPI/awsomAPI.csproj", + "projectName": "awsomAPI", + "projectPath": "/home/morgana/codefellows/401/final-project/awsomAPI/awsomAPI.csproj", + "packagesPath": "/home/morgana/.nuget/packages/", + "outputPath": "/home/morgana/codefellows/401/final-project/awsomAPI/obj/", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "/usr/share/dotnet/sdk/NuGetFallbackFolder" + ], + "configFilePaths": [ + "/home/morgana/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp2.2" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp2.2": { + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp2.2": { + "dependencies": { + "Microsoft.AspNetCore.App": { + "suppressParent": "All", + "target": "Package", + "version": "[2.2.0, )", + "autoReferenced": true + }, + "Microsoft.AspNetCore.Razor.Design": { + "suppressParent": "All", + "target": "Package", + "version": "[2.2.0, )" + }, + "Microsoft.NETCore.App": { + "suppressParent": "All", + "target": "Package", + "version": "[2.2.0, )", + "autoReferenced": true + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[2.2.4, )" + } + }, + "imports": [ + "net461" + ], + "assetTargetFallback": true, + "warn": true + } + } + } +} \ No newline at end of file From d3900eea69b8e88a4177076d1a152920ff378798 Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Mon, 15 Jul 2019 10:08:18 -0700 Subject: [PATCH 02/34] gitignore added --- .gitignore | 355 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 355 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..13a01ad --- /dev/null +++ b/.gitignore @@ -0,0 +1,355 @@ + +# Created by https://www.gitignore.io/api/rider,dotnetcore,aspnetcore +# Edit at https://www.gitignore.io/?templates=rider,dotnetcore,aspnetcore + +### ASPNETCore ### +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ + +# Visual Studio 2015 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUNIT +*.VisualState.xml +TestResult.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# DNX +project.lock.json +project.fragment.lock.json +artifacts/ + +*_i.c +*_p.c +*_i.h +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# JustCode is a .NET coding add-in +.JustCode + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# TODO: Comment the next line if you want to checkin your web deploy settings +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# The packages folder can be ignored because of Package Restore +**/packages/* +# except build/, which is used as an MSBuild target. +!**/packages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/packages/repositories.config +# NuGet v3's project.json files produces more ignoreable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +node_modules/ +orleans.codegen.cs + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm + +# SQL Server files +*.mdf +*.ldf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# JetBrains Rider +.idea/ +*.sln.iml + +# CodeRush +.cr/ + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/ + +### DotnetCore ### +# .NET Core build folders +/bin +/obj + +# Common node modules locations +/node_modules +/wwwroot/node_modules + + +### Rider ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +# End of https://www.gitignore.io/api/rider,dotnetcore,aspnetcore \ No newline at end of file From 2e9fccf45630224f90e3e113e4ee0d9251652988 Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Mon, 15 Jul 2019 10:52:25 -0700 Subject: [PATCH 03/34] users model --- Models/usersModel.cs | 11 ++++++++--- Startup.cs | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Models/usersModel.cs b/Models/usersModel.cs index d5433d9..6a0c5c1 100644 --- a/Models/usersModel.cs +++ b/Models/usersModel.cs @@ -9,14 +9,19 @@ public class User { [Key, Required] public long Id { get; set; } [Required] - public string FirstName { get; set; } - [Required] - public string LastName { get; set; } + public string Name { get; set; } [Required] public string Email { get; set; } [Required] //Morgana - Change this to enum with teacher (or user) and admin as the options //Default should be user public string Role { get; set; } + public string Password { get; set; } + [Required] + public string Region { get; set; } + public List InstrumentsTaught { get; set; } + public string Address { get; set; } + public string City { get; set; } + public int Zip { get; set; } } } \ No newline at end of file diff --git a/Startup.cs b/Startup.cs index c8b36f8..429487f 100644 --- a/Startup.cs +++ b/Startup.cs @@ -30,7 +30,7 @@ public Startup(IConfiguration configuration) public void ConfigureServices(IServiceCollection services) { services.AddDbContext( opt => - opt.UseNpgsql("CONNECTION STRING GOES HERE")); + opt.UseNpgsql(Configuration.GetConnectionString("ConnectionString"))); services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); } From 15310dee8473589ed96fdb08c4b07f8e902fa645 Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Mon, 15 Jul 2019 11:53:31 -0700 Subject: [PATCH 04/34] Trial Request Model and Initial Migration --- Controllers/UsersController.cs | 53 +++++++++ Controllers/ValuesController.cs | 38 ------- ...0190715184242_InitialMigration.Designer.cs | 105 ++++++++++++++++++ Migrations/20190715184242_InitialMigration.cs | 69 ++++++++++++ Migrations/AwsomApiContextModelSnapshot.cs | 103 +++++++++++++++++ Models/AwsomApiContext.cs | 1 + Models/TrialRequestModel.cs | 52 +++++++++ Models/{usersModel.cs => UsersModel.cs} | 9 ++ Startup.cs | 4 +- obj/Debug/netcoreapp2.2/awsomAPI.assets.cache | Bin 112462 -> 112462 bytes .../awsomAPI.csproj.CoreCompileInputs.cache | 2 +- .../awsomAPI.csprojAssemblyReference.cache | Bin 203099 -> 214456 bytes 12 files changed, 396 insertions(+), 40 deletions(-) create mode 100644 Controllers/UsersController.cs delete mode 100644 Controllers/ValuesController.cs create mode 100644 Migrations/20190715184242_InitialMigration.Designer.cs create mode 100644 Migrations/20190715184242_InitialMigration.cs create mode 100644 Migrations/AwsomApiContextModelSnapshot.cs create mode 100644 Models/TrialRequestModel.cs rename Models/{usersModel.cs => UsersModel.cs} (98%) diff --git a/Controllers/UsersController.cs b/Controllers/UsersController.cs new file mode 100644 index 0000000..8dab060 --- /dev/null +++ b/Controllers/UsersController.cs @@ -0,0 +1,53 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using awsomAPI.Models; + +namespace awsomAPI.Controllers +{ + [Route("/")] + [ApiController] + public class RolesController : ControllerBase + { + private readonly AwsomApiContext _context; + + public RolesController(AwsomApiContext context) + { + _context = context; + } + + [HttpGet] + public async Task>> GetUsers() + { + return await _context.Users.ToListAsync(); + } + + [HttpGet("{id}")] + public async Task> GetUser(long id) + { + var user = await _context.Users.FindAsync(id); + + if(user == null) { + return NotFound(); + } + return user; + } + + [HttpPost] + public void Post() + { + } + + [HttpPut("{id}")] + public void Put() + { + } + + [HttpDelete("{id}")] + public void Delete() + { + } + } +} diff --git a/Controllers/ValuesController.cs b/Controllers/ValuesController.cs deleted file mode 100644 index da6e344..0000000 --- a/Controllers/ValuesController.cs +++ /dev/null @@ -1,38 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.AspNetCore.Mvc; - -namespace awsomAPI.Controllers -{ - [Route("/")] - [ApiController] - public class rolesController : ControllerBase - { - [HttpGet] - public ActionResult> Get() - { - } - - [HttpGet("{id}")] - public ActionResult Get() - { - } - - [HttpPost] - public void Post() - { - } - - [HttpPut("{id}")] - public void Put() - { - } - - [HttpDelete("{id}")] - public void Delete() - { - } - } -} diff --git a/Migrations/20190715184242_InitialMigration.Designer.cs b/Migrations/20190715184242_InitialMigration.Designer.cs new file mode 100644 index 0000000..ef1da0a --- /dev/null +++ b/Migrations/20190715184242_InitialMigration.Designer.cs @@ -0,0 +1,105 @@ +// +using System.Collections.Generic; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using awsomAPI.Models; + +namespace awsomAPI.Migrations +{ + [DbContext(typeof(AwsomApiContext))] + [Migration("20190715184242_InitialMigration")] + partial class InitialMigration + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn) + .HasAnnotation("ProductVersion", "2.2.4-servicing-10062") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + modelBuilder.Entity("awsomAPI.Models.TrialRequest", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Address") + .IsRequired(); + + b.Property("Availability"); + + b.Property("City") + .IsRequired(); + + b.Property("Email") + .IsRequired(); + + b.Property("Experience"); + + b.Property("HasInstrument"); + + b.Property>("Instrument") + .IsRequired(); + + b.Property("Notes"); + + b.Property("ParentName") + .IsRequired(); + + b.Property("Phone"); + + b.Property("Region") + .IsRequired(); + + b.Property("StudentBirthDate"); + + b.Property("StudentName") + .IsRequired(); + + b.Property>("TeachersSelected"); + + b.Property("ZipCode"); + + b.HasKey("Id"); + + b.ToTable("TrialRequests"); + }); + + modelBuilder.Entity("awsomAPI.Models.User", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Address"); + + b.Property("City"); + + b.Property("Email") + .IsRequired(); + + b.Property>("InstrumentsTaught"); + + b.Property("Name") + .IsRequired(); + + b.Property("Password"); + + b.Property("Region") + .IsRequired(); + + b.Property("Role") + .IsRequired(); + + b.Property("Zip"); + + b.HasKey("Id"); + + b.ToTable("Users"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Migrations/20190715184242_InitialMigration.cs b/Migrations/20190715184242_InitialMigration.cs new file mode 100644 index 0000000..0876f6e --- /dev/null +++ b/Migrations/20190715184242_InitialMigration.cs @@ -0,0 +1,69 @@ +using System.Collections.Generic; +using Microsoft.EntityFrameworkCore.Migrations; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +namespace awsomAPI.Migrations +{ + public partial class InitialMigration : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "TrialRequests", + columns: table => new + { + Id = table.Column(nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn), + ParentName = table.Column(nullable: false), + StudentName = table.Column(nullable: false), + StudentBirthDate = table.Column(nullable: true), + Email = table.Column(nullable: false), + Phone = table.Column(nullable: true), + Address = table.Column(nullable: false), + City = table.Column(nullable: false), + ZipCode = table.Column(nullable: false), + Region = table.Column(nullable: false), + Instrument = table.Column>(nullable: false), + HasInstrument = table.Column(nullable: false), + Availability = table.Column(nullable: true), + Experience = table.Column(nullable: true), + Notes = table.Column(nullable: true), + TeachersSelected = table.Column>(nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_TrialRequests", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Users", + columns: table => new + { + Id = table.Column(nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn), + Name = table.Column(nullable: false), + Email = table.Column(nullable: false), + Role = table.Column(nullable: false), + Password = table.Column(nullable: true), + Region = table.Column(nullable: false), + InstrumentsTaught = table.Column>(nullable: true), + Address = table.Column(nullable: true), + City = table.Column(nullable: true), + Zip = table.Column(nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Users", x => x.Id); + }); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "TrialRequests"); + + migrationBuilder.DropTable( + name: "Users"); + } + } +} diff --git a/Migrations/AwsomApiContextModelSnapshot.cs b/Migrations/AwsomApiContextModelSnapshot.cs new file mode 100644 index 0000000..669a0e9 --- /dev/null +++ b/Migrations/AwsomApiContextModelSnapshot.cs @@ -0,0 +1,103 @@ +// +using System.Collections.Generic; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using awsomAPI.Models; + +namespace awsomAPI.Migrations +{ + [DbContext(typeof(AwsomApiContext))] + partial class AwsomApiContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn) + .HasAnnotation("ProductVersion", "2.2.4-servicing-10062") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + modelBuilder.Entity("awsomAPI.Models.TrialRequest", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Address") + .IsRequired(); + + b.Property("Availability"); + + b.Property("City") + .IsRequired(); + + b.Property("Email") + .IsRequired(); + + b.Property("Experience"); + + b.Property("HasInstrument"); + + b.Property>("Instrument") + .IsRequired(); + + b.Property("Notes"); + + b.Property("ParentName") + .IsRequired(); + + b.Property("Phone"); + + b.Property("Region") + .IsRequired(); + + b.Property("StudentBirthDate"); + + b.Property("StudentName") + .IsRequired(); + + b.Property>("TeachersSelected"); + + b.Property("ZipCode"); + + b.HasKey("Id"); + + b.ToTable("TrialRequests"); + }); + + modelBuilder.Entity("awsomAPI.Models.User", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Address"); + + b.Property("City"); + + b.Property("Email") + .IsRequired(); + + b.Property>("InstrumentsTaught"); + + b.Property("Name") + .IsRequired(); + + b.Property("Password"); + + b.Property("Region") + .IsRequired(); + + b.Property("Role") + .IsRequired(); + + b.Property("Zip"); + + b.HasKey("Id"); + + b.ToTable("Users"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Models/AwsomApiContext.cs b/Models/AwsomApiContext.cs index afb4166..cfff067 100644 --- a/Models/AwsomApiContext.cs +++ b/Models/AwsomApiContext.cs @@ -6,6 +6,7 @@ namespace awsomAPI.Models { public class AwsomApiContext : DbContext { public AwsomApiContext(DbContextOptions options) : base(options) {} public DbSet Users { get; set; } + public DbSet TrialRequsets { get; set; } } } \ No newline at end of file diff --git a/Models/TrialRequestModel.cs b/Models/TrialRequestModel.cs new file mode 100644 index 0000000..731674f --- /dev/null +++ b/Models/TrialRequestModel.cs @@ -0,0 +1,52 @@ +using System.Collections; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace awsomAPI.Models { + [Table("TrialRequests")] + + public class TrialRequest { + [Key, Required] + public long Id { get; set; } + + [Required] + public string ParentName {get; set;} + + [Required] + public string StudentName {get; set;} + + public string StudentBirthDate {get; set;} + + [Required] + public string Email {get; set;} + + public string Phone {get; set;} + + [Required] + public string Address {get; set;} + + [Required] + public string City {get; set;} + + [Required] + public int ZipCode {get; set;} + + [Required] + public string Region {get; set;} + + [Required] + public List Instrument {get; set;} + + [Required] + public bool HasInstrument {get; set;} + + public string Availability {get; set;} + + public string Experience {get; set;} + + public string Notes {get; set;} + + public List TeachersSelected {get; set;} + } +} \ No newline at end of file diff --git a/Models/usersModel.cs b/Models/UsersModel.cs similarity index 98% rename from Models/usersModel.cs rename to Models/UsersModel.cs index 6a0c5c1..03fef57 100644 --- a/Models/usersModel.cs +++ b/Models/UsersModel.cs @@ -8,20 +8,29 @@ namespace awsomAPI.Models { public class User { [Key, Required] public long Id { get; set; } + [Required] public string Name { get; set; } + [Required] public string Email { get; set; } + [Required] //Morgana - Change this to enum with teacher (or user) and admin as the options //Default should be user public string Role { get; set; } + public string Password { get; set; } [Required] + public string Region { get; set; } + public List InstrumentsTaught { get; set; } + public string Address { get; set; } + public string City { get; set; } + public int Zip { get; set; } } } \ No newline at end of file diff --git a/Startup.cs b/Startup.cs index 429487f..22d6ddb 100644 --- a/Startup.cs +++ b/Startup.cs @@ -19,6 +19,7 @@ namespace awsomAPI { public class Startup { + private string _connectionString = null; public Startup(IConfiguration configuration) { Configuration = configuration; @@ -29,8 +30,9 @@ public Startup(IConfiguration configuration) // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { + _connectionString = Configuration["Database:ConnectionString"]; services.AddDbContext( opt => - opt.UseNpgsql(Configuration.GetConnectionString("ConnectionString"))); + opt.UseNpgsql(_connectionString)); services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); } diff --git a/obj/Debug/netcoreapp2.2/awsomAPI.assets.cache b/obj/Debug/netcoreapp2.2/awsomAPI.assets.cache index 43ca965fe522148c80f487e9112cb65dad424f92..1bb1007b585b699b1e6ae5173c99a33b4423269c 100644 GIT binary patch delta 66 zcmV-I0KNat?gq~81}#uaM?nGr003HI@XQ_opK)FBMz@q$n#hbM)%p{$tHf67KJ*?i YJf)_M0RRM(fICEzCj^0YwRHj6wz?V|qW}N^ delta 66 zcmV-I0KNat?gq~81}#uaM?nGr005u}D}g9WJ;mpnCkHNu&|9s|(N>2MX8@)P8AXK! Y!3?I20RRM(fICEzCj^0YwRHj6wk?PlYybcN diff --git a/obj/Debug/netcoreapp2.2/awsomAPI.csproj.CoreCompileInputs.cache b/obj/Debug/netcoreapp2.2/awsomAPI.csproj.CoreCompileInputs.cache index 4f813db..e9ed66f 100644 --- a/obj/Debug/netcoreapp2.2/awsomAPI.csproj.CoreCompileInputs.cache +++ b/obj/Debug/netcoreapp2.2/awsomAPI.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -d3036403c87e5f2cf1e60dee5749aa6d2be918a4 +39c55554f71ff7f370536b49c8c6c6dc697d440d diff --git a/obj/Debug/netcoreapp2.2/awsomAPI.csprojAssemblyReference.cache b/obj/Debug/netcoreapp2.2/awsomAPI.csprojAssemblyReference.cache index 939bbdba78ae6488e2127636a191ed3d0965c4dd..26cc4978bdad8506b375d481e6d53816447c95e3 100644 GIT binary patch literal 214456 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 F{T~!Fb&mi5 literal 203099 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 Date: Mon, 15 Jul 2019 14:16:55 -0700 Subject: [PATCH 05/34] remove obj --- Controllers/TrialRequestController.cs | 39 + .../netcoreapp2.2/awsomAPI.AssemblyInfo.cs | 24 - .../awsomAPI.AssemblyInfoInputs.cache | 1 - .../awsomAPI.RazorAssemblyInfo.cache | 1 - .../awsomAPI.RazorAssemblyInfo.cs | 20 - obj/Debug/netcoreapp2.2/awsomAPI.assets.cache | Bin 112462 -> 0 bytes .../awsomAPI.csproj.CoreCompileInputs.cache | 1 - .../awsomAPI.csprojAssemblyReference.cache | Bin 214456 -> 0 bytes obj/Debug/netcoreapp2.2/project.razor.json | 2945 ---- obj/awsomAPI.csproj.nuget.cache | 5 - obj/awsomAPI.csproj.nuget.dgspec.json | 73 - obj/awsomAPI.csproj.nuget.g.props | 29 - obj/awsomAPI.csproj.nuget.g.targets | 17 - obj/project.assets.json | 12221 ---------------- 14 files changed, 39 insertions(+), 15337 deletions(-) create mode 100644 Controllers/TrialRequestController.cs delete mode 100644 obj/Debug/netcoreapp2.2/awsomAPI.AssemblyInfo.cs delete mode 100644 obj/Debug/netcoreapp2.2/awsomAPI.AssemblyInfoInputs.cache delete mode 100644 obj/Debug/netcoreapp2.2/awsomAPI.RazorAssemblyInfo.cache delete mode 100644 obj/Debug/netcoreapp2.2/awsomAPI.RazorAssemblyInfo.cs delete mode 100644 obj/Debug/netcoreapp2.2/awsomAPI.assets.cache delete mode 100644 obj/Debug/netcoreapp2.2/awsomAPI.csproj.CoreCompileInputs.cache delete mode 100644 obj/Debug/netcoreapp2.2/awsomAPI.csprojAssemblyReference.cache delete mode 100644 obj/Debug/netcoreapp2.2/project.razor.json delete mode 100644 obj/awsomAPI.csproj.nuget.cache delete mode 100644 obj/awsomAPI.csproj.nuget.dgspec.json delete mode 100644 obj/awsomAPI.csproj.nuget.g.props delete mode 100644 obj/awsomAPI.csproj.nuget.g.targets delete mode 100644 obj/project.assets.json diff --git a/Controllers/TrialRequestController.cs b/Controllers/TrialRequestController.cs new file mode 100644 index 0000000..215fe3a --- /dev/null +++ b/Controllers/TrialRequestController.cs @@ -0,0 +1,39 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using awsomAPI.Models; + +namespace awsomAPI.Controllers +{ + [Route("/trialRequests")] + [ApiController] + + public class TrialRequestController : ControllerBase + { + private readonly AwsomApiContext _context; + public TrialRequestController(AwsomApiContext context) + { + _context = context; + } + + [HttpGet] + public async Task>> GetTrialRequests() + { + + } + + [HttpGet("{id}")] + public async Task> TrialRequestDetailView() + { + + } + + [HttpPost] + public async Task> AddNewTrialRequest() + { + + } + } +} \ No newline at end of file diff --git a/obj/Debug/netcoreapp2.2/awsomAPI.AssemblyInfo.cs b/obj/Debug/netcoreapp2.2/awsomAPI.AssemblyInfo.cs deleted file mode 100644 index de73065..0000000 --- a/obj/Debug/netcoreapp2.2/awsomAPI.AssemblyInfo.cs +++ /dev/null @@ -1,24 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("fabc38fd-f85d-4e0d-92e8-94ad286b1580")] -[assembly: System.Reflection.AssemblyCompanyAttribute("awsomAPI")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("awsomAPI")] -[assembly: System.Reflection.AssemblyTitleAttribute("awsomAPI")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/obj/Debug/netcoreapp2.2/awsomAPI.AssemblyInfoInputs.cache b/obj/Debug/netcoreapp2.2/awsomAPI.AssemblyInfoInputs.cache deleted file mode 100644 index cf9b63e..0000000 --- a/obj/Debug/netcoreapp2.2/awsomAPI.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -da133f55135ba898da6e00fcba99021b7b27de94 diff --git a/obj/Debug/netcoreapp2.2/awsomAPI.RazorAssemblyInfo.cache b/obj/Debug/netcoreapp2.2/awsomAPI.RazorAssemblyInfo.cache deleted file mode 100644 index 6b06944..0000000 --- a/obj/Debug/netcoreapp2.2/awsomAPI.RazorAssemblyInfo.cache +++ /dev/null @@ -1 +0,0 @@ -e3839eecd01944a3f6aed533735602011ac68bc1 diff --git a/obj/Debug/netcoreapp2.2/awsomAPI.RazorAssemblyInfo.cs b/obj/Debug/netcoreapp2.2/awsomAPI.RazorAssemblyInfo.cs deleted file mode 100644 index 42aafda..0000000 --- a/obj/Debug/netcoreapp2.2/awsomAPI.RazorAssemblyInfo.cs +++ /dev/null @@ -1,20 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.RelatedAssemblyAttribute("awsomAPI.Views")] -[assembly: Microsoft.AspNetCore.Razor.Hosting.RazorLanguageVersionAttribute("2.1")] -[assembly: Microsoft.AspNetCore.Razor.Hosting.RazorConfigurationNameAttribute("MVC-2.1")] -[assembly: Microsoft.AspNetCore.Razor.Hosting.RazorExtensionAssemblyNameAttribute("MVC-2.1", "Microsoft.AspNetCore.Mvc.Razor.Extensions")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/obj/Debug/netcoreapp2.2/awsomAPI.assets.cache b/obj/Debug/netcoreapp2.2/awsomAPI.assets.cache deleted file mode 100644 index 1bb1007b585b699b1e6ae5173c99a33b4423269c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 112462 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 F{T~!Fb&mi5 diff --git a/obj/Debug/netcoreapp2.2/project.razor.json b/obj/Debug/netcoreapp2.2/project.razor.json deleted file mode 100644 index 5ef1b72..0000000 --- a/obj/Debug/netcoreapp2.2/project.razor.json +++ /dev/null @@ -1,2945 +0,0 @@ -{ - "FilePath": "/home/morgana/codefellows/401/final-project/awsomAPI/awsomAPI.csproj", - "Configuration": { - "ConfigurationName": "MVC-2.1", - "LanguageVersion": "2.1", - "Extensions": [ - { - "ExtensionName": "MVC-2.1" - } - ] - }, - "ProjectWorkspaceState": { - "TagHelpers": [ - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n

\n implementation targeting <a> elements.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-action", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-controller", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-area", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-page", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-page-handler", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-fragment", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-host", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-protocol", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-route", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-all-route-data", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-route-", - "NameComparison": 1, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-action", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the action method.\n \n \n Must be null if or is non-null.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Action" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-controller", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the controller.\n \n \n Must be null if or is non-null.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Controller" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-area", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the area.\n \n \n Must be null if is non-null.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Area" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-page", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the page.\n \n \n Must be null if or , \n is non-null.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Page" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-page-handler", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the page handler.\n \n \n Must be null if or , or \n is non-null.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PageHandler" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-protocol", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The protocol for the URL, such as \"http\" or \"https\".\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Protocol" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-host", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The host name.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Host" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fragment", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The URL fragment name.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Fragment" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-route", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Name of the route.\n \n \n Must be null if one of , , \n or is non-null.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Route" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-all-route-data", - "TypeName": "System.Collections.Generic.IDictionary", - "IsEnum": false, - "IndexerNamePrefix": "asp-route-", - "IndexerTypeName": "System.String", - "Documentation": "\n \n Additional parameters for the route.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "RouteValues" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <cache> elements.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "cache", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "priority", - "TypeName": "Microsoft.Extensions.Caching.Memory.CacheItemPriority?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the policy for the cache entry.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Priority" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryBy" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-header", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByHeader" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-query", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByQuery" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-route", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByRoute" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-cookie", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByCookie" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-user", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by the Identity for the logged in\n .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByUser" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-culture", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by request culture.\n \n Setting this to true would result in the result to be varied by \n and .\n \n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByCulture" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "expires-on", - "TypeName": "System.DateTimeOffset?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the exact the cache entry should be evicted.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ExpiresOn" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "expires-after", - "TypeName": "System.TimeSpan?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ExpiresAfter" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "expires-sliding", - "TypeName": "System.TimeSpan?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the duration from last access that the cache entry should be evicted.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ExpiresSliding" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "enabled", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the value which determines if the tag helper is enabled or not.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Enabled" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <distributed-cache> elements.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "distributed-cache", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "name", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "name", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a unique name to discriminate cached entries.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Name" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryBy" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-header", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByHeader" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-query", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByQuery" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-route", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByRoute" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-cookie", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByCookie" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-user", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by the Identity for the logged in\n .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByUser" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-culture", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by request culture.\n \n Setting this to true would result in the result to be varied by \n and .\n \n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByCulture" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "expires-on", - "TypeName": "System.DateTimeOffset?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the exact the cache entry should be evicted.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ExpiresOn" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "expires-after", - "TypeName": "System.TimeSpan?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ExpiresAfter" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "expires-sliding", - "TypeName": "System.TimeSpan?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the duration from last access that the cache entry should be evicted.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ExpiresSliding" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "enabled", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the value which determines if the tag helper is enabled or not.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Enabled" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <environment> elements that conditionally renders\n content based on the current value of .\n If the environment is not listed in the specified or , \n or if it is in , the content will not be rendered.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "environment", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "names", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of environment names in which the content should be rendered.\n If the current environment is also in the list, the content will not be rendered.\n \n \n The specified environment names are compared case insensitively to the current value of\n .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Names" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "include", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of environment names in which the content should be rendered.\n If the current environment is also in the list, the content will not be rendered.\n \n \n The specified environment names are compared case insensitively to the current value of\n .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Include" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "exclude", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of environment names in which the content will not be rendered.\n \n \n The specified environment names are compared case insensitively to the current value of\n .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Exclude" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <button> elements and <input> elements with\n their type attribute set to image or submit.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-action", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-controller", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-area", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-page", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-page-handler", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-fragment", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-route", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-all-route-data", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-route-", - "NameComparison": 1, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-action", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-controller", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-area", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-page", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-page-handler", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-fragment", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-route", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-all-route-data", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-route-", - "NameComparison": 1, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-action", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-controller", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-area", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-page", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-page-handler", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-fragment", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-route", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-all-route-data", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-route-", - "NameComparison": 1, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-action", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the action method.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Action" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-controller", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the controller.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Controller" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-area", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the area.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Area" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-page", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the page.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Page" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-page-handler", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the page handler.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PageHandler" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fragment", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the URL fragment.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Fragment" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-route", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Name of the route.\n \n \n Must be null if or is non-null.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Route" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-all-route-data", - "TypeName": "System.Collections.Generic.IDictionary", - "IsEnum": false, - "IndexerNamePrefix": "asp-route-", - "IndexerTypeName": "System.String", - "Documentation": "\n \n Additional parameters for the route.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "RouteValues" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <form> elements.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "form", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-action", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the action method.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Action" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-controller", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the controller.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Controller" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-area", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the area.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Area" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-page", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the page.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Page" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-page-handler", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the page handler.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PageHandler" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-antiforgery", - "TypeName": "System.Boolean?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Whether the antiforgery token should be generated.\n \n Defaults to false if user provides an action attribute\n or if the method is ; true otherwise.\n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Antiforgery" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fragment", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the URL fragment.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Fragment" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-route", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Name of the route.\n \n \n Must be null if or is non-null.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Route" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-all-route-data", - "TypeName": "System.Collections.Generic.IDictionary", - "IsEnum": false, - "IndexerNamePrefix": "asp-route-", - "IndexerTypeName": "System.String", - "Documentation": "\n \n Additional parameters for the route.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "RouteValues" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <img> elements that supports file versioning.\n \n \n The tag helper won't process for cases with just the 'src' attribute.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "img", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-append-version", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "src", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "src", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Source of the image.\n \n \n Passed through to the generated HTML in all cases.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Src" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-append-version", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Value indicating if file version should be appended to the src urls.\n \n \n If true then a query string \"v\" with the encoded content of the file is added.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AppendVersion" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <input> elements with an asp-for attribute.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-for", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-for", - "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "For" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-format", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The format string (see https://msdn.microsoft.com/en-us/library/txafckwd.aspx) used to format the\n result. Sets the generated \"value\" attribute to that formatted string.\n \n \n Not used if the provided (see ) or calculated \"type\" attribute value is\n checkbox, password, or radio. That is, is used when calling\n .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "type", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The type of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine the \n helper to call and the default value. A default is not calculated\n if the provided (see ) or calculated \"type\" attribute value is checkbox,\n hidden, password, or radio.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "InputTypeName" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "name", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine whether is\n valid with an empty .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Name" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The value of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine the generated \"checked\" attribute\n if is \"radio\". Must not be null in that case.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <label> elements with an asp-for attribute.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "label", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-for", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-for", - "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "For" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <link> elements that supports fallback href paths.\n \n \n The tag helper won't process for cases with just the 'href' attribute.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-href-include", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-href-exclude", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-fallback-href", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-fallback-href-include", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-fallback-href-exclude", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-fallback-test-class", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-fallback-test-property", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-fallback-test-value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-append-version", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "href", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Address of the linked resource.\n \n \n Passed through to the generated HTML in all cases.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Href" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-href-include", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to load.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "HrefInclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-href-exclude", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to exclude from loading.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "HrefExclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-href", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The URL of a CSS stylesheet to fallback to in the case the primary one fails.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackHref" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-suppress-fallback-integrity", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Boolean value that determines if an integrity hash will be compared with value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "SuppressFallbackIntegrity" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-append-version", - "TypeName": "System.Boolean?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Value indicating if file version should be appended to the href urls.\n \n \n If true then a query string \"v\" with the encoded content of the file is added.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AppendVersion" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-href-include", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to fallback to in the case the primary\n one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackHrefInclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-href-exclude", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to exclude from the fallback list, in\n the case the primary one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackHrefExclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-test-class", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The class name defined in the stylesheet to use for the fallback test.\n Must be used in conjunction with and ,\n and either or .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackTestClass" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-test-property", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The CSS property name to use for the fallback test.\n Must be used in conjunction with and ,\n and either or .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackTestProperty" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-test-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The CSS property value to use for the fallback test.\n Must be used in conjunction with and ,\n and either or .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackTestValue" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <option> elements.\n \n \n This works in conjunction with . It reads elements\n content but does not modify that content. The only modification it makes is to add a selected attribute\n in some cases.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "option", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Specifies a value for the <option> element.\n \n \n Passed through to the generated HTML in all cases.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n Renders a partial view.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "partial", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "name", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "name", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name or path of the partial view that is rendered to the response.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Name" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "for", - "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n An expression to be evaluated against the current model. Cannot be used together with .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "For" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "model", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The model to pass into the partial view. Cannot be used together with .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Model" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "optional", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n When optional, executing the tag helper will no-op if the view cannot be located. \n Otherwise will throw stating the view could not be found.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Optional" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "fallback-name", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n View to lookup if the view specified by cannot be located.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackName" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "view-data", - "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary", - "IsEnum": false, - "IndexerNamePrefix": "view-data-", - "IndexerTypeName": "System.Object", - "Documentation": "\n \n A to pass into the partial view.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ViewData" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <script> elements that supports fallback src paths.\n \n \n The tag helper won't process for cases with just the 'src' attribute.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "script", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-src-include", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "script", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-src-exclude", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "script", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-fallback-src", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "script", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-fallback-src-include", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "script", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-fallback-src-exclude", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "script", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-fallback-test", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "script", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-append-version", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "src", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Address of the external script to use.\n \n \n Passed through to the generated HTML in all cases.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Src" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-src-include", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to load.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "SrcInclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-src-exclude", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to exclude from loading.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "SrcExclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-src", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The URL of a Script tag to fallback to in the case the primary one fails.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackSrc" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-suppress-fallback-integrity", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Boolean value that determines if an integrity hash will be compared with value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "SuppressFallbackIntegrity" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-append-version", - "TypeName": "System.Boolean?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Value indicating if file version should be appended to src urls.\n \n \n A query string \"v\" with the encoded content of the file is added.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AppendVersion" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-src-include", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to fallback to in the case the\n primary one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackSrcInclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-src-exclude", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to exclude from the fallback list, in\n the case the primary one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackSrcExclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-test", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The script method defined in the primary script to use for the fallback test.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackTestExpression" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <select> elements with asp-for and/or\n asp-items attribute(s).\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "select", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-for", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "select", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-items", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-for", - "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "For" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-items", - "TypeName": "System.Collections.Generic.IEnumerable", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A collection of objects used to populate the <select> element with\n <optgroup> and <option> elements.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Items" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "name", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine whether is\n valid with an empty .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Name" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <textarea> elements with an asp-for attribute.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "textarea", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-for", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-for", - "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "For" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "name", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine whether is\n valid with an empty .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Name" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting any HTML element with an asp-validation-for\n attribute.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "span", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-validation-for", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-validation-for", - "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": null, - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "For" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting any HTML element with an asp-validation-summary\n attribute.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "div", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-validation-summary", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-validation-summary", - "TypeName": "Microsoft.AspNetCore.Mvc.Rendering.ValidationSummary", - "IsEnum": true, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n If or , appends a validation\n summary. Otherwise (, the default), this tag helper does nothing.\n \n \n Thrown if setter is called with an undefined value e.g.\n (ValidationSummary)23.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValidationSummary" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.SpaServices.Prerendering.PrerenderTagHelper", - "AssemblyName": "Microsoft.AspNetCore.SpaServices", - "Documentation": "\n \n A tag helper for prerendering JavaScript applications on the server.\n \n ", - "TagOutputHint": null, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-prerender-module", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-prerender-module", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Specifies the path to the JavaScript module containing prerendering code.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ModuleName" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-prerender-export", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n If set, specifies the name of the CommonJS export that is the prerendering function to execute.\n If not set, the JavaScript module's default CommonJS export must itself be the prerendering function.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ExportName" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-prerender-data", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n An optional JSON-serializable parameter to be supplied to the prerendering code.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "CustomDataParameter" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-prerender-timeout", - "TypeName": "System.Int32", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The maximum duration to wait for prerendering to complete.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "TimeoutMillisecondsParameter" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.SpaServices.Prerendering.PrerenderTagHelper" - } - } - ], - "CSharpLanguageVersion": 703 - }, - "RootNamespace": "awsomAPI", - "Documents": [] -} \ No newline at end of file diff --git a/obj/awsomAPI.csproj.nuget.cache b/obj/awsomAPI.csproj.nuget.cache deleted file mode 100644 index b868830..0000000 --- a/obj/awsomAPI.csproj.nuget.cache +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 1, - "dgSpecHash": "tnBIt7VNPbZXFSuCNCuxNSBNP/LeEoeBRM/3rf5okB5p6q2u9TZnpKoDLNwg869cnv3U0n8v9/lvmZcJPyirJQ==", - "success": true -} \ No newline at end of file diff --git a/obj/awsomAPI.csproj.nuget.dgspec.json b/obj/awsomAPI.csproj.nuget.dgspec.json deleted file mode 100644 index 7dc3f56..0000000 --- a/obj/awsomAPI.csproj.nuget.dgspec.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "format": 1, - "restore": { - "/home/morgana/codefellows/401/final-project/awsomAPI/awsomAPI.csproj": {} - }, - "projects": { - "/home/morgana/codefellows/401/final-project/awsomAPI/awsomAPI.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "/home/morgana/codefellows/401/final-project/awsomAPI/awsomAPI.csproj", - "projectName": "awsomAPI", - "projectPath": "/home/morgana/codefellows/401/final-project/awsomAPI/awsomAPI.csproj", - "packagesPath": "/home/morgana/.nuget/packages/", - "outputPath": "/home/morgana/codefellows/401/final-project/awsomAPI/obj/", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "/usr/share/dotnet/sdk/NuGetFallbackFolder" - ], - "configFilePaths": [ - "/home/morgana/.nuget/NuGet/NuGet.Config" - ], - "originalTargetFrameworks": [ - "netcoreapp2.2" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp2.2": { - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp2.2": { - "dependencies": { - "Microsoft.AspNetCore.App": { - "suppressParent": "All", - "target": "Package", - "version": "[2.2.0, )", - "autoReferenced": true - }, - "Microsoft.AspNetCore.Razor.Design": { - "suppressParent": "All", - "target": "Package", - "version": "[2.2.0, )" - }, - "Microsoft.NETCore.App": { - "suppressParent": "All", - "target": "Package", - "version": "[2.2.0, )", - "autoReferenced": true - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[2.2.4, )" - } - }, - "imports": [ - "net461" - ], - "assetTargetFallback": true, - "warn": true - } - } - } - } -} \ No newline at end of file diff --git a/obj/awsomAPI.csproj.nuget.g.props b/obj/awsomAPI.csproj.nuget.g.props deleted file mode 100644 index 34c6449..0000000 --- a/obj/awsomAPI.csproj.nuget.g.props +++ /dev/null @@ -1,29 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - /home/morgana/.nuget/packages/ - /home/morgana/.nuget/packages/;/usr/share/dotnet/sdk/NuGetFallbackFolder - PackageReference - 5.1.0 - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - - - - - - - /usr/share/dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.2.0 - /usr/share/dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.analyzers/1.1.0 - /usr/share/dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor.design/2.2.0 - - \ No newline at end of file diff --git a/obj/awsomAPI.csproj.nuget.g.targets b/obj/awsomAPI.csproj.nuget.g.targets deleted file mode 100644 index b5586cd..0000000 --- a/obj/awsomAPI.csproj.nuget.g.targets +++ /dev/null @@ -1,17 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - - - - - - - - \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json deleted file mode 100644 index beda1eb..0000000 --- a/obj/project.assets.json +++ /dev/null @@ -1,12221 +0,0 @@ -{ - "version": 3, - "targets": { - ".NETCoreApp,Version=v2.2": { - "Microsoft.AspNet.WebApi.Client/5.2.6": { - "type": "package", - "dependencies": { - "Newtonsoft.Json": "10.0.1", - "Newtonsoft.Json.Bson": "1.0.1" - }, - "compile": { - "lib/netstandard2.0/System.Net.Http.Formatting.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Net.Http.Formatting.dll": {} - } - }, - "Microsoft.AspNetCore/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Diagnostics": "2.2.0", - "Microsoft.AspNetCore.HostFiltering": "2.2.0", - "Microsoft.AspNetCore.Hosting": "2.2.0", - "Microsoft.AspNetCore.Routing": "2.2.0", - "Microsoft.AspNetCore.Server.IIS": "2.2.0", - "Microsoft.AspNetCore.Server.IISIntegration": "2.2.0", - "Microsoft.AspNetCore.Server.Kestrel": "2.2.0", - "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0", - "Microsoft.Extensions.Configuration.CommandLine": "2.2.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0", - "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0", - "Microsoft.Extensions.Configuration.Json": "2.2.0", - "Microsoft.Extensions.Configuration.UserSecrets": "2.2.0", - "Microsoft.Extensions.Logging": "2.2.0", - "Microsoft.Extensions.Logging.Configuration": "2.2.0", - "Microsoft.Extensions.Logging.Console": "2.2.0", - "Microsoft.Extensions.Logging.Debug": "2.2.0", - "Microsoft.Extensions.Logging.EventSource": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.dll": {} - } - }, - "Microsoft.AspNetCore.Antiforgery/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.DataProtection": "2.2.0", - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.AspNetCore.WebUtilities": "2.2.0", - "Microsoft.Extensions.ObjectPool": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {} - } - }, - "Microsoft.AspNetCore.App/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.WebApi.Client": "[5.2.6, 5.3.0)", - "Microsoft.AspNetCore": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Antiforgery": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Authentication": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Authentication.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Authentication.Cookies": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Authentication.Core": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Authentication.Facebook": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Authentication.Google": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Authentication.JwtBearer": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Authentication.OAuth": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Authentication.OpenIdConnect": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Authentication.Twitter": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Authentication.WsFederation": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Authorization": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Authorization.Policy": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Connections.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.CookiePolicy": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Cors": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Cryptography.Internal": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.DataProtection": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.DataProtection.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.DataProtection.Extensions": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Diagnostics": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Diagnostics.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Diagnostics.HealthChecks": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.HostFiltering": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Hosting": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Hosting.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Html.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Http": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Http.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Http.Connections": "[1.1.0, 1.2.0)", - "Microsoft.AspNetCore.Http.Connections.Common": "[1.1.0, 1.2.0)", - "Microsoft.AspNetCore.Http.Extensions": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Http.Features": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.HttpOverrides": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.HttpsPolicy": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Identity": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Identity.UI": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.JsonPatch": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Localization": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Localization.Routing": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.MiddlewareAnalysis": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Mvc": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Mvc.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Mvc.Analyzers": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Mvc.ApiExplorer": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Mvc.Core": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Mvc.Cors": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Mvc.Formatters.Xml": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Mvc.Localization": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Mvc.Razor": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Mvc.Razor.Extensions": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Mvc.RazorPages": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Mvc.TagHelpers": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.NodeServices": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Owin": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Razor": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Razor.Design": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Razor.Language": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Razor.Runtime": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.ResponseCaching": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.ResponseCaching.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.ResponseCompression": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Rewrite": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Routing": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Routing.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Server.HttpSys": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Server.IIS": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Server.IISIntegration": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Server.Kestrel": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Server.Kestrel.Core": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Server.Kestrel.Https": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.Session": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.SignalR": "[1.1.0, 1.2.0)", - "Microsoft.AspNetCore.SignalR.Common": "[1.1.0, 1.2.0)", - "Microsoft.AspNetCore.SignalR.Core": "[1.1.0, 1.2.0)", - "Microsoft.AspNetCore.SignalR.Protocols.Json": "[1.1.0, 1.2.0)", - "Microsoft.AspNetCore.SpaServices": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.SpaServices.Extensions": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.StaticFiles": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.WebSockets": "[2.2.0, 2.3.0)", - "Microsoft.AspNetCore.WebUtilities": "[2.2.0, 2.3.0)", - "Microsoft.CodeAnalysis.Razor": "[2.2.0, 2.3.0)", - "Microsoft.EntityFrameworkCore": "[2.2.0, 2.3.0)", - "Microsoft.EntityFrameworkCore.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.EntityFrameworkCore.Analyzers": "[2.2.0, 2.3.0)", - "Microsoft.EntityFrameworkCore.Design": "[2.2.0, 2.3.0)", - "Microsoft.EntityFrameworkCore.InMemory": "[2.2.0, 2.3.0)", - "Microsoft.EntityFrameworkCore.Relational": "[2.2.0, 2.3.0)", - "Microsoft.EntityFrameworkCore.SqlServer": "[2.2.0, 2.3.0)", - "Microsoft.EntityFrameworkCore.Tools": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Caching.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Caching.Memory": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Caching.SqlServer": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Configuration": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Configuration.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Configuration.Binder": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Configuration.CommandLine": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Configuration.FileExtensions": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Configuration.Ini": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Configuration.Json": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Configuration.KeyPerFile": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Configuration.UserSecrets": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Configuration.Xml": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.DependencyInjection": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.DependencyInjection.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.DiagnosticAdapter": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Diagnostics.HealthChecks": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.FileProviders.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.FileProviders.Composite": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.FileProviders.Embedded": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.FileProviders.Physical": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.FileSystemGlobbing": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Hosting": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Hosting.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Http": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Identity.Core": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Identity.Stores": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Localization": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Localization.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Logging": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Logging.Abstractions": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Logging.Configuration": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Logging.Console": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Logging.Debug": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Logging.EventSource": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Logging.TraceSource": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.ObjectPool": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Options": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Options.ConfigurationExtensions": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Options.DataAnnotations": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.Primitives": "[2.2.0, 2.3.0)", - "Microsoft.Extensions.WebEncoders": "[2.2.0, 2.3.0)", - "Microsoft.Net.Http.Headers": "[2.2.0, 2.3.0)", - "System.IO.Pipelines": "4.5.2" - }, - "compile": { - "lib/netcoreapp2.2/_._": {} - }, - "runtime": { - "lib/netcoreapp2.2/_._": {} - }, - "build": { - "build/netcoreapp2.2/Microsoft.AspNetCore.App.props": {}, - "build/netcoreapp2.2/Microsoft.AspNetCore.App.targets": {} - } - }, - "Microsoft.AspNetCore.Authentication/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication.Core": "2.2.0", - "Microsoft.AspNetCore.DataProtection": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "Microsoft.Extensions.WebEncoders": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll": {} - } - }, - "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} - } - }, - "Microsoft.AspNetCore.Authentication.Cookies/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll": {} - } - }, - "Microsoft.AspNetCore.Authentication.Core/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} - } - }, - "Microsoft.AspNetCore.Authentication.Facebook/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication.OAuth": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll": {} - } - }, - "Microsoft.AspNetCore.Authentication.Google/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication.OAuth": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll": {} - } - }, - "Microsoft.AspNetCore.Authentication.JwtBearer/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication": "2.2.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.3.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {} - } - }, - "Microsoft.AspNetCore.Authentication.MicrosoftAccount/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication.OAuth": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll": {} - } - }, - "Microsoft.AspNetCore.Authentication.OAuth/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication": "2.2.0", - "Newtonsoft.Json": "11.0.2" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll": {} - } - }, - "Microsoft.AspNetCore.Authentication.OpenIdConnect/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication.OAuth": "2.2.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.3.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {} - } - }, - "Microsoft.AspNetCore.Authentication.Twitter/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication.OAuth": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll": {} - } - }, - "Microsoft.AspNetCore.Authentication.WsFederation/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication": "2.2.0", - "Microsoft.IdentityModel.Protocols.WsFederation": "5.3.0", - "System.IdentityModel.Tokens.Jwt": "5.3.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.WsFederation.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.WsFederation.dll": {} - } - }, - "Microsoft.AspNetCore.Authorization/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} - } - }, - "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Authorization": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} - } - }, - "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Features": "2.2.0", - "System.IO.Pipelines": "4.5.2" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} - } - }, - "Microsoft.AspNetCore.CookiePolicy/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll": {} - } - }, - "Microsoft.AspNetCore.Cors/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {} - } - }, - "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {} - } - }, - "Microsoft.AspNetCore.Cryptography.KeyDerivation/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Cryptography.Internal": "2.2.0" - }, - "compile": { - "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} - }, - "runtime": { - "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} - } - }, - "Microsoft.AspNetCore.DataProtection/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Cryptography.Internal": "2.2.0", - "Microsoft.AspNetCore.DataProtection.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "Microsoft.Win32.Registry": "4.5.0", - "System.Security.Cryptography.Xml": "4.5.0", - "System.Security.Principal.Windows": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {} - } - }, - "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} - } - }, - "Microsoft.AspNetCore.DataProtection.Extensions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.DataProtection": "2.2.0", - "Microsoft.Extensions.DependencyInjection": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll": {} - } - }, - "Microsoft.AspNetCore.Diagnostics/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.AspNetCore.WebUtilities": "2.2.0", - "Microsoft.Extensions.FileProviders.Physical": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "System.Diagnostics.DiagnosticSource": "4.5.0", - "System.Reflection.Metadata": "1.6.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {} - } - }, - "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} - } - }, - "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.EntityFrameworkCore.Relational": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {} - } - }, - "Microsoft.AspNetCore.Diagnostics.HealthChecks/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "Microsoft.Net.Http.Headers": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} - } - }, - "Microsoft.AspNetCore.HostFiltering/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll": {} - } - }, - "Microsoft.AspNetCore.Hosting/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Configuration": "2.2.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0", - "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0", - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.Extensions.FileProviders.Physical": "2.2.0", - "Microsoft.Extensions.Hosting.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "System.Diagnostics.DiagnosticSource": "4.5.0", - "System.Reflection.Metadata": "1.6.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {} - } - }, - "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} - } - }, - "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Features": "2.2.0", - "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} - } - }, - "Microsoft.AspNetCore.Html.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "System.Text.Encodings.Web": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {} - } - }, - "Microsoft.AspNetCore.Http/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.AspNetCore.WebUtilities": "2.2.0", - "Microsoft.Extensions.ObjectPool": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "Microsoft.Net.Http.Headers": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} - } - }, - "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Features": "2.2.0", - "System.Text.Encodings.Web": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} - } - }, - "Microsoft.AspNetCore.Http.Connections/1.1.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0", - "Microsoft.AspNetCore.Routing": "2.2.0", - "Microsoft.AspNetCore.WebSockets": "2.2.0", - "Newtonsoft.Json": "11.0.2", - "System.Security.Principal.Windows": "4.5.0" - }, - "compile": { - "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll": {} - }, - "runtime": { - "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll": {} - } - }, - "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", - "Newtonsoft.Json": "11.0.2", - "System.Buffers": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": {} - } - }, - "Microsoft.AspNetCore.Http.Extensions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", - "Microsoft.Net.Http.Headers": "2.2.0", - "System.Buffers": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} - } - }, - "Microsoft.AspNetCore.Http.Features/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} - } - }, - "Microsoft.AspNetCore.HttpOverrides/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {} - } - }, - "Microsoft.AspNetCore.HttpsPolicy/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Configuration.Binder": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.dll": {} - } - }, - "Microsoft.AspNetCore.Identity/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication.Cookies": "2.2.0", - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.2.0", - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.Extensions.Identity.Core": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll": {} - } - }, - "Microsoft.AspNetCore.Identity.EntityFrameworkCore/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Identity": "2.2.0", - "Microsoft.EntityFrameworkCore.Relational": "2.2.0", - "Microsoft.Extensions.Identity.Stores": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {} - } - }, - "Microsoft.AspNetCore.Identity.UI/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Identity": "2.2.0", - "Microsoft.AspNetCore.Mvc": "2.2.0", - "Microsoft.AspNetCore.StaticFiles": "2.2.0", - "Microsoft.Extensions.FileProviders.Embedded": "2.2.0", - "Microsoft.Extensions.Identity.Stores": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.V3.dll": {}, - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.V4.dll": {}, - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.V3.dll": {}, - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.V4.dll": {}, - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.dll": {} - } - }, - "Microsoft.AspNetCore.JsonPatch/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.5.0", - "Newtonsoft.Json": "11.0.2" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {} - } - }, - "Microsoft.AspNetCore.Localization/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Localization.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {} - } - }, - "Microsoft.AspNetCore.Localization.Routing/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Localization": "2.2.0", - "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll": {} - } - }, - "Microsoft.AspNetCore.MiddlewareAnalysis/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "System.Diagnostics.DiagnosticSource": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll": {} - } - }, - "Microsoft.AspNetCore.Mvc/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Mvc.Analyzers": "2.2.0", - "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.2.0", - "Microsoft.AspNetCore.Mvc.Cors": "2.2.0", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.2.0", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.2.0", - "Microsoft.AspNetCore.Mvc.Localization": "2.2.0", - "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.2.0", - "Microsoft.AspNetCore.Mvc.RazorPages": "2.2.0", - "Microsoft.AspNetCore.Mvc.TagHelpers": "2.2.0", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.2.0", - "Microsoft.AspNetCore.Razor.Design": "2.2.0", - "Microsoft.Extensions.Caching.Memory": "2.2.0", - "Microsoft.Extensions.DependencyInjection": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {} - } - }, - "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", - "Microsoft.Net.Http.Headers": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} - } - }, - "Microsoft.AspNetCore.Mvc.Analyzers/2.2.0": { - "type": "package" - }, - "Microsoft.AspNetCore.Mvc.ApiExplorer/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Mvc.Core": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} - } - }, - "Microsoft.AspNetCore.Mvc.Core/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication.Core": "2.2.0", - "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0", - "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Routing": "2.2.0", - "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.Extensions.DependencyModel": "2.1.0", - "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "System.Diagnostics.DiagnosticSource": "4.5.0", - "System.Threading.Tasks.Extensions": "4.5.1" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} - } - }, - "Microsoft.AspNetCore.Mvc.Cors/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Cors": "2.2.0", - "Microsoft.AspNetCore.Mvc.Core": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {} - } - }, - "Microsoft.AspNetCore.Mvc.DataAnnotations/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Mvc.Core": "2.2.0", - "Microsoft.Extensions.Localization": "2.2.0", - "System.ComponentModel.Annotations": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} - } - }, - "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "2.2.0", - "Microsoft.AspNetCore.Mvc.Core": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} - } - }, - "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Mvc.Core": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} - } - }, - "Microsoft.AspNetCore.Mvc.Localization/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Localization": "2.2.0", - "Microsoft.AspNetCore.Mvc.Razor": "2.2.0", - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.Extensions.Localization": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {} - } - }, - "Microsoft.AspNetCore.Mvc.Razor/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.2.0", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.2.0", - "Microsoft.AspNetCore.Razor.Runtime": "2.2.0", - "Microsoft.CodeAnalysis.CSharp": "2.8.0", - "Microsoft.CodeAnalysis.Razor": "2.2.0", - "Microsoft.Extensions.Caching.Memory": "2.2.0", - "Microsoft.Extensions.FileProviders.Composite": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {} - } - }, - "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "2.2.0", - "Microsoft.CodeAnalysis.Razor": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} - }, - "build": { - "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.props": {}, - "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.targets": {} - } - }, - "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Hosting": "2.2.0", - "Microsoft.AspNetCore.Mvc.RazorPages": "2.2.0" - }, - "build": { - "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.targets": {} - } - }, - "Microsoft.AspNetCore.Mvc.RazorPages/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Mvc.Razor": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {} - } - }, - "Microsoft.AspNetCore.Mvc.TagHelpers/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Mvc.Razor": "2.2.0", - "Microsoft.AspNetCore.Razor.Runtime": "2.2.0", - "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", - "Microsoft.Extensions.Caching.Memory": "2.2.0", - "Microsoft.Extensions.FileSystemGlobbing": "2.2.0", - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} - } - }, - "Microsoft.AspNetCore.Mvc.ViewFeatures/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Antiforgery": "2.2.0", - "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Html.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Mvc.Core": "2.2.0", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.2.0", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.2.0", - "Microsoft.Extensions.WebEncoders": "2.2.0", - "Newtonsoft.Json.Bson": "1.0.1" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} - } - }, - "Microsoft.AspNetCore.NodeServices/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Console": "2.2.0", - "Newtonsoft.Json": "11.0.2" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll": {} - } - }, - "Microsoft.AspNetCore.Owin/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll": {} - } - }, - "Microsoft.AspNetCore.Razor/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Html.Abstractions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {} - } - }, - "Microsoft.AspNetCore.Razor.Design/2.2.0": { - "type": "package", - "build": { - "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.props": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.AspNetCore.Razor.Design.props": {} - } - }, - "Microsoft.AspNetCore.Razor.Language/2.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} - } - }, - "Microsoft.AspNetCore.Razor.Runtime/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Html.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Razor": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {} - } - }, - "Microsoft.AspNetCore.ResponseCaching/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0", - "Microsoft.Extensions.Caching.Memory": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll": {} - } - }, - "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} - } - }, - "Microsoft.AspNetCore.ResponseCompression/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netcoreapp2.1/Microsoft.AspNetCore.ResponseCompression.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.AspNetCore.ResponseCompression.dll": {} - } - }, - "Microsoft.AspNetCore.Rewrite/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", - "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll": {} - } - }, - "Microsoft.AspNetCore.Routing/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.ObjectPool": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} - }, - "runtime": { - "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} - } - }, - "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} - } - }, - "Microsoft.AspNetCore.Server.HttpSys/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication.Core": "2.2.0", - "Microsoft.AspNetCore.Hosting": "2.2.0", - "Microsoft.Net.Http.Headers": "2.2.0", - "Microsoft.Win32.Registry": "4.5.0", - "System.Security.Principal.Windows": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll": {} - } - }, - "Microsoft.AspNetCore.Server.IIS/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication.Core": "2.2.0", - "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "System.IO.Pipelines": "4.5.2", - "System.Security.Principal.Windows": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Server.IIS.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Server.IIS.dll": {} - }, - "build": { - "build/netstandard2.0/Microsoft.AspNetCore.Server.IIS.targets": {} - }, - "runtimeTargets": { - "runtimes/win-x64/nativeassets/netcoreapp2.2/aspnetcorev2_inprocess.dll": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x86/nativeassets/netcoreapp2.2/aspnetcorev2_inprocess.dll": { - "assetType": "native", - "rid": "win-x86" - } - } - }, - "Microsoft.AspNetCore.Server.IISIntegration/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication.Core": "2.2.0", - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.AspNetCore.HttpOverrides": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "System.Buffers": "4.5.0", - "System.IO.Pipelines": "4.5.2", - "System.Memory": "4.5.1", - "System.Numerics.Vectors": "4.5.0", - "System.Runtime.CompilerServices.Unsafe": "4.5.1", - "System.Security.Principal.Windows": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {} - }, - "build": { - "build/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.targets": {} - } - }, - "Microsoft.AspNetCore.Server.Kestrel/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Hosting": "2.2.0", - "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0", - "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {} - } - }, - "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0", - "Microsoft.AspNetCore.WebUtilities": "2.2.0", - "Microsoft.Extensions.Configuration.Binder": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "Microsoft.Net.Http.Headers": "2.2.0", - "System.Memory": "4.5.1", - "System.Numerics.Vectors": "4.5.0", - "System.Runtime.CompilerServices.Unsafe": "4.5.1", - "System.Security.Cryptography.Cng": "4.5.0", - "System.Threading.Tasks.Extensions": "4.5.1" - }, - "compile": { - "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} - } - }, - "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0" - }, - "compile": { - "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {} - } - }, - "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {} - } - }, - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} - } - }, - "Microsoft.AspNetCore.Session/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.DataProtection": "2.2.0", - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.Caching.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Session.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Session.dll": {} - } - }, - "Microsoft.AspNetCore.SignalR/1.1.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Connections": "1.1.0", - "Microsoft.AspNetCore.SignalR.Core": "1.1.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {} - } - }, - "Microsoft.AspNetCore.SignalR.Common/1.1.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "Newtonsoft.Json": "11.0.2", - "System.Buffers": "4.5.0" - }, - "compile": { - "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": {} - }, - "runtime": { - "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": {} - } - }, - "Microsoft.AspNetCore.SignalR.Core/1.1.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authorization": "2.2.0", - "Microsoft.AspNetCore.SignalR.Common": "1.1.0", - "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "System.Reflection.Emit": "4.3.0", - "System.Threading.Channels": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {} - } - }, - "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.SignalR.Common": "1.1.0", - "Newtonsoft.Json": "11.0.2" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} - } - }, - "Microsoft.AspNetCore.SpaServices/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Mvc.TagHelpers": "2.2.0", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.2.0", - "Microsoft.AspNetCore.NodeServices": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll": {} - } - }, - "Microsoft.AspNetCore.SpaServices.Extensions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.SpaServices": "2.2.0", - "Microsoft.AspNetCore.StaticFiles": "2.2.0", - "Microsoft.AspNetCore.WebSockets": "2.2.0", - "Microsoft.Extensions.FileProviders.Physical": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.Extensions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.Extensions.dll": {} - } - }, - "Microsoft.AspNetCore.StaticFiles/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.WebEncoders": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll": {} - } - }, - "Microsoft.AspNetCore.WebSockets/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "System.Net.WebSockets.WebSocketProtocol": "4.5.1" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {} - } - }, - "Microsoft.AspNetCore.WebUtilities/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Net.Http.Headers": "2.2.0", - "System.Text.Encodings.Web": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} - } - }, - "Microsoft.CodeAnalysis.Analyzers/1.1.0": { - "type": "package" - }, - "Microsoft.CodeAnalysis.Common/2.8.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "1.1.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Collections.Immutable": "1.3.1", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.FileVersionInfo": "4.3.0", - "System.Diagnostics.StackTrace": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Metadata": "1.4.2", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.CodePages": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Parallel": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.ValueTuple": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0", - "System.Xml.XPath.XDocument": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "compile": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {} - } - }, - "Microsoft.CodeAnalysis.CSharp/2.8.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Common": "[2.8.0]" - }, - "compile": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {} - } - }, - "Microsoft.CodeAnalysis.Razor/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "2.2.0", - "Microsoft.CodeAnalysis.CSharp": "2.8.0", - "Microsoft.CodeAnalysis.Common": "2.8.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} - } - }, - "Microsoft.CSharp/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "Microsoft.DotNet.PlatformAbstractions/2.1.0": { - "type": "package", - "dependencies": { - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" - }, - "compile": { - "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {} - } - }, - "Microsoft.EntityFrameworkCore/2.2.4": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "2.2.4", - "Microsoft.EntityFrameworkCore.Analyzers": "2.2.4", - "Microsoft.Extensions.Caching.Memory": "2.2.0", - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.Extensions.Logging": "2.2.0", - "Remotion.Linq": "2.2.0", - "System.Collections.Immutable": "1.5.0", - "System.ComponentModel.Annotations": "4.5.0", - "System.Diagnostics.DiagnosticSource": "4.5.0", - "System.Interactive.Async": "3.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/2.2.4": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/2.2.4": { - "type": "package" - }, - "Microsoft.EntityFrameworkCore.Design/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.5.0", - "Microsoft.EntityFrameworkCore.Relational": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {} - }, - "build": { - "build/netcoreapp2.0/Microsoft.EntityFrameworkCore.Design.props": {} - } - }, - "Microsoft.EntityFrameworkCore.InMemory/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Relational/2.2.4": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "2.2.4" - }, - "compile": { - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.SqlServer/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Relational": "2.2.0", - "System.Data.SqlClient": "4.6.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Tools/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/_._": {} - } - }, - "Microsoft.Extensions.Caching.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Caching.Memory/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "2.2.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} - } - }, - "Microsoft.Extensions.Caching.SqlServer/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "System.Data.SqlClient": "4.6.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll": {} - } - }, - "Microsoft.Extensions.Configuration/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.Configuration.CommandLine/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {} - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "2.2.0", - "Microsoft.Extensions.FileProviders.Physical": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Ini/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "2.2.0", - "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Json/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "2.2.0", - "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0", - "Newtonsoft.Json": "11.0.2" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {} - } - }, - "Microsoft.Extensions.Configuration.KeyPerFile/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "2.2.0", - "Microsoft.Extensions.FileProviders.Physical": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.KeyPerFile.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.KeyPerFile.dll": {} - } - }, - "Microsoft.Extensions.Configuration.UserSecrets/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Json": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {} - }, - "build": { - "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props": {}, - "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {} - } - }, - "Microsoft.Extensions.Configuration.Xml/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "2.2.0", - "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0", - "System.Security.Cryptography.Xml": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0" - }, - "compile": { - "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.DependencyModel/2.1.0": { - "type": "package", - "dependencies": { - "Microsoft.DotNet.PlatformAbstractions": "2.1.0", - "Newtonsoft.Json": "9.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Linq": "4.1.0" - }, - "compile": { - "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} - }, - "runtime": { - "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} - } - }, - "Microsoft.Extensions.DiagnosticAdapter/2.2.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.DiagnosticSource": "4.5.0" - }, - "compile": { - "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll": {} - }, - "runtime": { - "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll": {} - } - }, - "Microsoft.Extensions.Diagnostics.HealthChecks/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "2.2.0", - "Microsoft.Extensions.Hosting.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} - } - }, - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/2.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.FileProviders.Composite/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {} - } - }, - "Microsoft.Extensions.FileProviders.Embedded/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll": {} - }, - "build": { - "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props": {}, - "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props": {}, - "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets": {} - } - }, - "Microsoft.Extensions.FileProviders.Physical/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", - "Microsoft.Extensions.FileSystemGlobbing": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {} - } - }, - "Microsoft.Extensions.FileSystemGlobbing/2.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} - } - }, - "Microsoft.Extensions.Hosting/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "2.2.0", - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.Extensions.FileProviders.Physical": "2.2.0", - "Microsoft.Extensions.Hosting.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {} - } - }, - "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Http/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {} - } - }, - "Microsoft.Extensions.Identity.Core/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.2.0", - "Microsoft.Extensions.Logging": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "System.ComponentModel.Annotations": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {} - } - }, - "Microsoft.Extensions.Identity.Stores/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Identity.Core": "2.2.0", - "Microsoft.Extensions.Logging": "2.2.0", - "System.ComponentModel.Annotations": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {} - } - }, - "Microsoft.Extensions.Localization/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Localization.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {} - } - }, - "Microsoft.Extensions.Localization.Abstractions/2.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Binder": "2.2.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/2.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging.Configuration/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging": "2.2.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Logging.Console/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging": "2.2.0", - "Microsoft.Extensions.Logging.Configuration": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {} - } - }, - "Microsoft.Extensions.Logging.Debug/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {} - } - }, - "Microsoft.Extensions.Logging.EventSource/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging": "2.2.0", - "Newtonsoft.Json": "11.0.2" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {} - } - }, - "Microsoft.Extensions.Logging.TraceSource/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll": {} - } - }, - "Microsoft.Extensions.ObjectPool/2.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} - } - }, - "Microsoft.Extensions.Options/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Primitives": "2.2.0", - "System.ComponentModel.Annotations": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", - "Microsoft.Extensions.Configuration.Binder": "2.2.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} - } - }, - "Microsoft.Extensions.Options.DataAnnotations/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "System.ComponentModel.Annotations": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Options.DataAnnotations.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.DataAnnotations.dll": {} - } - }, - "Microsoft.Extensions.Primitives/2.2.0": { - "type": "package", - "dependencies": { - "System.Memory": "4.5.1", - "System.Runtime.CompilerServices.Unsafe": "4.5.1" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.Extensions.WebEncoders/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "System.Text.Encodings.Web": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {} - } - }, - "Microsoft.IdentityModel.JsonWebTokens/5.3.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "5.3.0", - "Newtonsoft.Json": "10.0.1" - }, - "compile": { - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} - } - }, - "Microsoft.IdentityModel.Logging/5.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} - } - }, - "Microsoft.IdentityModel.Protocols/5.3.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Logging": "5.3.0", - "Microsoft.IdentityModel.Tokens": "5.3.0", - "System.Collections.Specialized": "4.3.0", - "System.Diagnostics.Contracts": "4.3.0", - "System.Net.Http": "4.3.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.3.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Protocols": "5.3.0", - "Newtonsoft.Json": "10.0.1", - "System.Dynamic.Runtime": "4.3.0", - "System.IdentityModel.Tokens.Jwt": "5.3.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} - } - }, - "Microsoft.IdentityModel.Protocols.WsFederation/5.3.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Protocols": "5.3.0", - "Microsoft.IdentityModel.Tokens.Saml": "5.3.0", - "Microsoft.IdentityModel.Xml": "5.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.WsFederation.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.WsFederation.dll": {} - } - }, - "Microsoft.IdentityModel.Tokens/5.3.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Logging": "5.3.0", - "Newtonsoft.Json": "10.0.1", - "System.Collections": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Serialization.Xml": "4.3.0", - "System.Security.Claims": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} - } - }, - "Microsoft.IdentityModel.Tokens.Saml/5.3.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "5.3.0", - "Microsoft.IdentityModel.Xml": "5.3.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.dll": {} - } - }, - "Microsoft.IdentityModel.Xml/5.3.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "5.3.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.IdentityModel.Xml.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Xml.dll": {} - } - }, - "Microsoft.Net.Http.Headers/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0", - "System.Buffers": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} - } - }, - "Microsoft.NETCore.App/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetHostPolicy": "2.2.0", - "Microsoft.NETCore.Platforms": "2.2.0", - "Microsoft.NETCore.Targets": "2.0.0", - "NETStandard.Library": "2.0.3" - }, - "compile": { - "ref/netcoreapp2.2/Microsoft.CSharp.dll": {}, - "ref/netcoreapp2.2/Microsoft.VisualBasic.dll": {}, - "ref/netcoreapp2.2/Microsoft.Win32.Primitives.dll": {}, - "ref/netcoreapp2.2/System.AppContext.dll": {}, - "ref/netcoreapp2.2/System.Buffers.dll": {}, - "ref/netcoreapp2.2/System.Collections.Concurrent.dll": {}, - "ref/netcoreapp2.2/System.Collections.Immutable.dll": {}, - "ref/netcoreapp2.2/System.Collections.NonGeneric.dll": {}, - "ref/netcoreapp2.2/System.Collections.Specialized.dll": {}, - "ref/netcoreapp2.2/System.Collections.dll": {}, - "ref/netcoreapp2.2/System.ComponentModel.Annotations.dll": {}, - "ref/netcoreapp2.2/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcoreapp2.2/System.ComponentModel.EventBasedAsync.dll": {}, - "ref/netcoreapp2.2/System.ComponentModel.Primitives.dll": {}, - "ref/netcoreapp2.2/System.ComponentModel.TypeConverter.dll": {}, - "ref/netcoreapp2.2/System.ComponentModel.dll": {}, - "ref/netcoreapp2.2/System.Configuration.dll": {}, - "ref/netcoreapp2.2/System.Console.dll": {}, - "ref/netcoreapp2.2/System.Core.dll": {}, - "ref/netcoreapp2.2/System.Data.Common.dll": {}, - "ref/netcoreapp2.2/System.Data.dll": {}, - "ref/netcoreapp2.2/System.Diagnostics.Contracts.dll": {}, - "ref/netcoreapp2.2/System.Diagnostics.Debug.dll": {}, - "ref/netcoreapp2.2/System.Diagnostics.DiagnosticSource.dll": {}, - "ref/netcoreapp2.2/System.Diagnostics.FileVersionInfo.dll": {}, - "ref/netcoreapp2.2/System.Diagnostics.Process.dll": {}, - "ref/netcoreapp2.2/System.Diagnostics.StackTrace.dll": {}, - "ref/netcoreapp2.2/System.Diagnostics.TextWriterTraceListener.dll": {}, - "ref/netcoreapp2.2/System.Diagnostics.Tools.dll": {}, - "ref/netcoreapp2.2/System.Diagnostics.TraceSource.dll": {}, - "ref/netcoreapp2.2/System.Diagnostics.Tracing.dll": {}, - "ref/netcoreapp2.2/System.Drawing.Primitives.dll": {}, - "ref/netcoreapp2.2/System.Drawing.dll": {}, - "ref/netcoreapp2.2/System.Dynamic.Runtime.dll": {}, - "ref/netcoreapp2.2/System.Globalization.Calendars.dll": {}, - "ref/netcoreapp2.2/System.Globalization.Extensions.dll": {}, - "ref/netcoreapp2.2/System.Globalization.dll": {}, - "ref/netcoreapp2.2/System.IO.Compression.Brotli.dll": {}, - "ref/netcoreapp2.2/System.IO.Compression.FileSystem.dll": {}, - "ref/netcoreapp2.2/System.IO.Compression.ZipFile.dll": {}, - "ref/netcoreapp2.2/System.IO.Compression.dll": {}, - "ref/netcoreapp2.2/System.IO.FileSystem.DriveInfo.dll": {}, - "ref/netcoreapp2.2/System.IO.FileSystem.Primitives.dll": {}, - "ref/netcoreapp2.2/System.IO.FileSystem.Watcher.dll": {}, - "ref/netcoreapp2.2/System.IO.FileSystem.dll": {}, - "ref/netcoreapp2.2/System.IO.IsolatedStorage.dll": {}, - "ref/netcoreapp2.2/System.IO.MemoryMappedFiles.dll": {}, - "ref/netcoreapp2.2/System.IO.Pipes.dll": {}, - "ref/netcoreapp2.2/System.IO.UnmanagedMemoryStream.dll": {}, - "ref/netcoreapp2.2/System.IO.dll": {}, - "ref/netcoreapp2.2/System.Linq.Expressions.dll": {}, - "ref/netcoreapp2.2/System.Linq.Parallel.dll": {}, - "ref/netcoreapp2.2/System.Linq.Queryable.dll": {}, - "ref/netcoreapp2.2/System.Linq.dll": {}, - "ref/netcoreapp2.2/System.Memory.dll": {}, - "ref/netcoreapp2.2/System.Net.Http.dll": {}, - "ref/netcoreapp2.2/System.Net.HttpListener.dll": {}, - "ref/netcoreapp2.2/System.Net.Mail.dll": {}, - "ref/netcoreapp2.2/System.Net.NameResolution.dll": {}, - "ref/netcoreapp2.2/System.Net.NetworkInformation.dll": {}, - "ref/netcoreapp2.2/System.Net.Ping.dll": {}, - "ref/netcoreapp2.2/System.Net.Primitives.dll": {}, - "ref/netcoreapp2.2/System.Net.Requests.dll": {}, - "ref/netcoreapp2.2/System.Net.Security.dll": {}, - "ref/netcoreapp2.2/System.Net.ServicePoint.dll": {}, - "ref/netcoreapp2.2/System.Net.Sockets.dll": {}, - "ref/netcoreapp2.2/System.Net.WebClient.dll": {}, - "ref/netcoreapp2.2/System.Net.WebHeaderCollection.dll": {}, - "ref/netcoreapp2.2/System.Net.WebProxy.dll": {}, - "ref/netcoreapp2.2/System.Net.WebSockets.Client.dll": {}, - "ref/netcoreapp2.2/System.Net.WebSockets.dll": {}, - "ref/netcoreapp2.2/System.Net.dll": {}, - "ref/netcoreapp2.2/System.Numerics.Vectors.dll": {}, - "ref/netcoreapp2.2/System.Numerics.dll": {}, - "ref/netcoreapp2.2/System.ObjectModel.dll": {}, - "ref/netcoreapp2.2/System.Reflection.DispatchProxy.dll": {}, - "ref/netcoreapp2.2/System.Reflection.Emit.ILGeneration.dll": {}, - "ref/netcoreapp2.2/System.Reflection.Emit.Lightweight.dll": {}, - "ref/netcoreapp2.2/System.Reflection.Emit.dll": {}, - "ref/netcoreapp2.2/System.Reflection.Extensions.dll": {}, - "ref/netcoreapp2.2/System.Reflection.Metadata.dll": {}, - "ref/netcoreapp2.2/System.Reflection.Primitives.dll": {}, - "ref/netcoreapp2.2/System.Reflection.TypeExtensions.dll": {}, - "ref/netcoreapp2.2/System.Reflection.dll": {}, - "ref/netcoreapp2.2/System.Resources.Reader.dll": {}, - "ref/netcoreapp2.2/System.Resources.ResourceManager.dll": {}, - "ref/netcoreapp2.2/System.Resources.Writer.dll": {}, - "ref/netcoreapp2.2/System.Runtime.CompilerServices.VisualC.dll": {}, - "ref/netcoreapp2.2/System.Runtime.Extensions.dll": {}, - "ref/netcoreapp2.2/System.Runtime.Handles.dll": {}, - "ref/netcoreapp2.2/System.Runtime.InteropServices.RuntimeInformation.dll": {}, - "ref/netcoreapp2.2/System.Runtime.InteropServices.WindowsRuntime.dll": {}, - "ref/netcoreapp2.2/System.Runtime.InteropServices.dll": {}, - "ref/netcoreapp2.2/System.Runtime.Loader.dll": {}, - "ref/netcoreapp2.2/System.Runtime.Numerics.dll": {}, - "ref/netcoreapp2.2/System.Runtime.Serialization.Formatters.dll": {}, - "ref/netcoreapp2.2/System.Runtime.Serialization.Json.dll": {}, - "ref/netcoreapp2.2/System.Runtime.Serialization.Primitives.dll": {}, - "ref/netcoreapp2.2/System.Runtime.Serialization.Xml.dll": {}, - "ref/netcoreapp2.2/System.Runtime.Serialization.dll": {}, - "ref/netcoreapp2.2/System.Runtime.dll": {}, - "ref/netcoreapp2.2/System.Security.Claims.dll": {}, - "ref/netcoreapp2.2/System.Security.Cryptography.Algorithms.dll": {}, - "ref/netcoreapp2.2/System.Security.Cryptography.Csp.dll": {}, - "ref/netcoreapp2.2/System.Security.Cryptography.Encoding.dll": {}, - "ref/netcoreapp2.2/System.Security.Cryptography.Primitives.dll": {}, - "ref/netcoreapp2.2/System.Security.Cryptography.X509Certificates.dll": {}, - "ref/netcoreapp2.2/System.Security.Principal.dll": {}, - "ref/netcoreapp2.2/System.Security.SecureString.dll": {}, - "ref/netcoreapp2.2/System.Security.dll": {}, - "ref/netcoreapp2.2/System.ServiceModel.Web.dll": {}, - "ref/netcoreapp2.2/System.ServiceProcess.dll": {}, - "ref/netcoreapp2.2/System.Text.Encoding.Extensions.dll": {}, - "ref/netcoreapp2.2/System.Text.Encoding.dll": {}, - "ref/netcoreapp2.2/System.Text.RegularExpressions.dll": {}, - "ref/netcoreapp2.2/System.Threading.Overlapped.dll": {}, - "ref/netcoreapp2.2/System.Threading.Tasks.Dataflow.dll": {}, - "ref/netcoreapp2.2/System.Threading.Tasks.Extensions.dll": {}, - "ref/netcoreapp2.2/System.Threading.Tasks.Parallel.dll": {}, - "ref/netcoreapp2.2/System.Threading.Tasks.dll": {}, - "ref/netcoreapp2.2/System.Threading.Thread.dll": {}, - "ref/netcoreapp2.2/System.Threading.ThreadPool.dll": {}, - "ref/netcoreapp2.2/System.Threading.Timer.dll": {}, - "ref/netcoreapp2.2/System.Threading.dll": {}, - "ref/netcoreapp2.2/System.Transactions.Local.dll": {}, - "ref/netcoreapp2.2/System.Transactions.dll": {}, - "ref/netcoreapp2.2/System.ValueTuple.dll": {}, - "ref/netcoreapp2.2/System.Web.HttpUtility.dll": {}, - "ref/netcoreapp2.2/System.Web.dll": {}, - "ref/netcoreapp2.2/System.Windows.dll": {}, - "ref/netcoreapp2.2/System.Xml.Linq.dll": {}, - "ref/netcoreapp2.2/System.Xml.ReaderWriter.dll": {}, - "ref/netcoreapp2.2/System.Xml.Serialization.dll": {}, - "ref/netcoreapp2.2/System.Xml.XDocument.dll": {}, - "ref/netcoreapp2.2/System.Xml.XPath.XDocument.dll": {}, - "ref/netcoreapp2.2/System.Xml.XPath.dll": {}, - "ref/netcoreapp2.2/System.Xml.XmlDocument.dll": {}, - "ref/netcoreapp2.2/System.Xml.XmlSerializer.dll": {}, - "ref/netcoreapp2.2/System.Xml.dll": {}, - "ref/netcoreapp2.2/System.dll": {}, - "ref/netcoreapp2.2/WindowsBase.dll": {}, - "ref/netcoreapp2.2/mscorlib.dll": {}, - "ref/netcoreapp2.2/netstandard.dll": {} - }, - "build": { - "build/netcoreapp2.2/Microsoft.NETCore.App.props": {}, - "build/netcoreapp2.2/Microsoft.NETCore.App.targets": {} - } - }, - "Microsoft.NETCore.DotNetAppHost/2.2.0": { - "type": "package" - }, - "Microsoft.NETCore.DotNetHostPolicy/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetHostResolver": "2.2.0" - } - }, - "Microsoft.NETCore.DotNetHostResolver/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetAppHost": "2.2.0" - } - }, - "Microsoft.NETCore.Platforms/2.2.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/2.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.Win32.Registry/4.5.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "4.5.0", - "System.Security.Principal.Windows": "4.5.0" - }, - "compile": { - "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "NETStandard.Library/2.0.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - }, - "build": { - "build/netstandard2.0/NETStandard.Library.targets": {} - } - }, - "Newtonsoft.Json/11.0.2": { - "type": "package", - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} - } - }, - "Newtonsoft.Json.Bson/1.0.1": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "Newtonsoft.Json": "10.0.1" - }, - "compile": { - "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {} - } - }, - "Npgsql/4.0.7": { - "type": "package", - "dependencies": { - "System.Memory": "4.5.3", - "System.Runtime.CompilerServices.Unsafe": "4.5.2", - "System.Threading.Tasks.Extensions": "4.5.2", - "System.ValueTuple": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Npgsql.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Npgsql.dll": {} - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/2.2.4": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "2.2.4", - "Microsoft.EntityFrameworkCore.Abstractions": "2.2.4", - "Microsoft.EntityFrameworkCore.Relational": "2.2.4", - "Npgsql": "4.0.7" - }, - "compile": { - "lib/netstandard2.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {} - } - }, - "Remotion.Linq/2.2.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Queryable": "4.0.1", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "lib/netstandard1.0/Remotion.Linq.dll": {} - }, - "runtime": { - "lib/netstandard1.0/Remotion.Linq.dll": {} - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "debian.8-x64" - } - } - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.23-x64" - } - } - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.24-x64" - } - } - }, - "runtime.native.System/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Data.SqlClient.sni/4.5.0": { - "type": "package", - "dependencies": { - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.13.2-x64" - } - } - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.42.1-x64" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "rhel.7-x64" - } - } - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.14.04-x64" - } - } - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.04-x64" - } - } - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.10-x64" - } - } - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "runtimeTargets": { - "runtimes/win-arm64/native/sni.dll": { - "assetType": "native", - "rid": "win-arm64" - } - } - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "runtimeTargets": { - "runtimes/win-x64/native/sni.dll": { - "assetType": "native", - "rid": "win-x64" - } - } - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "runtimeTargets": { - "runtimes/win-x86/native/sni.dll": { - "assetType": "native", - "rid": "win-x86" - } - } - }, - "System.AppContext/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.AppContext.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.AppContext.dll": {} - } - }, - "System.Buffers/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.5.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel.Annotations/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.Console/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": {} - } - }, - "System.Data.SqlClient/4.6.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Registry": "4.5.0", - "System.Security.Principal.Windows": "4.5.0", - "System.Text.Encoding.CodePages": "4.5.0", - "runtime.native.System.Data.SqlClient.sni": "4.5.0" - }, - "compile": { - "ref/netcoreapp2.1/System.Data.SqlClient.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.Contracts/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.5.0": { - "type": "package", - "compile": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.FileVersionInfo/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Reflection.Metadata": "1.4.1", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.StackTrace/4.3.0": { - "type": "package", - "dependencies": { - "System.IO.FileSystem": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Metadata": "1.4.1", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IdentityModel.Tokens.Jwt/5.3.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "5.3.0", - "Microsoft.IdentityModel.Tokens": "5.3.0", - "Newtonsoft.Json": "10.0.1" - }, - "compile": { - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} - } - }, - "System.Interactive.Async/3.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Interactive.Async.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Interactive.Async.dll": {} - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": {} - } - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.Pipelines/4.5.2": { - "type": "package", - "compile": { - "ref/netstandard1.3/System.IO.Pipelines.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/System.IO.Pipelines.dll": {} - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Linq.Queryable.dll": {} - } - }, - "System.Memory/4.5.3": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Http.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Primitives.dll": {} - } - }, - "System.Net.WebSockets.WebSocketProtocol/4.5.1": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": {} - } - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0", - "System.Xml.XmlDocument": "4.3.0", - "System.Xml.XmlSerializer": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.dll": {} - } - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.6.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": {} - } - }, - "System.Runtime.CompilerServices.Unsafe/4.5.2": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "runtime": { - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.Private.DataContractSerialization": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Security.AccessControl/4.5.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "2.0.0", - "System.Security.Principal.Windows": "4.5.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.AccessControl.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Claims/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Security.Principal": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtimeTargets": { - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Cng/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtime": { - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { - "assetType": "runtime", - "rid": "unix" - } - } - }, - "System.Security.Cryptography.Pkcs/4.5.0": { - "type": "package", - "dependencies": { - "System.Security.Cryptography.Cng": "4.5.0" - }, - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Xml/4.5.0": { - "type": "package", - "dependencies": { - "System.Security.Cryptography.Pkcs": "4.5.0", - "System.Security.Permissions": "4.5.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.Cryptography.Xml.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {} - } - }, - "System.Security.Permissions/4.5.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "4.5.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.Permissions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.Permissions.dll": {} - } - }, - "System.Security.Principal/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Security.Principal.dll": {} - } - }, - "System.Security.Principal.Windows/4.5.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "2.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.5.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "2.0.0", - "System.Runtime.CompilerServices.Unsafe": "4.5.0" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.Encodings.Web/4.5.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Text.Encodings.Web.dll": {} - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": {} - } - }, - "System.Threading.Channels/4.5.0": { - "type": "package", - "compile": { - "lib/netcoreapp2.1/System.Threading.Channels.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/System.Threading.Channels.dll": {} - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.5.2": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Threading.Tasks.Parallel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Thread.dll": {} - } - }, - "System.ValueTuple/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} - } - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.dll": {} - } - }, - "System.Xml.XPath.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0", - "System.Xml.XPath": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {} - } - } - } - }, - "libraries": { - "Microsoft.AspNet.WebApi.Client/5.2.6": { - "sha512": "owAlEIUZXWSnkK8Z1c+zR47A0X6ykF4XjbPok4lQKNuciUfHLGPd6QnI+rt/8KlQ17PmF+I4S3f+m+Qe4IvViw==", - "type": "package", - "path": "microsoft.aspnet.webapi.client/5.2.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/System.Net.Http.Formatting.dll", - "lib/net45/System.Net.Http.Formatting.xml", - "lib/netstandard2.0/System.Net.Http.Formatting.dll", - "lib/netstandard2.0/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.6.nupkg.sha512", - "microsoft.aspnet.webapi.client.nuspec" - ] - }, - "Microsoft.AspNetCore/2.2.0": { - "sha512": "Bs75iht4lXS8uVWy/Cbsr9i0m2jRtnrfPEWU+6t0dQTZcJEfF9b7G2F7XvstLFWkAKSgYRzFkAwi/KypY0Qtew==", - "type": "package", - "path": "microsoft.aspnetcore/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.xml", - "microsoft.aspnetcore.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.nuspec" - ] - }, - "Microsoft.AspNetCore.Antiforgery/2.2.0": { - "sha512": "fVQsSXNZz38Ysx8iKwwqfOLHhLrAeKEMBS5Ia3Lh7BJjOC2vPV28/yk08AovOMsB3SNQPGnE7bv+lsIBTmAkvw==", - "type": "package", - "path": "microsoft.aspnetcore.antiforgery/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.xml", - "microsoft.aspnetcore.antiforgery.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.antiforgery.nuspec" - ] - }, - "Microsoft.AspNetCore.App/2.2.0": { - "sha512": "L3W3kgOOU5+2Tdtnzywcs4/a3XFbwcM7Ghvr2uWnhLUvBithluWlGI+0/lXFrDysXaRMLSRJdExSLuSJJQYuTg==", - "type": "package", - "path": "microsoft.aspnetcore.app/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/netcoreapp2.2/Microsoft.AspNetCore.App.props", - "build/netcoreapp2.2/Microsoft.AspNetCore.App.targets", - "lib/netcoreapp2.2/_._", - "microsoft.aspnetcore.app.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.app.nuspec" - ] - }, - "Microsoft.AspNetCore.Authentication/2.2.0": { - "sha512": "b0R9X7L6zMqNsssKDvhYHuNi5x0s4DyHTeXybIAyGaitKiW1Q5aAGKdV2codHPiePv9yHfC9hAMyScXQ/xXhPw==", - "type": "package", - "path": "microsoft.aspnetcore.authentication/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.xml", - "microsoft.aspnetcore.authentication.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authentication.nuspec" - ] - }, - "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { - "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", - "type": "package", - "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml", - "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authentication.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Authentication.Cookies/2.2.0": { - "sha512": "Iar9VFlBHkZGdSG9ZUTmn6Q8Qg+6CtW5G/TyJI2F8B432TOH+nZlkU7O0W0byow6xsxqOYeTviSHz4cCJ3amfQ==", - "type": "package", - "path": "microsoft.aspnetcore.authentication.cookies/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.xml", - "microsoft.aspnetcore.authentication.cookies.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authentication.cookies.nuspec" - ] - }, - "Microsoft.AspNetCore.Authentication.Core/2.2.0": { - "sha512": "XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", - "type": "package", - "path": "microsoft.aspnetcore.authentication.core/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml", - "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authentication.core.nuspec" - ] - }, - "Microsoft.AspNetCore.Authentication.Facebook/2.2.0": { - "sha512": "SOc/wjoBntSWVZ6uG0R/TqQ0xmxu2H1PhkuYxINYpkUB7s3cQQuRDyZtJIdQonzpWVwBRj0ImwktiMaBF/7ihQ==", - "type": "package", - "path": "microsoft.aspnetcore.authentication.facebook/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.xml", - "microsoft.aspnetcore.authentication.facebook.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authentication.facebook.nuspec" - ] - }, - "Microsoft.AspNetCore.Authentication.Google/2.2.0": { - "sha512": "norGVE0KRIT0pdNKhlLlsMi/7O69ACpx2RSj8rMHCoMRETCYH4PTqUbHI1kkfAGNUtcuQ8VIGIXSa1ZdGKWcdA==", - "type": "package", - "path": "microsoft.aspnetcore.authentication.google/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.xml", - "microsoft.aspnetcore.authentication.google.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authentication.google.nuspec" - ] - }, - "Microsoft.AspNetCore.Authentication.JwtBearer/2.2.0": { - "sha512": "FnyoLdiIo8KDobVcDuUYYFSbQYp1OR8vSMIOcW6M5+dtF9TC6XvCCS8Ook+DSbqUj6HPxwOIKa5BeIZm1/EpMw==", - "type": "package", - "path": "microsoft.aspnetcore.authentication.jwtbearer/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", - "microsoft.aspnetcore.authentication.jwtbearer.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authentication.jwtbearer.nuspec" - ] - }, - "Microsoft.AspNetCore.Authentication.MicrosoftAccount/2.2.0": { - "sha512": "troBjvJAMK7P2Vb5sDOzCztq9vR8BJtajDznam2XuQai7kLh5z7cmkB+2zMin+K/HzNjqItJSuSyuaK2PoZ8nA==", - "type": "package", - "path": "microsoft.aspnetcore.authentication.microsoftaccount/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.xml", - "microsoft.aspnetcore.authentication.microsoftaccount.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authentication.microsoftaccount.nuspec" - ] - }, - "Microsoft.AspNetCore.Authentication.OAuth/2.2.0": { - "sha512": "i33SSdJd0g3ENRnHczgzrOlru3ciPsyYHMgAh90sbURS8wuBx0Y4xXfRQcYfu1W0/uiHQO832KNb/ICINWqLzA==", - "type": "package", - "path": "microsoft.aspnetcore.authentication.oauth/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.xml", - "microsoft.aspnetcore.authentication.oauth.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authentication.oauth.nuspec" - ] - }, - "Microsoft.AspNetCore.Authentication.OpenIdConnect/2.2.0": { - "sha512": "y4iu3vMFnkMTaqT9mCJhD3XUMfavNP0CoOeNOHd7ArqZfgzs3GqAPcBc8Ld6mK2u5OOva8C6bhnQfRu9z0qJKQ==", - "type": "package", - "path": "microsoft.aspnetcore.authentication.openidconnect/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.xml", - "microsoft.aspnetcore.authentication.openidconnect.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authentication.openidconnect.nuspec" - ] - }, - "Microsoft.AspNetCore.Authentication.Twitter/2.2.0": { - "sha512": "wKfJeBL+13duv0o4q9zp4pW7UopBHaLafnq2GiIJTcu1x3RR/1N4sRIIppLSIJdulgM1XfNOivlIE2FEfZpmog==", - "type": "package", - "path": "microsoft.aspnetcore.authentication.twitter/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.xml", - "microsoft.aspnetcore.authentication.twitter.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authentication.twitter.nuspec" - ] - }, - "Microsoft.AspNetCore.Authentication.WsFederation/2.2.0": { - "sha512": "TIBkO7Tx8uWXNL5Z7/6+iKdhTS+D9dpJMNcmiVxrAJUqxL4EWGHNqJyUp5yqI76GmbrT4GD23T3cUsSuCi7E0A==", - "type": "package", - "path": "microsoft.aspnetcore.authentication.wsfederation/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.WsFederation.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.WsFederation.xml", - "microsoft.aspnetcore.authentication.wsfederation.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authentication.wsfederation.nuspec" - ] - }, - "Microsoft.AspNetCore.Authorization/2.2.0": { - "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", - "type": "package", - "path": "microsoft.aspnetcore.authorization/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", - "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authorization.nuspec" - ] - }, - "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { - "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", - "type": "package", - "path": "microsoft.aspnetcore.authorization.policy/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml", - "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authorization.policy.nuspec" - ] - }, - "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { - "sha512": "Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", - "type": "package", - "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml", - "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.connections.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.CookiePolicy/2.2.0": { - "sha512": "Kn9CvhNsxRup/5SJfD4/YP3AbFwLJX8u3tKKyQszjUIvjE7M6lU93W44zlqBxltS94gTdLmo2ixPWDNeZthi1w==", - "type": "package", - "path": "microsoft.aspnetcore.cookiepolicy/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.xml", - "microsoft.aspnetcore.cookiepolicy.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.cookiepolicy.nuspec" - ] - }, - "Microsoft.AspNetCore.Cors/2.2.0": { - "sha512": "LFlTM3ThS3ZCILuKnjy8HyK9/IlDh3opogdbCVx6tMGyDzTQBgMPXLjGDLtMk5QmLDCcP3l1TO3z/+1viA8GUg==", - "type": "package", - "path": "microsoft.aspnetcore.cors/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Cors.xml", - "microsoft.aspnetcore.cors.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.cors.nuspec" - ] - }, - "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": { - "sha512": "GXmMD8/vuTLPLvKzKEPz/4vapC5e0cwx1tUVd83ePRyWF9CCrn/pg4/1I+tGkQqFLPvi3nlI2QtPtC6MQN8Nww==", - "type": "package", - "path": "microsoft.aspnetcore.cryptography.internal/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", - "microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.cryptography.internal.nuspec" - ] - }, - "Microsoft.AspNetCore.Cryptography.KeyDerivation/2.2.0": { - "sha512": "NCY0PH3nrFYbhqiq72rwWsUXlV4OAE0MOukvGvIBOTnEPMC1yVL42k1DXLnaIu+c0yfMAxIIG9Iuaykp9BQQQw==", - "type": "package", - "path": "microsoft.aspnetcore.cryptography.keyderivation/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", - "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", - "microsoft.aspnetcore.cryptography.keyderivation.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.cryptography.keyderivation.nuspec" - ] - }, - "Microsoft.AspNetCore.DataProtection/2.2.0": { - "sha512": "G6dvu5Nd2vjpYbzazZ//qBFbSEf2wmBUbyAR7E4AwO3gWjhoJD5YxpThcGJb7oE3VUcW65SVMXT+cPCiiBg8Sg==", - "type": "package", - "path": "microsoft.aspnetcore.dataprotection/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml", - "microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.dataprotection.nuspec" - ] - }, - "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": { - "sha512": "seANFXmp8mb5Y12m1ShiElJ3ZdOT3mBN3wA1GPhHJIvZ/BxOCPyqEOR+810OWsxEZwA5r5fDRNpG/CqiJmQnJg==", - "type": "package", - "path": "microsoft.aspnetcore.dataprotection.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml", - "microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.dataprotection.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.DataProtection.Extensions/2.2.0": { - "sha512": "Goo1xU9WJnEJ0dKDgYFF+hFQqRMLKjf9zc8Bu3PaBdGncR7QwDMeFIkO7FEM6izaC38QjYrs1Q5AsmljkPyOrw==", - "type": "package", - "path": "microsoft.aspnetcore.dataprotection.extensions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.xml", - "microsoft.aspnetcore.dataprotection.extensions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.dataprotection.extensions.nuspec" - ] - }, - "Microsoft.AspNetCore.Diagnostics/2.2.0": { - "sha512": "RobNuZecn/eefWVApOE+OWAZXCdgfzm8pB7tBvJkahsjWfn1a+bLM9I2cuKlp/9aFBok1O/oDXlgYSvaQYu/yg==", - "type": "package", - "path": "microsoft.aspnetcore.diagnostics/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.xml", - "microsoft.aspnetcore.diagnostics.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.diagnostics.nuspec" - ] - }, - "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": { - "sha512": "pva9ggfUDtnJIKzv0+wxwTX7LduDx6xLSpMqWwdOJkW52L0t31PI78+v+WqqMpUtMzcKug24jGs3nTFpAmA/2g==", - "type": "package", - "path": "microsoft.aspnetcore.diagnostics.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml", - "microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.diagnostics.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/2.2.0": { - "sha512": "xAIXyVmrTcVIJ38/j0TVMRlChC25k+cEAeSYotWhAnho3urzf1EfhoyyNdVytZbbBskue5i6XBL8gA1vlp5KGg==", - "type": "package", - "path": "microsoft.aspnetcore.diagnostics.entityframeworkcore/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.xml", - "microsoft.aspnetcore.diagnostics.entityframeworkcore.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.diagnostics.entityframeworkcore.nuspec" - ] - }, - "Microsoft.AspNetCore.Diagnostics.HealthChecks/2.2.0": { - "sha512": "RNmdLy9yncTprony49cuwhyTKoROpVflGM+pKlHA1671F00QUsjoY1Oi6xoa9XsUrfRDRYlxbt2CHYCMLzMh7Q==", - "type": "package", - "path": "microsoft.aspnetcore.diagnostics.healthchecks/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.HealthChecks.xml", - "microsoft.aspnetcore.diagnostics.healthchecks.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.diagnostics.healthchecks.nuspec" - ] - }, - "Microsoft.AspNetCore.HostFiltering/2.2.0": { - "sha512": "JSX6ZlVWDkokZ+xCKDhUVQNqbmFn1lHQNzJc8K4Y/uTUocZS83+b/8Q7y/yx3oJ362etGMVy0keAvmCdqbP8nA==", - "type": "package", - "path": "microsoft.aspnetcore.hostfiltering/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.xml", - "microsoft.aspnetcore.hostfiltering.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.hostfiltering.nuspec" - ] - }, - "Microsoft.AspNetCore.Hosting/2.2.0": { - "sha512": "7t4RbUGugpHtQmzAkc9fpDdYJg6t/jcB2VVnjensVYbZFnLDU8pNrG0hrekk1DQG7P2UzpSqKLzDsFF0/lkkbw==", - "type": "package", - "path": "microsoft.aspnetcore.hosting/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.xml", - "microsoft.aspnetcore.hosting.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.hosting.nuspec" - ] - }, - "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { - "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", - "type": "package", - "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", - "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.hosting.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { - "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", - "type": "package", - "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", - "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.hosting.server.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Html.Abstractions/2.2.0": { - "sha512": "Y4rs5aMEXY8G7wJo5S3EEt6ltqyOTr/qOeZzfn+hw/fuQj5GppGckMY5psGLETo1U9hcT5MmAhaT5xtusM1b5g==", - "type": "package", - "path": "microsoft.aspnetcore.html.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.xml", - "microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.html.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Http/2.2.0": { - "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", - "type": "package", - "path": "microsoft.aspnetcore.http/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml", - "microsoft.aspnetcore.http.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.http.nuspec" - ] - }, - "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { - "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", - "type": "package", - "path": "microsoft.aspnetcore.http.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", - "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.http.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Http.Connections/1.1.0": { - "sha512": "ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==", - "type": "package", - "path": "microsoft.aspnetcore.http.connections/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll", - "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.xml", - "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512", - "microsoft.aspnetcore.http.connections.nuspec" - ] - }, - "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { - "sha512": "mYk5QUUjyXQmlyDHWDjkLYDArt97plwe6KsDsNVhDEQ+HgZMKGjISyM6YSA7BERQNR25kXBTbIYfSy1vePGQgg==", - "type": "package", - "path": "microsoft.aspnetcore.http.connections.common/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.xml", - "microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512", - "microsoft.aspnetcore.http.connections.common.nuspec" - ] - }, - "Microsoft.AspNetCore.Http.Extensions/2.2.0": { - "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", - "type": "package", - "path": "microsoft.aspnetcore.http.extensions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", - "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.http.extensions.nuspec" - ] - }, - "Microsoft.AspNetCore.Http.Features/2.2.0": { - "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", - "type": "package", - "path": "microsoft.aspnetcore.http.features/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", - "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.http.features.nuspec" - ] - }, - "Microsoft.AspNetCore.HttpOverrides/2.2.0": { - "sha512": "pOlLQyNKQduGbtbgB55RyTHFeshSfKi3DmofrVjk+UBQjyp+Tm0RNNJFQf+sv34hlFsel+VnD79QyO9Zk/c3oA==", - "type": "package", - "path": "microsoft.aspnetcore.httpoverrides/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.xml", - "microsoft.aspnetcore.httpoverrides.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.httpoverrides.nuspec" - ] - }, - "Microsoft.AspNetCore.HttpsPolicy/2.2.0": { - "sha512": "0EmmwzAkWEPCC8rpg9nGfcOiitIOYkZ13f+b5ED7AAZvz/ZwkdWbeMarGf77lSyA+Mb9O/iAt4LWup0RRMVOJw==", - "type": "package", - "path": "microsoft.aspnetcore.httpspolicy/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.xml", - "microsoft.aspnetcore.httpspolicy.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.httpspolicy.nuspec" - ] - }, - "Microsoft.AspNetCore.Identity/2.2.0": { - "sha512": "F16BKeS96wKhyIyhaFR7m8kRIwIvPUW9Dx7IlGWmu2IIwnUDCdo+2z7IrWKA8r77pZQ1UE9kYcBPg5456YdAIA==", - "type": "package", - "path": "microsoft.aspnetcore.identity/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.xml", - "microsoft.aspnetcore.identity.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.identity.nuspec" - ] - }, - "Microsoft.AspNetCore.Identity.EntityFrameworkCore/2.2.0": { - "sha512": "PGJ8f8sE9vbnyPJpSCMYAjh1itkM8uL9QnkO5lQSSJGeyG4b1+zNoLS+leJgjGnlkTzgWPffc4OuqH7wsYahWw==", - "type": "package", - "path": "microsoft.aspnetcore.identity.entityframeworkcore/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml", - "microsoft.aspnetcore.identity.entityframeworkcore.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.identity.entityframeworkcore.nuspec" - ] - }, - "Microsoft.AspNetCore.Identity.UI/2.2.0": { - "sha512": "T4B/Uaqd4u7jN6XDHbEBTZO002HquQKU49V+PvWEGKoiJBgZ96JskDr/NsfgVin8n8/bRSx+4A1WwlkMDKcNBg==", - "type": "package", - "path": "microsoft.aspnetcore.identity.ui/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "THIRD-PARTY-NOTICES.txt", - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.V3.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.V4.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.xml", - "microsoft.aspnetcore.identity.ui.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.identity.ui.nuspec" - ] - }, - "Microsoft.AspNetCore.JsonPatch/2.2.0": { - "sha512": "o9BB9hftnCsyJalz9IT0DUFxz8Xvgh3TOfGWolpuf19duxB4FySq7c25XDYBmBMS+sun5/PsEUAi58ra4iJAoA==", - "type": "package", - "path": "microsoft.aspnetcore.jsonpatch/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml", - "microsoft.aspnetcore.jsonpatch.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.jsonpatch.nuspec" - ] - }, - "Microsoft.AspNetCore.Localization/2.2.0": { - "sha512": "+PGX1mEfq19EVvskBBb9XBQrXZpZrh6hYhX0x3FkPTEqr+rDM2ZmsEwAAMRmzcidmlDM1/7cyDSU/WhkecU8tA==", - "type": "package", - "path": "microsoft.aspnetcore.localization/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Localization.xml", - "microsoft.aspnetcore.localization.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.localization.nuspec" - ] - }, - "Microsoft.AspNetCore.Localization.Routing/2.2.0": { - "sha512": "kjheDUpXWaGOH8bUQafFAkUvw74xoe0Y2hojgeYaAg5LKvaFUwupkz8wgyhfSbLdejxEQJ6PsA7Zq/AcdPoIUQ==", - "type": "package", - "path": "microsoft.aspnetcore.localization.routing/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.xml", - "microsoft.aspnetcore.localization.routing.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.localization.routing.nuspec" - ] - }, - "Microsoft.AspNetCore.MiddlewareAnalysis/2.2.0": { - "sha512": "GISp0KoVyJ4llqkmUOWFbOb7g/rOABlsf0Nt8a4eanY71XfUCM0dqBaMct3IUE3KWUvjhKPACQimxgMjPcF7pA==", - "type": "package", - "path": "microsoft.aspnetcore.middlewareanalysis/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.xml", - "microsoft.aspnetcore.middlewareanalysis.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.middlewareanalysis.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc/2.2.0": { - "sha512": "noun9xcrEvOs/ubczt2OluY9/bOOM2erv1D/gyyYtfS2sfyx2uGknUIAWoqmqc401TvQDysyx8S4M9j5zPIVBw==", - "type": "package", - "path": "microsoft.aspnetcore.mvc/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.xml", - "microsoft.aspnetcore.mvc.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { - "sha512": "ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml", - "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Analyzers/2.2.0": { - "sha512": "Wxxt1rFVHITp4MDaGQP/wyl+ROVVVeQCTWI6C8hxI8X66C4u6gcxvelqgnmsn+dISMCdE/7FQOwgiMx1HxuZqA==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.analyzers/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "analyzers/dotnet/cs/Microsoft.AspNetCore.Mvc.Analyzers.dll", - "microsoft.aspnetcore.mvc.analyzers.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.analyzers.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.ApiExplorer/2.2.0": { - "sha512": "iSREQct43Xg2t3KiQ2648e064al/HSLPXpI5yO9VPeTGDspWKHW23XFHRKPN1YjIQHHfBj8ytXbiF0XcSxp5pg==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.apiexplorer/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.xml", - "microsoft.aspnetcore.mvc.apiexplorer.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.apiexplorer.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Core/2.2.0": { - "sha512": "ALiY4a6BYsghw8PT5+VU593Kqp911U3w9f/dH9/ZoI3ezDsDAGiObqPu/HP1oXK80Ceu0XdQ3F0bx5AXBeuN/Q==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.core/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml", - "microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.core.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Cors/2.2.0": { - "sha512": "oINjMqhU7yzT2T9AMuvktlWlMd40i0do8E1aYslJS+c5fof+EMhjnwTh6cHN1dfrgjkoXJ/gutxn5Qaqf/81Kg==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.cors/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.xml", - "microsoft.aspnetcore.mvc.cors.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.cors.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.DataAnnotations/2.2.0": { - "sha512": "WOw4SA3oT47aiU7ZjN/88j+b79YU6VftmHmxK29Km3PTI7WZdmw675QTcgWfsjEX4joCB82v7TvarO3D0oqOyw==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.dataannotations/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.xml", - "microsoft.aspnetcore.mvc.dataannotations.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.dataannotations.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": { - "sha512": "ScWwXrkAvw6PekWUFkIr5qa9NKn4uZGRvxtt3DvtUrBYW5Iu2y4SS/vx79JN0XDHNYgAJ81nVs+4M7UE1Y/O+g==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.formatters.json/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.xml", - "microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.formatters.json.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.2.0": { - "sha512": "4pUhKtqhaNqSeMRRyEw1kGjg/pNLczzd4VAsanMGI539sCdkl1JBaoFojZb1helVdUvX9a1Jo+lYXq0lnwB/GQ==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.formatters.xml/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.xml", - "microsoft.aspnetcore.mvc.formatters.xml.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.formatters.xml.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Localization/2.2.0": { - "sha512": "H1L4pP124mrN6duwOtNVIJUqy4CczC2/ah4MXarRt9ZRpJd2zNp1j3tJCgyEQpqai6zNVP6Vp2ZRMQcNDcNAKA==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.localization/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.xml", - "microsoft.aspnetcore.mvc.localization.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.localization.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Razor/2.2.0": { - "sha512": "TXvEOjp3r6qDEjmDtv3pXjQr/Zia9PpoGkl1MyTEqKqrUehBTpAdCjA8APXFwun19lH20OuyU+e4zDYv9g134w==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.razor/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.xml", - "microsoft.aspnetcore.mvc.razor.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.razor.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.2.0": { - "sha512": "Sei/0moqBDQKaAYT9PtOeRtvYgHQQLyw/jm3exHw2w9VdzejiMEqCQrN2d63Dk4y7IY0Irr/P9JUFkoVURRcNw==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.razor.extensions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.props", - "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.targets", - "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll", - "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml", - "microsoft.aspnetcore.mvc.razor.extensions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.razor.extensions.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/2.2.0": { - "sha512": "dys8ggIDth3g5GBpCfeayU9sNg6Z9IbKFKOuaXbVaAiZQUd+Egk9op4NLHpqfR9Ey2HGw+u87LYC55bhEeOpag==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.razor.viewcompilation/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks.dll", - "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.targets", - "build/netstandard2.0/net461/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation-x86.exe", - "build/netstandard2.0/net461/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.exe", - "build/netstandard2.0/netcoreapp2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.dll", - "microsoft.aspnetcore.mvc.razor.viewcompilation.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.razor.viewcompilation.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.RazorPages/2.2.0": { - "sha512": "GsMs4QKCf5VgdGZq9/nfAVkMJ/8uE4ie0Iugv4FtxbHBmMdpPQQBfTFKoUpwMbgIRw7hzV8xy2HPPU5o58PsdQ==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.razorpages/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.xml", - "microsoft.aspnetcore.mvc.razorpages.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.razorpages.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.TagHelpers/2.2.0": { - "sha512": "hsrm/dLx7ztfWV+WEE7O8YqEePW7TmUwFwR7JsOUSTKaV9uSeghdmoOsYuk0HeoTiMhRxH8InQVE9/BgBj+jog==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.taghelpers/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.xml", - "microsoft.aspnetcore.mvc.taghelpers.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.taghelpers.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.ViewFeatures/2.2.0": { - "sha512": "dt7MGkzCFVTAD5oesI8UeVVeiSgaZ0tPdFstQjG6YLJSCiq1koOUSHMpf0PASGdOW/H9hxXkolIBhT5dWqJi7g==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.viewfeatures/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.xml", - "microsoft.aspnetcore.mvc.viewfeatures.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.viewfeatures.nuspec" - ] - }, - "Microsoft.AspNetCore.NodeServices/2.2.0": { - "sha512": "ML+s+nv/ri3MxM4vXjTK3S4K925TGklSKH74VOkCqWQF9ki5yuYcyxaWTUsCyAXliw+N8HMNmW++uU81JngDDg==", - "type": "package", - "path": "microsoft.aspnetcore.nodeservices/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.xml", - "microsoft.aspnetcore.nodeservices.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.nodeservices.nuspec" - ] - }, - "Microsoft.AspNetCore.Owin/2.2.0": { - "sha512": "h9QIdnrH7fOTQgUwjz/v0fDk8j8JNtUB233gYFtngt7jLoVc7vfMEGs9rnOWh8ubz+JdrMt7UBrva07af4Smxw==", - "type": "package", - "path": "microsoft.aspnetcore.owin/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Owin.xml", - "microsoft.aspnetcore.owin.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.owin.nuspec" - ] - }, - "Microsoft.AspNetCore.Razor/2.2.0": { - "sha512": "V54PIyDCFl8COnTp9gezNHpUNHk7F9UnerGeZy3UfbnwYvfzbo+ipqQmSgeoESH8e0JvKhRTyQyZquW2EPtCmg==", - "type": "package", - "path": "microsoft.aspnetcore.razor/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.xml", - "microsoft.aspnetcore.razor.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.razor.nuspec" - ] - }, - "Microsoft.AspNetCore.Razor.Design/2.2.0": { - "sha512": "VLWK+ZtMMNukY6XjxYHc7mz33vkquoEzQJHm/LCF5REVxIaexLr+UTImljRRJBdUDJluDAQwU+59IX0rFDfURA==", - "type": "package", - "path": "microsoft.aspnetcore.razor.design/2.2.0", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.CodeGeneration.targets", - "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.props", - "buildMultiTargeting/Microsoft.AspNetCore.Razor.Design.props", - "microsoft.aspnetcore.razor.design.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.razor.design.nuspec", - "tools/Microsoft.AspNetCore.Razor.Language.dll", - "tools/Microsoft.CodeAnalysis.CSharp.dll", - "tools/Microsoft.CodeAnalysis.Razor.dll", - "tools/Microsoft.CodeAnalysis.dll", - "tools/Newtonsoft.Json.dll", - "tools/runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "tools/runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "tools/rzc.deps.json", - "tools/rzc.dll", - "tools/rzc.runtimeconfig.json" - ] - }, - "Microsoft.AspNetCore.Razor.Language/2.2.0": { - "sha512": "IeyzVFXZdpUAnWKWoNYE0SsP1Eu7JLjZaC94jaI1VfGtK57QykROz/iGMc8D0VcqC8i02qYTPQN/wPKm6PfidA==", - "type": "package", - "path": "microsoft.aspnetcore.razor.language/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net46/Microsoft.AspNetCore.Razor.Language.dll", - "lib/net46/Microsoft.AspNetCore.Razor.Language.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.xml", - "microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.razor.language.nuspec" - ] - }, - "Microsoft.AspNetCore.Razor.Runtime/2.2.0": { - "sha512": "7YqK+H61lN6yj9RiQUko7oaOhKtRR9Q/kBcoWNRemhJdTIWOh1OmdvJKzZrMWOlff3BAjejkPQm+0V0qXk+B1w==", - "type": "package", - "path": "microsoft.aspnetcore.razor.runtime/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.xml", - "microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.razor.runtime.nuspec" - ] - }, - "Microsoft.AspNetCore.ResponseCaching/2.2.0": { - "sha512": "MEBP1UwGD7X1vhO43LN5KhZDt4HMTX7u1YA0nq7HR6IDRhWczHczJPDu3GbL01IMdb03hyT/glJIv8PI5zKtnA==", - "type": "package", - "path": "microsoft.aspnetcore.responsecaching/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.xml", - "microsoft.aspnetcore.responsecaching.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.responsecaching.nuspec" - ] - }, - "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { - "sha512": "CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", - "type": "package", - "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml", - "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.responsecaching.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.ResponseCompression/2.2.0": { - "sha512": "RvSstOhebIMDdRLd4iWjA6z2o2kGGwEYGPajvTXwndOA3TZpWH3FOIV4L7mehN/HoKrbTbX5vZ54ZFDwWoAFKA==", - "type": "package", - "path": "microsoft.aspnetcore.responsecompression/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/Microsoft.AspNetCore.ResponseCompression.dll", - "lib/net461/Microsoft.AspNetCore.ResponseCompression.xml", - "lib/netcoreapp2.1/Microsoft.AspNetCore.ResponseCompression.dll", - "lib/netcoreapp2.1/Microsoft.AspNetCore.ResponseCompression.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.xml", - "microsoft.aspnetcore.responsecompression.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.responsecompression.nuspec" - ] - }, - "Microsoft.AspNetCore.Rewrite/2.2.0": { - "sha512": "jztwQxyn4CcWZj/1mQtFiZ5+pIWYltHIXk5ykyrXMjO6qaKVvc+mlffSUCQ0AOl3vH7vxsZnda8poHwVaT0QIA==", - "type": "package", - "path": "microsoft.aspnetcore.rewrite/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.xml", - "microsoft.aspnetcore.rewrite.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.rewrite.nuspec" - ] - }, - "Microsoft.AspNetCore.Routing/2.2.0": { - "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", - "type": "package", - "path": "microsoft.aspnetcore.routing/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll", - "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml", - "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.routing.nuspec" - ] - }, - "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { - "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", - "type": "package", - "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml", - "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.routing.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Server.HttpSys/2.2.0": { - "sha512": "tei37PK4c6CKd7tGgAOkpbePwu8WLjqsEfiAfLbaMXnmp7o30bzcIxtraTrjvq2SpRAFA9p6WwUbmyqQxXPcfQ==", - "type": "package", - "path": "microsoft.aspnetcore.server.httpsys/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.xml", - "microsoft.aspnetcore.server.httpsys.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.server.httpsys.nuspec" - ] - }, - "Microsoft.AspNetCore.Server.IIS/2.2.0": { - "sha512": "6NEwFAJFrnZ0f5eJB1ReIpgPM1ZRDj3IE3Rda01nD3vJANCyJFjZ4SGW3Ckn1AmMi225fGflWzpCKLb7/l43jw==", - "type": "package", - "path": "microsoft.aspnetcore.server.iis/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/netstandard2.0/Microsoft.AspNetCore.Server.IIS.targets", - "lib/netstandard2.0/Microsoft.AspNetCore.Server.IIS.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Server.IIS.xml", - "microsoft.aspnetcore.server.iis.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.server.iis.nuspec", - "runtimes/win-x64/nativeassets/netcoreapp2.2/aspnetcorev2_inprocess.dll", - "runtimes/win-x86/nativeassets/netcoreapp2.2/aspnetcorev2_inprocess.dll" - ] - }, - "Microsoft.AspNetCore.Server.IISIntegration/2.2.0": { - "sha512": "iVjgAg+doTTrTFCOq6kZRpebXq94YGCx9efMIwO5QhwdY/sHAjfrVz2lXzji63G96YjJVK3ZRrlpgS2fd49ABw==", - "type": "package", - "path": "microsoft.aspnetcore.server.iisintegration/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.targets", - "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.xml", - "microsoft.aspnetcore.server.iisintegration.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.server.iisintegration.nuspec" - ] - }, - "Microsoft.AspNetCore.Server.Kestrel/2.2.0": { - "sha512": "D0vGB8Tp0UNMiAhT+pwAVeqDDx2OFrfpu/plwm0WhA+1DZvTLc99eDwGISL6LAY8x7a12lhl9w7/m+VdoyDu8Q==", - "type": "package", - "path": "microsoft.aspnetcore.server.kestrel/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.xml", - "microsoft.aspnetcore.server.kestrel.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.server.kestrel.nuspec" - ] - }, - "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": { - "sha512": "F6/Vesd3ODq/ISbHfcvfRf7IzRtTvrNX8VA36Knm5e7bteJhoRA2GKQUVQ+neoO1njLvaQKnjcA3rdCZ6AF6cg==", - "type": "package", - "path": "microsoft.aspnetcore.server.kestrel.core/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll", - "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.xml", - "microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.server.kestrel.core.nuspec" - ] - }, - "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": { - "sha512": "nEH5mU6idUYS3/+9BKw2stMOM25ZdGwIH4P4kyj6PVkMPgQUTkBQ7l/ScPkepdhejcOlPa+g3+M4dYsSYPUJ8g==", - "type": "package", - "path": "microsoft.aspnetcore.server.kestrel.https/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll", - "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.xml", - "microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.server.kestrel.https.nuspec" - ] - }, - "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": { - "sha512": "j1ai2CG8BGp4mYf2TWSFjjy1pRgW9XbqhdR4EOVvrlFVbcpEPfXNIPEdjkcgK+txWCupGzkFnFF8oZsASMtmyw==", - "type": "package", - "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.xml", - "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.server.kestrel.transport.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.0": { - "sha512": "qTACI0wePgAKCH+YKrMgChyfqJpjwgGZEtSuwBw6TjWLQ66THGasleia/7EZz2t2eAjwWxw8RA/D8ODrBqpj9A==", - "type": "package", - "path": "microsoft.aspnetcore.server.kestrel.transport.sockets/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll", - "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml", - "microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.server.kestrel.transport.sockets.nuspec" - ] - }, - "Microsoft.AspNetCore.Session/2.2.0": { - "sha512": "lOjJVh293AKaOEPi1MIC1/G9gOVZMrve2a05o56oslK6bo0PMgMB17rmPomvqrJAjMdlWZ/MGdN2y78Z9wzWTw==", - "type": "package", - "path": "microsoft.aspnetcore.session/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Session.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Session.xml", - "microsoft.aspnetcore.session.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.session.nuspec" - ] - }, - "Microsoft.AspNetCore.SignalR/1.1.0": { - "sha512": "V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==", - "type": "package", - "path": "microsoft.aspnetcore.signalr/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.xml", - "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512", - "microsoft.aspnetcore.signalr.nuspec" - ] - }, - "Microsoft.AspNetCore.SignalR.Common/1.1.0": { - "sha512": "TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", - "type": "package", - "path": "microsoft.aspnetcore.signalr.common/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll", - "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.xml", - "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512", - "microsoft.aspnetcore.signalr.common.nuspec" - ] - }, - "Microsoft.AspNetCore.SignalR.Core/1.1.0": { - "sha512": "mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", - "type": "package", - "path": "microsoft.aspnetcore.signalr.core/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.xml", - "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512", - "microsoft.aspnetcore.signalr.core.nuspec" - ] - }, - "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { - "sha512": "BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", - "type": "package", - "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml", - "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512", - "microsoft.aspnetcore.signalr.protocols.json.nuspec" - ] - }, - "Microsoft.AspNetCore.SpaServices/2.2.0": { - "sha512": "hUAsOd45CQbUV47b/c5wp6uKM0Fa6MXekFHbRb+jEPjzmrxLPn9nAKK1dYmyMAqSBRL8c6zVCWQk+TOP7eGs/A==", - "type": "package", - "path": "microsoft.aspnetcore.spaservices/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.xml", - "microsoft.aspnetcore.spaservices.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.spaservices.nuspec" - ] - }, - "Microsoft.AspNetCore.SpaServices.Extensions/2.2.0": { - "sha512": "RvzzubzGPD+dGCfKVVtAvyIsnWpAWOA/x1n6fGLwICPER7Ze6budQGFPdZ7yuXTwtTMRvHa4O4AaGLG1XmoXGw==", - "type": "package", - "path": "microsoft.aspnetcore.spaservices.extensions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.Extensions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.Extensions.xml", - "microsoft.aspnetcore.spaservices.extensions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.spaservices.extensions.nuspec" - ] - }, - "Microsoft.AspNetCore.StaticFiles/2.2.0": { - "sha512": "byZDrjir6Co5EoWbraQyG0qbPCUG6XgGYQstipMF9lucOAjq/mqnIyt8B8iMWnin/ghZoOln9Y01af4rUAwOhA==", - "type": "package", - "path": "microsoft.aspnetcore.staticfiles/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.xml", - "microsoft.aspnetcore.staticfiles.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.staticfiles.nuspec" - ] - }, - "Microsoft.AspNetCore.WebSockets/2.2.0": { - "sha512": "ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==", - "type": "package", - "path": "microsoft.aspnetcore.websockets/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.xml", - "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.websockets.nuspec" - ] - }, - "Microsoft.AspNetCore.WebUtilities/2.2.0": { - "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", - "type": "package", - "path": "microsoft.aspnetcore.webutilities/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml", - "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.webutilities.nuspec" - ] - }, - "Microsoft.CodeAnalysis.Analyzers/1.1.0": { - "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", - "type": "package", - "path": "microsoft.codeanalysis.analyzers/1.1.0", - "hasTools": true, - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.rtf", - "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", - "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", - "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", - "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", - "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512", - "microsoft.codeanalysis.analyzers.nuspec", - "tools/install.ps1", - "tools/uninstall.ps1" - ] - }, - "Microsoft.CodeAnalysis.Common/2.8.0": { - "sha512": "06AzG7oOLKTCN1EnoVYL1bQz+Zwa10LMpUn7Kc+PdpN8CQXRqXTyhfxuKIz6t0qWfoatBNXdHD0OLcEYp5pOvQ==", - "type": "package", - "path": "microsoft.codeanalysis.common/2.8.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.3/Microsoft.CodeAnalysis.dll", - "lib/netstandard1.3/Microsoft.CodeAnalysis.pdb", - "lib/netstandard1.3/Microsoft.CodeAnalysis.xml", - "microsoft.codeanalysis.common.2.8.0.nupkg.sha512", - "microsoft.codeanalysis.common.nuspec" - ] - }, - "Microsoft.CodeAnalysis.CSharp/2.8.0": { - "sha512": "RizcFXuHgGmeuZhxxE1qQdhFA9lGOHlk0MJlCUt6LOnYsevo72gNikPcbANFHY02YK8L/buNrihchY0TroGvXQ==", - "type": "package", - "path": "microsoft.codeanalysis.csharp/2.8.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll", - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.pdb", - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml", - "microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512", - "microsoft.codeanalysis.csharp.nuspec" - ] - }, - "Microsoft.CodeAnalysis.Razor/2.2.0": { - "sha512": "2qL0Qyu5qHzg6/JzF80mLgsqn9NP/Q0mQwjH+Z+DiqcuODJx8segjN4un2Tnz6bEAWv8FCRFNXR/s5wzlxqA8A==", - "type": "package", - "path": "microsoft.codeanalysis.razor/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net46/Microsoft.CodeAnalysis.Razor.dll", - "lib/net46/Microsoft.CodeAnalysis.Razor.xml", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.xml", - "microsoft.codeanalysis.razor.2.2.0.nupkg.sha512", - "microsoft.codeanalysis.razor.nuspec" - ] - }, - "Microsoft.CSharp/4.5.0": { - "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", - "type": "package", - "path": "microsoft.csharp/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.3/Microsoft.CSharp.dll", - "lib/netstandard2.0/Microsoft.CSharp.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/uap10.0.16299/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.5.0.nupkg.sha512", - "microsoft.csharp.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/Microsoft.CSharp.dll", - "ref/netcore50/Microsoft.CSharp.xml", - "ref/netcore50/de/Microsoft.CSharp.xml", - "ref/netcore50/es/Microsoft.CSharp.xml", - "ref/netcore50/fr/Microsoft.CSharp.xml", - "ref/netcore50/it/Microsoft.CSharp.xml", - "ref/netcore50/ja/Microsoft.CSharp.xml", - "ref/netcore50/ko/Microsoft.CSharp.xml", - "ref/netcore50/ru/Microsoft.CSharp.xml", - "ref/netcore50/zh-hans/Microsoft.CSharp.xml", - "ref/netcore50/zh-hant/Microsoft.CSharp.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.0/Microsoft.CSharp.dll", - "ref/netstandard1.0/Microsoft.CSharp.xml", - "ref/netstandard1.0/de/Microsoft.CSharp.xml", - "ref/netstandard1.0/es/Microsoft.CSharp.xml", - "ref/netstandard1.0/fr/Microsoft.CSharp.xml", - "ref/netstandard1.0/it/Microsoft.CSharp.xml", - "ref/netstandard1.0/ja/Microsoft.CSharp.xml", - "ref/netstandard1.0/ko/Microsoft.CSharp.xml", - "ref/netstandard1.0/ru/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", - "ref/netstandard2.0/Microsoft.CSharp.dll", - "ref/netstandard2.0/Microsoft.CSharp.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/uap10.0.16299/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.DotNet.PlatformAbstractions/2.1.0": { - "sha512": "9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==", - "type": "package", - "path": "microsoft.dotnet.platformabstractions/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll", - "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll", - "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512", - "microsoft.dotnet.platformabstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore/2.2.4": { - "sha512": "aQ0sAe2mOtSp3StjKT2wDA/BO3k8BLfpIXIG1MOlGytjQWQOvW3BzDPfgXOhxbSa7Bhdsx97aYzZUGD3DQAQjQ==", - "type": "package", - "path": "microsoft.entityframeworkcore/2.2.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll", - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.2.2.4.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/2.2.4": { - "sha512": "GjtIOANlpy7JcGK0Q169n52713hIHHfxUHq1+xoWlAZYSI0h/n2DrEWwCIsrnInU8FaLq4cIG7UgMTL0CnUUPw==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/2.2.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.2.2.4.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/2.2.4": { - "sha512": "cLJo6dikdFQd2j9cFHhC2M1rzUeYvJLR/m7cBcuKRI6ek5t5ZyGZ0hzEJwCQmKRDV4tAl5p+NIrfDjfqTK8POw==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/2.2.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "microsoft.entityframeworkcore.analyzers.2.2.4.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Design/2.2.0": { - "sha512": "mcsUEzg1bWvPgj/isz7aabDy41x+x8WBTmSF+JFsDGe3K5ZElWT2FSr3LLmkXk/5BLWJ3f9SDe0YR55u3ZgHrw==", - "type": "package", - "path": "microsoft.entityframeworkcore.design/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/net461/Microsoft.EntityFrameworkCore.Design.props", - "build/netcoreapp2.0/Microsoft.EntityFrameworkCore.Design.props", - "lib/net461/Microsoft.EntityFrameworkCore.Design.dll", - "lib/net461/Microsoft.EntityFrameworkCore.Design.xml", - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll", - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.xml", - "microsoft.entityframeworkcore.design.2.2.0.nupkg.sha512", - "microsoft.entityframeworkcore.design.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.InMemory/2.2.0": { - "sha512": "WxvRXUwCGdY1Ze8GfZteWadsxrxpFRfZN8WJ1jcXZKp5eYo5WwmiBq5e3xIZR8cHxznqlqczJ3NpXjqyYpNK9w==", - "type": "package", - "path": "microsoft.entityframeworkcore.inmemory/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll", - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.xml", - "microsoft.entityframeworkcore.inmemory.2.2.0.nupkg.sha512", - "microsoft.entityframeworkcore.inmemory.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/2.2.4": { - "sha512": "Ga+kJhoSBNYv8C2gQl2sB5bTBkWsLFn92CPjZA5ql/MyxJTWri6lf44/GSYEcOQj0tqF5HhMAaB1HxQMiIPBcQ==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/2.2.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.2.2.4.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.SqlServer/2.2.0": { - "sha512": "rCGBF6Hab9633Dh2xtiAcJnDxf2CjaBrGyoagoCoYHH5Ftbdw5zX/e9ABgif5ngzh7DsrBcgxK/3gHBZ2n+TGA==", - "type": "package", - "path": "microsoft.entityframeworkcore.sqlserver/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll", - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.xml", - "microsoft.entityframeworkcore.sqlserver.2.2.0.nupkg.sha512", - "microsoft.entityframeworkcore.sqlserver.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Tools/2.2.0": { - "sha512": "F253CmzpL7eXFKpK++/GIVbyVMZyXYq388osdkggsA1eL7c8ZGwHho0jE3LGA+L6WuXm6KbwQMtnt15zZAqzzA==", - "type": "package", - "path": "microsoft.entityframeworkcore.tools/2.2.0", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/_._", - "microsoft.entityframeworkcore.tools.2.2.0.nupkg.sha512", - "microsoft.entityframeworkcore.tools.nuspec", - "tools/EntityFrameworkCore.PowerShell2.psd1", - "tools/EntityFrameworkCore.PowerShell2.psm1", - "tools/EntityFrameworkCore.psd1", - "tools/EntityFrameworkCore.psm1", - "tools/about_EntityFrameworkCore.help.txt", - "tools/init.ps1", - "tools/install.ps1", - "tools/net461/any/ef.exe", - "tools/net461/win-x86/ef.exe", - "tools/netcoreapp2.0/any/ef.dll", - "tools/netcoreapp2.0/any/ef.runtimeconfig.json" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/2.2.0": { - "sha512": "spsJkYo8gGJapaxTSQFN/wqA+ghpJMLwB4ZyTB+fSdpd7AmMFP/YSpIcGmczcw4KggpxLGhLk7lCkSIlgvHaqQ==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.2.2.0.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec" - ] - }, - "Microsoft.Extensions.Caching.Memory/2.2.0": { - "sha512": "yFs44RzB2Pzfoj4uk+mEz3MTTQKyeWb8gDhv5GyVPfHnLv0eQhGwzbw/5WpxAcVyOgG/H3/0ULY6g0/7/B+r7w==", - "type": "package", - "path": "microsoft.extensions.caching.memory/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.2.2.0.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec" - ] - }, - "Microsoft.Extensions.Caching.SqlServer/2.2.0": { - "sha512": "hDAunudTCNyVb22W+ctToi9T3mcrix2L+GfnuhbIcbzgXVyUGMULUJmb2D5ElIJKkcGxkC/lM1aBMgHsSFFZcA==", - "type": "package", - "path": "microsoft.extensions.caching.sqlserver/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.xml", - "microsoft.extensions.caching.sqlserver.2.2.0.nupkg.sha512", - "microsoft.extensions.caching.sqlserver.nuspec" - ] - }, - "Microsoft.Extensions.Configuration/2.2.0": { - "sha512": "nOP8R1mVb/6mZtm2qgAJXn/LFm/2kMjHDAg/QJLFG6CuWYJtaD3p1BwQhufBVvRzL9ceJ/xF0SQ0qsI2GkDQAA==", - "type": "package", - "path": "microsoft.extensions.configuration/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", - "microsoft.extensions.configuration.2.2.0.nupkg.sha512", - "microsoft.extensions.configuration.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { - "sha512": "65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.Binder/2.2.0": { - "sha512": "vJ9xvOZCnUAIHcGC3SU35r3HKmHTVIeHzo6u/qzlHAqD8m6xv92MLin4oJntTvkpKxVX3vI1GFFkIQtU3AdlsQ==", - "type": "package", - "path": "microsoft.extensions.configuration.binder/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", - "microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512", - "microsoft.extensions.configuration.binder.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.CommandLine/2.2.0": { - "sha512": "4kJIGOSRqD1Ccqerst4t/zsNs51plR7BIxbdKO1J/9rL+2DuNT+ieAuEv+HROelqTam3yOpKFR7TtHBt3oLpOA==", - "type": "package", - "path": "microsoft.extensions.configuration.commandline/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml", - "microsoft.extensions.configuration.commandline.2.2.0.nupkg.sha512", - "microsoft.extensions.configuration.commandline.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": { - "sha512": "gIqt9PkKO01hZ0zmHnWrZ1E45MDreZTVoyDbL1kMWKtDgxxWTJpYtESTEcgpvR1uB1iex1zKGYzJpOMgmuP5TQ==", - "type": "package", - "path": "microsoft.extensions.configuration.environmentvariables/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", - "microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg.sha512", - "microsoft.extensions.configuration.environmentvariables.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": { - "sha512": "H1qCpWBC8Ed4tguTR/qYkbb3F6DI5Su3t8xyFo3/5MzAd8PwPpHzgX8X04KbBxKmk173Pb64x7xMHarczVFQUA==", - "type": "package", - "path": "microsoft.extensions.configuration.fileextensions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", - "microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512", - "microsoft.extensions.configuration.fileextensions.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.Ini/2.2.0": { - "sha512": "uEDasBxY7m0GJseqHD8QhfiznxDMhxN9YE3j01Es6eks42rRm3yL8ZMbRxuEjyKqGZqjjt+Vr297/nKcg0eOow==", - "type": "package", - "path": "microsoft.extensions.configuration.ini/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.xml", - "microsoft.extensions.configuration.ini.2.2.0.nupkg.sha512", - "microsoft.extensions.configuration.ini.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.Json/2.2.0": { - "sha512": "jUDdmLyFmLf9V3mqnMzSAzAv4QigJ67tZh5Q7HBXeBnESL2UyeesNG6jSBti+b63JpxZf+EDyn+anx3gyrNxug==", - "type": "package", - "path": "microsoft.extensions.configuration.json/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", - "microsoft.extensions.configuration.json.2.2.0.nupkg.sha512", - "microsoft.extensions.configuration.json.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.KeyPerFile/2.2.0": { - "sha512": "qK7vVxtUrpxdQPhvjF3RVYkcV86q/QfMBWqvvXAKYYkQ+H/4GXxk5cbPaSWdMZB5YU1GBEFBuZg9MZxDRvPJkg==", - "type": "package", - "path": "microsoft.extensions.configuration.keyperfile/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.KeyPerFile.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.KeyPerFile.xml", - "microsoft.extensions.configuration.keyperfile.2.2.0.nupkg.sha512", - "microsoft.extensions.configuration.keyperfile.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.UserSecrets/2.2.0": { - "sha512": "2/N2xo6/sNbVshnKktmq5lwaQbsAR2SrzCVrJEeMP8OKZVI7SzT8P6/WXZF8/YC7dTYsMe3nrHzgl1cF9i5ZKQ==", - "type": "package", - "path": "microsoft.extensions.configuration.usersecrets/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props", - "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml", - "microsoft.extensions.configuration.usersecrets.2.2.0.nupkg.sha512", - "microsoft.extensions.configuration.usersecrets.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.Xml/2.2.0": { - "sha512": "toCFesKf2KZgRtb6T7tulnJv3IBVL+Gqd4KE3ebQZ20wA2Z5Rp6A44MsRGZ1ollmihzkxxBDavVfgufFeji3Sw==", - "type": "package", - "path": "microsoft.extensions.configuration.xml/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.xml", - "microsoft.extensions.configuration.xml.2.2.0.nupkg.sha512", - "microsoft.extensions.configuration.xml.nuspec" - ] - }, - "Microsoft.Extensions.DependencyInjection/2.2.0": { - "sha512": "MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/Microsoft.Extensions.DependencyInjection.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.xml", - "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { - "sha512": "f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec" - ] - }, - "Microsoft.Extensions.DependencyModel/2.1.0": { - "sha512": "nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==", - "type": "package", - "path": "microsoft.extensions.dependencymodel/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net451/Microsoft.Extensions.DependencyModel.dll", - "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", - "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", - "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512", - "microsoft.extensions.dependencymodel.nuspec" - ] - }, - "Microsoft.Extensions.DiagnosticAdapter/2.2.0": { - "sha512": "Av0QGyboU9hYcprPduZg8Ny4mtp1Z0xOfZGCiBhYMh6a0loNomZ74U1P9EJUBksT2ZJd0+hh/pOQIVdAJ8+AbA==", - "type": "package", - "path": "microsoft.extensions.diagnosticadapter/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/Microsoft.Extensions.DiagnosticAdapter.dll", - "lib/net461/Microsoft.Extensions.DiagnosticAdapter.xml", - "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll", - "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.xml", - "lib/netstandard2.0/Microsoft.Extensions.DiagnosticAdapter.dll", - "lib/netstandard2.0/Microsoft.Extensions.DiagnosticAdapter.xml", - "microsoft.extensions.diagnosticadapter.2.2.0.nupkg.sha512", - "microsoft.extensions.diagnosticadapter.nuspec" - ] - }, - "Microsoft.Extensions.Diagnostics.HealthChecks/2.2.0": { - "sha512": "p9njfetdebuplBCkIJPqyxsUIOBf/7B/RhPXZnFjh+/wqWNRqhP/1s18q1me9XP0l8uCD8TqJRPC+L0MCoUGRA==", - "type": "package", - "path": "microsoft.extensions.diagnostics.healthchecks/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll", - "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.xml", - "microsoft.extensions.diagnostics.healthchecks.2.2.0.nupkg.sha512", - "microsoft.extensions.diagnostics.healthchecks.nuspec" - ] - }, - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/2.2.0": { - "sha512": "cO6f4csTakJXuLWnU/p5mfQInyNq5sSi4mS2YtQZcGoHynU6P/TD6gjqt1TRnVfwuZLw3tmmw2ipFrHbBUqWew==", - "type": "package", - "path": "microsoft.extensions.diagnostics.healthchecks.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.xml", - "microsoft.extensions.diagnostics.healthchecks.abstractions.2.2.0.nupkg.sha512", - "microsoft.extensions.diagnostics.healthchecks.abstractions.nuspec" - ] - }, - "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { - "sha512": "EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==", - "type": "package", - "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", - "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", - "microsoft.extensions.fileproviders.abstractions.nuspec" - ] - }, - "Microsoft.Extensions.FileProviders.Composite/2.2.0": { - "sha512": "Az/RxWB+UlyVN/TvQFaGXx8XAXVZN5WQnnuJOsjwBzghSJc1i8zqNjIypPHOedcuIXs2XSWgOSL6YQ3BlCnoJA==", - "type": "package", - "path": "microsoft.extensions.fileproviders.composite/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml", - "microsoft.extensions.fileproviders.composite.2.2.0.nupkg.sha512", - "microsoft.extensions.fileproviders.composite.nuspec" - ] - }, - "Microsoft.Extensions.FileProviders.Embedded/2.2.0": { - "sha512": "6e22jnVntG9JLLowjY40UBPLXkKTRlDpFHmo2evN8lwZIpO89ZRGz6JRdqhnVYCaavq5KeFU2W5VKPA5y5farA==", - "type": "package", - "path": "microsoft.extensions.fileproviders.embedded/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props", - "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets", - "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props", - "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.xml", - "microsoft.extensions.fileproviders.embedded.2.2.0.nupkg.sha512", - "microsoft.extensions.fileproviders.embedded.nuspec", - "tasks/net461/Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll", - "tasks/netstandard1.5/Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll" - ] - }, - "Microsoft.Extensions.FileProviders.Physical/2.2.0": { - "sha512": "tbDHZnBJkjYd9NjlRZ9ondDiv1Te3KYCTW2RWpR1B0e1Z8+EnFRo7qNnHkkSCixLdlPZzhjlX24d/PixQ7w2dA==", - "type": "package", - "path": "microsoft.extensions.fileproviders.physical/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", - "microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512", - "microsoft.extensions.fileproviders.physical.nuspec" - ] - }, - "Microsoft.Extensions.FileSystemGlobbing/2.2.0": { - "sha512": "ZSsHZp3PyW6vk37tDEdypjgGlNtpJ0EixBMOfUod2Thx7GtwfFSAQXUQx8a8BN8vfWKGGMbp7jPWdoHx/At4wQ==", - "type": "package", - "path": "microsoft.extensions.filesystemglobbing/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", - "microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512", - "microsoft.extensions.filesystemglobbing.nuspec" - ] - }, - "Microsoft.Extensions.Hosting/2.2.0": { - "sha512": "PxZPd5QbWr8+3JN2segEaD7IAYI+mR8ZmMqgo6GOk+E+UKnRcbC3RSQgJrZYuWVQwJCvdxesO5e64LSHC1zC8g==", - "type": "package", - "path": "microsoft.extensions.hosting/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll", - "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml", - "microsoft.extensions.hosting.2.2.0.nupkg.sha512", - "microsoft.extensions.hosting.nuspec" - ] - }, - "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { - "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==", - "type": "package", - "path": "microsoft.extensions.hosting.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", - "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", - "microsoft.extensions.hosting.abstractions.nuspec" - ] - }, - "Microsoft.Extensions.Http/2.2.0": { - "sha512": "hZ8mz6FgxSeFtkHzw+Ad0QOt2yjjpq4WaG9itnkyChtXYTrDlbkw3af2WJ9wdEAAyYqOlQaVDB6MJSEo8dd/vw==", - "type": "package", - "path": "microsoft.extensions.http/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Http.dll", - "lib/netstandard2.0/Microsoft.Extensions.Http.xml", - "microsoft.extensions.http.2.2.0.nupkg.sha512", - "microsoft.extensions.http.nuspec" - ] - }, - "Microsoft.Extensions.Identity.Core/2.2.0": { - "sha512": "/C+Valwg8IeUwDIunusittHivA9iyf82Jr1yeUFWO2zH2mDMMeYgjRyDLZqfL/7Vq94PEQsgv1XAaDfAX8msMw==", - "type": "package", - "path": "microsoft.extensions.identity.core/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll", - "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml", - "microsoft.extensions.identity.core.2.2.0.nupkg.sha512", - "microsoft.extensions.identity.core.nuspec" - ] - }, - "Microsoft.Extensions.Identity.Stores/2.2.0": { - "sha512": "WY6os4m5LcG7XXHQK1vQggjdNFs7h6CsidVLOzPjG7Cb1zwRYKzfRT/pSUD40JNGvVp4oNENjLPvu/30ufIGNw==", - "type": "package", - "path": "microsoft.extensions.identity.stores/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll", - "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml", - "microsoft.extensions.identity.stores.2.2.0.nupkg.sha512", - "microsoft.extensions.identity.stores.nuspec" - ] - }, - "Microsoft.Extensions.Localization/2.2.0": { - "sha512": "3nBQLeBrcd4Rgd9vQi4gF5NgAWxnQrHekjjwlgww4wyLNfJDizjiex2resOLoAuAgy3y2IIAWjOpbr0UKR2ykw==", - "type": "package", - "path": "microsoft.extensions.localization/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Localization.dll", - "lib/netstandard2.0/Microsoft.Extensions.Localization.xml", - "microsoft.extensions.localization.2.2.0.nupkg.sha512", - "microsoft.extensions.localization.nuspec" - ] - }, - "Microsoft.Extensions.Localization.Abstractions/2.2.0": { - "sha512": "FQzXG/lYR9UOM2zHpqsjTRpp3EghIYo3FCsQpfmtbp+glPaU0WXZfNmMjyqBRmMj1Sq93fPnC+G9zzYRauuRQA==", - "type": "package", - "path": "microsoft.extensions.localization.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml", - "microsoft.extensions.localization.abstractions.2.2.0.nupkg.sha512", - "microsoft.extensions.localization.abstractions.nuspec" - ] - }, - "Microsoft.Extensions.Logging/2.2.0": { - "sha512": "Nxqhadc9FCmFHzU+fz3oc8sFlE6IadViYg8dfUdGzJZ2JUxnCsRghBhhOWdM4B2zSZqEc+0BjliBh/oNdRZuig==", - "type": "package", - "path": "microsoft.extensions.logging/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.2.2.0.nupkg.sha512", - "microsoft.extensions.logging.nuspec" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/2.2.0": { - "sha512": "B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec" - ] - }, - "Microsoft.Extensions.Logging.Configuration/2.2.0": { - "sha512": "ukU1mQGX9+xBsEzpNd13yl4deFVYI+fxxnmKpOhvNZsF+/trCrAUQh+9QM5pPGHbfYkz3lLQ4BXfKCP0502dLw==", - "type": "package", - "path": "microsoft.extensions.logging.configuration/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml", - "microsoft.extensions.logging.configuration.2.2.0.nupkg.sha512", - "microsoft.extensions.logging.configuration.nuspec" - ] - }, - "Microsoft.Extensions.Logging.Console/2.2.0": { - "sha512": "1eGgcOJ++PMxW6sn++j6U7wsWvhEBm/5ScqBUUBGLRE8M7AHahi9tsxivDMqEXVM3F0/pshHl3kEpMXtw4BeFg==", - "type": "package", - "path": "microsoft.extensions.logging.console/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml", - "microsoft.extensions.logging.console.2.2.0.nupkg.sha512", - "microsoft.extensions.logging.console.nuspec" - ] - }, - "Microsoft.Extensions.Logging.Debug/2.2.0": { - "sha512": "JjqWtshxUujSnxslFccCRAaH8uFOciqXkYdRw+h5MwpC4sUc+ju9yZzvVi6PA5vW09ckv26EkasEvXrofGiaJg==", - "type": "package", - "path": "microsoft.extensions.logging.debug/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", - "microsoft.extensions.logging.debug.2.2.0.nupkg.sha512", - "microsoft.extensions.logging.debug.nuspec" - ] - }, - "Microsoft.Extensions.Logging.EventSource/2.2.0": { - "sha512": "oOa5H+vdNgpsxE6vgtX4U/godKtX2edVi+QjlWb2PBQfavGIQ3WxtjxN+B0DQAjwBNdV4mW8cgOiDEZ8KdR7Ig==", - "type": "package", - "path": "microsoft.extensions.logging.eventsource/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml", - "microsoft.extensions.logging.eventsource.2.2.0.nupkg.sha512", - "microsoft.extensions.logging.eventsource.nuspec" - ] - }, - "Microsoft.Extensions.Logging.TraceSource/2.2.0": { - "sha512": "2laIg/Mf1OhhduUKVN3//j+sYceyUocgGC/ySx6cnZFeNf2mezs32TmRZyzfkQAZQ6azlo/0wTxi8BgIVUyRYA==", - "type": "package", - "path": "microsoft.extensions.logging.tracesource/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.xml", - "microsoft.extensions.logging.tracesource.2.2.0.nupkg.sha512", - "microsoft.extensions.logging.tracesource.nuspec" - ] - }, - "Microsoft.Extensions.ObjectPool/2.2.0": { - "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", - "type": "package", - "path": "microsoft.extensions.objectpool/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", - "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", - "microsoft.extensions.objectpool.2.2.0.nupkg.sha512", - "microsoft.extensions.objectpool.nuspec" - ] - }, - "Microsoft.Extensions.Options/2.2.0": { - "sha512": "UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==", - "type": "package", - "path": "microsoft.extensions.options/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.2.2.0.nupkg.sha512", - "microsoft.extensions.options.nuspec" - ] - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/2.2.0": { - "sha512": "d4WS6yVXaw43ffiUnHj8oG1t2B6RbDDiQcgdA+Eq//NlPa3Wd+GTJFKj4OM4eDF3GjVumGr/CEVRS/jcYoF5LA==", - "type": "package", - "path": "microsoft.extensions.options.configurationextensions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "microsoft.extensions.options.configurationextensions.2.2.0.nupkg.sha512", - "microsoft.extensions.options.configurationextensions.nuspec" - ] - }, - "Microsoft.Extensions.Options.DataAnnotations/2.2.0": { - "sha512": "Xk7okx/u+ZQb8xvz71FwVmfZjwDh2DWrovhtQXprWE16KqaP8bs6A8wb0h9nTSFh9rcFDVeo42d47iduu01XvQ==", - "type": "package", - "path": "microsoft.extensions.options.dataannotations/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Options.DataAnnotations.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.DataAnnotations.xml", - "microsoft.extensions.options.dataannotations.2.2.0.nupkg.sha512", - "microsoft.extensions.options.dataannotations.nuspec" - ] - }, - "Microsoft.Extensions.Primitives/2.2.0": { - "sha512": "azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==", - "type": "package", - "path": "microsoft.extensions.primitives/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.2.2.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec" - ] - }, - "Microsoft.Extensions.WebEncoders/2.2.0": { - "sha512": "V8XcqYcpcdBAxUhLeyYcuKmxu4CtNQA9IphTnARpQGhkop4A93v2XgM3AtaVVJo3H2cDWxWM6aeO8HxkifREqw==", - "type": "package", - "path": "microsoft.extensions.webencoders/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll", - "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.xml", - "microsoft.extensions.webencoders.2.2.0.nupkg.sha512", - "microsoft.extensions.webencoders.nuspec" - ] - }, - "Microsoft.IdentityModel.JsonWebTokens/5.3.0": { - "sha512": "5LW5VYvGZLvrbEGxyaE6dSQhT1B5frnpwX/c4/PWrNXeuJ6GkYmiOPf2u5Iwk1qQXPTvDedwEfnBg+i/0cFAyA==", - "type": "package", - "path": "microsoft.identitymodel.jsonwebtokens/5.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net45/Microsoft.IdentityModel.JsonWebTokens.pdb", - "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net451/Microsoft.IdentityModel.JsonWebTokens.pdb", - "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net461/Microsoft.IdentityModel.JsonWebTokens.pdb", - "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.pdb", - "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.pdb", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "microsoft.identitymodel.jsonwebtokens.5.3.0.nupkg.sha512", - "microsoft.identitymodel.jsonwebtokens.nuspec" - ] - }, - "Microsoft.IdentityModel.Logging/5.3.0": { - "sha512": "o+bBauEMOi6ZI0MlJEC69Sw9UPwKLFmN+lD942g9UCx5pfiLFvJBKp8OPmxtGFL02ZxzXCIUyhyKn85izBDsnQ==", - "type": "package", - "path": "microsoft.identitymodel.logging/5.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.Logging.dll", - "lib/net45/Microsoft.IdentityModel.Logging.pdb", - "lib/net45/Microsoft.IdentityModel.Logging.xml", - "lib/net451/Microsoft.IdentityModel.Logging.dll", - "lib/net451/Microsoft.IdentityModel.Logging.pdb", - "lib/net451/Microsoft.IdentityModel.Logging.xml", - "lib/net461/Microsoft.IdentityModel.Logging.dll", - "lib/net461/Microsoft.IdentityModel.Logging.pdb", - "lib/net461/Microsoft.IdentityModel.Logging.xml", - "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll", - "lib/netstandard1.4/Microsoft.IdentityModel.Logging.pdb", - "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.pdb", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", - "microsoft.identitymodel.logging.5.3.0.nupkg.sha512", - "microsoft.identitymodel.logging.nuspec" - ] - }, - "Microsoft.IdentityModel.Protocols/5.3.0": { - "sha512": "o2Fx9cYQHKtOyVrCXB41kEmny1Zvm+fqXNTD5heB9yPY0C+qYm7fo1yCvtHaH2JPEersGW0iS2dE0s65kWkVEw==", - "type": "package", - "path": "microsoft.identitymodel.protocols/5.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.Protocols.dll", - "lib/net45/Microsoft.IdentityModel.Protocols.pdb", - "lib/net45/Microsoft.IdentityModel.Protocols.xml", - "lib/net451/Microsoft.IdentityModel.Protocols.dll", - "lib/net451/Microsoft.IdentityModel.Protocols.pdb", - "lib/net451/Microsoft.IdentityModel.Protocols.xml", - "lib/net461/Microsoft.IdentityModel.Protocols.dll", - "lib/net461/Microsoft.IdentityModel.Protocols.pdb", - "lib/net461/Microsoft.IdentityModel.Protocols.xml", - "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll", - "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.pdb", - "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.pdb", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", - "microsoft.identitymodel.protocols.5.3.0.nupkg.sha512", - "microsoft.identitymodel.protocols.nuspec" - ] - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.3.0": { - "sha512": "NihXp2JT3fRbTq6AOQhEQT8TuJzhUNg9TOeK+TxlkkvanllWFF0gfXH5hTRn9Qn68HJQXtp/mtLbCWzi+4bCSg==", - "type": "package", - "path": "microsoft.identitymodel.protocols.openidconnect/5.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb", - "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", - "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb", - "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", - "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb", - "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", - "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb", - "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", - "microsoft.identitymodel.protocols.openidconnect.5.3.0.nupkg.sha512", - "microsoft.identitymodel.protocols.openidconnect.nuspec" - ] - }, - "Microsoft.IdentityModel.Protocols.WsFederation/5.3.0": { - "sha512": "6nGUoC+foCQ2UTsRD/Z6TLgsghuX10tunLXxuLE+LljW9H1oANqAQWrP8DNP++nfXke+qu1zVi6yBl6MMK/Dfg==", - "type": "package", - "path": "microsoft.identitymodel.protocols.wsfederation/5.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.Protocols.WsFederation.dll", - "lib/net45/Microsoft.IdentityModel.Protocols.WsFederation.pdb", - "lib/net45/Microsoft.IdentityModel.Protocols.WsFederation.xml", - "lib/net451/Microsoft.IdentityModel.Protocols.WsFederation.dll", - "lib/net451/Microsoft.IdentityModel.Protocols.WsFederation.pdb", - "lib/net451/Microsoft.IdentityModel.Protocols.WsFederation.xml", - "lib/net461/Microsoft.IdentityModel.Protocols.WsFederation.dll", - "lib/net461/Microsoft.IdentityModel.Protocols.WsFederation.pdb", - "lib/net461/Microsoft.IdentityModel.Protocols.WsFederation.xml", - "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.WsFederation.dll", - "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.WsFederation.pdb", - "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.WsFederation.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.WsFederation.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.WsFederation.pdb", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.WsFederation.xml", - "microsoft.identitymodel.protocols.wsfederation.5.3.0.nupkg.sha512", - "microsoft.identitymodel.protocols.wsfederation.nuspec" - ] - }, - "Microsoft.IdentityModel.Tokens/5.3.0": { - "sha512": "/piauST4FL0qzVI6oqLWxqhFReg12KwVGy0jRlnVOpGMeOVSKdtNVtHsN/hARc25hOOPEp9WKMce5ILzyMx/tQ==", - "type": "package", - "path": "microsoft.identitymodel.tokens/5.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.Tokens.dll", - "lib/net45/Microsoft.IdentityModel.Tokens.pdb", - "lib/net45/Microsoft.IdentityModel.Tokens.xml", - "lib/net451/Microsoft.IdentityModel.Tokens.dll", - "lib/net451/Microsoft.IdentityModel.Tokens.pdb", - "lib/net451/Microsoft.IdentityModel.Tokens.xml", - "lib/net461/Microsoft.IdentityModel.Tokens.dll", - "lib/net461/Microsoft.IdentityModel.Tokens.pdb", - "lib/net461/Microsoft.IdentityModel.Tokens.xml", - "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll", - "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.pdb", - "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.pdb", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", - "microsoft.identitymodel.tokens.5.3.0.nupkg.sha512", - "microsoft.identitymodel.tokens.nuspec" - ] - }, - "Microsoft.IdentityModel.Tokens.Saml/5.3.0": { - "sha512": "XS6zgN7jKG7QDqG3fV9BRADs8HmRJ6vJDKVBPFFly9MCkS6KMFps4hBdBJ5ycPrXtPBfnISCLiGLHP54blCvWw==", - "type": "package", - "path": "microsoft.identitymodel.tokens.saml/5.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.Tokens.Saml.dll", - "lib/net45/Microsoft.IdentityModel.Tokens.Saml.pdb", - "lib/net45/Microsoft.IdentityModel.Tokens.Saml.xml", - "lib/net451/Microsoft.IdentityModel.Tokens.Saml.dll", - "lib/net451/Microsoft.IdentityModel.Tokens.Saml.pdb", - "lib/net451/Microsoft.IdentityModel.Tokens.Saml.xml", - "lib/net461/Microsoft.IdentityModel.Tokens.Saml.dll", - "lib/net461/Microsoft.IdentityModel.Tokens.Saml.pdb", - "lib/net461/Microsoft.IdentityModel.Tokens.Saml.xml", - "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.Saml.dll", - "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.Saml.pdb", - "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.Saml.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.pdb", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.xml", - "microsoft.identitymodel.tokens.saml.5.3.0.nupkg.sha512", - "microsoft.identitymodel.tokens.saml.nuspec" - ] - }, - "Microsoft.IdentityModel.Xml/5.3.0": { - "sha512": "i4uFRjipeRXGhyfHmJaZ3PkOQIWhwxBJABNDWNaxcwUvramMCWYRLE1P3g4sLjiw8zXehH6eZwxww8F+dB7/+g==", - "type": "package", - "path": "microsoft.identitymodel.xml/5.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.Xml.dll", - "lib/net45/Microsoft.IdentityModel.Xml.pdb", - "lib/net45/Microsoft.IdentityModel.Xml.xml", - "lib/net451/Microsoft.IdentityModel.Xml.dll", - "lib/net451/Microsoft.IdentityModel.Xml.pdb", - "lib/net451/Microsoft.IdentityModel.Xml.xml", - "lib/net461/Microsoft.IdentityModel.Xml.dll", - "lib/net461/Microsoft.IdentityModel.Xml.pdb", - "lib/net461/Microsoft.IdentityModel.Xml.xml", - "lib/netstandard1.4/Microsoft.IdentityModel.Xml.dll", - "lib/netstandard1.4/Microsoft.IdentityModel.Xml.pdb", - "lib/netstandard1.4/Microsoft.IdentityModel.Xml.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Xml.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Xml.pdb", - "lib/netstandard2.0/Microsoft.IdentityModel.Xml.xml", - "microsoft.identitymodel.xml.5.3.0.nupkg.sha512", - "microsoft.identitymodel.xml.nuspec" - ] - }, - "Microsoft.Net.Http.Headers/2.2.0": { - "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", - "type": "package", - "path": "microsoft.net.http.headers/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", - "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", - "microsoft.net.http.headers.2.2.0.nupkg.sha512", - "microsoft.net.http.headers.nuspec" - ] - }, - "Microsoft.NETCore.App/2.2.0": { - "sha512": "7z5l8Jp324S8bU8+yyWeYHXUFYvKyiI5lqS1dXgTzOx1H69Qbf6df12kCKlNX45LpMfCMd4U3M6p7Rl5Zk7SLA==", - "type": "package", - "path": "microsoft.netcore.app/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "Microsoft.NETCore.App.versions.txt", - "THIRD-PARTY-NOTICES.TXT", - "build/netcoreapp2.2/Microsoft.NETCore.App.PlatformManifest.txt", - "build/netcoreapp2.2/Microsoft.NETCore.App.props", - "build/netcoreapp2.2/Microsoft.NETCore.App.targets", - "microsoft.netcore.app.2.2.0.nupkg.sha512", - "microsoft.netcore.app.nuspec", - "ref/netcoreapp2.2/Microsoft.CSharp.dll", - "ref/netcoreapp2.2/Microsoft.CSharp.xml", - "ref/netcoreapp2.2/Microsoft.VisualBasic.dll", - "ref/netcoreapp2.2/Microsoft.VisualBasic.xml", - "ref/netcoreapp2.2/Microsoft.Win32.Primitives.dll", - "ref/netcoreapp2.2/Microsoft.Win32.Primitives.xml", - "ref/netcoreapp2.2/System.AppContext.dll", - "ref/netcoreapp2.2/System.Buffers.dll", - "ref/netcoreapp2.2/System.Buffers.xml", - "ref/netcoreapp2.2/System.Collections.Concurrent.dll", - "ref/netcoreapp2.2/System.Collections.Concurrent.xml", - "ref/netcoreapp2.2/System.Collections.Immutable.dll", - "ref/netcoreapp2.2/System.Collections.Immutable.xml", - "ref/netcoreapp2.2/System.Collections.NonGeneric.dll", - "ref/netcoreapp2.2/System.Collections.NonGeneric.xml", - "ref/netcoreapp2.2/System.Collections.Specialized.dll", - "ref/netcoreapp2.2/System.Collections.Specialized.xml", - "ref/netcoreapp2.2/System.Collections.dll", - "ref/netcoreapp2.2/System.Collections.xml", - "ref/netcoreapp2.2/System.ComponentModel.Annotations.dll", - "ref/netcoreapp2.2/System.ComponentModel.Annotations.xml", - "ref/netcoreapp2.2/System.ComponentModel.DataAnnotations.dll", - "ref/netcoreapp2.2/System.ComponentModel.EventBasedAsync.dll", - "ref/netcoreapp2.2/System.ComponentModel.EventBasedAsync.xml", - "ref/netcoreapp2.2/System.ComponentModel.Primitives.dll", - "ref/netcoreapp2.2/System.ComponentModel.Primitives.xml", - "ref/netcoreapp2.2/System.ComponentModel.TypeConverter.dll", - "ref/netcoreapp2.2/System.ComponentModel.TypeConverter.xml", - "ref/netcoreapp2.2/System.ComponentModel.dll", - "ref/netcoreapp2.2/System.ComponentModel.xml", - "ref/netcoreapp2.2/System.Configuration.dll", - "ref/netcoreapp2.2/System.Console.dll", - "ref/netcoreapp2.2/System.Console.xml", - "ref/netcoreapp2.2/System.Core.dll", - "ref/netcoreapp2.2/System.Data.Common.dll", - "ref/netcoreapp2.2/System.Data.Common.xml", - "ref/netcoreapp2.2/System.Data.dll", - "ref/netcoreapp2.2/System.Diagnostics.Contracts.dll", - "ref/netcoreapp2.2/System.Diagnostics.Contracts.xml", - "ref/netcoreapp2.2/System.Diagnostics.Debug.dll", - "ref/netcoreapp2.2/System.Diagnostics.Debug.xml", - "ref/netcoreapp2.2/System.Diagnostics.DiagnosticSource.dll", - "ref/netcoreapp2.2/System.Diagnostics.DiagnosticSource.xml", - "ref/netcoreapp2.2/System.Diagnostics.FileVersionInfo.dll", - "ref/netcoreapp2.2/System.Diagnostics.FileVersionInfo.xml", - "ref/netcoreapp2.2/System.Diagnostics.Process.dll", - "ref/netcoreapp2.2/System.Diagnostics.Process.xml", - "ref/netcoreapp2.2/System.Diagnostics.StackTrace.dll", - "ref/netcoreapp2.2/System.Diagnostics.StackTrace.xml", - "ref/netcoreapp2.2/System.Diagnostics.TextWriterTraceListener.dll", - "ref/netcoreapp2.2/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netcoreapp2.2/System.Diagnostics.Tools.dll", - "ref/netcoreapp2.2/System.Diagnostics.Tools.xml", - "ref/netcoreapp2.2/System.Diagnostics.TraceSource.dll", - "ref/netcoreapp2.2/System.Diagnostics.TraceSource.xml", - "ref/netcoreapp2.2/System.Diagnostics.Tracing.dll", - "ref/netcoreapp2.2/System.Diagnostics.Tracing.xml", - "ref/netcoreapp2.2/System.Drawing.Primitives.dll", - "ref/netcoreapp2.2/System.Drawing.Primitives.xml", - "ref/netcoreapp2.2/System.Drawing.dll", - "ref/netcoreapp2.2/System.Dynamic.Runtime.dll", - "ref/netcoreapp2.2/System.Globalization.Calendars.dll", - "ref/netcoreapp2.2/System.Globalization.Extensions.dll", - "ref/netcoreapp2.2/System.Globalization.dll", - "ref/netcoreapp2.2/System.IO.Compression.Brotli.dll", - "ref/netcoreapp2.2/System.IO.Compression.FileSystem.dll", - "ref/netcoreapp2.2/System.IO.Compression.ZipFile.dll", - "ref/netcoreapp2.2/System.IO.Compression.ZipFile.xml", - "ref/netcoreapp2.2/System.IO.Compression.dll", - "ref/netcoreapp2.2/System.IO.Compression.xml", - "ref/netcoreapp2.2/System.IO.FileSystem.DriveInfo.dll", - "ref/netcoreapp2.2/System.IO.FileSystem.DriveInfo.xml", - "ref/netcoreapp2.2/System.IO.FileSystem.Primitives.dll", - "ref/netcoreapp2.2/System.IO.FileSystem.Watcher.dll", - "ref/netcoreapp2.2/System.IO.FileSystem.Watcher.xml", - "ref/netcoreapp2.2/System.IO.FileSystem.dll", - "ref/netcoreapp2.2/System.IO.FileSystem.xml", - "ref/netcoreapp2.2/System.IO.IsolatedStorage.dll", - "ref/netcoreapp2.2/System.IO.IsolatedStorage.xml", - "ref/netcoreapp2.2/System.IO.MemoryMappedFiles.dll", - "ref/netcoreapp2.2/System.IO.MemoryMappedFiles.xml", - "ref/netcoreapp2.2/System.IO.Pipes.dll", - "ref/netcoreapp2.2/System.IO.Pipes.xml", - "ref/netcoreapp2.2/System.IO.UnmanagedMemoryStream.dll", - "ref/netcoreapp2.2/System.IO.dll", - "ref/netcoreapp2.2/System.Linq.Expressions.dll", - "ref/netcoreapp2.2/System.Linq.Expressions.xml", - "ref/netcoreapp2.2/System.Linq.Parallel.dll", - "ref/netcoreapp2.2/System.Linq.Parallel.xml", - "ref/netcoreapp2.2/System.Linq.Queryable.dll", - "ref/netcoreapp2.2/System.Linq.Queryable.xml", - "ref/netcoreapp2.2/System.Linq.dll", - "ref/netcoreapp2.2/System.Linq.xml", - "ref/netcoreapp2.2/System.Memory.dll", - "ref/netcoreapp2.2/System.Memory.xml", - "ref/netcoreapp2.2/System.Net.Http.dll", - "ref/netcoreapp2.2/System.Net.Http.xml", - "ref/netcoreapp2.2/System.Net.HttpListener.dll", - "ref/netcoreapp2.2/System.Net.HttpListener.xml", - "ref/netcoreapp2.2/System.Net.Mail.dll", - "ref/netcoreapp2.2/System.Net.Mail.xml", - "ref/netcoreapp2.2/System.Net.NameResolution.dll", - "ref/netcoreapp2.2/System.Net.NameResolution.xml", - "ref/netcoreapp2.2/System.Net.NetworkInformation.dll", - "ref/netcoreapp2.2/System.Net.NetworkInformation.xml", - "ref/netcoreapp2.2/System.Net.Ping.dll", - "ref/netcoreapp2.2/System.Net.Ping.xml", - "ref/netcoreapp2.2/System.Net.Primitives.dll", - "ref/netcoreapp2.2/System.Net.Primitives.xml", - "ref/netcoreapp2.2/System.Net.Requests.dll", - "ref/netcoreapp2.2/System.Net.Requests.xml", - "ref/netcoreapp2.2/System.Net.Security.dll", - "ref/netcoreapp2.2/System.Net.Security.xml", - "ref/netcoreapp2.2/System.Net.ServicePoint.dll", - "ref/netcoreapp2.2/System.Net.ServicePoint.xml", - "ref/netcoreapp2.2/System.Net.Sockets.dll", - "ref/netcoreapp2.2/System.Net.Sockets.xml", - "ref/netcoreapp2.2/System.Net.WebClient.dll", - "ref/netcoreapp2.2/System.Net.WebClient.xml", - "ref/netcoreapp2.2/System.Net.WebHeaderCollection.dll", - "ref/netcoreapp2.2/System.Net.WebHeaderCollection.xml", - "ref/netcoreapp2.2/System.Net.WebProxy.dll", - "ref/netcoreapp2.2/System.Net.WebProxy.xml", - "ref/netcoreapp2.2/System.Net.WebSockets.Client.dll", - "ref/netcoreapp2.2/System.Net.WebSockets.Client.xml", - "ref/netcoreapp2.2/System.Net.WebSockets.dll", - "ref/netcoreapp2.2/System.Net.WebSockets.xml", - "ref/netcoreapp2.2/System.Net.dll", - "ref/netcoreapp2.2/System.Numerics.Vectors.dll", - "ref/netcoreapp2.2/System.Numerics.Vectors.xml", - "ref/netcoreapp2.2/System.Numerics.dll", - "ref/netcoreapp2.2/System.ObjectModel.dll", - "ref/netcoreapp2.2/System.ObjectModel.xml", - "ref/netcoreapp2.2/System.Reflection.DispatchProxy.dll", - "ref/netcoreapp2.2/System.Reflection.DispatchProxy.xml", - "ref/netcoreapp2.2/System.Reflection.Emit.ILGeneration.dll", - "ref/netcoreapp2.2/System.Reflection.Emit.ILGeneration.xml", - "ref/netcoreapp2.2/System.Reflection.Emit.Lightweight.dll", - "ref/netcoreapp2.2/System.Reflection.Emit.Lightweight.xml", - "ref/netcoreapp2.2/System.Reflection.Emit.dll", - "ref/netcoreapp2.2/System.Reflection.Emit.xml", - "ref/netcoreapp2.2/System.Reflection.Extensions.dll", - "ref/netcoreapp2.2/System.Reflection.Metadata.dll", - "ref/netcoreapp2.2/System.Reflection.Metadata.xml", - "ref/netcoreapp2.2/System.Reflection.Primitives.dll", - "ref/netcoreapp2.2/System.Reflection.Primitives.xml", - "ref/netcoreapp2.2/System.Reflection.TypeExtensions.dll", - "ref/netcoreapp2.2/System.Reflection.TypeExtensions.xml", - "ref/netcoreapp2.2/System.Reflection.dll", - "ref/netcoreapp2.2/System.Resources.Reader.dll", - "ref/netcoreapp2.2/System.Resources.ResourceManager.dll", - "ref/netcoreapp2.2/System.Resources.ResourceManager.xml", - "ref/netcoreapp2.2/System.Resources.Writer.dll", - "ref/netcoreapp2.2/System.Resources.Writer.xml", - "ref/netcoreapp2.2/System.Runtime.CompilerServices.VisualC.dll", - "ref/netcoreapp2.2/System.Runtime.CompilerServices.VisualC.xml", - "ref/netcoreapp2.2/System.Runtime.Extensions.dll", - "ref/netcoreapp2.2/System.Runtime.Extensions.xml", - "ref/netcoreapp2.2/System.Runtime.Handles.dll", - "ref/netcoreapp2.2/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/netcoreapp2.2/System.Runtime.InteropServices.RuntimeInformation.xml", - "ref/netcoreapp2.2/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/netcoreapp2.2/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcoreapp2.2/System.Runtime.InteropServices.dll", - "ref/netcoreapp2.2/System.Runtime.InteropServices.xml", - "ref/netcoreapp2.2/System.Runtime.Loader.dll", - "ref/netcoreapp2.2/System.Runtime.Loader.xml", - "ref/netcoreapp2.2/System.Runtime.Numerics.dll", - "ref/netcoreapp2.2/System.Runtime.Numerics.xml", - "ref/netcoreapp2.2/System.Runtime.Serialization.Formatters.dll", - "ref/netcoreapp2.2/System.Runtime.Serialization.Formatters.xml", - "ref/netcoreapp2.2/System.Runtime.Serialization.Json.dll", - "ref/netcoreapp2.2/System.Runtime.Serialization.Json.xml", - "ref/netcoreapp2.2/System.Runtime.Serialization.Primitives.dll", - "ref/netcoreapp2.2/System.Runtime.Serialization.Primitives.xml", - "ref/netcoreapp2.2/System.Runtime.Serialization.Xml.dll", - "ref/netcoreapp2.2/System.Runtime.Serialization.Xml.xml", - "ref/netcoreapp2.2/System.Runtime.Serialization.dll", - "ref/netcoreapp2.2/System.Runtime.dll", - "ref/netcoreapp2.2/System.Runtime.xml", - "ref/netcoreapp2.2/System.Security.Claims.dll", - "ref/netcoreapp2.2/System.Security.Claims.xml", - "ref/netcoreapp2.2/System.Security.Cryptography.Algorithms.dll", - "ref/netcoreapp2.2/System.Security.Cryptography.Algorithms.xml", - "ref/netcoreapp2.2/System.Security.Cryptography.Csp.dll", - "ref/netcoreapp2.2/System.Security.Cryptography.Csp.xml", - "ref/netcoreapp2.2/System.Security.Cryptography.Encoding.dll", - "ref/netcoreapp2.2/System.Security.Cryptography.Encoding.xml", - "ref/netcoreapp2.2/System.Security.Cryptography.Primitives.dll", - "ref/netcoreapp2.2/System.Security.Cryptography.Primitives.xml", - "ref/netcoreapp2.2/System.Security.Cryptography.X509Certificates.dll", - "ref/netcoreapp2.2/System.Security.Cryptography.X509Certificates.xml", - "ref/netcoreapp2.2/System.Security.Principal.dll", - "ref/netcoreapp2.2/System.Security.Principal.xml", - "ref/netcoreapp2.2/System.Security.SecureString.dll", - "ref/netcoreapp2.2/System.Security.dll", - "ref/netcoreapp2.2/System.ServiceModel.Web.dll", - "ref/netcoreapp2.2/System.ServiceProcess.dll", - "ref/netcoreapp2.2/System.Text.Encoding.Extensions.dll", - "ref/netcoreapp2.2/System.Text.Encoding.Extensions.xml", - "ref/netcoreapp2.2/System.Text.Encoding.dll", - "ref/netcoreapp2.2/System.Text.RegularExpressions.dll", - "ref/netcoreapp2.2/System.Text.RegularExpressions.xml", - "ref/netcoreapp2.2/System.Threading.Overlapped.dll", - "ref/netcoreapp2.2/System.Threading.Overlapped.xml", - "ref/netcoreapp2.2/System.Threading.Tasks.Dataflow.dll", - "ref/netcoreapp2.2/System.Threading.Tasks.Dataflow.xml", - "ref/netcoreapp2.2/System.Threading.Tasks.Extensions.dll", - "ref/netcoreapp2.2/System.Threading.Tasks.Extensions.xml", - "ref/netcoreapp2.2/System.Threading.Tasks.Parallel.dll", - "ref/netcoreapp2.2/System.Threading.Tasks.Parallel.xml", - "ref/netcoreapp2.2/System.Threading.Tasks.dll", - "ref/netcoreapp2.2/System.Threading.Tasks.xml", - "ref/netcoreapp2.2/System.Threading.Thread.dll", - "ref/netcoreapp2.2/System.Threading.Thread.xml", - "ref/netcoreapp2.2/System.Threading.ThreadPool.dll", - "ref/netcoreapp2.2/System.Threading.ThreadPool.xml", - "ref/netcoreapp2.2/System.Threading.Timer.dll", - "ref/netcoreapp2.2/System.Threading.Timer.xml", - "ref/netcoreapp2.2/System.Threading.dll", - "ref/netcoreapp2.2/System.Threading.xml", - "ref/netcoreapp2.2/System.Transactions.Local.dll", - "ref/netcoreapp2.2/System.Transactions.Local.xml", - "ref/netcoreapp2.2/System.Transactions.dll", - "ref/netcoreapp2.2/System.ValueTuple.dll", - "ref/netcoreapp2.2/System.Web.HttpUtility.dll", - "ref/netcoreapp2.2/System.Web.HttpUtility.xml", - "ref/netcoreapp2.2/System.Web.dll", - "ref/netcoreapp2.2/System.Windows.dll", - "ref/netcoreapp2.2/System.Xml.Linq.dll", - "ref/netcoreapp2.2/System.Xml.ReaderWriter.dll", - "ref/netcoreapp2.2/System.Xml.ReaderWriter.xml", - "ref/netcoreapp2.2/System.Xml.Serialization.dll", - "ref/netcoreapp2.2/System.Xml.XDocument.dll", - "ref/netcoreapp2.2/System.Xml.XDocument.xml", - "ref/netcoreapp2.2/System.Xml.XPath.XDocument.dll", - "ref/netcoreapp2.2/System.Xml.XPath.XDocument.xml", - "ref/netcoreapp2.2/System.Xml.XPath.dll", - "ref/netcoreapp2.2/System.Xml.XPath.xml", - "ref/netcoreapp2.2/System.Xml.XmlDocument.dll", - "ref/netcoreapp2.2/System.Xml.XmlSerializer.dll", - "ref/netcoreapp2.2/System.Xml.XmlSerializer.xml", - "ref/netcoreapp2.2/System.Xml.dll", - "ref/netcoreapp2.2/System.dll", - "ref/netcoreapp2.2/WindowsBase.dll", - "ref/netcoreapp2.2/mscorlib.dll", - "ref/netcoreapp2.2/netstandard.dll", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetAppHost/2.2.0": { - "sha512": "DrhaKInRKKvN6Ns2VNIlC7ZffLOp9THf8cO6X4fytPRJovJUbF49/zzx4WfgX9E44FMsw9hT8hrKiIqDSHvGvA==", - "type": "package", - "path": "microsoft.netcore.dotnetapphost/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnetapphost.2.2.0.nupkg.sha512", - "microsoft.netcore.dotnetapphost.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetHostPolicy/2.2.0": { - "sha512": "FJie7IoPZFaPgNDxhZGmDBQP/Bs5vPdfca/G2Wf9gd6LIvMYkZcibtmJwB4tcf4KXkaOYfIOo4Cl9sEPMsSzkw==", - "type": "package", - "path": "microsoft.netcore.dotnethostpolicy/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnethostpolicy.2.2.0.nupkg.sha512", - "microsoft.netcore.dotnethostpolicy.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetHostResolver/2.2.0": { - "sha512": "spDm3AJYmebthDNhzY17YLPtvbc+Y1lCLVeiIH1uLJ/hZaM+40pBiPefFR8J1u66Ndkqi8ipR2tEbqPnYnjRhw==", - "type": "package", - "path": "microsoft.netcore.dotnethostresolver/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnethostresolver.2.2.0.nupkg.sha512", - "microsoft.netcore.dotnethostresolver.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Platforms/2.2.0": { - "sha512": "T/J+XZo+YheFTJh8/4uoeJDdz5qOmOMkjg6/VL8mHJ9AnP8+fmV/kcbxeXsob0irRNiChf+V0ig1MCRLp/+Kog==", - "type": "package", - "path": "microsoft.netcore.platforms/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.2.2.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.NETCore.Targets/2.0.0": { - "sha512": "odP/tJj1z6GylFpNo7pMtbd/xQgTC3Ex2If63dRTL38bBNMwsBnJ+RceUIyHdRBC0oik/3NehYT+oECwBhIM3Q==", - "type": "package", - "path": "microsoft.netcore.targets/2.0.0", - "files": [ - ".nupkg.metadata", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.targets.2.0.0.nupkg.sha512", - "microsoft.netcore.targets.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Win32.Registry/4.5.0": { - "sha512": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==", - "type": "package", - "path": "microsoft.win32.registry/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.dll", - "lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "microsoft.win32.registry.4.5.0.nupkg.sha512", - "microsoft.win32.registry.nuspec", - "ref/net46/Microsoft.Win32.Registry.dll", - "ref/net461/Microsoft.Win32.Registry.dll", - "ref/net461/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/Microsoft.Win32.Registry.dll", - "ref/netstandard1.3/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", - "ref/netstandard2.0/Microsoft.Win32.Registry.dll", - "ref/netstandard2.0/Microsoft.Win32.Registry.xml", - "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "NETStandard.Library/2.0.3": { - "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", - "type": "package", - "path": "netstandard.library/2.0.3", - "files": [ - ".nupkg.metadata", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "build/netstandard2.0/NETStandard.Library.targets", - "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", - "build/netstandard2.0/ref/System.AppContext.dll", - "build/netstandard2.0/ref/System.Collections.Concurrent.dll", - "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", - "build/netstandard2.0/ref/System.Collections.Specialized.dll", - "build/netstandard2.0/ref/System.Collections.dll", - "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", - "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", - "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", - "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", - "build/netstandard2.0/ref/System.ComponentModel.dll", - "build/netstandard2.0/ref/System.Console.dll", - "build/netstandard2.0/ref/System.Core.dll", - "build/netstandard2.0/ref/System.Data.Common.dll", - "build/netstandard2.0/ref/System.Data.dll", - "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", - "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", - "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", - "build/netstandard2.0/ref/System.Diagnostics.Process.dll", - "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", - "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", - "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", - "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", - "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", - "build/netstandard2.0/ref/System.Drawing.Primitives.dll", - "build/netstandard2.0/ref/System.Drawing.dll", - "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", - "build/netstandard2.0/ref/System.Globalization.Calendars.dll", - "build/netstandard2.0/ref/System.Globalization.Extensions.dll", - "build/netstandard2.0/ref/System.Globalization.dll", - "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", - "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", - "build/netstandard2.0/ref/System.IO.Compression.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.dll", - "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", - "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", - "build/netstandard2.0/ref/System.IO.Pipes.dll", - "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", - "build/netstandard2.0/ref/System.IO.dll", - "build/netstandard2.0/ref/System.Linq.Expressions.dll", - "build/netstandard2.0/ref/System.Linq.Parallel.dll", - "build/netstandard2.0/ref/System.Linq.Queryable.dll", - "build/netstandard2.0/ref/System.Linq.dll", - "build/netstandard2.0/ref/System.Net.Http.dll", - "build/netstandard2.0/ref/System.Net.NameResolution.dll", - "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", - "build/netstandard2.0/ref/System.Net.Ping.dll", - "build/netstandard2.0/ref/System.Net.Primitives.dll", - "build/netstandard2.0/ref/System.Net.Requests.dll", - "build/netstandard2.0/ref/System.Net.Security.dll", - "build/netstandard2.0/ref/System.Net.Sockets.dll", - "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", - "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", - "build/netstandard2.0/ref/System.Net.WebSockets.dll", - "build/netstandard2.0/ref/System.Net.dll", - "build/netstandard2.0/ref/System.Numerics.dll", - "build/netstandard2.0/ref/System.ObjectModel.dll", - "build/netstandard2.0/ref/System.Reflection.Extensions.dll", - "build/netstandard2.0/ref/System.Reflection.Primitives.dll", - "build/netstandard2.0/ref/System.Reflection.dll", - "build/netstandard2.0/ref/System.Resources.Reader.dll", - "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", - "build/netstandard2.0/ref/System.Resources.Writer.dll", - "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", - "build/netstandard2.0/ref/System.Runtime.Extensions.dll", - "build/netstandard2.0/ref/System.Runtime.Handles.dll", - "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", - "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", - "build/netstandard2.0/ref/System.Runtime.Numerics.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.dll", - "build/netstandard2.0/ref/System.Runtime.dll", - "build/netstandard2.0/ref/System.Security.Claims.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", - "build/netstandard2.0/ref/System.Security.Principal.dll", - "build/netstandard2.0/ref/System.Security.SecureString.dll", - "build/netstandard2.0/ref/System.ServiceModel.Web.dll", - "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", - "build/netstandard2.0/ref/System.Text.Encoding.dll", - "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", - "build/netstandard2.0/ref/System.Threading.Overlapped.dll", - "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", - "build/netstandard2.0/ref/System.Threading.Tasks.dll", - "build/netstandard2.0/ref/System.Threading.Thread.dll", - "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", - "build/netstandard2.0/ref/System.Threading.Timer.dll", - "build/netstandard2.0/ref/System.Threading.dll", - "build/netstandard2.0/ref/System.Transactions.dll", - "build/netstandard2.0/ref/System.ValueTuple.dll", - "build/netstandard2.0/ref/System.Web.dll", - "build/netstandard2.0/ref/System.Windows.dll", - "build/netstandard2.0/ref/System.Xml.Linq.dll", - "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", - "build/netstandard2.0/ref/System.Xml.Serialization.dll", - "build/netstandard2.0/ref/System.Xml.XDocument.dll", - "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", - "build/netstandard2.0/ref/System.Xml.XPath.dll", - "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", - "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", - "build/netstandard2.0/ref/System.Xml.dll", - "build/netstandard2.0/ref/System.dll", - "build/netstandard2.0/ref/mscorlib.dll", - "build/netstandard2.0/ref/netstandard.dll", - "build/netstandard2.0/ref/netstandard.xml", - "lib/netstandard1.0/_._", - "netstandard.library.2.0.3.nupkg.sha512", - "netstandard.library.nuspec" - ] - }, - "Newtonsoft.Json/11.0.2": { - "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", - "type": "package", - "path": "newtonsoft.json/11.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "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/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", - "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", - "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", - "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", - "newtonsoft.json.11.0.2.nupkg.sha512", - "newtonsoft.json.nuspec" - ] - }, - "Newtonsoft.Json.Bson/1.0.1": { - "sha512": "5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==", - "type": "package", - "path": "newtonsoft.json.bson/1.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Newtonsoft.Json.Bson.dll", - "lib/net45/Newtonsoft.Json.Bson.xml", - "lib/netstandard1.3/Newtonsoft.Json.Bson.dll", - "lib/netstandard1.3/Newtonsoft.Json.Bson.xml", - "newtonsoft.json.bson.1.0.1.nupkg.sha512", - "newtonsoft.json.bson.nuspec" - ] - }, - "Npgsql/4.0.7": { - "sha512": "MtKdc1CjuS0BnHti51Skw5A1cbk0JmUxgRIepqq8zkgZ3kYpBOQJcrTGH+305I7kqQBtGs9Y/kpJjv/GBExulw==", - "type": "package", - "path": "npgsql/4.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Npgsql.dll", - "lib/net45/Npgsql.pdb", - "lib/net45/Npgsql.xml", - "lib/net451/Npgsql.dll", - "lib/net451/Npgsql.pdb", - "lib/net451/Npgsql.xml", - "lib/netstandard2.0/Npgsql.dll", - "lib/netstandard2.0/Npgsql.pdb", - "lib/netstandard2.0/Npgsql.xml", - "npgsql.4.0.7.nupkg.sha512", - "npgsql.nuspec" - ] - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/2.2.4": { - "sha512": "5UriY41Ef+4JoHFl6fH568JmrPHPQPpWBgoEJOAeYWQYQXaT2d5e/mCznzns6jKziZJIEPwd+E42QI3HmJT9WQ==", - "type": "package", - "path": "npgsql.entityframeworkcore.postgresql/2.2.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", - "lib/netstandard2.0/Npgsql.EntityFrameworkCore.PostgreSQL.pdb", - "npgsql.entityframeworkcore.postgresql.2.2.4.nupkg.sha512", - "npgsql.entityframeworkcore.postgresql.nuspec" - ] - }, - "Remotion.Linq/2.2.0": { - "sha512": "fK/76UmpC0FXBlGDFVPLJHQlDLYnGC+XY3eoDgCgbtrhi0vzbXDQ3n/IYHhqSKqXQfGw/u04A1drWs7rFVkRjw==", - "type": "package", - "path": "remotion.linq/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net35/Remotion.Linq.XML", - "lib/net35/Remotion.Linq.dll", - "lib/net40/Remotion.Linq.XML", - "lib/net40/Remotion.Linq.dll", - "lib/net45/Remotion.Linq.XML", - "lib/net45/Remotion.Linq.dll", - "lib/netstandard1.0/Remotion.Linq.dll", - "lib/netstandard1.0/Remotion.Linq.xml", - "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", - "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", - "remotion.linq.2.2.0.nupkg.sha512", - "remotion.linq.nuspec" - ] - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "type": "package", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "type": "package", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "LdIvj7Bi2jiaNTqY/ezZGVXHe1KI5fjLSI026O1TjVzsmdgTP/zTF+f3nwHCjwttyhsPBEiswv0PekimPWZwWg==", - "type": "package", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.native.System/4.3.0": { - "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "type": "package", - "path": "runtime.native.system/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.4.3.0.nupkg.sha512", - "runtime.native.system.nuspec" - ] - }, - "runtime.native.System.Data.SqlClient.sni/4.5.0": { - "sha512": "AJfX7owAAkMjWQYhoml5IBfXh8UyYPjktn8pK0BFGAdKgBS7HqMz1fw5vdzfZUWfhtTPDGCjgNttt46ZyEmSjg==", - "type": "package", - "path": "runtime.native.system.data.sqlclient.sni/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.native.system.data.sqlclient.sni.4.5.0.nupkg.sha512", - "runtime.native.system.data.sqlclient.sni.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.native.System.IO.Compression/4.3.0": { - "sha512": "b+V9JC/Ii3sR659flBeaBJww111425tgjcDS1k+hqV4sGh9FALRDBvJnDtQ895gAzpPTUOFDHdqaZ2Et7BpZMg==", - "type": "package", - "path": "runtime.native.system.io.compression/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "runtime.native.system.io.compression.nuspec" - ] - }, - "runtime.native.System.Net.Http/4.3.0": { - "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "type": "package", - "path": "runtime.native.system.net.http/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.net.http.4.3.0.nupkg.sha512", - "runtime.native.system.net.http.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "type": "package", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "runtime.native.system.security.cryptography.apple.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "type": "package", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.native.system.security.cryptography.openssl.nuspec" - ] - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "type": "package", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "type": "package", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "Kh9W4agE0r/hK8AX1LvyQI2NrKHBL8pO0gRoDTdDb0LL6Ta1Z2OtFx3lOaAE0ZpCUc/dt9Wzs3rA7a3IsKdOVA==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" - ] - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" - ] - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "type": "package", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==", - "type": "package", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "type": "package", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "type": "package", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", - "type": "package", - "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", - "runtimes/win-arm64/native/sni.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", - "type": "package", - "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", - "runtimes/win-x64/native/sni.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", - "type": "package", - "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", - "runtimes/win-x86/native/sni.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.AppContext/4.3.0": { - "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "type": "package", - "path": "system.appcontext/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.AppContext.dll", - "lib/net463/System.AppContext.dll", - "lib/netcore50/System.AppContext.dll", - "lib/netstandard1.6/System.AppContext.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.AppContext.dll", - "ref/net463/System.AppContext.dll", - "ref/netstandard/_._", - "ref/netstandard1.3/System.AppContext.dll", - "ref/netstandard1.3/System.AppContext.xml", - "ref/netstandard1.3/de/System.AppContext.xml", - "ref/netstandard1.3/es/System.AppContext.xml", - "ref/netstandard1.3/fr/System.AppContext.xml", - "ref/netstandard1.3/it/System.AppContext.xml", - "ref/netstandard1.3/ja/System.AppContext.xml", - "ref/netstandard1.3/ko/System.AppContext.xml", - "ref/netstandard1.3/ru/System.AppContext.xml", - "ref/netstandard1.3/zh-hans/System.AppContext.xml", - "ref/netstandard1.3/zh-hant/System.AppContext.xml", - "ref/netstandard1.6/System.AppContext.dll", - "ref/netstandard1.6/System.AppContext.xml", - "ref/netstandard1.6/de/System.AppContext.xml", - "ref/netstandard1.6/es/System.AppContext.xml", - "ref/netstandard1.6/fr/System.AppContext.xml", - "ref/netstandard1.6/it/System.AppContext.xml", - "ref/netstandard1.6/ja/System.AppContext.xml", - "ref/netstandard1.6/ko/System.AppContext.xml", - "ref/netstandard1.6/ru/System.AppContext.xml", - "ref/netstandard1.6/zh-hans/System.AppContext.xml", - "ref/netstandard1.6/zh-hant/System.AppContext.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.AppContext.dll", - "system.appcontext.4.3.0.nupkg.sha512", - "system.appcontext.nuspec" - ] - }, - "System.Buffers/4.5.0": { - "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", - "type": "package", - "path": "system.buffers/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.1/System.Buffers.dll", - "lib/netstandard1.1/System.Buffers.xml", - "lib/netstandard2.0/System.Buffers.dll", - "lib/netstandard2.0/System.Buffers.xml", - "lib/uap10.0.16299/_._", - "ref/net45/System.Buffers.dll", - "ref/net45/System.Buffers.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.1/System.Buffers.dll", - "ref/netstandard1.1/System.Buffers.xml", - "ref/netstandard2.0/System.Buffers.dll", - "ref/netstandard2.0/System.Buffers.xml", - "ref/uap10.0.16299/_._", - "system.buffers.4.5.0.nupkg.sha512", - "system.buffers.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Collections/4.3.0": { - "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "type": "package", - "path": "system.collections/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.dll", - "ref/netcore50/System.Collections.xml", - "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/zh-hans/System.Collections.xml", - "ref/netcore50/zh-hant/System.Collections.xml", - "ref/netstandard1.0/System.Collections.dll", - "ref/netstandard1.0/System.Collections.xml", - "ref/netstandard1.0/de/System.Collections.xml", - "ref/netstandard1.0/es/System.Collections.xml", - "ref/netstandard1.0/fr/System.Collections.xml", - "ref/netstandard1.0/it/System.Collections.xml", - "ref/netstandard1.0/ja/System.Collections.xml", - "ref/netstandard1.0/ko/System.Collections.xml", - "ref/netstandard1.0/ru/System.Collections.xml", - "ref/netstandard1.0/zh-hans/System.Collections.xml", - "ref/netstandard1.0/zh-hant/System.Collections.xml", - "ref/netstandard1.3/System.Collections.dll", - "ref/netstandard1.3/System.Collections.xml", - "ref/netstandard1.3/de/System.Collections.xml", - "ref/netstandard1.3/es/System.Collections.xml", - "ref/netstandard1.3/fr/System.Collections.xml", - "ref/netstandard1.3/it/System.Collections.xml", - "ref/netstandard1.3/ja/System.Collections.xml", - "ref/netstandard1.3/ko/System.Collections.xml", - "ref/netstandard1.3/ru/System.Collections.xml", - "ref/netstandard1.3/zh-hans/System.Collections.xml", - "ref/netstandard1.3/zh-hant/System.Collections.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.4.3.0.nupkg.sha512", - "system.collections.nuspec" - ] - }, - "System.Collections.Concurrent/4.3.0": { - "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "type": "package", - "path": "system.collections.concurrent/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/netstandard1.3/System.Collections.Concurrent.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "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/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.1/System.Collections.Concurrent.dll", - "ref/netstandard1.1/System.Collections.Concurrent.xml", - "ref/netstandard1.1/de/System.Collections.Concurrent.xml", - "ref/netstandard1.1/es/System.Collections.Concurrent.xml", - "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.1/it/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.3/System.Collections.Concurrent.dll", - "ref/netstandard1.3/System.Collections.Concurrent.xml", - "ref/netstandard1.3/de/System.Collections.Concurrent.xml", - "ref/netstandard1.3/es/System.Collections.Concurrent.xml", - "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.3/it/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.concurrent.4.3.0.nupkg.sha512", - "system.collections.concurrent.nuspec" - ] - }, - "System.Collections.Immutable/1.5.0": { - "sha512": "EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==", - "type": "package", - "path": "system.collections.immutable/1.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/System.Collections.Immutable.dll", - "lib/netstandard1.0/System.Collections.Immutable.xml", - "lib/netstandard1.3/System.Collections.Immutable.dll", - "lib/netstandard1.3/System.Collections.Immutable.xml", - "lib/netstandard2.0/System.Collections.Immutable.dll", - "lib/netstandard2.0/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", - "system.collections.immutable.1.5.0.nupkg.sha512", - "system.collections.immutable.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Collections.NonGeneric/4.3.0": { - "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "type": "package", - "path": "system.collections.nongeneric/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Collections.NonGeneric.dll", - "lib/netstandard1.3/System.Collections.NonGeneric.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Collections.NonGeneric.dll", - "ref/netstandard1.3/System.Collections.NonGeneric.dll", - "ref/netstandard1.3/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.nongeneric.4.3.0.nupkg.sha512", - "system.collections.nongeneric.nuspec" - ] - }, - "System.Collections.Specialized/4.3.0": { - "sha512": "NoPBj0ykejqAWW4p4gGtrrL+3c84ZLSvGnHgq422ew1Rj4WKj1FA8/BCybqC111EtgcqUl6ZJNFYYS22HLgbjA==", - "type": "package", - "path": "system.collections.specialized/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Collections.Specialized.dll", - "lib/netstandard1.3/System.Collections.Specialized.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Collections.Specialized.dll", - "ref/netstandard1.3/System.Collections.Specialized.dll", - "ref/netstandard1.3/System.Collections.Specialized.xml", - "ref/netstandard1.3/de/System.Collections.Specialized.xml", - "ref/netstandard1.3/es/System.Collections.Specialized.xml", - "ref/netstandard1.3/fr/System.Collections.Specialized.xml", - "ref/netstandard1.3/it/System.Collections.Specialized.xml", - "ref/netstandard1.3/ja/System.Collections.Specialized.xml", - "ref/netstandard1.3/ko/System.Collections.Specialized.xml", - "ref/netstandard1.3/ru/System.Collections.Specialized.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.specialized.4.3.0.nupkg.sha512", - "system.collections.specialized.nuspec" - ] - }, - "System.ComponentModel.Annotations/4.5.0": { - "sha512": "UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", - "type": "package", - "path": "system.componentmodel.annotations/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net461/System.ComponentModel.Annotations.dll", - "lib/netcore50/System.ComponentModel.Annotations.dll", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.4/System.ComponentModel.Annotations.dll", - "lib/netstandard2.0/System.ComponentModel.Annotations.dll", - "lib/portable-net45+win8/_._", - "lib/uap10.0.16299/_._", - "lib/win8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net461/System.ComponentModel.Annotations.dll", - "ref/net461/System.ComponentModel.Annotations.xml", - "ref/netcore50/System.ComponentModel.Annotations.dll", - "ref/netcore50/System.ComponentModel.Annotations.xml", - "ref/netcore50/de/System.ComponentModel.Annotations.xml", - "ref/netcore50/es/System.ComponentModel.Annotations.xml", - "ref/netcore50/fr/System.ComponentModel.Annotations.xml", - "ref/netcore50/it/System.ComponentModel.Annotations.xml", - "ref/netcore50/ja/System.ComponentModel.Annotations.xml", - "ref/netcore50/ko/System.ComponentModel.Annotations.xml", - "ref/netcore50/ru/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.1/System.ComponentModel.Annotations.dll", - "ref/netstandard1.1/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/System.ComponentModel.Annotations.dll", - "ref/netstandard1.3/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/System.ComponentModel.Annotations.dll", - "ref/netstandard1.4/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard2.0/System.ComponentModel.Annotations.dll", - "ref/netstandard2.0/System.ComponentModel.Annotations.xml", - "ref/portable-net45+win8/_._", - "ref/uap10.0.16299/_._", - "ref/win8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.annotations.4.5.0.nupkg.sha512", - "system.componentmodel.annotations.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Console/4.3.0": { - "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "type": "package", - "path": "system.console/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Console.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Console.dll", - "ref/netstandard1.3/System.Console.dll", - "ref/netstandard1.3/System.Console.xml", - "ref/netstandard1.3/de/System.Console.xml", - "ref/netstandard1.3/es/System.Console.xml", - "ref/netstandard1.3/fr/System.Console.xml", - "ref/netstandard1.3/it/System.Console.xml", - "ref/netstandard1.3/ja/System.Console.xml", - "ref/netstandard1.3/ko/System.Console.xml", - "ref/netstandard1.3/ru/System.Console.xml", - "ref/netstandard1.3/zh-hans/System.Console.xml", - "ref/netstandard1.3/zh-hant/System.Console.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.console.4.3.0.nupkg.sha512", - "system.console.nuspec" - ] - }, - "System.Data.SqlClient/4.6.0": { - "sha512": "gwItUWW1BMCckicFO85c8frFaMK8SGqYn5IeA3GSX4Lmid+CjXETfoHz7Uv+Vx6L0No7iRc/7cBL8gd6o9k9/g==", - "type": "package", - "path": "system.data.sqlclient/4.6.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net451/System.Data.SqlClient.dll", - "lib/net46/System.Data.SqlClient.dll", - "lib/net461/System.Data.SqlClient.dll", - "lib/netcoreapp2.1/System.Data.SqlClient.dll", - "lib/netstandard1.2/System.Data.SqlClient.dll", - "lib/netstandard1.3/System.Data.SqlClient.dll", - "lib/netstandard2.0/System.Data.SqlClient.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net451/System.Data.SqlClient.dll", - "ref/net46/System.Data.SqlClient.dll", - "ref/net461/System.Data.SqlClient.dll", - "ref/net461/System.Data.SqlClient.xml", - "ref/netcoreapp2.1/System.Data.SqlClient.dll", - "ref/netcoreapp2.1/System.Data.SqlClient.xml", - "ref/netstandard1.2/System.Data.SqlClient.dll", - "ref/netstandard1.2/System.Data.SqlClient.xml", - "ref/netstandard1.2/de/System.Data.SqlClient.xml", - "ref/netstandard1.2/es/System.Data.SqlClient.xml", - "ref/netstandard1.2/fr/System.Data.SqlClient.xml", - "ref/netstandard1.2/it/System.Data.SqlClient.xml", - "ref/netstandard1.2/ja/System.Data.SqlClient.xml", - "ref/netstandard1.2/ko/System.Data.SqlClient.xml", - "ref/netstandard1.2/ru/System.Data.SqlClient.xml", - "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", - "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", - "ref/netstandard1.3/System.Data.SqlClient.dll", - "ref/netstandard1.3/System.Data.SqlClient.xml", - "ref/netstandard1.3/de/System.Data.SqlClient.xml", - "ref/netstandard1.3/es/System.Data.SqlClient.xml", - "ref/netstandard1.3/fr/System.Data.SqlClient.xml", - "ref/netstandard1.3/it/System.Data.SqlClient.xml", - "ref/netstandard1.3/ja/System.Data.SqlClient.xml", - "ref/netstandard1.3/ko/System.Data.SqlClient.xml", - "ref/netstandard1.3/ru/System.Data.SqlClient.xml", - "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", - "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", - "ref/netstandard2.0/System.Data.SqlClient.dll", - "ref/netstandard2.0/System.Data.SqlClient.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll", - "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", - "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", - "runtimes/win/lib/net451/System.Data.SqlClient.dll", - "runtimes/win/lib/net46/System.Data.SqlClient.dll", - "runtimes/win/lib/net461/System.Data.SqlClient.dll", - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", - "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", - "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", - "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", - "system.data.sqlclient.4.6.0.nupkg.sha512", - "system.data.sqlclient.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Diagnostics.Contracts/4.3.0": { - "sha512": "eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==", - "type": "package", - "path": "system.diagnostics.contracts/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Contracts.dll", - "lib/netstandard1.0/System.Diagnostics.Contracts.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Contracts.dll", - "ref/netcore50/System.Diagnostics.Contracts.xml", - "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/zh-hans/System.Diagnostics.Contracts.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/System.Diagnostics.Contracts.dll", - "ref/netstandard1.0/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/de/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/es/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/it/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll", - "system.diagnostics.contracts.4.3.0.nupkg.sha512", - "system.diagnostics.contracts.nuspec" - ] - }, - "System.Diagnostics.Debug/4.3.0": { - "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "type": "package", - "path": "system.diagnostics.debug/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Debug.dll", - "ref/netcore50/System.Diagnostics.Debug.xml", - "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/zh-hans/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/System.Diagnostics.Debug.dll", - "ref/netstandard1.0/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/System.Diagnostics.Debug.dll", - "ref/netstandard1.3/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.debug.4.3.0.nupkg.sha512", - "system.diagnostics.debug.nuspec" - ] - }, - "System.Diagnostics.DiagnosticSource/4.5.0": { - "sha512": "eIHRELiYDQvsMToML81QFkXEEYXUSUT2F28t1SGrevWqP+epFdw80SyAXIKTXOHrIEXReFOEnEr7XlGiC2GgOg==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Diagnostics.DiagnosticSource.dll", - "lib/net45/System.Diagnostics.DiagnosticSource.xml", - "lib/net46/System.Diagnostics.DiagnosticSource.dll", - "lib/net46/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Diagnostics.FileVersionInfo/4.3.0": { - "sha512": "omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==", - "type": "package", - "path": "system.diagnostics.fileversioninfo/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.FileVersionInfo.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.FileVersionInfo.dll", - "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", - "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", - "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll", - "runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll", - "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", - "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512", - "system.diagnostics.fileversioninfo.nuspec" - ] - }, - "System.Diagnostics.StackTrace/4.3.0": { - "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", - "type": "package", - "path": "system.diagnostics.stacktrace/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.StackTrace.dll", - "lib/netstandard1.3/System.Diagnostics.StackTrace.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.StackTrace.dll", - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll", - "ref/netstandard1.3/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll", - "system.diagnostics.stacktrace.4.3.0.nupkg.sha512", - "system.diagnostics.stacktrace.nuspec" - ] - }, - "System.Diagnostics.Tools/4.3.0": { - "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "type": "package", - "path": "system.diagnostics.tools/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "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/zh-hans/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/System.Diagnostics.Tools.dll", - "ref/netstandard1.0/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tools.4.3.0.nupkg.sha512", - "system.diagnostics.tools.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.3.0": { - "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "type": "package", - "path": "system.diagnostics.tracing/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Diagnostics.Tracing.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.xml", - "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/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/System.Diagnostics.Tracing.dll", - "ref/netstandard1.1/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/System.Diagnostics.Tracing.dll", - "ref/netstandard1.2/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/System.Diagnostics.Tracing.dll", - "ref/netstandard1.3/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/System.Diagnostics.Tracing.dll", - "ref/netstandard1.5/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tracing.4.3.0.nupkg.sha512", - "system.diagnostics.tracing.nuspec" - ] - }, - "System.Dynamic.Runtime/4.3.0": { - "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "type": "package", - "path": "system.dynamic.runtime/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/netstandard1.3/System.Dynamic.Runtime.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Dynamic.Runtime.dll", - "ref/netcore50/System.Dynamic.Runtime.xml", - "ref/netcore50/de/System.Dynamic.Runtime.xml", - "ref/netcore50/es/System.Dynamic.Runtime.xml", - "ref/netcore50/fr/System.Dynamic.Runtime.xml", - "ref/netcore50/it/System.Dynamic.Runtime.xml", - "ref/netcore50/ja/System.Dynamic.Runtime.xml", - "ref/netcore50/ko/System.Dynamic.Runtime.xml", - "ref/netcore50/ru/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/System.Dynamic.Runtime.dll", - "ref/netstandard1.0/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/System.Dynamic.Runtime.dll", - "ref/netstandard1.3/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", - "system.dynamic.runtime.4.3.0.nupkg.sha512", - "system.dynamic.runtime.nuspec" - ] - }, - "System.Globalization/4.3.0": { - "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "type": "package", - "path": "system.globalization/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Globalization.dll", - "ref/netcore50/System.Globalization.xml", - "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/zh-hans/System.Globalization.xml", - "ref/netcore50/zh-hant/System.Globalization.xml", - "ref/netstandard1.0/System.Globalization.dll", - "ref/netstandard1.0/System.Globalization.xml", - "ref/netstandard1.0/de/System.Globalization.xml", - "ref/netstandard1.0/es/System.Globalization.xml", - "ref/netstandard1.0/fr/System.Globalization.xml", - "ref/netstandard1.0/it/System.Globalization.xml", - "ref/netstandard1.0/ja/System.Globalization.xml", - "ref/netstandard1.0/ko/System.Globalization.xml", - "ref/netstandard1.0/ru/System.Globalization.xml", - "ref/netstandard1.0/zh-hans/System.Globalization.xml", - "ref/netstandard1.0/zh-hant/System.Globalization.xml", - "ref/netstandard1.3/System.Globalization.dll", - "ref/netstandard1.3/System.Globalization.xml", - "ref/netstandard1.3/de/System.Globalization.xml", - "ref/netstandard1.3/es/System.Globalization.xml", - "ref/netstandard1.3/fr/System.Globalization.xml", - "ref/netstandard1.3/it/System.Globalization.xml", - "ref/netstandard1.3/ja/System.Globalization.xml", - "ref/netstandard1.3/ko/System.Globalization.xml", - "ref/netstandard1.3/ru/System.Globalization.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.4.3.0.nupkg.sha512", - "system.globalization.nuspec" - ] - }, - "System.Globalization.Calendars/4.3.0": { - "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "type": "package", - "path": "system.globalization.calendars/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.xml", - "ref/netstandard1.3/de/System.Globalization.Calendars.xml", - "ref/netstandard1.3/es/System.Globalization.Calendars.xml", - "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", - "ref/netstandard1.3/it/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.calendars.4.3.0.nupkg.sha512", - "system.globalization.calendars.nuspec" - ] - }, - "System.Globalization.Extensions/4.3.0": { - "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "type": "package", - "path": "system.globalization.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.xml", - "ref/netstandard1.3/de/System.Globalization.Extensions.xml", - "ref/netstandard1.3/es/System.Globalization.Extensions.xml", - "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", - "ref/netstandard1.3/it/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", - "runtimes/win/lib/net46/System.Globalization.Extensions.dll", - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", - "system.globalization.extensions.4.3.0.nupkg.sha512", - "system.globalization.extensions.nuspec" - ] - }, - "System.IdentityModel.Tokens.Jwt/5.3.0": { - "sha512": "EdcMk+36u9gQtbwTiPQ7ckIfiADBwOmCZ6rGD2rfkaozIdW1t7vbXk/FPVAu2r9KgCQZ5245Z+P0YMM/0Q0G2g==", - "type": "package", - "path": "system.identitymodel.tokens.jwt/5.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/System.IdentityModel.Tokens.Jwt.dll", - "lib/net45/System.IdentityModel.Tokens.Jwt.pdb", - "lib/net45/System.IdentityModel.Tokens.Jwt.xml", - "lib/net451/System.IdentityModel.Tokens.Jwt.dll", - "lib/net451/System.IdentityModel.Tokens.Jwt.pdb", - "lib/net451/System.IdentityModel.Tokens.Jwt.xml", - "lib/net461/System.IdentityModel.Tokens.Jwt.dll", - "lib/net461/System.IdentityModel.Tokens.Jwt.pdb", - "lib/net461/System.IdentityModel.Tokens.Jwt.xml", - "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll", - "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.pdb", - "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.pdb", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", - "system.identitymodel.tokens.jwt.5.3.0.nupkg.sha512", - "system.identitymodel.tokens.jwt.nuspec" - ] - }, - "System.Interactive.Async/3.2.0": { - "sha512": "C07p0dAA5lGqYUPiPCK3paR709gqS4aMDDsje0v0pvffwzLaxmsn5YQTfZbyNG5qrudPx+BCxTqISnncQ3wIoQ==", - "type": "package", - "path": "system.interactive.async/3.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/System.Interactive.Async.dll", - "lib/net45/System.Interactive.Async.xml", - "lib/net46/System.Interactive.Async.dll", - "lib/net46/System.Interactive.Async.xml", - "lib/netstandard1.0/System.Interactive.Async.dll", - "lib/netstandard1.0/System.Interactive.Async.xml", - "lib/netstandard1.3/System.Interactive.Async.dll", - "lib/netstandard1.3/System.Interactive.Async.xml", - "lib/netstandard2.0/System.Interactive.Async.dll", - "lib/netstandard2.0/System.Interactive.Async.xml", - "system.interactive.async.3.2.0.nupkg.sha512", - "system.interactive.async.nuspec" - ] - }, - "System.IO/4.3.0": { - "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "type": "package", - "path": "system.io/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.IO.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.IO.dll", - "ref/netcore50/System.IO.dll", - "ref/netcore50/System.IO.xml", - "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/zh-hans/System.IO.xml", - "ref/netcore50/zh-hant/System.IO.xml", - "ref/netstandard1.0/System.IO.dll", - "ref/netstandard1.0/System.IO.xml", - "ref/netstandard1.0/de/System.IO.xml", - "ref/netstandard1.0/es/System.IO.xml", - "ref/netstandard1.0/fr/System.IO.xml", - "ref/netstandard1.0/it/System.IO.xml", - "ref/netstandard1.0/ja/System.IO.xml", - "ref/netstandard1.0/ko/System.IO.xml", - "ref/netstandard1.0/ru/System.IO.xml", - "ref/netstandard1.0/zh-hans/System.IO.xml", - "ref/netstandard1.0/zh-hant/System.IO.xml", - "ref/netstandard1.3/System.IO.dll", - "ref/netstandard1.3/System.IO.xml", - "ref/netstandard1.3/de/System.IO.xml", - "ref/netstandard1.3/es/System.IO.xml", - "ref/netstandard1.3/fr/System.IO.xml", - "ref/netstandard1.3/it/System.IO.xml", - "ref/netstandard1.3/ja/System.IO.xml", - "ref/netstandard1.3/ko/System.IO.xml", - "ref/netstandard1.3/ru/System.IO.xml", - "ref/netstandard1.3/zh-hans/System.IO.xml", - "ref/netstandard1.3/zh-hant/System.IO.xml", - "ref/netstandard1.5/System.IO.dll", - "ref/netstandard1.5/System.IO.xml", - "ref/netstandard1.5/de/System.IO.xml", - "ref/netstandard1.5/es/System.IO.xml", - "ref/netstandard1.5/fr/System.IO.xml", - "ref/netstandard1.5/it/System.IO.xml", - "ref/netstandard1.5/ja/System.IO.xml", - "ref/netstandard1.5/ko/System.IO.xml", - "ref/netstandard1.5/ru/System.IO.xml", - "ref/netstandard1.5/zh-hans/System.IO.xml", - "ref/netstandard1.5/zh-hant/System.IO.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.4.3.0.nupkg.sha512", - "system.io.nuspec" - ] - }, - "System.IO.Compression/4.3.0": { - "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "type": "package", - "path": "system.io.compression/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.IO.Compression.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.xml", - "ref/netcore50/de/System.IO.Compression.xml", - "ref/netcore50/es/System.IO.Compression.xml", - "ref/netcore50/fr/System.IO.Compression.xml", - "ref/netcore50/it/System.IO.Compression.xml", - "ref/netcore50/ja/System.IO.Compression.xml", - "ref/netcore50/ko/System.IO.Compression.xml", - "ref/netcore50/ru/System.IO.Compression.xml", - "ref/netcore50/zh-hans/System.IO.Compression.xml", - "ref/netcore50/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.1/System.IO.Compression.dll", - "ref/netstandard1.1/System.IO.Compression.xml", - "ref/netstandard1.1/de/System.IO.Compression.xml", - "ref/netstandard1.1/es/System.IO.Compression.xml", - "ref/netstandard1.1/fr/System.IO.Compression.xml", - "ref/netstandard1.1/it/System.IO.Compression.xml", - "ref/netstandard1.1/ja/System.IO.Compression.xml", - "ref/netstandard1.1/ko/System.IO.Compression.xml", - "ref/netstandard1.1/ru/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.3/System.IO.Compression.dll", - "ref/netstandard1.3/System.IO.Compression.xml", - "ref/netstandard1.3/de/System.IO.Compression.xml", - "ref/netstandard1.3/es/System.IO.Compression.xml", - "ref/netstandard1.3/fr/System.IO.Compression.xml", - "ref/netstandard1.3/it/System.IO.Compression.xml", - "ref/netstandard1.3/ja/System.IO.Compression.xml", - "ref/netstandard1.3/ko/System.IO.Compression.xml", - "ref/netstandard1.3/ru/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", - "runtimes/win/lib/net46/System.IO.Compression.dll", - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", - "system.io.compression.4.3.0.nupkg.sha512", - "system.io.compression.nuspec" - ] - }, - "System.IO.FileSystem/4.3.0": { - "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "type": "package", - "path": "system.io.filesystem/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.4.3.0.nupkg.sha512", - "system.io.filesystem.nuspec" - ] - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "type": "package", - "path": "system.io.filesystem.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "system.io.filesystem.primitives.nuspec" - ] - }, - "System.IO.Pipelines/4.5.2": { - "sha512": "NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", - "type": "package", - "path": "system.io.pipelines/4.5.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netcoreapp2.1/System.IO.Pipelines.dll", - "lib/netcoreapp2.1/System.IO.Pipelines.xml", - "lib/netstandard1.3/System.IO.Pipelines.dll", - "lib/netstandard1.3/System.IO.Pipelines.xml", - "lib/netstandard2.0/System.IO.Pipelines.dll", - "lib/netstandard2.0/System.IO.Pipelines.xml", - "ref/netstandard1.3/System.IO.Pipelines.dll", - "system.io.pipelines.4.5.2.nupkg.sha512", - "system.io.pipelines.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Linq/4.3.0": { - "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "type": "package", - "path": "system.linq/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.dll", - "lib/netcore50/System.Linq.dll", - "lib/netstandard1.6/System.Linq.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.dll", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "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/zh-hans/System.Linq.xml", - "ref/netcore50/zh-hant/System.Linq.xml", - "ref/netstandard1.0/System.Linq.dll", - "ref/netstandard1.0/System.Linq.xml", - "ref/netstandard1.0/de/System.Linq.xml", - "ref/netstandard1.0/es/System.Linq.xml", - "ref/netstandard1.0/fr/System.Linq.xml", - "ref/netstandard1.0/it/System.Linq.xml", - "ref/netstandard1.0/ja/System.Linq.xml", - "ref/netstandard1.0/ko/System.Linq.xml", - "ref/netstandard1.0/ru/System.Linq.xml", - "ref/netstandard1.0/zh-hans/System.Linq.xml", - "ref/netstandard1.0/zh-hant/System.Linq.xml", - "ref/netstandard1.6/System.Linq.dll", - "ref/netstandard1.6/System.Linq.xml", - "ref/netstandard1.6/de/System.Linq.xml", - "ref/netstandard1.6/es/System.Linq.xml", - "ref/netstandard1.6/fr/System.Linq.xml", - "ref/netstandard1.6/it/System.Linq.xml", - "ref/netstandard1.6/ja/System.Linq.xml", - "ref/netstandard1.6/ko/System.Linq.xml", - "ref/netstandard1.6/ru/System.Linq.xml", - "ref/netstandard1.6/zh-hans/System.Linq.xml", - "ref/netstandard1.6/zh-hant/System.Linq.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.4.3.0.nupkg.sha512", - "system.linq.nuspec" - ] - }, - "System.Linq.Expressions/4.3.0": { - "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "type": "package", - "path": "system.linq.expressions/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.Expressions.dll", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.6/System.Linq.Expressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "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/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.0/System.Linq.Expressions.dll", - "ref/netstandard1.0/System.Linq.Expressions.xml", - "ref/netstandard1.0/de/System.Linq.Expressions.xml", - "ref/netstandard1.0/es/System.Linq.Expressions.xml", - "ref/netstandard1.0/fr/System.Linq.Expressions.xml", - "ref/netstandard1.0/it/System.Linq.Expressions.xml", - "ref/netstandard1.0/ja/System.Linq.Expressions.xml", - "ref/netstandard1.0/ko/System.Linq.Expressions.xml", - "ref/netstandard1.0/ru/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.3/System.Linq.Expressions.dll", - "ref/netstandard1.3/System.Linq.Expressions.xml", - "ref/netstandard1.3/de/System.Linq.Expressions.xml", - "ref/netstandard1.3/es/System.Linq.Expressions.xml", - "ref/netstandard1.3/fr/System.Linq.Expressions.xml", - "ref/netstandard1.3/it/System.Linq.Expressions.xml", - "ref/netstandard1.3/ja/System.Linq.Expressions.xml", - "ref/netstandard1.3/ko/System.Linq.Expressions.xml", - "ref/netstandard1.3/ru/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.6/System.Linq.Expressions.dll", - "ref/netstandard1.6/System.Linq.Expressions.xml", - "ref/netstandard1.6/de/System.Linq.Expressions.xml", - "ref/netstandard1.6/es/System.Linq.Expressions.xml", - "ref/netstandard1.6/fr/System.Linq.Expressions.xml", - "ref/netstandard1.6/it/System.Linq.Expressions.xml", - "ref/netstandard1.6/ja/System.Linq.Expressions.xml", - "ref/netstandard1.6/ko/System.Linq.Expressions.xml", - "ref/netstandard1.6/ru/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", - "system.linq.expressions.4.3.0.nupkg.sha512", - "system.linq.expressions.nuspec" - ] - }, - "System.Linq.Queryable/4.0.1": { - "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", - "type": "package", - "path": "system.linq.queryable/4.0.1", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/monoandroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Linq.Queryable.dll", - "lib/netstandard1.3/System.Linq.Queryable.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/monoandroid10/_._", - "ref/monotouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Linq.Queryable.dll", - "ref/netcore50/System.Linq.Queryable.xml", - "ref/netcore50/de/System.Linq.Queryable.xml", - "ref/netcore50/es/System.Linq.Queryable.xml", - "ref/netcore50/fr/System.Linq.Queryable.xml", - "ref/netcore50/it/System.Linq.Queryable.xml", - "ref/netcore50/ja/System.Linq.Queryable.xml", - "ref/netcore50/ko/System.Linq.Queryable.xml", - "ref/netcore50/ru/System.Linq.Queryable.xml", - "ref/netcore50/zh-hans/System.Linq.Queryable.xml", - "ref/netcore50/zh-hant/System.Linq.Queryable.xml", - "ref/netstandard1.0/System.Linq.Queryable.dll", - "ref/netstandard1.0/System.Linq.Queryable.xml", - "ref/netstandard1.0/de/System.Linq.Queryable.xml", - "ref/netstandard1.0/es/System.Linq.Queryable.xml", - "ref/netstandard1.0/fr/System.Linq.Queryable.xml", - "ref/netstandard1.0/it/System.Linq.Queryable.xml", - "ref/netstandard1.0/ja/System.Linq.Queryable.xml", - "ref/netstandard1.0/ko/System.Linq.Queryable.xml", - "ref/netstandard1.0/ru/System.Linq.Queryable.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.queryable.4.0.1.nupkg.sha512", - "system.linq.queryable.nuspec" - ] - }, - "System.Memory/4.5.3": { - "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", - "type": "package", - "path": "system.memory/4.5.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.1/System.Memory.dll", - "lib/netstandard1.1/System.Memory.xml", - "lib/netstandard2.0/System.Memory.dll", - "lib/netstandard2.0/System.Memory.xml", - "ref/netcoreapp2.1/_._", - "system.memory.4.5.3.nupkg.sha512", - "system.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Net.Http/4.3.0": { - "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "type": "package", - "path": "system.net.http/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/Xamarinmac20/_._", - "lib/monoandroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/net46/System.Net.Http.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/Xamarinmac20/_._", - "ref/monoandroid10/_._", - "ref/monotouch10/_._", - "ref/net45/_._", - "ref/net46/System.Net.Http.dll", - "ref/net46/System.Net.Http.xml", - "ref/net46/de/System.Net.Http.xml", - "ref/net46/es/System.Net.Http.xml", - "ref/net46/fr/System.Net.Http.xml", - "ref/net46/it/System.Net.Http.xml", - "ref/net46/ja/System.Net.Http.xml", - "ref/net46/ko/System.Net.Http.xml", - "ref/net46/ru/System.Net.Http.xml", - "ref/net46/zh-hans/System.Net.Http.xml", - "ref/net46/zh-hant/System.Net.Http.xml", - "ref/netcore50/System.Net.Http.dll", - "ref/netcore50/System.Net.Http.xml", - "ref/netcore50/de/System.Net.Http.xml", - "ref/netcore50/es/System.Net.Http.xml", - "ref/netcore50/fr/System.Net.Http.xml", - "ref/netcore50/it/System.Net.Http.xml", - "ref/netcore50/ja/System.Net.Http.xml", - "ref/netcore50/ko/System.Net.Http.xml", - "ref/netcore50/ru/System.Net.Http.xml", - "ref/netcore50/zh-hans/System.Net.Http.xml", - "ref/netcore50/zh-hant/System.Net.Http.xml", - "ref/netstandard1.1/System.Net.Http.dll", - "ref/netstandard1.1/System.Net.Http.xml", - "ref/netstandard1.1/de/System.Net.Http.xml", - "ref/netstandard1.1/es/System.Net.Http.xml", - "ref/netstandard1.1/fr/System.Net.Http.xml", - "ref/netstandard1.1/it/System.Net.Http.xml", - "ref/netstandard1.1/ja/System.Net.Http.xml", - "ref/netstandard1.1/ko/System.Net.Http.xml", - "ref/netstandard1.1/ru/System.Net.Http.xml", - "ref/netstandard1.1/zh-hans/System.Net.Http.xml", - "ref/netstandard1.1/zh-hant/System.Net.Http.xml", - "ref/netstandard1.3/System.Net.Http.dll", - "ref/netstandard1.3/System.Net.Http.xml", - "ref/netstandard1.3/de/System.Net.Http.xml", - "ref/netstandard1.3/es/System.Net.Http.xml", - "ref/netstandard1.3/fr/System.Net.Http.xml", - "ref/netstandard1.3/it/System.Net.Http.xml", - "ref/netstandard1.3/ja/System.Net.Http.xml", - "ref/netstandard1.3/ko/System.Net.Http.xml", - "ref/netstandard1.3/ru/System.Net.Http.xml", - "ref/netstandard1.3/zh-hans/System.Net.Http.xml", - "ref/netstandard1.3/zh-hant/System.Net.Http.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", - "runtimes/win/lib/net46/System.Net.Http.dll", - "runtimes/win/lib/netcore50/System.Net.Http.dll", - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", - "system.net.http.4.3.0.nupkg.sha512", - "system.net.http.nuspec" - ] - }, - "System.Net.Primitives/4.3.0": { - "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "type": "package", - "path": "system.net.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Net.Primitives.dll", - "ref/netcore50/System.Net.Primitives.xml", - "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/zh-hans/System.Net.Primitives.xml", - "ref/netcore50/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.0/System.Net.Primitives.dll", - "ref/netstandard1.0/System.Net.Primitives.xml", - "ref/netstandard1.0/de/System.Net.Primitives.xml", - "ref/netstandard1.0/es/System.Net.Primitives.xml", - "ref/netstandard1.0/fr/System.Net.Primitives.xml", - "ref/netstandard1.0/it/System.Net.Primitives.xml", - "ref/netstandard1.0/ja/System.Net.Primitives.xml", - "ref/netstandard1.0/ko/System.Net.Primitives.xml", - "ref/netstandard1.0/ru/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.1/System.Net.Primitives.dll", - "ref/netstandard1.1/System.Net.Primitives.xml", - "ref/netstandard1.1/de/System.Net.Primitives.xml", - "ref/netstandard1.1/es/System.Net.Primitives.xml", - "ref/netstandard1.1/fr/System.Net.Primitives.xml", - "ref/netstandard1.1/it/System.Net.Primitives.xml", - "ref/netstandard1.1/ja/System.Net.Primitives.xml", - "ref/netstandard1.1/ko/System.Net.Primitives.xml", - "ref/netstandard1.1/ru/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.3/System.Net.Primitives.dll", - "ref/netstandard1.3/System.Net.Primitives.xml", - "ref/netstandard1.3/de/System.Net.Primitives.xml", - "ref/netstandard1.3/es/System.Net.Primitives.xml", - "ref/netstandard1.3/fr/System.Net.Primitives.xml", - "ref/netstandard1.3/it/System.Net.Primitives.xml", - "ref/netstandard1.3/ja/System.Net.Primitives.xml", - "ref/netstandard1.3/ko/System.Net.Primitives.xml", - "ref/netstandard1.3/ru/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.primitives.4.3.0.nupkg.sha512", - "system.net.primitives.nuspec" - ] - }, - "System.Net.WebSockets.WebSocketProtocol/4.5.1": { - "sha512": "FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==", - "type": "package", - "path": "system.net.websockets.websocketprotocol/4.5.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll", - "lib/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll", - "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll", - "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512", - "system.net.websockets.websocketprotocol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Numerics.Vectors/4.5.0": { - "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "type": "package", - "path": "system.numerics.vectors/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Numerics.Vectors.dll", - "lib/net46/System.Numerics.Vectors.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.0/System.Numerics.Vectors.dll", - "lib/netstandard1.0/System.Numerics.Vectors.xml", - "lib/netstandard2.0/System.Numerics.Vectors.dll", - "lib/netstandard2.0/System.Numerics.Vectors.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", - "lib/uap10.0.16299/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.Numerics.Vectors.dll", - "ref/net45/System.Numerics.Vectors.xml", - "ref/net46/System.Numerics.Vectors.dll", - "ref/net46/System.Numerics.Vectors.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.0/System.Numerics.Vectors.dll", - "ref/netstandard1.0/System.Numerics.Vectors.xml", - "ref/netstandard2.0/System.Numerics.Vectors.dll", - "ref/netstandard2.0/System.Numerics.Vectors.xml", - "ref/uap10.0.16299/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.numerics.vectors.4.5.0.nupkg.sha512", - "system.numerics.vectors.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.ObjectModel/4.3.0": { - "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "type": "package", - "path": "system.objectmodel/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.objectmodel.4.3.0.nupkg.sha512", - "system.objectmodel.nuspec" - ] - }, - "System.Private.DataContractSerialization/4.3.0": { - "sha512": "yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==", - "type": "package", - "path": "system.private.datacontractserialization/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.3/System.Private.DataContractSerialization.dll", - "ref/netstandard/_._", - "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll", - "system.private.datacontractserialization.4.3.0.nupkg.sha512", - "system.private.datacontractserialization.nuspec" - ] - }, - "System.Reflection/4.3.0": { - "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "type": "package", - "path": "system.reflection/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Reflection.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Reflection.dll", - "ref/netcore50/System.Reflection.dll", - "ref/netcore50/System.Reflection.xml", - "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/zh-hans/System.Reflection.xml", - "ref/netcore50/zh-hant/System.Reflection.xml", - "ref/netstandard1.0/System.Reflection.dll", - "ref/netstandard1.0/System.Reflection.xml", - "ref/netstandard1.0/de/System.Reflection.xml", - "ref/netstandard1.0/es/System.Reflection.xml", - "ref/netstandard1.0/fr/System.Reflection.xml", - "ref/netstandard1.0/it/System.Reflection.xml", - "ref/netstandard1.0/ja/System.Reflection.xml", - "ref/netstandard1.0/ko/System.Reflection.xml", - "ref/netstandard1.0/ru/System.Reflection.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.xml", - "ref/netstandard1.3/System.Reflection.dll", - "ref/netstandard1.3/System.Reflection.xml", - "ref/netstandard1.3/de/System.Reflection.xml", - "ref/netstandard1.3/es/System.Reflection.xml", - "ref/netstandard1.3/fr/System.Reflection.xml", - "ref/netstandard1.3/it/System.Reflection.xml", - "ref/netstandard1.3/ja/System.Reflection.xml", - "ref/netstandard1.3/ko/System.Reflection.xml", - "ref/netstandard1.3/ru/System.Reflection.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.xml", - "ref/netstandard1.5/System.Reflection.dll", - "ref/netstandard1.5/System.Reflection.xml", - "ref/netstandard1.5/de/System.Reflection.xml", - "ref/netstandard1.5/es/System.Reflection.xml", - "ref/netstandard1.5/fr/System.Reflection.xml", - "ref/netstandard1.5/it/System.Reflection.xml", - "ref/netstandard1.5/ja/System.Reflection.xml", - "ref/netstandard1.5/ko/System.Reflection.xml", - "ref/netstandard1.5/ru/System.Reflection.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.4.3.0.nupkg.sha512", - "system.reflection.nuspec" - ] - }, - "System.Reflection.Emit/4.3.0": { - "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "type": "package", - "path": "system.reflection.emit/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/netstandard1.3/System.Reflection.Emit.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/net45/_._", - "ref/netstandard1.1/System.Reflection.Emit.dll", - "ref/netstandard1.1/System.Reflection.Emit.xml", - "ref/netstandard1.1/de/System.Reflection.Emit.xml", - "ref/netstandard1.1/es/System.Reflection.Emit.xml", - "ref/netstandard1.1/fr/System.Reflection.Emit.xml", - "ref/netstandard1.1/it/System.Reflection.Emit.xml", - "ref/netstandard1.1/ja/System.Reflection.Emit.xml", - "ref/netstandard1.1/ko/System.Reflection.Emit.xml", - "ref/netstandard1.1/ru/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", - "ref/xamarinmac20/_._", - "system.reflection.emit.4.3.0.nupkg.sha512", - "system.reflection.emit.nuspec" - ] - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "type": "package", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "system.reflection.emit.ilgeneration.nuspec" - ] - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "system.reflection.emit.lightweight.nuspec" - ] - }, - "System.Reflection.Extensions/4.3.0": { - "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "type": "package", - "path": "system.reflection.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.extensions.4.3.0.nupkg.sha512", - "system.reflection.extensions.nuspec" - ] - }, - "System.Reflection.Metadata/1.6.0": { - "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", - "type": "package", - "path": "system.reflection.metadata/1.6.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.1/System.Reflection.Metadata.dll", - "lib/netstandard1.1/System.Reflection.Metadata.xml", - "lib/netstandard2.0/System.Reflection.Metadata.dll", - "lib/netstandard2.0/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "lib/portable-net45+win8/System.Reflection.Metadata.xml", - "system.reflection.metadata.1.6.0.nupkg.sha512", - "system.reflection.metadata.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Reflection.Primitives/4.3.0": { - "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "type": "package", - "path": "system.reflection.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/netcore50/de/System.Reflection.Primitives.xml", - "ref/netcore50/es/System.Reflection.Primitives.xml", - "ref/netcore50/fr/System.Reflection.Primitives.xml", - "ref/netcore50/it/System.Reflection.Primitives.xml", - "ref/netcore50/ja/System.Reflection.Primitives.xml", - "ref/netcore50/ko/System.Reflection.Primitives.xml", - "ref/netcore50/ru/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", - "ref/netstandard1.0/System.Reflection.Primitives.dll", - "ref/netstandard1.0/System.Reflection.Primitives.xml", - "ref/netstandard1.0/de/System.Reflection.Primitives.xml", - "ref/netstandard1.0/es/System.Reflection.Primitives.xml", - "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", - "ref/netstandard1.0/it/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.primitives.4.3.0.nupkg.sha512", - "system.reflection.primitives.nuspec" - ] - }, - "System.Reflection.TypeExtensions/4.3.0": { - "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "type": "package", - "path": "system.reflection.typeextensions/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "system.reflection.typeextensions.4.3.0.nupkg.sha512", - "system.reflection.typeextensions.nuspec" - ] - }, - "System.Resources.ResourceManager/4.3.0": { - "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "type": "package", - "path": "system.resources.resourcemanager/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "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/zh-hans/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/System.Resources.ResourceManager.dll", - "ref/netstandard1.0/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.resources.resourcemanager.4.3.0.nupkg.sha512", - "system.resources.resourcemanager.nuspec" - ] - }, - "System.Runtime/4.3.0": { - "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "type": "package", - "path": "system.runtime/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.dll", - "lib/portable-net45+win8+wp80+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.dll", - "ref/netcore50/System.Runtime.dll", - "ref/netcore50/System.Runtime.xml", - "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/zh-hans/System.Runtime.xml", - "ref/netcore50/zh-hant/System.Runtime.xml", - "ref/netstandard1.0/System.Runtime.dll", - "ref/netstandard1.0/System.Runtime.xml", - "ref/netstandard1.0/de/System.Runtime.xml", - "ref/netstandard1.0/es/System.Runtime.xml", - "ref/netstandard1.0/fr/System.Runtime.xml", - "ref/netstandard1.0/it/System.Runtime.xml", - "ref/netstandard1.0/ja/System.Runtime.xml", - "ref/netstandard1.0/ko/System.Runtime.xml", - "ref/netstandard1.0/ru/System.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.xml", - "ref/netstandard1.2/System.Runtime.dll", - "ref/netstandard1.2/System.Runtime.xml", - "ref/netstandard1.2/de/System.Runtime.xml", - "ref/netstandard1.2/es/System.Runtime.xml", - "ref/netstandard1.2/fr/System.Runtime.xml", - "ref/netstandard1.2/it/System.Runtime.xml", - "ref/netstandard1.2/ja/System.Runtime.xml", - "ref/netstandard1.2/ko/System.Runtime.xml", - "ref/netstandard1.2/ru/System.Runtime.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.xml", - "ref/netstandard1.3/System.Runtime.dll", - "ref/netstandard1.3/System.Runtime.xml", - "ref/netstandard1.3/de/System.Runtime.xml", - "ref/netstandard1.3/es/System.Runtime.xml", - "ref/netstandard1.3/fr/System.Runtime.xml", - "ref/netstandard1.3/it/System.Runtime.xml", - "ref/netstandard1.3/ja/System.Runtime.xml", - "ref/netstandard1.3/ko/System.Runtime.xml", - "ref/netstandard1.3/ru/System.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.xml", - "ref/netstandard1.5/System.Runtime.dll", - "ref/netstandard1.5/System.Runtime.xml", - "ref/netstandard1.5/de/System.Runtime.xml", - "ref/netstandard1.5/es/System.Runtime.xml", - "ref/netstandard1.5/fr/System.Runtime.xml", - "ref/netstandard1.5/it/System.Runtime.xml", - "ref/netstandard1.5/ja/System.Runtime.xml", - "ref/netstandard1.5/ko/System.Runtime.xml", - "ref/netstandard1.5/ru/System.Runtime.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.xml", - "ref/portable-net45+win8+wp80+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.4.3.0.nupkg.sha512", - "system.runtime.nuspec" - ] - }, - "System.Runtime.CompilerServices.Unsafe/4.5.2": { - "sha512": "wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==", - "type": "package", - "path": "system.runtime.compilerservices.unsafe/4.5.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512", - "system.runtime.compilerservices.unsafe.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Runtime.Extensions/4.3.0": { - "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "type": "package", - "path": "system.runtime.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.xml", - "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/zh-hans/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.0/System.Runtime.Extensions.dll", - "ref/netstandard1.0/System.Runtime.Extensions.xml", - "ref/netstandard1.0/de/System.Runtime.Extensions.xml", - "ref/netstandard1.0/es/System.Runtime.Extensions.xml", - "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.0/it/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.3/System.Runtime.Extensions.dll", - "ref/netstandard1.3/System.Runtime.Extensions.xml", - "ref/netstandard1.3/de/System.Runtime.Extensions.xml", - "ref/netstandard1.3/es/System.Runtime.Extensions.xml", - "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.3/it/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.5/System.Runtime.Extensions.dll", - "ref/netstandard1.5/System.Runtime.Extensions.xml", - "ref/netstandard1.5/de/System.Runtime.Extensions.xml", - "ref/netstandard1.5/es/System.Runtime.Extensions.xml", - "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.5/it/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.extensions.4.3.0.nupkg.sha512", - "system.runtime.extensions.nuspec" - ] - }, - "System.Runtime.Handles/4.3.0": { - "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "type": "package", - "path": "system.runtime.handles/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/netstandard1.3/System.Runtime.Handles.dll", - "ref/netstandard1.3/System.Runtime.Handles.xml", - "ref/netstandard1.3/de/System.Runtime.Handles.xml", - "ref/netstandard1.3/es/System.Runtime.Handles.xml", - "ref/netstandard1.3/fr/System.Runtime.Handles.xml", - "ref/netstandard1.3/it/System.Runtime.Handles.xml", - "ref/netstandard1.3/ja/System.Runtime.Handles.xml", - "ref/netstandard1.3/ko/System.Runtime.Handles.xml", - "ref/netstandard1.3/ru/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.handles.4.3.0.nupkg.sha512", - "system.runtime.handles.nuspec" - ] - }, - "System.Runtime.InteropServices/4.3.0": { - "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "type": "package", - "path": "system.runtime.interopservices/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.InteropServices.dll", - "lib/net463/System.Runtime.InteropServices.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.InteropServices.dll", - "ref/net463/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.xml", - "ref/netcore50/de/System.Runtime.InteropServices.xml", - "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/zh-hans/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/System.Runtime.InteropServices.dll", - "ref/netstandard1.2/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/System.Runtime.InteropServices.dll", - "ref/netstandard1.3/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/System.Runtime.InteropServices.dll", - "ref/netstandard1.5/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.interopservices.4.3.0.nupkg.sha512", - "system.runtime.interopservices.nuspec" - ] - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "type": "package", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "system.runtime.interopservices.runtimeinformation.nuspec" - ] - }, - "System.Runtime.Numerics/4.3.0": { - "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "type": "package", - "path": "system.runtime.numerics/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/netstandard1.3/System.Runtime.Numerics.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/netcore50/de/System.Runtime.Numerics.xml", - "ref/netcore50/es/System.Runtime.Numerics.xml", - "ref/netcore50/fr/System.Runtime.Numerics.xml", - "ref/netcore50/it/System.Runtime.Numerics.xml", - "ref/netcore50/ja/System.Runtime.Numerics.xml", - "ref/netcore50/ko/System.Runtime.Numerics.xml", - "ref/netcore50/ru/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", - "ref/netstandard1.1/System.Runtime.Numerics.dll", - "ref/netstandard1.1/System.Runtime.Numerics.xml", - "ref/netstandard1.1/de/System.Runtime.Numerics.xml", - "ref/netstandard1.1/es/System.Runtime.Numerics.xml", - "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", - "ref/netstandard1.1/it/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.numerics.4.3.0.nupkg.sha512", - "system.runtime.numerics.nuspec" - ] - }, - "System.Runtime.Serialization.Primitives/4.3.0": { - "sha512": "2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==", - "type": "package", - "path": "system.runtime.serialization.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Runtime.Serialization.Primitives.dll", - "lib/netcore50/System.Runtime.Serialization.Primitives.dll", - "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Runtime.Serialization.Primitives.dll", - "ref/netcore50/System.Runtime.Serialization.Primitives.dll", - "ref/netcore50/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", - "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", - "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", - "system.runtime.serialization.primitives.nuspec" - ] - }, - "System.Runtime.Serialization.Xml/4.3.0": { - "sha512": "nUQx/5OVgrqEba3+j7OdiofvVq9koWZAC7Z3xGI8IIViZqApWnZ5+lLcwYgTlbkobrl/Rat+Jb8GeD4WQESD2A==", - "type": "package", - "path": "system.runtime.serialization.xml/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Runtime.Serialization.Xml.dll", - "lib/netcore50/System.Runtime.Serialization.Xml.dll", - "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Runtime.Serialization.Xml.dll", - "ref/netcore50/System.Runtime.Serialization.Xml.dll", - "ref/netcore50/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/de/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/es/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/fr/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/it/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/ja/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/ko/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/ru/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/zh-hans/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/zh-hant/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/System.Runtime.Serialization.Xml.dll", - "ref/netstandard1.0/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/de/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/es/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/fr/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/it/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/ja/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/ko/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/ru/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll", - "ref/netstandard1.3/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/de/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/es/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/fr/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/it/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/ja/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/ko/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/ru/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Xml.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.serialization.xml.4.3.0.nupkg.sha512", - "system.runtime.serialization.xml.nuspec" - ] - }, - "System.Security.AccessControl/4.5.0": { - "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", - "type": "package", - "path": "system.security.accesscontrol/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.dll", - "lib/netstandard1.3/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.dll", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.xml", - "ref/netstandard1.3/System.Security.AccessControl.dll", - "ref/netstandard1.3/System.Security.AccessControl.xml", - "ref/netstandard1.3/de/System.Security.AccessControl.xml", - "ref/netstandard1.3/es/System.Security.AccessControl.xml", - "ref/netstandard1.3/fr/System.Security.AccessControl.xml", - "ref/netstandard1.3/it/System.Security.AccessControl.xml", - "ref/netstandard1.3/ja/System.Security.AccessControl.xml", - "ref/netstandard1.3/ko/System.Security.AccessControl.xml", - "ref/netstandard1.3/ru/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", - "ref/netstandard2.0/System.Security.AccessControl.dll", - "ref/netstandard2.0/System.Security.AccessControl.xml", - "ref/uap10.0.16299/_._", - "runtimes/win/lib/net46/System.Security.AccessControl.dll", - "runtimes/win/lib/net461/System.Security.AccessControl.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", - "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.accesscontrol.4.5.0.nupkg.sha512", - "system.security.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Claims/4.3.0": { - "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", - "type": "package", - "path": "system.security.claims/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Claims.dll", - "lib/netstandard1.3/System.Security.Claims.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Claims.dll", - "ref/netstandard1.3/System.Security.Claims.dll", - "ref/netstandard1.3/System.Security.Claims.xml", - "ref/netstandard1.3/de/System.Security.Claims.xml", - "ref/netstandard1.3/es/System.Security.Claims.xml", - "ref/netstandard1.3/fr/System.Security.Claims.xml", - "ref/netstandard1.3/it/System.Security.Claims.xml", - "ref/netstandard1.3/ja/System.Security.Claims.xml", - "ref/netstandard1.3/ko/System.Security.Claims.xml", - "ref/netstandard1.3/ru/System.Security.Claims.xml", - "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", - "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.security.claims.4.3.0.nupkg.sha512", - "system.security.claims.nuspec" - ] - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "type": "package", - "path": "system.security.cryptography.algorithms/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Algorithms.dll", - "lib/net461/System.Security.Cryptography.Algorithms.dll", - "lib/net463/System.Security.Cryptography.Algorithms.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Algorithms.dll", - "ref/net461/System.Security.Cryptography.Algorithms.dll", - "ref/net463/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "system.security.cryptography.algorithms.nuspec" - ] - }, - "System.Security.Cryptography.Cng/4.5.0": { - "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", - "type": "package", - "path": "system.security.cryptography.cng/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.dll", - "lib/net462/System.Security.Cryptography.Cng.dll", - "lib/net47/System.Security.Cryptography.Cng.dll", - "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", - "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", - "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", - "lib/uap10.0.16299/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.xml", - "ref/net462/System.Security.Cryptography.Cng.dll", - "ref/net462/System.Security.Cryptography.Cng.xml", - "ref/net47/System.Security.Cryptography.Cng.dll", - "ref/net47/System.Security.Cryptography.Cng.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", - "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", - "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", - "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", - "ref/uap10.0.16299/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.cryptography.cng.4.5.0.nupkg.sha512", - "system.security.cryptography.cng.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Cryptography.Csp/4.3.0": { - "sha512": "yO2k5o+Z+DiFRBvvB9vdRRAGHi6bm02M9OWXfCqQ8K0UxD3Woc3svQheZfb7PoTEFs0kGacO0IzzMWsb6Mkeow==", - "type": "package", - "path": "system.security.cryptography.csp/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Csp.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Csp.dll", - "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", - "runtimes/win/lib/netcore50/_._", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", - "system.security.cryptography.csp.4.3.0.nupkg.sha512", - "system.security.cryptography.csp.nuspec" - ] - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "type": "package", - "path": "system.security.cryptography.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Encoding.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "system.security.cryptography.encoding.nuspec" - ] - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "vOYy7Jv9KsG3ld2hLt0GoERd82SZi4BelrbXLwI9yFBYX7kpbvUCWYo4eyevk47cuJXZ9ZLVAryANcc7iY71aA==", - "type": "package", - "path": "system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "system.security.cryptography.openssl.nuspec" - ] - }, - "System.Security.Cryptography.Pkcs/4.5.0": { - "sha512": "TGQX51gxpY3K3I6LJlE2LAftVlIMqJf0cBGhz68Y89jjk3LJCB6SrwiD+YN1fkqemBvWGs+GjyMJukl6d6goyQ==", - "type": "package", - "path": "system.security.cryptography.pkcs/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.Cryptography.Pkcs.dll", - "lib/net461/System.Security.Cryptography.Pkcs.dll", - "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", - "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", - "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", - "ref/net46/System.Security.Cryptography.Pkcs.dll", - "ref/net461/System.Security.Cryptography.Pkcs.dll", - "ref/net461/System.Security.Cryptography.Pkcs.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml", - "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll", - "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll", - "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml", - "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", - "system.security.cryptography.pkcs.4.5.0.nupkg.sha512", - "system.security.cryptography.pkcs.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "type": "package", - "path": "system.security.cryptography.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Primitives.dll", - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Primitives.dll", - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "system.security.cryptography.primitives.nuspec" - ] - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "type": "package", - "path": "system.security.cryptography.x509certificates/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.X509Certificates.dll", - "lib/net461/System.Security.Cryptography.X509Certificates.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.X509Certificates.dll", - "ref/net461/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "system.security.cryptography.x509certificates.nuspec" - ] - }, - "System.Security.Cryptography.Xml/4.5.0": { - "sha512": "i2Jn6rGXR63J0zIklImGRkDIJL4b1NfPSEbIVHBlqoIb12lfXIigCbDRpDmIEzwSo/v1U5y/rYJdzZYSyCWxvg==", - "type": "package", - "path": "system.security.cryptography.xml/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Security.Cryptography.Xml.dll", - "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", - "ref/net461/System.Security.Cryptography.Xml.dll", - "ref/net461/System.Security.Cryptography.Xml.xml", - "ref/netstandard2.0/System.Security.Cryptography.Xml.dll", - "ref/netstandard2.0/System.Security.Cryptography.Xml.xml", - "system.security.cryptography.xml.4.5.0.nupkg.sha512", - "system.security.cryptography.xml.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Permissions/4.5.0": { - "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", - "type": "package", - "path": "system.security.permissions/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Security.Permissions.dll", - "lib/netstandard2.0/System.Security.Permissions.dll", - "ref/net461/System.Security.Permissions.dll", - "ref/net461/System.Security.Permissions.xml", - "ref/netstandard2.0/System.Security.Permissions.dll", - "ref/netstandard2.0/System.Security.Permissions.xml", - "system.security.permissions.4.5.0.nupkg.sha512", - "system.security.permissions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Principal/4.3.0": { - "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", - "type": "package", - "path": "system.security.principal/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Security.Principal.dll", - "lib/netstandard1.0/System.Security.Principal.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Security.Principal.dll", - "ref/netcore50/System.Security.Principal.xml", - "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/zh-hans/System.Security.Principal.xml", - "ref/netcore50/zh-hant/System.Security.Principal.xml", - "ref/netstandard1.0/System.Security.Principal.dll", - "ref/netstandard1.0/System.Security.Principal.xml", - "ref/netstandard1.0/de/System.Security.Principal.xml", - "ref/netstandard1.0/es/System.Security.Principal.xml", - "ref/netstandard1.0/fr/System.Security.Principal.xml", - "ref/netstandard1.0/it/System.Security.Principal.xml", - "ref/netstandard1.0/ja/System.Security.Principal.xml", - "ref/netstandard1.0/ko/System.Security.Principal.xml", - "ref/netstandard1.0/ru/System.Security.Principal.xml", - "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", - "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.security.principal.4.3.0.nupkg.sha512", - "system.security.principal.nuspec" - ] - }, - "System.Security.Principal.Windows/4.5.0": { - "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", - "type": "package", - "path": "system.security.principal.windows/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.dll", - "lib/netstandard1.3/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.dll", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/System.Security.Principal.Windows.dll", - "ref/netstandard1.3/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", - "ref/netstandard2.0/System.Security.Principal.Windows.dll", - "ref/netstandard2.0/System.Security.Principal.Windows.xml", - "ref/uap10.0.16299/_._", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.principal.windows.4.5.0.nupkg.sha512", - "system.security.principal.windows.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Text.Encoding/4.3.0": { - "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "type": "package", - "path": "system.text.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.dll", - "ref/netcore50/System.Text.Encoding.xml", - "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/zh-hans/System.Text.Encoding.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.0/System.Text.Encoding.dll", - "ref/netstandard1.0/System.Text.Encoding.xml", - "ref/netstandard1.0/de/System.Text.Encoding.xml", - "ref/netstandard1.0/es/System.Text.Encoding.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.xml", - "ref/netstandard1.0/it/System.Text.Encoding.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.3/System.Text.Encoding.dll", - "ref/netstandard1.3/System.Text.Encoding.xml", - "ref/netstandard1.3/de/System.Text.Encoding.xml", - "ref/netstandard1.3/es/System.Text.Encoding.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.xml", - "ref/netstandard1.3/it/System.Text.Encoding.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.4.3.0.nupkg.sha512", - "system.text.encoding.nuspec" - ] - }, - "System.Text.Encoding.CodePages/4.5.0": { - "sha512": "S0wEUiKcLvRlkFUXca8uio1UQ5bYQzYgOmOKtCqaBQC3GR9AJjh43otcM32IGsAyvadFTaAMw9Irm6dS4Evfng==", - "type": "package", - "path": "system.text.encoding.codepages/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Text.Encoding.CodePages.dll", - "lib/net461/System.Text.Encoding.CodePages.dll", - "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll", - "ref/netstandard1.3/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml", - "ref/netstandard2.0/System.Text.Encoding.CodePages.dll", - "ref/netstandard2.0/System.Text.Encoding.CodePages.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", - "system.text.encoding.codepages.4.5.0.nupkg.sha512", - "system.text.encoding.codepages.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Text.Encoding.Extensions/4.3.0": { - "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "type": "package", - "path": "system.text.encoding.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.Extensions.dll", - "ref/netcore50/System.Text.Encoding.Extensions.xml", - "ref/netcore50/de/System.Text.Encoding.Extensions.xml", - "ref/netcore50/es/System.Text.Encoding.Extensions.xml", - "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", - "ref/netcore50/it/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.extensions.4.3.0.nupkg.sha512", - "system.text.encoding.extensions.nuspec" - ] - }, - "System.Text.Encodings.Web/4.5.0": { - "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==", - "type": "package", - "path": "system.text.encodings.web/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/System.Text.Encodings.Web.dll", - "lib/netstandard1.0/System.Text.Encodings.Web.xml", - "lib/netstandard2.0/System.Text.Encodings.Web.dll", - "lib/netstandard2.0/System.Text.Encodings.Web.xml", - "system.text.encodings.web.4.5.0.nupkg.sha512", - "system.text.encodings.web.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Text.RegularExpressions/4.3.0": { - "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "type": "package", - "path": "system.text.regularexpressions/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Text.RegularExpressions.dll", - "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/netstandard1.6/System.Text.RegularExpressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.xml", - "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/zh-hans/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/System.Text.RegularExpressions.dll", - "ref/netstandard1.3/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/System.Text.RegularExpressions.dll", - "ref/netstandard1.6/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.regularexpressions.4.3.0.nupkg.sha512", - "system.text.regularexpressions.nuspec" - ] - }, - "System.Threading/4.3.0": { - "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "type": "package", - "path": "system.threading/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.dll", - "lib/netstandard1.3/System.Threading.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "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/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/netstandard1.0/System.Threading.dll", - "ref/netstandard1.0/System.Threading.xml", - "ref/netstandard1.0/de/System.Threading.xml", - "ref/netstandard1.0/es/System.Threading.xml", - "ref/netstandard1.0/fr/System.Threading.xml", - "ref/netstandard1.0/it/System.Threading.xml", - "ref/netstandard1.0/ja/System.Threading.xml", - "ref/netstandard1.0/ko/System.Threading.xml", - "ref/netstandard1.0/ru/System.Threading.xml", - "ref/netstandard1.0/zh-hans/System.Threading.xml", - "ref/netstandard1.0/zh-hant/System.Threading.xml", - "ref/netstandard1.3/System.Threading.dll", - "ref/netstandard1.3/System.Threading.xml", - "ref/netstandard1.3/de/System.Threading.xml", - "ref/netstandard1.3/es/System.Threading.xml", - "ref/netstandard1.3/fr/System.Threading.xml", - "ref/netstandard1.3/it/System.Threading.xml", - "ref/netstandard1.3/ja/System.Threading.xml", - "ref/netstandard1.3/ko/System.Threading.xml", - "ref/netstandard1.3/ru/System.Threading.xml", - "ref/netstandard1.3/zh-hans/System.Threading.xml", - "ref/netstandard1.3/zh-hant/System.Threading.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Threading.dll", - "system.threading.4.3.0.nupkg.sha512", - "system.threading.nuspec" - ] - }, - "System.Threading.Channels/4.5.0": { - "sha512": "MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", - "type": "package", - "path": "system.threading.channels/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netcoreapp2.1/System.Threading.Channels.dll", - "lib/netcoreapp2.1/System.Threading.Channels.xml", - "lib/netstandard1.3/System.Threading.Channels.dll", - "lib/netstandard1.3/System.Threading.Channels.xml", - "lib/netstandard2.0/System.Threading.Channels.dll", - "lib/netstandard2.0/System.Threading.Channels.xml", - "system.threading.channels.4.5.0.nupkg.sha512", - "system.threading.channels.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Threading.Tasks/4.3.0": { - "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "type": "package", - "path": "system.threading.tasks/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.Tasks.dll", - "ref/netcore50/System.Threading.Tasks.xml", - "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/zh-hans/System.Threading.Tasks.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.0/System.Threading.Tasks.dll", - "ref/netstandard1.0/System.Threading.Tasks.xml", - "ref/netstandard1.0/de/System.Threading.Tasks.xml", - "ref/netstandard1.0/es/System.Threading.Tasks.xml", - "ref/netstandard1.0/fr/System.Threading.Tasks.xml", - "ref/netstandard1.0/it/System.Threading.Tasks.xml", - "ref/netstandard1.0/ja/System.Threading.Tasks.xml", - "ref/netstandard1.0/ko/System.Threading.Tasks.xml", - "ref/netstandard1.0/ru/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.3/System.Threading.Tasks.dll", - "ref/netstandard1.3/System.Threading.Tasks.xml", - "ref/netstandard1.3/de/System.Threading.Tasks.xml", - "ref/netstandard1.3/es/System.Threading.Tasks.xml", - "ref/netstandard1.3/fr/System.Threading.Tasks.xml", - "ref/netstandard1.3/it/System.Threading.Tasks.xml", - "ref/netstandard1.3/ja/System.Threading.Tasks.xml", - "ref/netstandard1.3/ko/System.Threading.Tasks.xml", - "ref/netstandard1.3/ru/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.4.3.0.nupkg.sha512", - "system.threading.tasks.nuspec" - ] - }, - "System.Threading.Tasks.Extensions/4.5.2": { - "sha512": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==", - "type": "package", - "path": "system.threading.tasks.extensions/4.5.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netcoreapp2.1/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.extensions.4.5.2.nupkg.sha512", - "system.threading.tasks.extensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Threading.Tasks.Parallel/4.3.0": { - "sha512": "cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==", - "type": "package", - "path": "system.threading.tasks.parallel/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Tasks.Parallel.dll", - "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.Tasks.Parallel.dll", - "ref/netcore50/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", - "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.parallel.4.3.0.nupkg.sha512", - "system.threading.tasks.parallel.nuspec" - ] - }, - "System.Threading.Thread/4.3.0": { - "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "type": "package", - "path": "system.threading.thread/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Threading.Thread.dll", - "lib/netcore50/_._", - "lib/netstandard1.3/System.Threading.Thread.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Threading.Thread.dll", - "ref/netstandard1.3/System.Threading.Thread.dll", - "ref/netstandard1.3/System.Threading.Thread.xml", - "ref/netstandard1.3/de/System.Threading.Thread.xml", - "ref/netstandard1.3/es/System.Threading.Thread.xml", - "ref/netstandard1.3/fr/System.Threading.Thread.xml", - "ref/netstandard1.3/it/System.Threading.Thread.xml", - "ref/netstandard1.3/ja/System.Threading.Thread.xml", - "ref/netstandard1.3/ko/System.Threading.Thread.xml", - "ref/netstandard1.3/ru/System.Threading.Thread.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.thread.4.3.0.nupkg.sha512", - "system.threading.thread.nuspec" - ] - }, - "System.ValueTuple/4.5.0": { - "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", - "type": "package", - "path": "system.valuetuple/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.ValueTuple.dll", - "lib/net461/System.ValueTuple.xml", - "lib/net47/System.ValueTuple.dll", - "lib/net47/System.ValueTuple.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.0/System.ValueTuple.dll", - "lib/netstandard1.0/System.ValueTuple.xml", - "lib/netstandard2.0/_._", - "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", - "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", - "lib/uap10.0.16299/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net461/System.ValueTuple.dll", - "ref/net47/System.ValueTuple.dll", - "ref/netcoreapp2.0/_._", - "ref/netstandard2.0/_._", - "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", - "ref/uap10.0.16299/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.valuetuple.4.5.0.nupkg.sha512", - "system.valuetuple.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Xml.ReaderWriter/4.3.0": { - "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "type": "package", - "path": "system.xml.readerwriter/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Xml.ReaderWriter.dll", - "lib/netcore50/System.Xml.ReaderWriter.dll", - "lib/netstandard1.3/System.Xml.ReaderWriter.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.xml", - "ref/netcore50/de/System.Xml.ReaderWriter.xml", - "ref/netcore50/es/System.Xml.ReaderWriter.xml", - "ref/netcore50/fr/System.Xml.ReaderWriter.xml", - "ref/netcore50/it/System.Xml.ReaderWriter.xml", - "ref/netcore50/ja/System.Xml.ReaderWriter.xml", - "ref/netcore50/ko/System.Xml.ReaderWriter.xml", - "ref/netcore50/ru/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/System.Xml.ReaderWriter.dll", - "ref/netstandard1.0/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/System.Xml.ReaderWriter.dll", - "ref/netstandard1.3/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.readerwriter.4.3.0.nupkg.sha512", - "system.xml.readerwriter.nuspec" - ] - }, - "System.Xml.XDocument/4.3.0": { - "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "type": "package", - "path": "system.xml.xdocument/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Xml.XDocument.dll", - "lib/netstandard1.3/System.Xml.XDocument.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Xml.XDocument.dll", - "ref/netcore50/System.Xml.XDocument.xml", - "ref/netcore50/de/System.Xml.XDocument.xml", - "ref/netcore50/es/System.Xml.XDocument.xml", - "ref/netcore50/fr/System.Xml.XDocument.xml", - "ref/netcore50/it/System.Xml.XDocument.xml", - "ref/netcore50/ja/System.Xml.XDocument.xml", - "ref/netcore50/ko/System.Xml.XDocument.xml", - "ref/netcore50/ru/System.Xml.XDocument.xml", - "ref/netcore50/zh-hans/System.Xml.XDocument.xml", - "ref/netcore50/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.0/System.Xml.XDocument.dll", - "ref/netstandard1.0/System.Xml.XDocument.xml", - "ref/netstandard1.0/de/System.Xml.XDocument.xml", - "ref/netstandard1.0/es/System.Xml.XDocument.xml", - "ref/netstandard1.0/fr/System.Xml.XDocument.xml", - "ref/netstandard1.0/it/System.Xml.XDocument.xml", - "ref/netstandard1.0/ja/System.Xml.XDocument.xml", - "ref/netstandard1.0/ko/System.Xml.XDocument.xml", - "ref/netstandard1.0/ru/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.3/System.Xml.XDocument.dll", - "ref/netstandard1.3/System.Xml.XDocument.xml", - "ref/netstandard1.3/de/System.Xml.XDocument.xml", - "ref/netstandard1.3/es/System.Xml.XDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XDocument.xml", - "ref/netstandard1.3/it/System.Xml.XDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xdocument.4.3.0.nupkg.sha512", - "system.xml.xdocument.nuspec" - ] - }, - "System.Xml.XmlDocument/4.3.0": { - "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "type": "package", - "path": "system.xml.xmldocument/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Xml.XmlDocument.dll", - "lib/netstandard1.3/System.Xml.XmlDocument.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Xml.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xmldocument.4.3.0.nupkg.sha512", - "system.xml.xmldocument.nuspec" - ] - }, - "System.Xml.XmlSerializer/4.3.0": { - "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==", - "type": "package", - "path": "system.xml.xmlserializer/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Xml.XmlSerializer.dll", - "lib/netstandard1.3/System.Xml.XmlSerializer.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Xml.XmlSerializer.dll", - "ref/netcore50/System.Xml.XmlSerializer.xml", - "ref/netcore50/de/System.Xml.XmlSerializer.xml", - "ref/netcore50/es/System.Xml.XmlSerializer.xml", - "ref/netcore50/fr/System.Xml.XmlSerializer.xml", - "ref/netcore50/it/System.Xml.XmlSerializer.xml", - "ref/netcore50/ja/System.Xml.XmlSerializer.xml", - "ref/netcore50/ko/System.Xml.XmlSerializer.xml", - "ref/netcore50/ru/System.Xml.XmlSerializer.xml", - "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", - "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/System.Xml.XmlSerializer.dll", - "ref/netstandard1.0/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/System.Xml.XmlSerializer.dll", - "ref/netstandard1.3/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll", - "system.xml.xmlserializer.4.3.0.nupkg.sha512", - "system.xml.xmlserializer.nuspec" - ] - }, - "System.Xml.XPath/4.3.0": { - "sha512": "v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "type": "package", - "path": "system.xml.xpath/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Xml.XPath.dll", - "lib/netstandard1.3/System.Xml.XPath.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Xml.XPath.dll", - "ref/netstandard1.3/System.Xml.XPath.dll", - "ref/netstandard1.3/System.Xml.XPath.xml", - "ref/netstandard1.3/de/System.Xml.XPath.xml", - "ref/netstandard1.3/es/System.Xml.XPath.xml", - "ref/netstandard1.3/fr/System.Xml.XPath.xml", - "ref/netstandard1.3/it/System.Xml.XPath.xml", - "ref/netstandard1.3/ja/System.Xml.XPath.xml", - "ref/netstandard1.3/ko/System.Xml.XPath.xml", - "ref/netstandard1.3/ru/System.Xml.XPath.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xpath.4.3.0.nupkg.sha512", - "system.xml.xpath.nuspec" - ] - }, - "System.Xml.XPath.XDocument/4.3.0": { - "sha512": "jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==", - "type": "package", - "path": "system.xml.xpath.xdocument/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Xml.XPath.XDocument.dll", - "lib/netstandard1.3/System.Xml.XPath.XDocument.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Xml.XPath.XDocument.dll", - "ref/netstandard1.3/System.Xml.XPath.XDocument.dll", - "ref/netstandard1.3/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/de/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/es/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/it/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XPath.XDocument.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xpath.xdocument.4.3.0.nupkg.sha512", - "system.xml.xpath.xdocument.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - ".NETCoreApp,Version=v2.2": [ - "Microsoft.AspNetCore.App >= 2.2.0", - "Microsoft.AspNetCore.Razor.Design >= 2.2.0", - "Microsoft.NETCore.App >= 2.2.0", - "Npgsql.EntityFrameworkCore.PostgreSQL >= 2.2.4" - ] - }, - "packageFolders": { - "/home/morgana/.nuget/packages/": {}, - "/usr/share/dotnet/sdk/NuGetFallbackFolder": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "/home/morgana/codefellows/401/final-project/awsomAPI/awsomAPI.csproj", - "projectName": "awsomAPI", - "projectPath": "/home/morgana/codefellows/401/final-project/awsomAPI/awsomAPI.csproj", - "packagesPath": "/home/morgana/.nuget/packages/", - "outputPath": "/home/morgana/codefellows/401/final-project/awsomAPI/obj/", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "/usr/share/dotnet/sdk/NuGetFallbackFolder" - ], - "configFilePaths": [ - "/home/morgana/.nuget/NuGet/NuGet.Config" - ], - "originalTargetFrameworks": [ - "netcoreapp2.2" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp2.2": { - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp2.2": { - "dependencies": { - "Microsoft.AspNetCore.App": { - "suppressParent": "All", - "target": "Package", - "version": "[2.2.0, )", - "autoReferenced": true - }, - "Microsoft.AspNetCore.Razor.Design": { - "suppressParent": "All", - "target": "Package", - "version": "[2.2.0, )" - }, - "Microsoft.NETCore.App": { - "suppressParent": "All", - "target": "Package", - "version": "[2.2.0, )", - "autoReferenced": true - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[2.2.4, )" - } - }, - "imports": [ - "net461" - ], - "assetTargetFallback": true, - "warn": true - } - } - } -} \ No newline at end of file From b7225a329d0f0f078bb24118ed5889c28af82f97 Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Mon, 15 Jul 2019 14:35:36 -0700 Subject: [PATCH 06/34] trial requests: get, get all, post --- Controllers/TrialRequestController.cs | 17 ++++++++++++----- Controllers/UsersController.cs | 15 --------------- 2 files changed, 12 insertions(+), 20 deletions(-) diff --git a/Controllers/TrialRequestController.cs b/Controllers/TrialRequestController.cs index 215fe3a..11ff91d 100644 --- a/Controllers/TrialRequestController.cs +++ b/Controllers/TrialRequestController.cs @@ -21,19 +21,26 @@ public TrialRequestController(AwsomApiContext context) [HttpGet] public async Task>> GetTrialRequests() { - + return await _context.TrialRequsets.ToListAsync(); } [HttpGet("{id}")] - public async Task> TrialRequestDetailView() + public async Task> TrialRequestDetailView(long id) { - + var trialRequest = await _context.TrialRequsets.FindAsync(id); + + if(trialRequest == null) { + return NotFound(); + } + return trialRequest; } [HttpPost] - public async Task> AddNewTrialRequest() + public async Task> AddNewTrialRequest(TrialRequest trialRequest) { - + _context.TrialRequsets.Add(trialRequest); + await _context.SaveChangesAsync(); + return CreatedAtAction(nameof(TrialRequestDetailView), new { id = trialRequest.Id }, trialRequest); } } } \ No newline at end of file diff --git a/Controllers/UsersController.cs b/Controllers/UsersController.cs index 8dab060..40eb367 100644 --- a/Controllers/UsersController.cs +++ b/Controllers/UsersController.cs @@ -34,20 +34,5 @@ public async Task> GetUser(long id) } return user; } - - [HttpPost] - public void Post() - { - } - - [HttpPut("{id}")] - public void Put() - { - } - - [HttpDelete("{id}")] - public void Delete() - { - } } } From f01a6ac15fdcbcddbd9e49973872285abfbf58d1 Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Tue, 16 Jul 2019 11:16:45 -0700 Subject: [PATCH 07/34] switched to sql server --- Controllers/TrialRequestController.cs | 6 ++--- ...190716174927_InitialMigration.Designer.cs} | 22 +++++++------------ ....cs => 20190716174927_InitialMigration.cs} | 12 ++++------ Migrations/AwsomApiContextModelSnapshot.cs | 20 ++++++----------- Models/AwsomApiContext.cs | 2 +- Models/TrialRequestModel.cs | 4 ---- Models/UsersModel.cs | 2 -- Startup.cs | 6 ++--- 8 files changed, 26 insertions(+), 48 deletions(-) rename Migrations/{20190715184242_InitialMigration.Designer.cs => 20190716174927_InitialMigration.Designer.cs} (81%) rename Migrations/{20190715184242_InitialMigration.cs => 20190716174927_InitialMigration.cs} (82%) diff --git a/Controllers/TrialRequestController.cs b/Controllers/TrialRequestController.cs index 11ff91d..b3b5b44 100644 --- a/Controllers/TrialRequestController.cs +++ b/Controllers/TrialRequestController.cs @@ -21,13 +21,13 @@ public TrialRequestController(AwsomApiContext context) [HttpGet] public async Task>> GetTrialRequests() { - return await _context.TrialRequsets.ToListAsync(); + return await _context.TrialRequests.ToListAsync(); } [HttpGet("{id}")] public async Task> TrialRequestDetailView(long id) { - var trialRequest = await _context.TrialRequsets.FindAsync(id); + var trialRequest = await _context.TrialRequests.FindAsync(id); if(trialRequest == null) { return NotFound(); @@ -38,7 +38,7 @@ public async Task> TrialRequestDetailView(long id) [HttpPost] public async Task> AddNewTrialRequest(TrialRequest trialRequest) { - _context.TrialRequsets.Add(trialRequest); + _context.TrialRequests.Add(trialRequest); await _context.SaveChangesAsync(); return CreatedAtAction(nameof(TrialRequestDetailView), new { id = trialRequest.Id }, trialRequest); } diff --git a/Migrations/20190715184242_InitialMigration.Designer.cs b/Migrations/20190716174927_InitialMigration.Designer.cs similarity index 81% rename from Migrations/20190715184242_InitialMigration.Designer.cs rename to Migrations/20190716174927_InitialMigration.Designer.cs index ef1da0a..b3bfe87 100644 --- a/Migrations/20190715184242_InitialMigration.Designer.cs +++ b/Migrations/20190716174927_InitialMigration.Designer.cs @@ -1,30 +1,30 @@ // -using System.Collections.Generic; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; -using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; using awsomAPI.Models; namespace awsomAPI.Migrations { [DbContext(typeof(AwsomApiContext))] - [Migration("20190715184242_InitialMigration")] + [Migration("20190716174927_InitialMigration")] partial class InitialMigration { protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder - .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn) .HasAnnotation("ProductVersion", "2.2.4-servicing-10062") - .HasAnnotation("Relational:MaxIdentifierLength", 63); + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); modelBuilder.Entity("awsomAPI.Models.TrialRequest", b => { b.Property("Id") - .ValueGeneratedOnAdd(); + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); b.Property("Address") .IsRequired(); @@ -41,9 +41,6 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) b.Property("HasInstrument"); - b.Property>("Instrument") - .IsRequired(); - b.Property("Notes"); b.Property("ParentName") @@ -59,8 +56,6 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) b.Property("StudentName") .IsRequired(); - b.Property>("TeachersSelected"); - b.Property("ZipCode"); b.HasKey("Id"); @@ -71,7 +66,8 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) modelBuilder.Entity("awsomAPI.Models.User", b => { b.Property("Id") - .ValueGeneratedOnAdd(); + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); b.Property("Address"); @@ -80,8 +76,6 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) b.Property("Email") .IsRequired(); - b.Property>("InstrumentsTaught"); - b.Property("Name") .IsRequired(); diff --git a/Migrations/20190715184242_InitialMigration.cs b/Migrations/20190716174927_InitialMigration.cs similarity index 82% rename from Migrations/20190715184242_InitialMigration.cs rename to Migrations/20190716174927_InitialMigration.cs index 0876f6e..559f337 100644 --- a/Migrations/20190715184242_InitialMigration.cs +++ b/Migrations/20190716174927_InitialMigration.cs @@ -1,6 +1,5 @@ -using System.Collections.Generic; +using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; -using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; namespace awsomAPI.Migrations { @@ -13,7 +12,7 @@ protected override void Up(MigrationBuilder migrationBuilder) columns: table => new { Id = table.Column(nullable: false) - .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn), + .Annotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn), ParentName = table.Column(nullable: false), StudentName = table.Column(nullable: false), StudentBirthDate = table.Column(nullable: true), @@ -23,12 +22,10 @@ protected override void Up(MigrationBuilder migrationBuilder) City = table.Column(nullable: false), ZipCode = table.Column(nullable: false), Region = table.Column(nullable: false), - Instrument = table.Column>(nullable: false), HasInstrument = table.Column(nullable: false), Availability = table.Column(nullable: true), Experience = table.Column(nullable: true), - Notes = table.Column(nullable: true), - TeachersSelected = table.Column>(nullable: true) + Notes = table.Column(nullable: true) }, constraints: table => { @@ -40,13 +37,12 @@ protected override void Up(MigrationBuilder migrationBuilder) columns: table => new { Id = table.Column(nullable: false) - .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn), + .Annotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn), Name = table.Column(nullable: false), Email = table.Column(nullable: false), Role = table.Column(nullable: false), Password = table.Column(nullable: true), Region = table.Column(nullable: false), - InstrumentsTaught = table.Column>(nullable: true), Address = table.Column(nullable: true), City = table.Column(nullable: true), Zip = table.Column(nullable: false) diff --git a/Migrations/AwsomApiContextModelSnapshot.cs b/Migrations/AwsomApiContextModelSnapshot.cs index 669a0e9..9915207 100644 --- a/Migrations/AwsomApiContextModelSnapshot.cs +++ b/Migrations/AwsomApiContextModelSnapshot.cs @@ -1,9 +1,8 @@ // -using System.Collections.Generic; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; -using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; using awsomAPI.Models; namespace awsomAPI.Migrations @@ -15,14 +14,15 @@ protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder - .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn) .HasAnnotation("ProductVersion", "2.2.4-servicing-10062") - .HasAnnotation("Relational:MaxIdentifierLength", 63); + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); modelBuilder.Entity("awsomAPI.Models.TrialRequest", b => { b.Property("Id") - .ValueGeneratedOnAdd(); + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); b.Property("Address") .IsRequired(); @@ -39,9 +39,6 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Property("HasInstrument"); - b.Property>("Instrument") - .IsRequired(); - b.Property("Notes"); b.Property("ParentName") @@ -57,8 +54,6 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Property("StudentName") .IsRequired(); - b.Property>("TeachersSelected"); - b.Property("ZipCode"); b.HasKey("Id"); @@ -69,7 +64,8 @@ protected override void BuildModel(ModelBuilder modelBuilder) modelBuilder.Entity("awsomAPI.Models.User", b => { b.Property("Id") - .ValueGeneratedOnAdd(); + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); b.Property("Address"); @@ -78,8 +74,6 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Property("Email") .IsRequired(); - b.Property>("InstrumentsTaught"); - b.Property("Name") .IsRequired(); diff --git a/Models/AwsomApiContext.cs b/Models/AwsomApiContext.cs index cfff067..1b15cb2 100644 --- a/Models/AwsomApiContext.cs +++ b/Models/AwsomApiContext.cs @@ -6,7 +6,7 @@ namespace awsomAPI.Models { public class AwsomApiContext : DbContext { public AwsomApiContext(DbContextOptions options) : base(options) {} public DbSet Users { get; set; } - public DbSet TrialRequsets { get; set; } + public DbSet TrialRequests { get; set; } } } \ No newline at end of file diff --git a/Models/TrialRequestModel.cs b/Models/TrialRequestModel.cs index 731674f..5af416e 100644 --- a/Models/TrialRequestModel.cs +++ b/Models/TrialRequestModel.cs @@ -35,9 +35,6 @@ public class TrialRequest { [Required] public string Region {get; set;} - [Required] - public List Instrument {get; set;} - [Required] public bool HasInstrument {get; set;} @@ -47,6 +44,5 @@ public class TrialRequest { public string Notes {get; set;} - public List TeachersSelected {get; set;} } } \ No newline at end of file diff --git a/Models/UsersModel.cs b/Models/UsersModel.cs index 03fef57..11bdfd9 100644 --- a/Models/UsersModel.cs +++ b/Models/UsersModel.cs @@ -25,8 +25,6 @@ public class User { public string Region { get; set; } - public List InstrumentsTaught { get; set; } - public string Address { get; set; } public string City { get; set; } diff --git a/Startup.cs b/Startup.cs index 22d6ddb..40dc3c6 100644 --- a/Startup.cs +++ b/Startup.cs @@ -12,7 +12,7 @@ using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; -using Npgsql.EntityFrameworkCore.PostgreSQL; +// using Npgsql.EntityFrameworkCore.PostgreSQL; using awsomAPI.Models; namespace awsomAPI @@ -30,9 +30,9 @@ public Startup(IConfiguration configuration) // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { - _connectionString = Configuration["Database:ConnectionString"]; + _connectionString = Configuration["ProductionConnection"]; services.AddDbContext( opt => - opt.UseNpgsql(_connectionString)); + opt.UseSqlServer(_connectionString)); services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); } From 83d884e8adf12f84d6450392c605ecf041466a20 Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Tue, 16 Jul 2019 13:13:22 -0700 Subject: [PATCH 08/34] test route --- Controllers/UsersController.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Controllers/UsersController.cs b/Controllers/UsersController.cs index 40eb367..5c1b22c 100644 --- a/Controllers/UsersController.cs +++ b/Controllers/UsersController.cs @@ -34,5 +34,10 @@ public async Task> GetUser(long id) } return user; } + [HttpGet("test")] + public string TestRoute() + { + return "success"; + } } } From a67fdc66a22bc1adbb38d43acd4f807b6b3a8d8f Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Tue, 16 Jul 2019 13:27:24 -0700 Subject: [PATCH 09/34] connection string adjustment --- Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Startup.cs b/Startup.cs index 40dc3c6..286a274 100644 --- a/Startup.cs +++ b/Startup.cs @@ -32,7 +32,7 @@ public void ConfigureServices(IServiceCollection services) { _connectionString = Configuration["ProductionConnection"]; services.AddDbContext( opt => - opt.UseSqlServer(_connectionString)); + opt.UseSqlServer(Configuration.GetConnectionString("ProductionConnection"))); services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); } From 1087374788c0aa0a2c9f6e8e4b35f2138d4dc0f1 Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Tue, 16 Jul 2019 15:44:43 -0700 Subject: [PATCH 10/34] model changes --- Controllers/UsersController.cs | 1 + ...6223508_StringDataTypesInModel.Designer.cs | 103 ++++++++++++++++++ .../20190716223508_StringDataTypesInModel.cs | 61 +++++++++++ Migrations/AwsomApiContextModelSnapshot.cs | 10 +- Models/TrialRequestModel.cs | 19 +--- Models/UsersModel.cs | 17 +-- 6 files changed, 179 insertions(+), 32 deletions(-) create mode 100644 Migrations/20190716223508_StringDataTypesInModel.Designer.cs create mode 100644 Migrations/20190716223508_StringDataTypesInModel.cs diff --git a/Controllers/UsersController.cs b/Controllers/UsersController.cs index 5c1b22c..2eb1d11 100644 --- a/Controllers/UsersController.cs +++ b/Controllers/UsersController.cs @@ -1,5 +1,6 @@ using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.Configuration; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; diff --git a/Migrations/20190716223508_StringDataTypesInModel.Designer.cs b/Migrations/20190716223508_StringDataTypesInModel.Designer.cs new file mode 100644 index 0000000..ced47b8 --- /dev/null +++ b/Migrations/20190716223508_StringDataTypesInModel.Designer.cs @@ -0,0 +1,103 @@ +// +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using awsomAPI.Models; + +namespace awsomAPI.Migrations +{ + [DbContext(typeof(AwsomApiContext))] + [Migration("20190716223508_StringDataTypesInModel")] + partial class StringDataTypesInModel + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "2.2.4-servicing-10062") + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + modelBuilder.Entity("awsomAPI.Models.TrialRequest", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + b.Property("Address") + .IsRequired(); + + b.Property("Availability"); + + b.Property("City") + .IsRequired(); + + b.Property("Email") + .IsRequired(); + + b.Property("Experience"); + + b.Property("HasInstrument"); + + b.Property("Instrument") + .IsRequired(); + + b.Property("Notes"); + + b.Property("ParentName") + .IsRequired(); + + b.Property("Phone"); + + b.Property("Region") + .IsRequired(); + + b.Property("StudentBirthDate"); + + b.Property("StudentName") + .IsRequired(); + + b.Property("ZipCode") + .IsRequired(); + + b.HasKey("Id"); + + b.ToTable("TrialRequests"); + }); + + modelBuilder.Entity("awsomAPI.Models.User", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + b.Property("Address"); + + b.Property("City"); + + b.Property("Email") + .IsRequired(); + + b.Property("Name") + .IsRequired(); + + b.Property("Password"); + + b.Property("Region") + .IsRequired(); + + b.Property("Role") + .IsRequired(); + + b.Property("Zip"); + + b.HasKey("Id"); + + b.ToTable("Users"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Migrations/20190716223508_StringDataTypesInModel.cs b/Migrations/20190716223508_StringDataTypesInModel.cs new file mode 100644 index 0000000..b6854bc --- /dev/null +++ b/Migrations/20190716223508_StringDataTypesInModel.cs @@ -0,0 +1,61 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +namespace awsomAPI.Migrations +{ + public partial class StringDataTypesInModel : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AlterColumn( + name: "Zip", + table: "Users", + nullable: true, + oldClrType: typeof(int)); + + migrationBuilder.AlterColumn( + name: "ZipCode", + table: "TrialRequests", + nullable: false, + oldClrType: typeof(int)); + + migrationBuilder.AlterColumn( + name: "HasInstrument", + table: "TrialRequests", + nullable: true, + oldClrType: typeof(bool)); + + migrationBuilder.AddColumn( + name: "Instrument", + table: "TrialRequests", + nullable: false, + defaultValue: ""); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "Instrument", + table: "TrialRequests"); + + migrationBuilder.AlterColumn( + name: "Zip", + table: "Users", + nullable: false, + oldClrType: typeof(string), + oldNullable: true); + + migrationBuilder.AlterColumn( + name: "ZipCode", + table: "TrialRequests", + nullable: false, + oldClrType: typeof(string)); + + migrationBuilder.AlterColumn( + name: "HasInstrument", + table: "TrialRequests", + nullable: false, + oldClrType: typeof(string), + oldNullable: true); + } + } +} diff --git a/Migrations/AwsomApiContextModelSnapshot.cs b/Migrations/AwsomApiContextModelSnapshot.cs index 9915207..34e687a 100644 --- a/Migrations/AwsomApiContextModelSnapshot.cs +++ b/Migrations/AwsomApiContextModelSnapshot.cs @@ -37,7 +37,10 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Property("Experience"); - b.Property("HasInstrument"); + b.Property("HasInstrument"); + + b.Property("Instrument") + .IsRequired(); b.Property("Notes"); @@ -54,7 +57,8 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Property("StudentName") .IsRequired(); - b.Property("ZipCode"); + b.Property("ZipCode") + .IsRequired(); b.HasKey("Id"); @@ -85,7 +89,7 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Property("Role") .IsRequired(); - b.Property("Zip"); + b.Property("Zip"); b.HasKey("Id"); diff --git a/Models/TrialRequestModel.cs b/Models/TrialRequestModel.cs index 5af416e..10c868b 100644 --- a/Models/TrialRequestModel.cs +++ b/Models/TrialRequestModel.cs @@ -9,40 +9,27 @@ namespace awsomAPI.Models { public class TrialRequest { [Key, Required] public long Id { get; set; } - [Required] public string ParentName {get; set;} - [Required] public string StudentName {get; set;} - public string StudentBirthDate {get; set;} - [Required] public string Email {get; set;} - public string Phone {get; set;} - [Required] public string Address {get; set;} - [Required] public string City {get; set;} - [Required] - public int ZipCode {get; set;} - + public string ZipCode {get; set;} [Required] public string Region {get; set;} - [Required] - public bool HasInstrument {get; set;} - + public string Instrument {get; set;} + public string HasInstrument {get; set;} public string Availability {get; set;} - public string Experience {get; set;} - public string Notes {get; set;} - } } \ No newline at end of file diff --git a/Models/UsersModel.cs b/Models/UsersModel.cs index 11bdfd9..9d4d80d 100644 --- a/Models/UsersModel.cs +++ b/Models/UsersModel.cs @@ -2,33 +2,24 @@ using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; - namespace awsomAPI.Models { [Table("Users")] public class User { [Key, Required] public long Id { get; set; } - - [Required] + [Required] public string Name { get; set; } - - [Required] + [Required] public string Email { get; set; } - - [Required] + [Required] //Morgana - Change this to enum with teacher (or user) and admin as the options //Default should be user public string Role { get; set; } - public string Password { get; set; } [Required] - public string Region { get; set; } - public string Address { get; set; } - public string City { get; set; } - - public int Zip { get; set; } + public string Zip { get; set; } } } \ No newline at end of file From 17ac6bdbef2033aa9ee9ef812f96b12c6eeba8f0 Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Wed, 17 Jul 2019 08:11:52 -0700 Subject: [PATCH 11/34] controller and startup configured --- Controllers/UsersController.cs | 60 ++++++++++++++++++++++++++++++---- Startup.cs | 36 +++++++++++++++++--- 2 files changed, 85 insertions(+), 11 deletions(-) diff --git a/Controllers/UsersController.cs b/Controllers/UsersController.cs index 2eb1d11..0d8898e 100644 --- a/Controllers/UsersController.cs +++ b/Controllers/UsersController.cs @@ -1,4 +1,5 @@ -using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using System.Collections.Generic; @@ -8,8 +9,9 @@ namespace awsomAPI.Controllers { - [Route("/")] + [Route("/users")] [ApiController] + [Authorize] public class RolesController : ControllerBase { private readonly AwsomApiContext _context; @@ -20,9 +22,12 @@ public RolesController(AwsomApiContext context) } [HttpGet] + [Authorize(Roles = "Admin")] public async Task>> GetUsers() { - return await _context.Users.ToListAsync(); + List users = await _context.Users.ToListAsync(); + users.ForEach( entry => entry.Password = null); + return users; } [HttpGet("{id}")] @@ -33,12 +38,53 @@ public async Task> GetUser(long id) if(user == null) { return NotFound(); } - return user; + if(user != null) { + user.Password = null; + } + + // var currentUserId = int.Parse(User.Identity.Name); + // if (id != currentUserId && !User.IsInRole(Role.Admin)) { + // return Forbid(); + // } + // return user; } - [HttpGet("test")] - public string TestRoute() + [HttpPost("signin")] + [AllowAnonymous] + public Task signin() { - return "success"; + } } } + +/* + public User Authenticate(string username, string password) + { + var user = _users.SingleOrDefault(x => x.Username == username && x.Password == password); + + // return null if user not found + if (user == null) + return null; + + // authentication successful so generate jwt token + var tokenHandler = new JwtSecurityTokenHandler(); + var key = Encoding.ASCII.GetBytes(_appSettings.Secret); + var tokenDescriptor = new SecurityTokenDescriptor + { + Subject = new ClaimsIdentity(new Claim[] + { + new Claim(ClaimTypes.Name, user.Id.ToString()), + new Claim(ClaimTypes.Role, user.Role) + }), + Expires = DateTime.UtcNow.AddDays(7), + SigningCredentials = new SigningCredentials(new SymmetricSecurityKey(key), SecurityAlgorithms.HmacSha256Signature) + }; + var token = tokenHandler.CreateToken(tokenDescriptor); + user.Token = tokenHandler.WriteToken(token); + + // remove password before returning + user.Password = null; + + return user; + } + */ \ No newline at end of file diff --git a/Startup.cs b/Startup.cs index 286a274..4d34bbb 100644 --- a/Startup.cs +++ b/Startup.cs @@ -1,8 +1,10 @@ using System; using System.Collections; using System.Collections.Generic; -using System.Linq; +using System.Text; using System.Threading.Tasks; +using System.Linq; +using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.HttpsPolicy; @@ -12,7 +14,7 @@ using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; -// using Npgsql.EntityFrameworkCore.PostgreSQL; +using Microsoft.IdentityModel.Tokens; using awsomAPI.Models; namespace awsomAPI @@ -20,6 +22,7 @@ namespace awsomAPI public class Startup { private string _connectionString = null; + private string _secret = null; public Startup(IConfiguration configuration) { Configuration = configuration; @@ -30,10 +33,33 @@ public Startup(IConfiguration configuration) // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { - _connectionString = Configuration["ProductionConnection"]; + _connectionString = Configuration["ProductionConnection"]; + _secret = Configuration["Secret"]; + byte[] _key = Encoding.ASCII.GetBytes(_secret); + + services.AddCors(); + services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); + services.AddDbContext( opt => opt.UseSqlServer(Configuration.GetConnectionString("ProductionConnection"))); - services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); + + services.AddAuthentication( auth => + { + auth.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme; + auth.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme; + }) + .AddJwtBearer( jwt => + { + jwt.RequireHttpsMetadata = false; + jwt.SaveToken = true; + jwt.TokenValidationParameters = new TokenValidationParameters + { + ValidateIssuerSigningKey = true, + IssuerSigningKey = new SymmetricSecurityKey(_key), + ValidateIssuer = false, + ValidateAudience = false + }; + }); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. @@ -50,7 +76,9 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env) } app.UseHttpsRedirection(); + app.UseAuthentication(); app.UseMvc(); + app.UseCors( settings => settings.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader()); } } } From 6e7b22fbd9b3122faf41fcd12725c64f1a5c4a17 Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Wed, 17 Jul 2019 08:35:14 -0700 Subject: [PATCH 12/34] signin functionality and roles model --- Controllers/UsersController.cs | 57 ++++++++++++++++++---------------- Models/RolesModel.cs | 13 ++++++++ Models/UsersModel.cs | 9 +++--- 3 files changed, 48 insertions(+), 31 deletions(-) create mode 100644 Models/RolesModel.cs diff --git a/Controllers/UsersController.cs b/Controllers/UsersController.cs index 0d8898e..dce356d 100644 --- a/Controllers/UsersController.cs +++ b/Controllers/UsersController.cs @@ -2,27 +2,39 @@ using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.Options; +using Microsoft.IdentityModel.Tokens; +using System; using System.Collections.Generic; +using System.IdentityModel.Tokens.Jwt; using System.Linq; +using System.Security.Claims; +using System.Text; using System.Threading.Tasks; using awsomAPI.Models; namespace awsomAPI.Controllers { - [Route("/users")] - [ApiController] [Authorize] + [ApiController] + [Route("/users")] public class RolesController : ControllerBase { private readonly AwsomApiContext _context; + public IConfiguration Configuration { get; set; } public RolesController(AwsomApiContext context) { _context = context; } + + public RolesController(IConfiguration configuration) + { + Configuration = configuration; + } [HttpGet] - [Authorize(Roles = "Admin")] + [Authorize(Roles = Role.Admin)] public async Task>> GetUsers() { List users = await _context.Users.ToListAsync(); @@ -42,33 +54,25 @@ public async Task> GetUser(long id) user.Password = null; } - // var currentUserId = int.Parse(User.Identity.Name); - // if (id != currentUserId && !User.IsInRole(Role.Admin)) { - // return Forbid(); - // } - // return user; + var currentUserId = int.Parse(User.Identity.Name); + if (id != currentUserId && !User.IsInRole(Role.Admin)) { + return Forbid(); + } + return user; } [HttpPost("signin")] [AllowAnonymous] - public Task signin() + public async Task> signin([FromBody]User userFromFrontend) { + string email = userFromFrontend.Email; + string password = userFromFrontend.Password; + var user = _context.Users.SingleOrDefault(x => x.Email == email && x.Password == password); - } - } -} - -/* - public User Authenticate(string username, string password) - { - var user = _users.SingleOrDefault(x => x.Username == username && x.Password == password); - - // return null if user not found - if (user == null) - return null; - - // authentication successful so generate jwt token - var tokenHandler = new JwtSecurityTokenHandler(); - var key = Encoding.ASCII.GetBytes(_appSettings.Secret); + if(user == null) { + return NotFound(); + } + JwtSecurityTokenHandler tokenHandler = new JwtSecurityTokenHandler(); + var key = Encoding.ASCII.GetBytes(Configuration["Secret"]); var tokenDescriptor = new SecurityTokenDescriptor { Subject = new ClaimsIdentity(new Claim[] @@ -87,4 +91,5 @@ public User Authenticate(string username, string password) return user; } - */ \ No newline at end of file + } +} diff --git a/Models/RolesModel.cs b/Models/RolesModel.cs new file mode 100644 index 0000000..8217571 --- /dev/null +++ b/Models/RolesModel.cs @@ -0,0 +1,13 @@ +using System.Collections; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace awsomAPI.Models +{ + public static class Role + { + public const string Admin = "admin"; + public const string User = "user"; + } +} \ No newline at end of file diff --git a/Models/UsersModel.cs b/Models/UsersModel.cs index 9d4d80d..285de58 100644 --- a/Models/UsersModel.cs +++ b/Models/UsersModel.cs @@ -7,13 +7,11 @@ namespace awsomAPI.Models { public class User { [Key, Required] public long Id { get; set; } - [Required] + [Required] public string Name { get; set; } - [Required] + [Required] public string Email { get; set; } - [Required] - //Morgana - Change this to enum with teacher (or user) and admin as the options - //Default should be user + [Required] public string Role { get; set; } public string Password { get; set; } [Required] @@ -21,5 +19,6 @@ public class User { public string Address { get; set; } public string City { get; set; } public string Zip { get; set; } + public string Token { get; set; } } } \ No newline at end of file From 6dd0121f15510a44208b0f0f56a0a5ba075dcf2d Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Wed, 17 Jul 2019 09:54:57 -0700 Subject: [PATCH 13/34] small route tweak --- Controllers/UsersController.cs | 147 ++++++++++-------- ...0190716174927_InitialMigration.Designer.cs | 99 ------------ .../20190716223508_StringDataTypesInModel.cs | 61 -------- ...190717154615_InitialMigration.Designer.cs} | 6 +- ....cs => 20190717154615_InitialMigration.cs} | 8 +- Migrations/AwsomApiContextModelSnapshot.cs | 2 + Startup.cs | 7 +- 7 files changed, 95 insertions(+), 235 deletions(-) delete mode 100644 Migrations/20190716174927_InitialMigration.Designer.cs delete mode 100644 Migrations/20190716223508_StringDataTypesInModel.cs rename Migrations/{20190716223508_StringDataTypesInModel.Designer.cs => 20190717154615_InitialMigration.Designer.cs} (95%) rename Migrations/{20190716174927_InitialMigration.cs => 20190717154615_InitialMigration.cs} (88%) diff --git a/Controllers/UsersController.cs b/Controllers/UsersController.cs index dce356d..00f5c87 100644 --- a/Controllers/UsersController.cs +++ b/Controllers/UsersController.cs @@ -13,83 +13,96 @@ using System.Threading.Tasks; using awsomAPI.Models; +//Morgana - JWT Auth Functionality found here https://jasonwatmore.com/post/2019/01/08/aspnet-core-22-role-based-authorization-tutorial-with-example-api#app-settings-json + namespace awsomAPI.Controllers { - [Authorize] - [ApiController] - [Route("/users")] - public class RolesController : ControllerBase + [Authorize] + [ApiController] + [Route("/users")] + public class RolesController : ControllerBase + { + private readonly AwsomApiContext _context; + public IConfiguration Configuration { get; set; } + + public RolesController(AwsomApiContext context, IConfiguration configuration) { - private readonly AwsomApiContext _context; - public IConfiguration Configuration { get; set; } + _context = context; + Configuration = configuration; + } - public RolesController(AwsomApiContext context) - { - _context = context; - } + [HttpGet] + [Authorize(Roles = Role.Admin)] + public async Task>> GetUsers() + { + List users = await _context.Users.ToListAsync(); + users.ForEach(entry => entry.Password = null); + return users; + } - public RolesController(IConfiguration configuration) - { - Configuration = configuration; - } - - [HttpGet] - [Authorize(Roles = Role.Admin)] - public async Task>> GetUsers() - { - List users = await _context.Users.ToListAsync(); - users.ForEach( entry => entry.Password = null); - return users; - } + [HttpGet("{id}")] + public async Task> GetUser(long id) + { + var user = await _context.Users.FindAsync(id); - [HttpGet("{id}")] - public async Task> GetUser(long id) - { - var user = await _context.Users.FindAsync(id); + if (user == null) + { + return NotFound(); + } + if (user != null) + { + user.Password = null; + } - if(user == null) { - return NotFound(); - } - if(user != null) { - user.Password = null; - } + var currentUserId = int.Parse(User.Identity.Name); + if (id != currentUserId && !User.IsInRole(Role.Admin)) + { + return Forbid(); + } + return user; + } + [HttpPost("signin")] + [AllowAnonymous] + public async Task> signin([FromBody]User userFromFrontend) + { + string email = userFromFrontend.Email; + string password = userFromFrontend.Password; + var user = _context.Users.FirstOrDefault(x => x.Email == email && x.Password == password); - var currentUserId = int.Parse(User.Identity.Name); - if (id != currentUserId && !User.IsInRole(Role.Admin)) { - return Forbid(); - } - return user; - } - [HttpPost("signin")] - [AllowAnonymous] - public async Task> signin([FromBody]User userFromFrontend) - { - string email = userFromFrontend.Email; - string password = userFromFrontend.Password; - var user = _context.Users.SingleOrDefault(x => x.Email == email && x.Password == password); + if (user == null) + { + return NotFound(); + } + JwtSecurityTokenHandler tokenHandler = new JwtSecurityTokenHandler(); + var key = Encoding.ASCII.GetBytes(Configuration["Secret"]); + var tokenDescriptor = new SecurityTokenDescriptor + { + Subject = new ClaimsIdentity(new Claim[] + { + new Claim(ClaimTypes.Name, user.Id.ToString()), + new Claim(ClaimTypes.Role, user.Role) + }), + Expires = DateTime.UtcNow.AddDays(7), + SigningCredentials = new SigningCredentials(new SymmetricSecurityKey(key), SecurityAlgorithms.HmacSha256Signature) + }; + var token = tokenHandler.CreateToken(tokenDescriptor); + user.Token = tokenHandler.WriteToken(token); - if(user == null) { - return NotFound(); - } - JwtSecurityTokenHandler tokenHandler = new JwtSecurityTokenHandler(); - var key = Encoding.ASCII.GetBytes(Configuration["Secret"]); - var tokenDescriptor = new SecurityTokenDescriptor - { - Subject = new ClaimsIdentity(new Claim[] - { - new Claim(ClaimTypes.Name, user.Id.ToString()), - new Claim(ClaimTypes.Role, user.Role) - }), - Expires = DateTime.UtcNow.AddDays(7), - SigningCredentials = new SigningCredentials(new SymmetricSecurityKey(key), SecurityAlgorithms.HmacSha256Signature) - }; - var token = tokenHandler.CreateToken(tokenDescriptor); - user.Token = tokenHandler.WriteToken(token); + // remove password before returning + user.Password = null; - // remove password before returning - user.Password = null; + return user; + } + [HttpPost("signup")] + [AllowAnonymous] + public async Task> addUser(User user) + { + { + _context.Users.Add(user); + await _context.SaveChangesAsync(); - return user; - } + return CreatedAtAction(nameof(GetUser), new { id = user.Id }, user); + } } + } } diff --git a/Migrations/20190716174927_InitialMigration.Designer.cs b/Migrations/20190716174927_InitialMigration.Designer.cs deleted file mode 100644 index b3bfe87..0000000 --- a/Migrations/20190716174927_InitialMigration.Designer.cs +++ /dev/null @@ -1,99 +0,0 @@ -// -using Microsoft.EntityFrameworkCore; -using Microsoft.EntityFrameworkCore.Infrastructure; -using Microsoft.EntityFrameworkCore.Metadata; -using Microsoft.EntityFrameworkCore.Migrations; -using Microsoft.EntityFrameworkCore.Storage.ValueConversion; -using awsomAPI.Models; - -namespace awsomAPI.Migrations -{ - [DbContext(typeof(AwsomApiContext))] - [Migration("20190716174927_InitialMigration")] - partial class InitialMigration - { - protected override void BuildTargetModel(ModelBuilder modelBuilder) - { -#pragma warning disable 612, 618 - modelBuilder - .HasAnnotation("ProductVersion", "2.2.4-servicing-10062") - .HasAnnotation("Relational:MaxIdentifierLength", 128) - .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); - - modelBuilder.Entity("awsomAPI.Models.TrialRequest", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); - - b.Property("Address") - .IsRequired(); - - b.Property("Availability"); - - b.Property("City") - .IsRequired(); - - b.Property("Email") - .IsRequired(); - - b.Property("Experience"); - - b.Property("HasInstrument"); - - b.Property("Notes"); - - b.Property("ParentName") - .IsRequired(); - - b.Property("Phone"); - - b.Property("Region") - .IsRequired(); - - b.Property("StudentBirthDate"); - - b.Property("StudentName") - .IsRequired(); - - b.Property("ZipCode"); - - b.HasKey("Id"); - - b.ToTable("TrialRequests"); - }); - - modelBuilder.Entity("awsomAPI.Models.User", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); - - b.Property("Address"); - - b.Property("City"); - - b.Property("Email") - .IsRequired(); - - b.Property("Name") - .IsRequired(); - - b.Property("Password"); - - b.Property("Region") - .IsRequired(); - - b.Property("Role") - .IsRequired(); - - b.Property("Zip"); - - b.HasKey("Id"); - - b.ToTable("Users"); - }); -#pragma warning restore 612, 618 - } - } -} diff --git a/Migrations/20190716223508_StringDataTypesInModel.cs b/Migrations/20190716223508_StringDataTypesInModel.cs deleted file mode 100644 index b6854bc..0000000 --- a/Migrations/20190716223508_StringDataTypesInModel.cs +++ /dev/null @@ -1,61 +0,0 @@ -using Microsoft.EntityFrameworkCore.Migrations; - -namespace awsomAPI.Migrations -{ - public partial class StringDataTypesInModel : Migration - { - protected override void Up(MigrationBuilder migrationBuilder) - { - migrationBuilder.AlterColumn( - name: "Zip", - table: "Users", - nullable: true, - oldClrType: typeof(int)); - - migrationBuilder.AlterColumn( - name: "ZipCode", - table: "TrialRequests", - nullable: false, - oldClrType: typeof(int)); - - migrationBuilder.AlterColumn( - name: "HasInstrument", - table: "TrialRequests", - nullable: true, - oldClrType: typeof(bool)); - - migrationBuilder.AddColumn( - name: "Instrument", - table: "TrialRequests", - nullable: false, - defaultValue: ""); - } - - protected override void Down(MigrationBuilder migrationBuilder) - { - migrationBuilder.DropColumn( - name: "Instrument", - table: "TrialRequests"); - - migrationBuilder.AlterColumn( - name: "Zip", - table: "Users", - nullable: false, - oldClrType: typeof(string), - oldNullable: true); - - migrationBuilder.AlterColumn( - name: "ZipCode", - table: "TrialRequests", - nullable: false, - oldClrType: typeof(string)); - - migrationBuilder.AlterColumn( - name: "HasInstrument", - table: "TrialRequests", - nullable: false, - oldClrType: typeof(string), - oldNullable: true); - } - } -} diff --git a/Migrations/20190716223508_StringDataTypesInModel.Designer.cs b/Migrations/20190717154615_InitialMigration.Designer.cs similarity index 95% rename from Migrations/20190716223508_StringDataTypesInModel.Designer.cs rename to Migrations/20190717154615_InitialMigration.Designer.cs index ced47b8..73542ab 100644 --- a/Migrations/20190716223508_StringDataTypesInModel.Designer.cs +++ b/Migrations/20190717154615_InitialMigration.Designer.cs @@ -9,8 +9,8 @@ namespace awsomAPI.Migrations { [DbContext(typeof(AwsomApiContext))] - [Migration("20190716223508_StringDataTypesInModel")] - partial class StringDataTypesInModel + [Migration("20190717154615_InitialMigration")] + partial class InitialMigration { protected override void BuildTargetModel(ModelBuilder modelBuilder) { @@ -91,6 +91,8 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) b.Property("Role") .IsRequired(); + b.Property("Token"); + b.Property("Zip"); b.HasKey("Id"); diff --git a/Migrations/20190716174927_InitialMigration.cs b/Migrations/20190717154615_InitialMigration.cs similarity index 88% rename from Migrations/20190716174927_InitialMigration.cs rename to Migrations/20190717154615_InitialMigration.cs index 559f337..ca443e9 100644 --- a/Migrations/20190716174927_InitialMigration.cs +++ b/Migrations/20190717154615_InitialMigration.cs @@ -20,9 +20,10 @@ protected override void Up(MigrationBuilder migrationBuilder) Phone = table.Column(nullable: true), Address = table.Column(nullable: false), City = table.Column(nullable: false), - ZipCode = table.Column(nullable: false), + ZipCode = table.Column(nullable: false), Region = table.Column(nullable: false), - HasInstrument = table.Column(nullable: false), + Instrument = table.Column(nullable: false), + HasInstrument = table.Column(nullable: true), Availability = table.Column(nullable: true), Experience = table.Column(nullable: true), Notes = table.Column(nullable: true) @@ -45,7 +46,8 @@ protected override void Up(MigrationBuilder migrationBuilder) Region = table.Column(nullable: false), Address = table.Column(nullable: true), City = table.Column(nullable: true), - Zip = table.Column(nullable: false) + Zip = table.Column(nullable: true), + Token = table.Column(nullable: true) }, constraints: table => { diff --git a/Migrations/AwsomApiContextModelSnapshot.cs b/Migrations/AwsomApiContextModelSnapshot.cs index 34e687a..807c95e 100644 --- a/Migrations/AwsomApiContextModelSnapshot.cs +++ b/Migrations/AwsomApiContextModelSnapshot.cs @@ -89,6 +89,8 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Property("Role") .IsRequired(); + b.Property("Token"); + b.Property("Zip"); b.HasKey("Id"); diff --git a/Startup.cs b/Startup.cs index 4d34bbb..03ecb82 100644 --- a/Startup.cs +++ b/Startup.cs @@ -17,6 +17,8 @@ using Microsoft.IdentityModel.Tokens; using awsomAPI.Models; +//Morgana - JWT Auth Functionality found here https://jasonwatmore.com/post/2019/01/08/aspnet-core-22-role-based-authorization-tutorial-with-example-api#app-settings-json + namespace awsomAPI { public class Startup @@ -33,7 +35,6 @@ public Startup(IConfiguration configuration) // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { - _connectionString = Configuration["ProductionConnection"]; _secret = Configuration["Secret"]; byte[] _key = Encoding.ASCII.GetBytes(_secret); @@ -41,7 +42,7 @@ public void ConfigureServices(IServiceCollection services) services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); services.AddDbContext( opt => - opt.UseSqlServer(Configuration.GetConnectionString("ProductionConnection"))); + opt.UseSqlServer(Configuration.GetConnectionString("DefaultString"))); services.AddAuthentication( auth => { @@ -50,7 +51,7 @@ public void ConfigureServices(IServiceCollection services) }) .AddJwtBearer( jwt => { - jwt.RequireHttpsMetadata = false; + jwt.RequireHttpsMetadata = true; jwt.SaveToken = true; jwt.TokenValidationParameters = new TokenValidationParameters { From 71d3ddff06f6fc52b6b1b7db68f29dafcaf173aa Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Wed, 17 Jul 2019 10:59:14 -0700 Subject: [PATCH 14/34] change to scurity on signup route --- Controllers/UsersController.cs | 3 +++ Models/UsersModel.cs | 1 + 2 files changed, 4 insertions(+) diff --git a/Controllers/UsersController.cs b/Controllers/UsersController.cs index 00f5c87..ae3b890 100644 --- a/Controllers/UsersController.cs +++ b/Controllers/UsersController.cs @@ -98,6 +98,9 @@ public async Task> signin([FromBody]User userFromFrontend) public async Task> addUser(User user) { { + if(user.Code == null || user.Code.Equals(Configuration["Code"])) { + return Forbid(); + } _context.Users.Add(user); await _context.SaveChangesAsync(); diff --git a/Models/UsersModel.cs b/Models/UsersModel.cs index 285de58..69de625 100644 --- a/Models/UsersModel.cs +++ b/Models/UsersModel.cs @@ -20,5 +20,6 @@ public class User { public string City { get; set; } public string Zip { get; set; } public string Token { get; set; } + public string Code { get; set; } } } \ No newline at end of file From f29346531825e0796def4e2314d6d3e83b27d3b2 Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Wed, 17 Jul 2019 11:28:51 -0700 Subject: [PATCH 15/34] awsom email regex for signup --- Controllers/TrialRequestController.cs | 53 ++++++++++++++------------- Controllers/UsersController.cs | 20 +++++----- Models/UsersModel.cs | 1 - Startup.cs | 1 - 4 files changed, 38 insertions(+), 37 deletions(-) diff --git a/Controllers/TrialRequestController.cs b/Controllers/TrialRequestController.cs index b3b5b44..ab7ee6a 100644 --- a/Controllers/TrialRequestController.cs +++ b/Controllers/TrialRequestController.cs @@ -12,35 +12,36 @@ namespace awsomAPI.Controllers public class TrialRequestController : ControllerBase { - private readonly AwsomApiContext _context; - public TrialRequestController(AwsomApiContext context) - { - _context = context; - } + private readonly AwsomApiContext _context; + public TrialRequestController(AwsomApiContext context) + { + _context = context; + } - [HttpGet] - public async Task>> GetTrialRequests() - { - return await _context.TrialRequests.ToListAsync(); - } + [HttpGet] + public async Task>> GetTrialRequests() + { + return await _context.TrialRequests.ToListAsync(); + } - [HttpGet("{id}")] - public async Task> TrialRequestDetailView(long id) - { - var trialRequest = await _context.TrialRequests.FindAsync(id); + [HttpGet("{id}")] + public async Task> TrialRequestDetailView(long id) + { + var trialRequest = await _context.TrialRequests.FindAsync(id); - if(trialRequest == null) { - return NotFound(); - } - return trialRequest; - } + if (trialRequest == null) + { + return NotFound(); + } + return trialRequest; + } - [HttpPost] - public async Task> AddNewTrialRequest(TrialRequest trialRequest) - { - _context.TrialRequests.Add(trialRequest); - await _context.SaveChangesAsync(); - return CreatedAtAction(nameof(TrialRequestDetailView), new { id = trialRequest.Id }, trialRequest); - } + [HttpPost] + public async Task> AddNewTrialRequest(TrialRequest trialRequest) + { + _context.TrialRequests.Add(trialRequest); + await _context.SaveChangesAsync(); + return CreatedAtAction(nameof(TrialRequestDetailView), new { id = trialRequest.Id }, trialRequest); + } } } \ No newline at end of file diff --git a/Controllers/UsersController.cs b/Controllers/UsersController.cs index ae3b890..1f39922 100644 --- a/Controllers/UsersController.cs +++ b/Controllers/UsersController.cs @@ -10,6 +10,7 @@ using System.Linq; using System.Security.Claims; using System.Text; +using System.Text.RegularExpressions; using System.Threading.Tasks; using awsomAPI.Models; @@ -20,12 +21,12 @@ namespace awsomAPI.Controllers [Authorize] [ApiController] [Route("/users")] - public class RolesController : ControllerBase + public class UsersController : ControllerBase { private readonly AwsomApiContext _context; public IConfiguration Configuration { get; set; } - public RolesController(AwsomApiContext context, IConfiguration configuration) + public UsersController(AwsomApiContext context, IConfiguration configuration) { _context = context; Configuration = configuration; @@ -97,15 +98,16 @@ public async Task> signin([FromBody]User userFromFrontend) [AllowAnonymous] public async Task> addUser(User user) { - { - if(user.Code == null || user.Code.Equals(Configuration["Code"])) { - return Forbid(); - } - _context.Users.Add(user); - await _context.SaveChangesAsync(); + Regex awsomEmail = new Regex(@"@awsom\.info$"); - return CreatedAtAction(nameof(GetUser), new { id = user.Id }, user); + if(!awsomEmail.IsMatch(user.Email.ToLower())){ + return Forbid(); } + + _context.Users.Add(user); + await _context.SaveChangesAsync(); + + return CreatedAtAction(nameof(GetUser), new { id = user.Id }, user); } } } diff --git a/Models/UsersModel.cs b/Models/UsersModel.cs index 69de625..285de58 100644 --- a/Models/UsersModel.cs +++ b/Models/UsersModel.cs @@ -20,6 +20,5 @@ public class User { public string City { get; set; } public string Zip { get; set; } public string Token { get; set; } - public string Code { get; set; } } } \ No newline at end of file diff --git a/Startup.cs b/Startup.cs index 03ecb82..065a0b1 100644 --- a/Startup.cs +++ b/Startup.cs @@ -23,7 +23,6 @@ namespace awsomAPI { public class Startup { - private string _connectionString = null; private string _secret = null; public Startup(IConfiguration configuration) { From 1331b18e42165766dc115dbef817891527a1a04e Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Wed, 17 Jul 2019 11:38:49 -0700 Subject: [PATCH 16/34] update to trial request controller --- Controllers/TrialRequestController.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Controllers/TrialRequestController.cs b/Controllers/TrialRequestController.cs index ab7ee6a..936c0a3 100644 --- a/Controllers/TrialRequestController.cs +++ b/Controllers/TrialRequestController.cs @@ -1,4 +1,5 @@ using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Authorization; using Microsoft.EntityFrameworkCore; using System.Collections.Generic; using System.Linq; @@ -7,6 +8,7 @@ namespace awsomAPI.Controllers { + [Authorize] [Route("/trialRequests")] [ApiController] @@ -18,12 +20,21 @@ public TrialRequestController(AwsomApiContext context) _context = context; } + [Authorize(Roles = Role.Admin)] [HttpGet] public async Task>> GetTrialRequests() { return await _context.TrialRequests.ToListAsync(); } + [Authorize(Roles = Role.Admin +","+ Role.User)] + [HttpGet("{region}")] + public async Task>> GetByRegion(string region) + { + return await _context.TrialRequests.Where(req => req.Region == region).ToListAsync(); + } + + [Authorize(Roles = Role.Admin +","+ Role.User)] [HttpGet("{id}")] public async Task> TrialRequestDetailView(long id) { From b32e4933531725349a18af177ba23933d2951e6f Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Wed, 17 Jul 2019 11:43:15 -0700 Subject: [PATCH 17/34] switched back to production string --- Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Startup.cs b/Startup.cs index 065a0b1..64d79bd 100644 --- a/Startup.cs +++ b/Startup.cs @@ -41,7 +41,7 @@ public void ConfigureServices(IServiceCollection services) services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); services.AddDbContext( opt => - opt.UseSqlServer(Configuration.GetConnectionString("DefaultString"))); + opt.UseSqlServer(Configuration.GetConnectionString("ProductionConnection"))); services.AddAuthentication( auth => { From 5300d9d9f25fe9bedc109851a25d2e4d9badb464 Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Wed, 17 Jul 2019 13:01:48 -0700 Subject: [PATCH 18/34] fixed var issues --- Controllers/UsersController.cs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Controllers/UsersController.cs b/Controllers/UsersController.cs index 1f39922..0e9bb5b 100644 --- a/Controllers/UsersController.cs +++ b/Controllers/UsersController.cs @@ -55,7 +55,7 @@ public async Task> GetUser(long id) user.Password = null; } - var currentUserId = int.Parse(User.Identity.Name); + int currentUserId = int.Parse(User.Identity.Name); if (id != currentUserId && !User.IsInRole(Role.Admin)) { return Forbid(); @@ -68,15 +68,15 @@ public async Task> signin([FromBody]User userFromFrontend) { string email = userFromFrontend.Email; string password = userFromFrontend.Password; - var user = _context.Users.FirstOrDefault(x => x.Email == email && x.Password == password); + User user = _context.Users.FirstOrDefault(x => x.Email == email && x.Password == password); if (user == null) { return NotFound(); } JwtSecurityTokenHandler tokenHandler = new JwtSecurityTokenHandler(); - var key = Encoding.ASCII.GetBytes(Configuration["Secret"]); - var tokenDescriptor = new SecurityTokenDescriptor + byte[] key = Encoding.ASCII.GetBytes(Configuration["Secret"]); + SecurityTokenDescriptor tokenDescriptor = new SecurityTokenDescriptor { Subject = new ClaimsIdentity(new Claim[] { @@ -86,10 +86,9 @@ public async Task> signin([FromBody]User userFromFrontend) Expires = DateTime.UtcNow.AddDays(7), SigningCredentials = new SigningCredentials(new SymmetricSecurityKey(key), SecurityAlgorithms.HmacSha256Signature) }; - var token = tokenHandler.CreateToken(tokenDescriptor); + SecurityToken token = tokenHandler.CreateToken(tokenDescriptor); user.Token = tokenHandler.WriteToken(token); - // remove password before returning user.Password = null; return user; From 67593607b82364e447b4101408918a6542d5d34b Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Wed, 17 Jul 2019 15:07:16 -0700 Subject: [PATCH 19/34] add select route --- Controllers/TrialRequestController.cs | 17 +++ Controllers/UsersController.cs | 4 +- ...6_StudentTeacherRelationsModel.Designer.cs | 120 ++++++++++++++++++ ...0717205236_StudentTeacherRelationsModel.cs | 31 +++++ Migrations/AwsomApiContextModelSnapshot.cs | 15 +++ Models/AwsomApiContext.cs | 1 + Models/SelectedStudents.cs | 15 +++ Startup.cs | 2 +- 8 files changed, 202 insertions(+), 3 deletions(-) create mode 100644 Migrations/20190717205236_StudentTeacherRelationsModel.Designer.cs create mode 100644 Migrations/20190717205236_StudentTeacherRelationsModel.cs create mode 100644 Models/SelectedStudents.cs diff --git a/Controllers/TrialRequestController.cs b/Controllers/TrialRequestController.cs index 936c0a3..36d1d84 100644 --- a/Controllers/TrialRequestController.cs +++ b/Controllers/TrialRequestController.cs @@ -47,7 +47,24 @@ public async Task> TrialRequestDetailView(long id) return trialRequest; } + [Authorize(Roles = Role.Admin +","+ Role.User)] + [HttpPost("select")] + public async Task SelectStudent(StudentTeacherSelectedRelation selection) + { + _context.TeacherSelections.Add(selection); + await _context.SaveChangesAsync(); + return StatusCode(201); + } + + // [Authorize(Roles = Role.Admin)] + // [HttpGet("selected")] + // public async Task>> GetSelected(string requestId) + // { + // return await _context.TeacherSelections.Where( entry => entry.TrialRequestId == requestId ).ToListAsync(); + // } + [HttpPost] + [AllowAnonymous] public async Task> AddNewTrialRequest(TrialRequest trialRequest) { _context.TrialRequests.Add(trialRequest); diff --git a/Controllers/UsersController.cs b/Controllers/UsersController.cs index 0e9bb5b..f69e9c4 100644 --- a/Controllers/UsersController.cs +++ b/Controllers/UsersController.cs @@ -64,7 +64,7 @@ public async Task> GetUser(long id) } [HttpPost("signin")] [AllowAnonymous] - public async Task> signin([FromBody]User userFromFrontend) + public async Task> Signin([FromBody]User userFromFrontend) { string email = userFromFrontend.Email; string password = userFromFrontend.Password; @@ -95,7 +95,7 @@ public async Task> signin([FromBody]User userFromFrontend) } [HttpPost("signup")] [AllowAnonymous] - public async Task> addUser(User user) + public async Task> AddUser(User user) { Regex awsomEmail = new Regex(@"@awsom\.info$"); diff --git a/Migrations/20190717205236_StudentTeacherRelationsModel.Designer.cs b/Migrations/20190717205236_StudentTeacherRelationsModel.Designer.cs new file mode 100644 index 0000000..3a1a77c --- /dev/null +++ b/Migrations/20190717205236_StudentTeacherRelationsModel.Designer.cs @@ -0,0 +1,120 @@ +// +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using awsomAPI.Models; + +namespace awsomAPI.Migrations +{ + [DbContext(typeof(AwsomApiContext))] + [Migration("20190717205236_StudentTeacherRelationsModel")] + partial class StudentTeacherRelationsModel + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "2.2.4-servicing-10062") + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + modelBuilder.Entity("awsomAPI.Models.StudentTeacherSelectedRelation", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + b.Property("TeacherId"); + + b.Property("TrialRequestId"); + + b.HasKey("Id"); + + b.ToTable("TeacherSelections"); + }); + + modelBuilder.Entity("awsomAPI.Models.TrialRequest", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + b.Property("Address") + .IsRequired(); + + b.Property("Availability"); + + b.Property("City") + .IsRequired(); + + b.Property("Email") + .IsRequired(); + + b.Property("Experience"); + + b.Property("HasInstrument"); + + b.Property("Instrument") + .IsRequired(); + + b.Property("Notes"); + + b.Property("ParentName") + .IsRequired(); + + b.Property("Phone"); + + b.Property("Region") + .IsRequired(); + + b.Property("StudentBirthDate"); + + b.Property("StudentName") + .IsRequired(); + + b.Property("ZipCode") + .IsRequired(); + + b.HasKey("Id"); + + b.ToTable("TrialRequests"); + }); + + modelBuilder.Entity("awsomAPI.Models.User", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + b.Property("Address"); + + b.Property("City"); + + b.Property("Email") + .IsRequired(); + + b.Property("Name") + .IsRequired(); + + b.Property("Password"); + + b.Property("Region") + .IsRequired(); + + b.Property("Role") + .IsRequired(); + + b.Property("Token"); + + b.Property("Zip"); + + b.HasKey("Id"); + + b.ToTable("Users"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Migrations/20190717205236_StudentTeacherRelationsModel.cs b/Migrations/20190717205236_StudentTeacherRelationsModel.cs new file mode 100644 index 0000000..9da4b9b --- /dev/null +++ b/Migrations/20190717205236_StudentTeacherRelationsModel.cs @@ -0,0 +1,31 @@ +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace awsomAPI.Migrations +{ + public partial class StudentTeacherRelationsModel : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "TeacherSelections", + columns: table => new + { + Id = table.Column(nullable: false) + .Annotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn), + TrialRequestId = table.Column(nullable: false), + TeacherId = table.Column(nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_TeacherSelections", x => x.Id); + }); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "TeacherSelections"); + } + } +} diff --git a/Migrations/AwsomApiContextModelSnapshot.cs b/Migrations/AwsomApiContextModelSnapshot.cs index 807c95e..e2c753e 100644 --- a/Migrations/AwsomApiContextModelSnapshot.cs +++ b/Migrations/AwsomApiContextModelSnapshot.cs @@ -18,6 +18,21 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasAnnotation("Relational:MaxIdentifierLength", 128) .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + modelBuilder.Entity("awsomAPI.Models.StudentTeacherSelectedRelation", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + b.Property("TeacherId"); + + b.Property("TrialRequestId"); + + b.HasKey("Id"); + + b.ToTable("TeacherSelections"); + }); + modelBuilder.Entity("awsomAPI.Models.TrialRequest", b => { b.Property("Id") diff --git a/Models/AwsomApiContext.cs b/Models/AwsomApiContext.cs index 1b15cb2..0e62307 100644 --- a/Models/AwsomApiContext.cs +++ b/Models/AwsomApiContext.cs @@ -7,6 +7,7 @@ public class AwsomApiContext : DbContext { public AwsomApiContext(DbContextOptions options) : base(options) {} public DbSet Users { get; set; } public DbSet TrialRequests { get; set; } + public DbSet TeacherSelections { get; set; } } } \ No newline at end of file diff --git a/Models/SelectedStudents.cs b/Models/SelectedStudents.cs new file mode 100644 index 0000000..665c497 --- /dev/null +++ b/Models/SelectedStudents.cs @@ -0,0 +1,15 @@ +using System.Collections; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace awsomAPI.Models +{ + public class StudentTeacherSelectedRelation + { + [Key, Required] + public long Id { get; set; } + public string TrialRequestId { get; set; } + public string TeacherId { get; set; } + } +} \ No newline at end of file diff --git a/Startup.cs b/Startup.cs index 64d79bd..065a0b1 100644 --- a/Startup.cs +++ b/Startup.cs @@ -41,7 +41,7 @@ public void ConfigureServices(IServiceCollection services) services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); services.AddDbContext( opt => - opt.UseSqlServer(Configuration.GetConnectionString("ProductionConnection"))); + opt.UseSqlServer(Configuration.GetConnectionString("DefaultString"))); services.AddAuthentication( auth => { From 92c33aad765f44d4cd9968b005b3726e92df4b02 Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Wed, 17 Jul 2019 16:26:06 -0700 Subject: [PATCH 20/34] accept route --- Controllers/TrialRequestController.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Controllers/TrialRequestController.cs b/Controllers/TrialRequestController.cs index 36d1d84..109f2a8 100644 --- a/Controllers/TrialRequestController.cs +++ b/Controllers/TrialRequestController.cs @@ -27,12 +27,12 @@ public async Task>> GetTrialRequests() return await _context.TrialRequests.ToListAsync(); } - [Authorize(Roles = Role.Admin +","+ Role.User)] - [HttpGet("{region}")] - public async Task>> GetByRegion(string region) - { - return await _context.TrialRequests.Where(req => req.Region == region).ToListAsync(); - } + // [Authorize(Roles = Role.Admin +","+ Role.User)] + // [HttpGet("{region}")] + // public async Task>> GetByRegion(string region) + // { + // return await _context.TrialRequests.Where(req => req.Region == region).ToListAsync(); + // } [Authorize(Roles = Role.Admin +","+ Role.User)] [HttpGet("{id}")] From d424a4e518a91767708c3837540903e3140ea959 Mon Sep 17 00:00:00 2001 From: Morgana Spake Date: Wed, 17 Jul 2019 16:27:10 -0700 Subject: [PATCH 21/34] switch back to production string --- Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Startup.cs b/Startup.cs index 065a0b1..64d79bd 100644 --- a/Startup.cs +++ b/Startup.cs @@ -41,7 +41,7 @@ public void ConfigureServices(IServiceCollection services) services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); services.AddDbContext( opt => - opt.UseSqlServer(Configuration.GetConnectionString("DefaultString"))); + opt.UseSqlServer(Configuration.GetConnectionString("ProductionConnection"))); services.AddAuthentication( auth => { From 82f436902fc099fe2b881ce71b5890b0ba2220c7 Mon Sep 17 00:00:00 2001 From: Jesse Van Volkinburg Date: Thu, 18 Jul 2019 10:36:21 -0700 Subject: [PATCH 22/34] Program, Startup: formatting & doc comments --- Program.cs | 33 +++++++++++++++++++++- Startup.cs | 82 +++++++++++++++++++++++++++++++++++++++--------------- 2 files changed, 92 insertions(+), 23 deletions(-) diff --git a/Program.cs b/Program.cs index a0220a8..b1fb692 100644 --- a/Program.cs +++ b/Program.cs @@ -1,4 +1,10 @@ -using System; +///------------------------------------------------------------------------------------------------- +// file: Program.cs +// +// summary: Implements the program class +///------------------------------------------------------------------------------------------------- + +using System; using System.Collections.Generic; using System.IO; using System.Linq; @@ -8,15 +14,40 @@ using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Logging; + +///------------------------------------------------------------------------------------------------- +// namespace: awsomAPI +// +// summary: . +///------------------------------------------------------------------------------------------------- + namespace awsomAPI { public class Program { + ///------------------------------------------------------------------------------------------------- + /// Main entry-point for this application. + /// + /// Vanvoljg, 18-Jul-19. + /// + /// An array of command-line argument strings. + ///------------------------------------------------------------------------------------------------- + public static void Main(string[] args) { CreateWebHostBuilder(args).Build().Run(); } + ///------------------------------------------------------------------------------------------------- + /// Creates web host builder. + /// + /// Vanvoljg, 18-Jul-19. + /// + /// An array of command-line argument strings. + /// + /// The new web host builder. + ///------------------------------------------------------------------------------------------------- + public static IWebHostBuilder CreateWebHostBuilder(string[] args) => WebHost.CreateDefaultBuilder(args) .UseStartup(); diff --git a/Startup.cs b/Startup.cs index 64d79bd..24b2a87 100644 --- a/Startup.cs +++ b/Startup.cs @@ -1,4 +1,10 @@ -using System; +///------------------------------------------------------------------------------------------------- +// file: Startup.cs +// +// summary: Implements the startup class. +///------------------------------------------------------------------------------------------------- + +using System; using System.Collections; using System.Collections.Generic; using System.Text; @@ -17,21 +23,45 @@ using Microsoft.IdentityModel.Tokens; using awsomAPI.Models; -//Morgana - JWT Auth Functionality found here https://jasonwatmore.com/post/2019/01/08/aspnet-core-22-role-based-authorization-tutorial-with-example-api#app-settings-json +//Morgana - JWT Auth Functionality found here https://jasonwatmore.com/post/2019/01/08/aspnet-core-22-role-based-authorization-tutorial-with-example-api#app-settings-json. + + +///------------------------------------------------------------------------------------------------- +// namespace: awsomAPI +// +// summary: . +///------------------------------------------------------------------------------------------------- namespace awsomAPI { public class Startup { - private string _secret = null; + private string _secret = null; + + public IConfiguration Configuration { get; } + + ///------------------------------------------------------------------------------------------------- + /// Constructor. + /// + /// Vanvoljg, 18-Jul-19. + /// + /// The configuration. + ///------------------------------------------------------------------------------------------------- + public Startup(IConfiguration configuration) { Configuration = configuration; } - public IConfiguration Configuration { get; } - + ///------------------------------------------------------------------------------------------------- + /// Configure services. + /// + /// Vanvoljg, 18-Jul-19. + /// + /// The services. + ///------------------------------------------------------------------------------------------------- // This method gets called by the runtime. Use this method to add services to the container. + public void ConfigureServices(IServiceCollection services) { _secret = Configuration["Secret"]; @@ -40,29 +70,37 @@ public void ConfigureServices(IServiceCollection services) services.AddCors(); services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); - services.AddDbContext( opt => - opt.UseSqlServer(Configuration.GetConnectionString("ProductionConnection"))); + services.AddDbContext(opt => + opt.UseSqlServer(Configuration.GetConnectionString("ProductionConnection"))); - services.AddAuthentication( auth => + services.AddAuthentication(auth => { - auth.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme; - auth.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme; - }) - .AddJwtBearer( jwt => + auth.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme; + auth.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme; + }).AddJwtBearer(jwt => { - jwt.RequireHttpsMetadata = true; - jwt.SaveToken = true; - jwt.TokenValidationParameters = new TokenValidationParameters - { - ValidateIssuerSigningKey = true, - IssuerSigningKey = new SymmetricSecurityKey(_key), - ValidateIssuer = false, - ValidateAudience = false - }; + jwt.RequireHttpsMetadata = true; + jwt.SaveToken = true; + jwt.TokenValidationParameters = new TokenValidationParameters + { + ValidateIssuerSigningKey = true, + IssuerSigningKey = new SymmetricSecurityKey(_key), + ValidateIssuer = false, + ValidateAudience = false + }; }); } + ///------------------------------------------------------------------------------------------------- + /// Configures. + /// + /// Vanvoljg, 18-Jul-19. + /// + /// The application. + /// The environment. + ///------------------------------------------------------------------------------------------------- // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. + public void Configure(IApplicationBuilder app, IHostingEnvironment env) { if (env.IsDevelopment()) @@ -78,7 +116,7 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env) app.UseHttpsRedirection(); app.UseAuthentication(); app.UseMvc(); - app.UseCors( settings => settings.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader()); + app.UseCors(settings => settings.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader()); } } } From 0b1e7b021e6db93ada80317da036ee675302b125 Mon Sep 17 00:00:00 2001 From: Jesse Van Volkinburg Date: Thu, 18 Jul 2019 10:47:23 -0700 Subject: [PATCH 23/34] TrialRequestController: formatting and doc comments --- Controllers/TrialRequestController.cs | 176 ++++++++++++++++++-------- 1 file changed, 121 insertions(+), 55 deletions(-) diff --git a/Controllers/TrialRequestController.cs b/Controllers/TrialRequestController.cs index 109f2a8..9cd8c7a 100644 --- a/Controllers/TrialRequestController.cs +++ b/Controllers/TrialRequestController.cs @@ -1,3 +1,9 @@ +///------------------------------------------------------------------------------------------------- +// file: Controllers\TrialRequestController.cs +// +// summary: Implements the trial request controller class. +///------------------------------------------------------------------------------------------------- + using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Authorization; using Microsoft.EntityFrameworkCore; @@ -6,70 +12,130 @@ using System.Threading.Tasks; using awsomAPI.Models; + +///------------------------------------------------------------------------------------------------- +// namespace: awsomAPI.Controllers +// +// summary: Trial Request controller for working with trial requests. +///------------------------------------------------------------------------------------------------- + namespace awsomAPI.Controllers { - [Authorize] - [Route("/trialRequests")] - [ApiController] - - public class TrialRequestController : ControllerBase - { - private readonly AwsomApiContext _context; - public TrialRequestController(AwsomApiContext context) - { - _context = context; - } + [Authorize] + [Route("/trialRequests")] + [ApiController] - [Authorize(Roles = Role.Admin)] - [HttpGet] - public async Task>> GetTrialRequests() + ///------------------------------------------------------------------------------------------------- + /// A controller for handling trial requests. + /// + /// Vanvoljg, 18-Jul-19. + ///------------------------------------------------------------------------------------------------- + + public class TrialRequestController : ControllerBase { - return await _context.TrialRequests.ToListAsync(); - } + private readonly AwsomApiContext _context; + public TrialRequestController(AwsomApiContext context) + { + _context = context; + } - // [Authorize(Roles = Role.Admin +","+ Role.User)] - // [HttpGet("{region}")] - // public async Task>> GetByRegion(string region) - // { - // return await _context.TrialRequests.Where(req => req.Region == region).ToListAsync(); - // } + ///------------------------------------------------------------------------------------------------- + /// + /// (An Action that handles HTTP GET requests) (Restricted to Roles = Role.Admin) gets trial + /// requests. + /// + /// + /// Vanvoljg, 18-Jul-19. + /// + /// An asynchronous result that yields the trial requests. + ///------------------------------------------------------------------------------------------------- - [Authorize(Roles = Role.Admin +","+ Role.User)] - [HttpGet("{id}")] - public async Task> TrialRequestDetailView(long id) - { - var trialRequest = await _context.TrialRequests.FindAsync(id); + [Authorize(Roles = Role.Admin)] + [HttpGet] + public async Task>> GetTrialRequests() + { + return await _context.TrialRequests.ToListAsync(); + } - if (trialRequest == null) - { - return NotFound(); - } - return trialRequest; - } + // [Authorize(Roles = Role.Admin +","+ Role.User)] + // [HttpGet("{region}")] + // public async Task>> GetByRegion(string region) + // { + // return await _context.TrialRequests.Where(req => req.Region == region).ToListAsync(); + // } - [Authorize(Roles = Role.Admin +","+ Role.User)] - [HttpPost("select")] - public async Task SelectStudent(StudentTeacherSelectedRelation selection) - { - _context.TeacherSelections.Add(selection); - await _context.SaveChangesAsync(); - return StatusCode(201); - } + ///------------------------------------------------------------------------------------------------- + /// + /// (An Action that handles HTTP GET requests) (Restricted to Roles = Role.Admin + "," + + /// Role.User) trial request detail view. + /// + /// + /// Vanvoljg, 18-Jul-19. + /// + /// The identifier. + /// + /// An asynchronous result that yields an ActionResult<TrialRequest>. + ///------------------------------------------------------------------------------------------------- - // [Authorize(Roles = Role.Admin)] - // [HttpGet("selected")] - // public async Task>> GetSelected(string requestId) - // { - // return await _context.TeacherSelections.Where( entry => entry.TrialRequestId == requestId ).ToListAsync(); - // } + [Authorize(Roles = Role.Admin + "," + Role.User)] + [HttpGet("{id}")] + public async Task> TrialRequestDetailView(long id) + { + var trialRequest = await _context.TrialRequests.FindAsync(id); - [HttpPost] - [AllowAnonymous] - public async Task> AddNewTrialRequest(TrialRequest trialRequest) - { - _context.TrialRequests.Add(trialRequest); - await _context.SaveChangesAsync(); - return CreatedAtAction(nameof(TrialRequestDetailView), new { id = trialRequest.Id }, trialRequest); + if (trialRequest == null) + { + return NotFound(); + } + return trialRequest; + } + + ///------------------------------------------------------------------------------------------------- + /// + /// (An Action that handles HTTP POST requests) (Restricted to Roles = Role.Admin + "," + + /// Role.User) select student. + /// + /// + /// Vanvoljg, 18-Jul-19. + /// + /// The selection. + /// + /// An asynchronous result that yields an ActionResult. + ///------------------------------------------------------------------------------------------------- + + [Authorize(Roles = Role.Admin + "," + Role.User)] + [HttpPost("select")] + public async Task SelectStudent(StudentTeacherSelectedRelation selection) + { + _context.TeacherSelections.Add(selection); + await _context.SaveChangesAsync(); + return StatusCode(201); + } + + // [Authorize(Roles = Role.Admin)] + // [HttpGet("selected")] + // public async Task>> GetSelected(string requestId) + // { + // return await _context.TeacherSelections.Where( entry => entry.TrialRequestId == requestId ).ToListAsync(); + // } + + ///------------------------------------------------------------------------------------------------- + /// (An Action that handles HTTP POST requests) adds a new trial request. + /// + /// Vanvoljg, 18-Jul-19. + /// + /// The trial request. + /// + /// An asynchronous result that yields an ActionResult<TrialRequest>. + ///------------------------------------------------------------------------------------------------- + + [HttpPost] + [AllowAnonymous] + public async Task> AddNewTrialRequest(TrialRequest trialRequest) + { + _context.TrialRequests.Add(trialRequest); + await _context.SaveChangesAsync(); + return CreatedAtAction(nameof(TrialRequestDetailView), new { id = trialRequest.Id }, trialRequest); + } } - } } \ No newline at end of file From 728c1ff93a52becc6e932a1253339e9c9990baa2 Mon Sep 17 00:00:00 2001 From: Jesse Van Volkinburg Date: Thu, 18 Jul 2019 10:48:30 -0700 Subject: [PATCH 24/34] UserController: formatting and doc comments --- Controllers/UsersController.cs | 229 +++++++++++++++++++++------------ 1 file changed, 148 insertions(+), 81 deletions(-) diff --git a/Controllers/UsersController.cs b/Controllers/UsersController.cs index f69e9c4..46003e5 100644 --- a/Controllers/UsersController.cs +++ b/Controllers/UsersController.cs @@ -1,4 +1,10 @@ -using Microsoft.AspNetCore.Authorization; +///------------------------------------------------------------------------------------------------- +// file: Controllers\UsersController.cs +// +// summary: Implements the users controller class. +///------------------------------------------------------------------------------------------------- + +using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; @@ -18,95 +24,156 @@ namespace awsomAPI.Controllers { - [Authorize] - [ApiController] - [Route("/users")] - public class UsersController : ControllerBase - { - private readonly AwsomApiContext _context; - public IConfiguration Configuration { get; set; } - - public UsersController(AwsomApiContext context, IConfiguration configuration) - { - _context = context; - Configuration = configuration; - } + ///------------------------------------------------------------------------------------------------- + /// A controller for handling users. + /// + /// Vanvoljg, 18-Jul-19. + ///------------------------------------------------------------------------------------------------- - [HttpGet] - [Authorize(Roles = Role.Admin)] - public async Task>> GetUsers() + [Authorize] + [ApiController] + [Route("/users")] + public class UsersController : ControllerBase { - List users = await _context.Users.ToListAsync(); - users.ForEach(entry => entry.Password = null); - return users; - } + private readonly AwsomApiContext _context; + public IConfiguration Configuration { get; set; } - [HttpGet("{id}")] - public async Task> GetUser(long id) - { - var user = await _context.Users.FindAsync(id); - - if (user == null) - { - return NotFound(); - } - if (user != null) - { - user.Password = null; - } - - int currentUserId = int.Parse(User.Identity.Name); - if (id != currentUserId && !User.IsInRole(Role.Admin)) - { - return Forbid(); - } - return user; - } - [HttpPost("signin")] - [AllowAnonymous] - public async Task> Signin([FromBody]User userFromFrontend) - { - string email = userFromFrontend.Email; - string password = userFromFrontend.Password; - User user = _context.Users.FirstOrDefault(x => x.Email == email && x.Password == password); - - if (user == null) - { - return NotFound(); - } - JwtSecurityTokenHandler tokenHandler = new JwtSecurityTokenHandler(); - byte[] key = Encoding.ASCII.GetBytes(Configuration["Secret"]); - SecurityTokenDescriptor tokenDescriptor = new SecurityTokenDescriptor - { - Subject = new ClaimsIdentity(new Claim[] - { + ///------------------------------------------------------------------------------------------------- + /// Constructor. + /// + /// Vanvoljg, 18-Jul-19. + /// + /// The context. + /// The configuration. + ///------------------------------------------------------------------------------------------------- + + public UsersController(AwsomApiContext context, IConfiguration configuration) + { + _context = context; + Configuration = configuration; + } + + ///------------------------------------------------------------------------------------------------- + /// + /// (An Action that handles HTTP GET requests) (Restricted to Roles = Role.Admin) gets the + /// users. + /// + /// + /// Vanvoljg, 18-Jul-19. + /// + /// An asynchronous result that yields all the users. + ///------------------------------------------------------------------------------------------------- + + [HttpGet] + [Authorize(Roles = Role.Admin)] + public async Task>> GetUsers() + { + List users = await _context.Users.ToListAsync(); + users.ForEach(entry => entry.Password = null); + return users; + } + + ///------------------------------------------------------------------------------------------------- + /// (An Action that handles HTTP GET requests) gets a user. + /// + /// Vanvoljg, 18-Jul-19. + /// + /// The identifier. + /// + /// An asynchronous result that yields the user. + ///------------------------------------------------------------------------------------------------- + + [HttpGet("{id}")] + public async Task> GetUser(long id) + { + var user = await _context.Users.FindAsync(id); + + if (user == null) + { + return NotFound(); + } + if (user != null) + { + user.Password = null; + } + + int currentUserId = int.Parse(User.Identity.Name); + if (id != currentUserId && !User.IsInRole(Role.Admin)) + { + return Forbid(); + } + return user; + } + + ///------------------------------------------------------------------------------------------------- + /// + /// (An Action that handles HTTP POST requests) signins the given user from frontend. + /// + /// + /// Vanvoljg, 18-Jul-19. + /// + /// The user from frontend. + /// + /// An asynchronous result that yields an ActionResult<User>. + ///------------------------------------------------------------------------------------------------- + + [HttpPost("signin")] + [AllowAnonymous] + public async Task> Signin([FromBody]User userFromFrontend) + { + string email = userFromFrontend.Email; + string password = userFromFrontend.Password; + User user = _context.Users.FirstOrDefault(x => x.Email == email && x.Password == password); + + if (user == null) + { + return NotFound(); + } + JwtSecurityTokenHandler tokenHandler = new JwtSecurityTokenHandler(); + byte[] key = Encoding.ASCII.GetBytes(Configuration["Secret"]); + SecurityTokenDescriptor tokenDescriptor = new SecurityTokenDescriptor + { + Subject = new ClaimsIdentity(new Claim[] + { new Claim(ClaimTypes.Name, user.Id.ToString()), new Claim(ClaimTypes.Role, user.Role) - }), - Expires = DateTime.UtcNow.AddDays(7), - SigningCredentials = new SigningCredentials(new SymmetricSecurityKey(key), SecurityAlgorithms.HmacSha256Signature) - }; - SecurityToken token = tokenHandler.CreateToken(tokenDescriptor); - user.Token = tokenHandler.WriteToken(token); + }), + Expires = DateTime.UtcNow.AddDays(7), + SigningCredentials = new SigningCredentials(new SymmetricSecurityKey(key), SecurityAlgorithms.HmacSha256Signature) + }; + SecurityToken token = tokenHandler.CreateToken(tokenDescriptor); + user.Token = tokenHandler.WriteToken(token); - user.Password = null; + user.Password = null; - return user; - } - [HttpPost("signup")] - [AllowAnonymous] - public async Task> AddUser(User user) - { - Regex awsomEmail = new Regex(@"@awsom\.info$"); + return user; + } + + ///------------------------------------------------------------------------------------------------- + /// (An Action that handles HTTP POST requests) adds a user. + /// + /// Vanvoljg, 18-Jul-19. + /// + /// The user. + /// + /// An asynchronous result that yields an ActionResult<User>. + ///------------------------------------------------------------------------------------------------- + + [HttpPost("signup")] + [AllowAnonymous] + public async Task> AddUser(User user) + { + Regex awsomEmail = new Regex(@"@awsom\.info$"); - if(!awsomEmail.IsMatch(user.Email.ToLower())){ - return Forbid(); - } + if (!awsomEmail.IsMatch(user.Email.ToLower())) + { + return Forbid(); + } - _context.Users.Add(user); - await _context.SaveChangesAsync(); + _context.Users.Add(user); + await _context.SaveChangesAsync(); - return CreatedAtAction(nameof(GetUser), new { id = user.Id }, user); + return CreatedAtAction(nameof(GetUser), new { id = user.Id }, user); + } } - } } From 7f0815e44d99ae637dfe9fa9d3445d509edd2026 Mon Sep 17 00:00:00 2001 From: Jesse Van Volkinburg Date: Thu, 18 Jul 2019 10:54:39 -0700 Subject: [PATCH 25/34] AwsomApiContent: formatting and doc comments --- Models/AwsomApiContext.cs | 64 ++++++++++++++++++++++++++++++++++----- 1 file changed, 57 insertions(+), 7 deletions(-) diff --git a/Models/AwsomApiContext.cs b/Models/AwsomApiContext.cs index 0e62307..dce3026 100644 --- a/Models/AwsomApiContext.cs +++ b/Models/AwsomApiContext.cs @@ -1,13 +1,63 @@ +///------------------------------------------------------------------------------------------------- +// file: Models\AwsomApiContext.cs +// +// summary: Implements the awsom API context class +///------------------------------------------------------------------------------------------------- + using Microsoft.EntityFrameworkCore; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; -namespace awsomAPI.Models { - public class AwsomApiContext : DbContext { - public AwsomApiContext(DbContextOptions options) : base(options) {} - public DbSet Users { get; set; } - public DbSet TrialRequests { get; set; } - public DbSet TeacherSelections { get; set; } - } + +///------------------------------------------------------------------------------------------------- +// namespace: awsomAPI.Models +// +// summary: . +///------------------------------------------------------------------------------------------------- + +namespace awsomAPI.Models +{ + ///------------------------------------------------------------------------------------------------- + /// An awsom API context. + /// + /// Vanvoljg, 18-Jul-19. + ///------------------------------------------------------------------------------------------------- + + public class AwsomApiContext : DbContext + { + ///------------------------------------------------------------------------------------------------- + /// Constructor. + /// + /// Vanvoljg, 18-Jul-19. + /// + /// Options for controlling the operation. + ///------------------------------------------------------------------------------------------------- + + public AwsomApiContext(DbContextOptions options) : base(options) { } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the users. + /// + /// The users. + ///------------------------------------------------------------------------------------------------- + + public DbSet Users { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the trial requests. + /// + /// The trial requests. + ///------------------------------------------------------------------------------------------------- + + public DbSet TrialRequests { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the teacher selections. + /// + /// The teacher selections. + ///------------------------------------------------------------------------------------------------- + + public DbSet TeacherSelections { get; set; } + } } \ No newline at end of file From 8f0f1b97920c16dd51785bc30f7b0252a77a7006 Mon Sep 17 00:00:00 2001 From: Jesse Van Volkinburg Date: Thu, 18 Jul 2019 10:55:29 -0700 Subject: [PATCH 26/34] Models: formatting update --- Models/RolesModel.cs | 10 +++---- Models/SelectedStudents.cs | 14 ++++----- Models/TrialRequestModel.cs | 60 +++++++++++++++++++------------------ Models/UsersModel.cs | 40 +++++++++++++------------ 4 files changed, 64 insertions(+), 60 deletions(-) diff --git a/Models/RolesModel.cs b/Models/RolesModel.cs index 8217571..c6a7dd4 100644 --- a/Models/RolesModel.cs +++ b/Models/RolesModel.cs @@ -5,9 +5,9 @@ namespace awsomAPI.Models { - public static class Role - { - public const string Admin = "admin"; - public const string User = "user"; - } + public static class Role + { + public const string Admin = "admin"; + public const string User = "user"; + } } \ No newline at end of file diff --git a/Models/SelectedStudents.cs b/Models/SelectedStudents.cs index 665c497..876f60d 100644 --- a/Models/SelectedStudents.cs +++ b/Models/SelectedStudents.cs @@ -5,11 +5,11 @@ namespace awsomAPI.Models { - public class StudentTeacherSelectedRelation - { - [Key, Required] - public long Id { get; set; } - public string TrialRequestId { get; set; } - public string TeacherId { get; set; } - } + public class StudentTeacherSelectedRelation + { + [Key, Required] + public long Id { get; set; } + public string TrialRequestId { get; set; } + public string TeacherId { get; set; } + } } \ No newline at end of file diff --git a/Models/TrialRequestModel.cs b/Models/TrialRequestModel.cs index 10c868b..704396e 100644 --- a/Models/TrialRequestModel.cs +++ b/Models/TrialRequestModel.cs @@ -3,33 +3,35 @@ using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; -namespace awsomAPI.Models { - [Table("TrialRequests")] - - public class TrialRequest { - [Key, Required] - public long Id { get; set; } - [Required] - public string ParentName {get; set;} - [Required] - public string StudentName {get; set;} - public string StudentBirthDate {get; set;} - [Required] - public string Email {get; set;} - public string Phone {get; set;} - [Required] - public string Address {get; set;} - [Required] - public string City {get; set;} - [Required] - public string ZipCode {get; set;} - [Required] - public string Region {get; set;} - [Required] - public string Instrument {get; set;} - public string HasInstrument {get; set;} - public string Availability {get; set;} - public string Experience {get; set;} - public string Notes {get; set;} - } +namespace awsomAPI.Models +{ + [Table("TrialRequests")] + + public class TrialRequest + { + [Key, Required] + public long Id { get; set; } + [Required] + public string ParentName { get; set; } + [Required] + public string StudentName { get; set; } + public string StudentBirthDate { get; set; } + [Required] + public string Email { get; set; } + public string Phone { get; set; } + [Required] + public string Address { get; set; } + [Required] + public string City { get; set; } + [Required] + public string ZipCode { get; set; } + [Required] + public string Region { get; set; } + [Required] + public string Instrument { get; set; } + public string HasInstrument { get; set; } + public string Availability { get; set; } + public string Experience { get; set; } + public string Notes { get; set; } + } } \ No newline at end of file diff --git a/Models/UsersModel.cs b/Models/UsersModel.cs index 285de58..49140c9 100644 --- a/Models/UsersModel.cs +++ b/Models/UsersModel.cs @@ -2,23 +2,25 @@ using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; -namespace awsomAPI.Models { - [Table("Users")] - public class User { - [Key, Required] - public long Id { get; set; } - [Required] - public string Name { get; set; } - [Required] - public string Email { get; set; } - [Required] - public string Role { get; set; } - public string Password { get; set; } - [Required] - public string Region { get; set; } - public string Address { get; set; } - public string City { get; set; } - public string Zip { get; set; } - public string Token { get; set; } - } +namespace awsomAPI.Models +{ + [Table("Users")] + public class User + { + [Key, Required] + public long Id { get; set; } + [Required] + public string Name { get; set; } + [Required] + public string Email { get; set; } + [Required] + public string Role { get; set; } + public string Password { get; set; } + [Required] + public string Region { get; set; } + public string Address { get; set; } + public string City { get; set; } + public string Zip { get; set; } + public string Token { get; set; } + } } \ No newline at end of file From b284991f128dd56164dcbdca610015c313f1b511 Mon Sep 17 00:00:00 2001 From: Jesse Van Volkinburg Date: Thu, 18 Jul 2019 10:56:21 -0700 Subject: [PATCH 27/34] RoleModel: doc comments --- Models/RolesModel.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/Models/RolesModel.cs b/Models/RolesModel.cs index c6a7dd4..e7f9e32 100644 --- a/Models/RolesModel.cs +++ b/Models/RolesModel.cs @@ -1,10 +1,29 @@ +///------------------------------------------------------------------------------------------------- +// file: Models\RolesModel.cs +// +// summary: Implements the roles model class +///------------------------------------------------------------------------------------------------- + using System.Collections; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; + +///------------------------------------------------------------------------------------------------- +// namespace: awsomAPI.Models +// +// summary: . +///------------------------------------------------------------------------------------------------- + namespace awsomAPI.Models { + ///------------------------------------------------------------------------------------------------- + /// A role model. + /// + /// Vanvoljg, 18-Jul-19. + ///------------------------------------------------------------------------------------------------- + public static class Role { public const string Admin = "admin"; From d7d8f2d584a883408b187b12678a055e239a4ce4 Mon Sep 17 00:00:00 2001 From: Jesse Van Volkinburg Date: Thu, 18 Jul 2019 10:57:18 -0700 Subject: [PATCH 28/34] SelectedStudents: doc comments --- Models/SelectedStudents.cs | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/Models/SelectedStudents.cs b/Models/SelectedStudents.cs index 876f60d..eaa35a0 100644 --- a/Models/SelectedStudents.cs +++ b/Models/SelectedStudents.cs @@ -1,15 +1,54 @@ +///------------------------------------------------------------------------------------------------- +// file: Models\SelectedStudents.cs +// +// summary: Implements the selected students class +///------------------------------------------------------------------------------------------------- + using System.Collections; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; + +///------------------------------------------------------------------------------------------------- +// namespace: awsomAPI.Models +// +// summary: . +///------------------------------------------------------------------------------------------------- + namespace awsomAPI.Models { + ///------------------------------------------------------------------------------------------------- + /// A student teacher selected relation. + /// + /// Vanvoljg, 18-Jul-19. + ///------------------------------------------------------------------------------------------------- + public class StudentTeacherSelectedRelation { + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the identifier. + /// + /// The identifier. + ///------------------------------------------------------------------------------------------------- + [Key, Required] public long Id { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the identifier of the trial request. + /// + /// The identifier of the trial request. + ///------------------------------------------------------------------------------------------------- + public string TrialRequestId { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the identifier of the teacher. + /// + /// The identifier of the teacher. + ///------------------------------------------------------------------------------------------------- + public string TeacherId { get; set; } } } \ No newline at end of file From 2c5079c13cd336af420745b58ecd44699bb66534 Mon Sep 17 00:00:00 2001 From: Jesse Van Volkinburg Date: Thu, 18 Jul 2019 10:59:04 -0700 Subject: [PATCH 29/34] TrialRequestModel: doc comments --- Models/TrialRequestModel.cs | 123 ++++++++++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) diff --git a/Models/TrialRequestModel.cs b/Models/TrialRequestModel.cs index 704396e..a62d9e9 100644 --- a/Models/TrialRequestModel.cs +++ b/Models/TrialRequestModel.cs @@ -1,37 +1,160 @@ +///------------------------------------------------------------------------------------------------- +// file: Models\TrialRequestModel.cs +// +// summary: Implements the trial request model class +///------------------------------------------------------------------------------------------------- + using System.Collections; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; + +///------------------------------------------------------------------------------------------------- +// namespace: awsomAPI.Models +// +// summary: . +///------------------------------------------------------------------------------------------------- + namespace awsomAPI.Models { [Table("TrialRequests")] + ///------------------------------------------------------------------------------------------------- + /// A trial request. + /// + /// Vanvoljg, 18-Jul-19. + ///------------------------------------------------------------------------------------------------- + public class TrialRequest { + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the identifier. + /// + /// The identifier. + ///------------------------------------------------------------------------------------------------- + [Key, Required] public long Id { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the name of the parent. + /// + /// The name of the parent. + ///------------------------------------------------------------------------------------------------- + [Required] public string ParentName { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the name of the student. + /// + /// The name of the student. + ///------------------------------------------------------------------------------------------------- + [Required] public string StudentName { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the student birth date. + /// + /// The student birth date. + ///------------------------------------------------------------------------------------------------- + public string StudentBirthDate { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the email. + /// + /// The email. + ///------------------------------------------------------------------------------------------------- + [Required] public string Email { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the phone. + /// + /// The phone. + ///------------------------------------------------------------------------------------------------- + public string Phone { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the address. + /// + /// The address. + ///------------------------------------------------------------------------------------------------- + [Required] public string Address { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the city. + /// + /// The city. + ///------------------------------------------------------------------------------------------------- + [Required] public string City { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the zip code. + /// + /// The zip code. + ///------------------------------------------------------------------------------------------------- + [Required] public string ZipCode { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the region. + /// + /// The region. + ///------------------------------------------------------------------------------------------------- + [Required] public string Region { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the instrument. + /// + /// The instrument. + ///------------------------------------------------------------------------------------------------- + [Required] public string Instrument { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the has instrument. + /// + /// The has instrument. + ///------------------------------------------------------------------------------------------------- + public string HasInstrument { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the availability. + /// + /// The availability. + ///------------------------------------------------------------------------------------------------- + public string Availability { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the experience. + /// + /// The experience. + ///------------------------------------------------------------------------------------------------- + public string Experience { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the notes. + /// + /// The notes. + ///------------------------------------------------------------------------------------------------- + public string Notes { get; set; } } } \ No newline at end of file From 7ca86db2ad082b1c0cd1ea96a391500e55293423 Mon Sep 17 00:00:00 2001 From: Jesse Van Volkinburg Date: Thu, 18 Jul 2019 11:00:38 -0700 Subject: [PATCH 30/34] UsersModel: doc comments && Zip -> ZipCode --- Models/UsersModel.cs | 90 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 89 insertions(+), 1 deletion(-) diff --git a/Models/UsersModel.cs b/Models/UsersModel.cs index 49140c9..2c49e73 100644 --- a/Models/UsersModel.cs +++ b/Models/UsersModel.cs @@ -1,26 +1,114 @@ +///------------------------------------------------------------------------------------------------- +// file: Models\UsersModel.cs +// +// summary: Implements the users model class +///------------------------------------------------------------------------------------------------- + using System.Collections; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; + +///------------------------------------------------------------------------------------------------- +// namespace: awsomAPI.Models +// +// summary: . +///------------------------------------------------------------------------------------------------- + namespace awsomAPI.Models { + ///------------------------------------------------------------------------------------------------- + /// An user. + /// + /// Vanvoljg, 18-Jul-19. + ///------------------------------------------------------------------------------------------------- + [Table("Users")] public class User { + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the identifier. + /// + /// The identifier. + ///------------------------------------------------------------------------------------------------- + [Key, Required] public long Id { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the name. + /// + /// The name. + ///------------------------------------------------------------------------------------------------- + [Required] public string Name { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the email. + /// + /// The email. + ///------------------------------------------------------------------------------------------------- + [Required] public string Email { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the role. + /// + /// The role. + ///------------------------------------------------------------------------------------------------- + [Required] public string Role { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the password. + /// + /// The password. + ///------------------------------------------------------------------------------------------------- + public string Password { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the region. + /// + /// The region. + ///------------------------------------------------------------------------------------------------- + [Required] public string Region { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the address. + /// + /// The address. + ///------------------------------------------------------------------------------------------------- + public string Address { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the city. + /// + /// The city. + ///------------------------------------------------------------------------------------------------- + public string City { get; set; } - public string Zip { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the zip. + /// + /// The zip. + ///------------------------------------------------------------------------------------------------- + + public string ZipCode { get; set; } + + ///------------------------------------------------------------------------------------------------- + /// Gets or sets the token. + /// + /// The token. + ///------------------------------------------------------------------------------------------------- + public string Token { get; set; } } } \ No newline at end of file From d17ce8125df2e9e2da08c5e263f954912ee6712b Mon Sep 17 00:00:00 2001 From: Jesse Van Volkinburg Date: Thu, 18 Jul 2019 11:44:15 -0700 Subject: [PATCH 31/34] enable XML docs --- awsomAPI.csproj | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/awsomAPI.csproj b/awsomAPI.csproj index 8480b27..a8fa723 100644 --- a/awsomAPI.csproj +++ b/awsomAPI.csproj @@ -7,6 +7,14 @@ awsomAPI + + D:\cf\back-end-api-server\awsomAPI.xml + + + + D:\cf\back-end-api-server\awsomAPI.xml + + From 0dfd0c3b35b4b9a9e84f58524c875deb6b40abd8 Mon Sep 17 00:00:00 2001 From: Jesse Van Volkinburg Date: Thu, 18 Jul 2019 14:10:58 -0700 Subject: [PATCH 32/34] Doc Comment cleanup --- Controllers/TrialRequestController.cs | 29 +- Controllers/UsersController.cs | 26 +- Models/AwsomApiContext.cs | 19 -- Models/RolesModel.cs | 14 - Models/SelectedStudents.cs | 17 -- Models/TrialRequestModel.cs | 32 +-- Models/UsersModel.cs | 25 +- Program.cs | 25 +- Properties/launchSettings.json | 13 +- Startup.cs | 33 +-- awsomAPI.csproj | 3 +- awsomAPI.xml | 386 ++++++++++++++++++++++++++ 12 files changed, 423 insertions(+), 199 deletions(-) create mode 100644 awsomAPI.xml diff --git a/Controllers/TrialRequestController.cs b/Controllers/TrialRequestController.cs index 9cd8c7a..acec3ee 100644 --- a/Controllers/TrialRequestController.cs +++ b/Controllers/TrialRequestController.cs @@ -1,9 +1,3 @@ -///------------------------------------------------------------------------------------------------- -// file: Controllers\TrialRequestController.cs -// -// summary: Implements the trial request controller class. -///------------------------------------------------------------------------------------------------- - using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Authorization; using Microsoft.EntityFrameworkCore; @@ -12,13 +6,6 @@ using System.Threading.Tasks; using awsomAPI.Models; - -///------------------------------------------------------------------------------------------------- -// namespace: awsomAPI.Controllers -// -// summary: Trial Request controller for working with trial requests. -///------------------------------------------------------------------------------------------------- - namespace awsomAPI.Controllers { [Authorize] @@ -27,13 +14,19 @@ namespace awsomAPI.Controllers ///------------------------------------------------------------------------------------------------- /// A controller for handling trial requests. - /// /// Vanvoljg, 18-Jul-19. ///------------------------------------------------------------------------------------------------- public class TrialRequestController : ControllerBase { private readonly AwsomApiContext _context; + + ///------------------------------------------------------------------------------------------------- + /// Constructor. + /// Vanvoljg, 18-Jul-19. + /// The context. + ///------------------------------------------------------------------------------------------------- + public TrialRequestController(AwsomApiContext context) { _context = context; @@ -44,9 +37,7 @@ public TrialRequestController(AwsomApiContext context) /// (An Action that handles HTTP GET requests) (Restricted to Roles = Role.Admin) gets trial /// requests. /// - /// /// Vanvoljg, 18-Jul-19. - /// /// An asynchronous result that yields the trial requests. ///------------------------------------------------------------------------------------------------- @@ -69,11 +60,8 @@ public async Task>> GetTrialRequests() /// (An Action that handles HTTP GET requests) (Restricted to Roles = Role.Admin + "," + /// Role.User) trial request detail view. /// - /// /// Vanvoljg, 18-Jul-19. - /// /// The identifier. - /// /// An asynchronous result that yields an ActionResult<TrialRequest>. ///------------------------------------------------------------------------------------------------- @@ -95,11 +83,8 @@ public async Task> TrialRequestDetailView(long id) /// (An Action that handles HTTP POST requests) (Restricted to Roles = Role.Admin + "," + /// Role.User) select student. /// - /// /// Vanvoljg, 18-Jul-19. - /// /// The selection. - /// /// An asynchronous result that yields an ActionResult. ///------------------------------------------------------------------------------------------------- diff --git a/Controllers/UsersController.cs b/Controllers/UsersController.cs index 46003e5..563abce 100644 --- a/Controllers/UsersController.cs +++ b/Controllers/UsersController.cs @@ -1,10 +1,4 @@ -///------------------------------------------------------------------------------------------------- -// file: Controllers\UsersController.cs -// -// summary: Implements the users controller class. -///------------------------------------------------------------------------------------------------- - -using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; @@ -25,9 +19,8 @@ namespace awsomAPI.Controllers { ///------------------------------------------------------------------------------------------------- - /// A controller for handling users. - /// - /// Vanvoljg, 18-Jul-19. + /// A controller for handling users. + /// Vanvoljg, 18-Jul-19. ///------------------------------------------------------------------------------------------------- [Authorize] @@ -40,9 +33,7 @@ public class UsersController : ControllerBase ///------------------------------------------------------------------------------------------------- /// Constructor. - /// /// Vanvoljg, 18-Jul-19. - /// /// The context. /// The configuration. ///------------------------------------------------------------------------------------------------- @@ -58,9 +49,7 @@ public UsersController(AwsomApiContext context, IConfiguration configuration) /// (An Action that handles HTTP GET requests) (Restricted to Roles = Role.Admin) gets the /// users. /// - /// /// Vanvoljg, 18-Jul-19. - /// /// An asynchronous result that yields all the users. ///------------------------------------------------------------------------------------------------- @@ -75,11 +64,8 @@ public async Task>> GetUsers() ///------------------------------------------------------------------------------------------------- /// (An Action that handles HTTP GET requests) gets a user. - /// /// Vanvoljg, 18-Jul-19. - /// /// The identifier. - /// /// An asynchronous result that yields the user. ///------------------------------------------------------------------------------------------------- @@ -109,11 +95,8 @@ public async Task> GetUser(long id) /// /// (An Action that handles HTTP POST requests) signins the given user from frontend. /// - /// /// Vanvoljg, 18-Jul-19. - /// /// The user from frontend. - /// /// An asynchronous result that yields an ActionResult<User>. ///------------------------------------------------------------------------------------------------- @@ -151,11 +134,8 @@ public async Task> Signin([FromBody]User userFromFrontend) ///------------------------------------------------------------------------------------------------- /// (An Action that handles HTTP POST requests) adds a user. - /// /// Vanvoljg, 18-Jul-19. - /// /// The user. - /// /// An asynchronous result that yields an ActionResult<User>. ///------------------------------------------------------------------------------------------------- diff --git a/Models/AwsomApiContext.cs b/Models/AwsomApiContext.cs index dce3026..599e0e6 100644 --- a/Models/AwsomApiContext.cs +++ b/Models/AwsomApiContext.cs @@ -1,25 +1,11 @@ -///------------------------------------------------------------------------------------------------- -// file: Models\AwsomApiContext.cs -// -// summary: Implements the awsom API context class -///------------------------------------------------------------------------------------------------- - using Microsoft.EntityFrameworkCore; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; - -///------------------------------------------------------------------------------------------------- -// namespace: awsomAPI.Models -// -// summary: . -///------------------------------------------------------------------------------------------------- - namespace awsomAPI.Models { ///------------------------------------------------------------------------------------------------- /// An awsom API context. - /// /// Vanvoljg, 18-Jul-19. ///------------------------------------------------------------------------------------------------- @@ -27,9 +13,7 @@ public class AwsomApiContext : DbContext { ///------------------------------------------------------------------------------------------------- /// Constructor. - /// /// Vanvoljg, 18-Jul-19. - /// /// Options for controlling the operation. ///------------------------------------------------------------------------------------------------- @@ -37,7 +21,6 @@ public AwsomApiContext(DbContextOptions options) : base(options ///------------------------------------------------------------------------------------------------- /// Gets or sets the users. - /// /// The users. ///------------------------------------------------------------------------------------------------- @@ -45,7 +28,6 @@ public AwsomApiContext(DbContextOptions options) : base(options ///------------------------------------------------------------------------------------------------- /// Gets or sets the trial requests. - /// /// The trial requests. ///------------------------------------------------------------------------------------------------- @@ -53,7 +35,6 @@ public AwsomApiContext(DbContextOptions options) : base(options ///------------------------------------------------------------------------------------------------- /// Gets or sets the teacher selections. - /// /// The teacher selections. ///------------------------------------------------------------------------------------------------- diff --git a/Models/RolesModel.cs b/Models/RolesModel.cs index e7f9e32..7d991d4 100644 --- a/Models/RolesModel.cs +++ b/Models/RolesModel.cs @@ -1,26 +1,12 @@ -///------------------------------------------------------------------------------------------------- -// file: Models\RolesModel.cs -// -// summary: Implements the roles model class -///------------------------------------------------------------------------------------------------- - using System.Collections; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; - -///------------------------------------------------------------------------------------------------- -// namespace: awsomAPI.Models -// -// summary: . -///------------------------------------------------------------------------------------------------- - namespace awsomAPI.Models { ///------------------------------------------------------------------------------------------------- /// A role model. - /// /// Vanvoljg, 18-Jul-19. ///------------------------------------------------------------------------------------------------- diff --git a/Models/SelectedStudents.cs b/Models/SelectedStudents.cs index eaa35a0..2b73d70 100644 --- a/Models/SelectedStudents.cs +++ b/Models/SelectedStudents.cs @@ -1,26 +1,12 @@ -///------------------------------------------------------------------------------------------------- -// file: Models\SelectedStudents.cs -// -// summary: Implements the selected students class -///------------------------------------------------------------------------------------------------- - using System.Collections; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; - -///------------------------------------------------------------------------------------------------- -// namespace: awsomAPI.Models -// -// summary: . -///------------------------------------------------------------------------------------------------- - namespace awsomAPI.Models { ///------------------------------------------------------------------------------------------------- /// A student teacher selected relation. - /// /// Vanvoljg, 18-Jul-19. ///------------------------------------------------------------------------------------------------- @@ -28,7 +14,6 @@ public class StudentTeacherSelectedRelation { ///------------------------------------------------------------------------------------------------- /// Gets or sets the identifier. - /// /// The identifier. ///------------------------------------------------------------------------------------------------- @@ -37,7 +22,6 @@ public class StudentTeacherSelectedRelation ///------------------------------------------------------------------------------------------------- /// Gets or sets the identifier of the trial request. - /// /// The identifier of the trial request. ///------------------------------------------------------------------------------------------------- @@ -45,7 +29,6 @@ public class StudentTeacherSelectedRelation ///------------------------------------------------------------------------------------------------- /// Gets or sets the identifier of the teacher. - /// /// The identifier of the teacher. ///------------------------------------------------------------------------------------------------- diff --git a/Models/TrialRequestModel.cs b/Models/TrialRequestModel.cs index a62d9e9..44a26d1 100644 --- a/Models/TrialRequestModel.cs +++ b/Models/TrialRequestModel.cs @@ -1,36 +1,20 @@ -///------------------------------------------------------------------------------------------------- -// file: Models\TrialRequestModel.cs -// -// summary: Implements the trial request model class -///------------------------------------------------------------------------------------------------- - using System.Collections; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; - -///------------------------------------------------------------------------------------------------- -// namespace: awsomAPI.Models -// -// summary: . -///------------------------------------------------------------------------------------------------- - namespace awsomAPI.Models { - [Table("TrialRequests")] - ///------------------------------------------------------------------------------------------------- /// A trial request. - /// /// Vanvoljg, 18-Jul-19. ///------------------------------------------------------------------------------------------------- + [Table("TrialRequests")] public class TrialRequest { ///------------------------------------------------------------------------------------------------- /// Gets or sets the identifier. - /// /// The identifier. ///------------------------------------------------------------------------------------------------- @@ -39,7 +23,6 @@ public class TrialRequest ///------------------------------------------------------------------------------------------------- /// Gets or sets the name of the parent. - /// /// The name of the parent. ///------------------------------------------------------------------------------------------------- @@ -48,7 +31,6 @@ public class TrialRequest ///------------------------------------------------------------------------------------------------- /// Gets or sets the name of the student. - /// /// The name of the student. ///------------------------------------------------------------------------------------------------- @@ -57,7 +39,6 @@ public class TrialRequest ///------------------------------------------------------------------------------------------------- /// Gets or sets the student birth date. - /// /// The student birth date. ///------------------------------------------------------------------------------------------------- @@ -65,7 +46,6 @@ public class TrialRequest ///------------------------------------------------------------------------------------------------- /// Gets or sets the email. - /// /// The email. ///------------------------------------------------------------------------------------------------- @@ -74,7 +54,6 @@ public class TrialRequest ///------------------------------------------------------------------------------------------------- /// Gets or sets the phone. - /// /// The phone. ///------------------------------------------------------------------------------------------------- @@ -82,7 +61,6 @@ public class TrialRequest ///------------------------------------------------------------------------------------------------- /// Gets or sets the address. - /// /// The address. ///------------------------------------------------------------------------------------------------- @@ -91,7 +69,6 @@ public class TrialRequest ///------------------------------------------------------------------------------------------------- /// Gets or sets the city. - /// /// The city. ///------------------------------------------------------------------------------------------------- @@ -100,7 +77,6 @@ public class TrialRequest ///------------------------------------------------------------------------------------------------- /// Gets or sets the zip code. - /// /// The zip code. ///------------------------------------------------------------------------------------------------- @@ -109,7 +85,6 @@ public class TrialRequest ///------------------------------------------------------------------------------------------------- /// Gets or sets the region. - /// /// The region. ///------------------------------------------------------------------------------------------------- @@ -118,7 +93,6 @@ public class TrialRequest ///------------------------------------------------------------------------------------------------- /// Gets or sets the instrument. - /// /// The instrument. ///------------------------------------------------------------------------------------------------- @@ -127,7 +101,6 @@ public class TrialRequest ///------------------------------------------------------------------------------------------------- /// Gets or sets the has instrument. - /// /// The has instrument. ///------------------------------------------------------------------------------------------------- @@ -135,7 +108,6 @@ public class TrialRequest ///------------------------------------------------------------------------------------------------- /// Gets or sets the availability. - /// /// The availability. ///------------------------------------------------------------------------------------------------- @@ -143,7 +115,6 @@ public class TrialRequest ///------------------------------------------------------------------------------------------------- /// Gets or sets the experience. - /// /// The experience. ///------------------------------------------------------------------------------------------------- @@ -151,7 +122,6 @@ public class TrialRequest ///------------------------------------------------------------------------------------------------- /// Gets or sets the notes. - /// /// The notes. ///------------------------------------------------------------------------------------------------- diff --git a/Models/UsersModel.cs b/Models/UsersModel.cs index 2c49e73..3d12f4e 100644 --- a/Models/UsersModel.cs +++ b/Models/UsersModel.cs @@ -1,25 +1,12 @@ -///------------------------------------------------------------------------------------------------- -// file: Models\UsersModel.cs -// -// summary: Implements the users model class -///------------------------------------------------------------------------------------------------- - using System.Collections; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; -///------------------------------------------------------------------------------------------------- -// namespace: awsomAPI.Models -// -// summary: . -///------------------------------------------------------------------------------------------------- - namespace awsomAPI.Models { ///------------------------------------------------------------------------------------------------- - /// An user. - /// + /// A user. /// Vanvoljg, 18-Jul-19. ///------------------------------------------------------------------------------------------------- @@ -28,7 +15,6 @@ public class User { ///------------------------------------------------------------------------------------------------- /// Gets or sets the identifier. - /// /// The identifier. ///------------------------------------------------------------------------------------------------- @@ -37,7 +23,6 @@ public class User ///------------------------------------------------------------------------------------------------- /// Gets or sets the name. - /// /// The name. ///------------------------------------------------------------------------------------------------- @@ -46,7 +31,6 @@ public class User ///------------------------------------------------------------------------------------------------- /// Gets or sets the email. - /// /// The email. ///------------------------------------------------------------------------------------------------- @@ -55,7 +39,6 @@ public class User ///------------------------------------------------------------------------------------------------- /// Gets or sets the role. - /// /// The role. ///------------------------------------------------------------------------------------------------- @@ -64,7 +47,6 @@ public class User ///------------------------------------------------------------------------------------------------- /// Gets or sets the password. - /// /// The password. ///------------------------------------------------------------------------------------------------- @@ -72,7 +54,6 @@ public class User ///------------------------------------------------------------------------------------------------- /// Gets or sets the region. - /// /// The region. ///------------------------------------------------------------------------------------------------- @@ -81,7 +62,6 @@ public class User ///------------------------------------------------------------------------------------------------- /// Gets or sets the address. - /// /// The address. ///------------------------------------------------------------------------------------------------- @@ -89,7 +69,6 @@ public class User ///------------------------------------------------------------------------------------------------- /// Gets or sets the city. - /// /// The city. ///------------------------------------------------------------------------------------------------- @@ -97,7 +76,6 @@ public class User ///------------------------------------------------------------------------------------------------- /// Gets or sets the zip. - /// /// The zip. ///------------------------------------------------------------------------------------------------- @@ -105,7 +83,6 @@ public class User ///------------------------------------------------------------------------------------------------- /// Gets or sets the token. - /// /// The token. ///------------------------------------------------------------------------------------------------- diff --git a/Program.cs b/Program.cs index b1fb692..1e05a10 100644 --- a/Program.cs +++ b/Program.cs @@ -1,10 +1,4 @@ -///------------------------------------------------------------------------------------------------- -// file: Program.cs -// -// summary: Implements the program class -///------------------------------------------------------------------------------------------------- - -using System; +using System; using System.Collections.Generic; using System.IO; using System.Linq; @@ -14,22 +8,18 @@ using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Logging; - -///------------------------------------------------------------------------------------------------- -// namespace: awsomAPI -// -// summary: . -///------------------------------------------------------------------------------------------------- - namespace awsomAPI { + ///------------------------------------------------------------------------------------------------- + /// A program. + /// Vanvoljg, 18-Jul-19. + ///------------------------------------------------------------------------------------------------- + public class Program { ///------------------------------------------------------------------------------------------------- /// Main entry-point for this application. - /// /// Vanvoljg, 18-Jul-19. - /// /// An array of command-line argument strings. ///------------------------------------------------------------------------------------------------- @@ -40,11 +30,8 @@ public static void Main(string[] args) ///------------------------------------------------------------------------------------------------- /// Creates web host builder. - /// /// Vanvoljg, 18-Jul-19. - /// /// An array of command-line argument strings. - /// /// The new web host builder. ///------------------------------------------------------------------------------------------------- diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json index 6e45d61..6c0592c 100644 --- a/Properties/launchSettings.json +++ b/Properties/launchSettings.json @@ -1,13 +1,13 @@ -{ - "$schema": "http://json.schemastore.org/launchsettings.json", +{ "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, + "windowsAuthentication": false, + "anonymousAuthentication": true, "iisExpress": { "applicationUrl": "http://localhost:54721", "sslPort": 44340 } }, + "$schema": "http://json.schemastore.org/launchsettings.json", "profiles": { "IIS Express": { "commandName": "IISExpress", @@ -19,12 +19,11 @@ }, "awsomAPI": { "commandName": "Project", - "launchBrowser": true, "launchUrl": "api/values", - "applicationUrl": "https://localhost:5001;http://localhost:5000", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" - } + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" } } } \ No newline at end of file diff --git a/Startup.cs b/Startup.cs index 24b2a87..a87c12b 100644 --- a/Startup.cs +++ b/Startup.cs @@ -1,10 +1,4 @@ -///------------------------------------------------------------------------------------------------- -// file: Startup.cs -// -// summary: Implements the startup class. -///------------------------------------------------------------------------------------------------- - -using System; +using System; using System.Collections; using System.Collections.Generic; using System.Text; @@ -25,26 +19,27 @@ //Morgana - JWT Auth Functionality found here https://jasonwatmore.com/post/2019/01/08/aspnet-core-22-role-based-authorization-tutorial-with-example-api#app-settings-json. - -///------------------------------------------------------------------------------------------------- -// namespace: awsomAPI -// -// summary: . -///------------------------------------------------------------------------------------------------- - namespace awsomAPI { + ///------------------------------------------------------------------------------------------------- + /// A startup. + /// Vanvoljg, 18-Jul-19. + ///------------------------------------------------------------------------------------------------- + public class Startup { private string _secret = null; + ///------------------------------------------------------------------------------------------------- + /// Gets the configuration. + /// The configuration. + ///------------------------------------------------------------------------------------------------- + public IConfiguration Configuration { get; } ///------------------------------------------------------------------------------------------------- /// Constructor. - /// /// Vanvoljg, 18-Jul-19. - /// /// The configuration. ///------------------------------------------------------------------------------------------------- @@ -55,12 +50,9 @@ public Startup(IConfiguration configuration) ///------------------------------------------------------------------------------------------------- /// Configure services. - /// /// Vanvoljg, 18-Jul-19. - /// /// The services. ///------------------------------------------------------------------------------------------------- - // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { @@ -93,13 +85,10 @@ public void ConfigureServices(IServiceCollection services) ///------------------------------------------------------------------------------------------------- /// Configures. - /// /// Vanvoljg, 18-Jul-19. - /// /// The application. /// The environment. ///------------------------------------------------------------------------------------------------- - // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env) { diff --git a/awsomAPI.csproj b/awsomAPI.csproj index a8fa723..ff05b8e 100644 --- a/awsomAPI.csproj +++ b/awsomAPI.csproj @@ -1,10 +1,11 @@ - + netcoreapp2.2 fabc38fd-f85d-4e0d-92e8-94ad286b1580 InProcess awsomAPI + Awsom Music School diff --git a/awsomAPI.xml b/awsomAPI.xml new file mode 100644 index 0000000..9748bda --- /dev/null +++ b/awsomAPI.xml @@ -0,0 +1,386 @@ + + + + awsomAPI + + + + ------------------------------------------------------------------------------------------------- + Constructor. + Vanvoljg, 18-Jul-19. + The context. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + + (An Action that handles HTTP GET requests) (Restricted to Roles = Role.Admin) gets trial + requests. + + Vanvoljg, 18-Jul-19. + An asynchronous result that yields the trial requests. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + + (An Action that handles HTTP GET requests) (Restricted to Roles = Role.Admin + "," + + Role.User) trial request detail view. + + Vanvoljg, 18-Jul-19. + The identifier. + An asynchronous result that yields an ActionResult<TrialRequest>. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + + (An Action that handles HTTP POST requests) (Restricted to Roles = Role.Admin + "," + + Role.User) select student. + + Vanvoljg, 18-Jul-19. + The selection. + An asynchronous result that yields an ActionResult. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + (An Action that handles HTTP POST requests) adds a new trial request. + + Vanvoljg, 18-Jul-19. + + The trial request. + + An asynchronous result that yields an ActionResult<TrialRequest>. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + A controller for handling users. + Vanvoljg, 18-Jul-19. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Constructor. + Vanvoljg, 18-Jul-19. + The context. + The configuration. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + + (An Action that handles HTTP GET requests) (Restricted to Roles = Role.Admin) gets the + users. + + Vanvoljg, 18-Jul-19. + An asynchronous result that yields all the users. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + (An Action that handles HTTP GET requests) gets a user. + Vanvoljg, 18-Jul-19. + The identifier. + An asynchronous result that yields the user. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + + (An Action that handles HTTP POST requests) signins the given user from frontend. + + Vanvoljg, 18-Jul-19. + The user from frontend. + An asynchronous result that yields an ActionResult<User>. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + (An Action that handles HTTP POST requests) adds a user. + Vanvoljg, 18-Jul-19. + The user. + An asynchronous result that yields an ActionResult<User>. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + An awsom API context. + Vanvoljg, 18-Jul-19. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Constructor. + Vanvoljg, 18-Jul-19. + Options for controlling the operation. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the users. + The users. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the trial requests. + The trial requests. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the teacher selections. + The teacher selections. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + A role model. + Vanvoljg, 18-Jul-19. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + A student teacher selected relation. + Vanvoljg, 18-Jul-19. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the identifier. + The identifier. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the identifier of the trial request. + The identifier of the trial request. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the identifier of the teacher. + The identifier of the teacher. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + A trial request. + Vanvoljg, 18-Jul-19. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the identifier. + The identifier. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the name of the parent. + The name of the parent. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the name of the student. + The name of the student. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the student birth date. + The student birth date. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the email. + The email. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the phone. + The phone. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the address. + The address. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the city. + The city. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the zip code. + The zip code. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the region. + The region. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the instrument. + The instrument. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the has instrument. + The has instrument. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the availability. + The availability. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the experience. + The experience. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the notes. + The notes. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + A user. + Vanvoljg, 18-Jul-19. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the identifier. + The identifier. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the name. + The name. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the email. + The email. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the role. + The role. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the password. + The password. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the region. + The region. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the address. + The address. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the city. + The city. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the zip. + The zip. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets or sets the token. + The token. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + A program. + Vanvoljg, 18-Jul-19. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Main entry-point for this application. + Vanvoljg, 18-Jul-19. + An array of command-line argument strings. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Creates web host builder. + Vanvoljg, 18-Jul-19. + An array of command-line argument strings. + The new web host builder. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + A startup. + Vanvoljg, 18-Jul-19. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Gets the configuration. + The configuration. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Constructor. + Vanvoljg, 18-Jul-19. + The configuration. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Configure services. + Vanvoljg, 18-Jul-19. + The services. + ------------------------------------------------------------------------------------------------- + + + ------------------------------------------------------------------------------------------------- + Configures. + Vanvoljg, 18-Jul-19. + The application. + The environment. + ------------------------------------------------------------------------------------------------- + + + From 45065fa8112349ab19f64d390818b3f483e867e9 Mon Sep 17 00:00:00 2001 From: Jesse Van Volkinburg Date: Fri, 19 Jul 2019 12:42:20 -0700 Subject: [PATCH 33/34] update README and xml doc location --- README.md | 64 ++++++++++++++++++++++++++++++++++++++++++++++++- awsomAPI.csproj | 2 +- 2 files changed, 64 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 297bbc2..ade6e78 100644 --- a/README.md +++ b/README.md @@ -1 +1,63 @@ -# back-end-api-server \ No newline at end of file +# Awsom Scheduler API (back-end) + +This is the back-end API code for the Awsom Scheduler, written in C# .NET Core 2.2. + +The project uses Entity Framework Core for database access and modification and uses a Microsoft SQL Server database. + +## Setup and Deployment + +### Requirements +- Server capable of hosting a .NET Core 2.2 application +- Microsoft SQL Server (and connection string) + +### Environment / Configuration variables +- `Secret` - Secret key for securely signing JSON Web Tokens +- `ConnectionStrings:ProductionConnection` - Connection string for the running SQL server + +### Deployment + +#### 1. GitHub +1. Navigate to our GitHub page for the back-end code + - [Awsom Scheduler Back-End Repo](https://github.com/cf-awsom-scheduler/back-end-api-server) +2. Fork the repository + +**The `deploy` branch is the one which is used for deployment.** + +#### 2. Azure +1. Navigate to the Azure Dashboard, then to App Services +2. `Add` a new app +3. Select a `Subscription` and `Resource Group` +4. Enter an instance name +5. For the remaining options, choose the following + - `Publish`: Code + - `Runtime stack`: .NET Core 2.2 + - `Operating system`: Windows (preferred) or Linux + - `Region`: (as desired) +6. Choose an `App Service Plan` +7. Click `Review and create` +8. (Wait for the app to deploy on Azure... probably get a cup of coffee or tea) +9. Navigate into the newly-created app's dashboard and then click `Deployment Center` from the menu +10. Choose `GitHub` for deployment and click `Continue` + - If you haven't done it before, you will need to provide Azure with access to your GitHub repositories +12. Choose `App Service build service` and click `Continue` +13. Find the forked repository you created above + - `Organization` will be your username or the organization you used create the fork + - `Repository` will be the forked repo + - `Branch` will be `deploy` +14. Click `Continue` +15. Click `Finish` +16. On the app dashboard (left side), click `Configuration` +17. In `Application Settings`, create a new application setting named `Secret` with a value of your choosing, then click `OK` +18. In `Connection Strings`, create a new connection string named `ProductionConnection` with a value that will let you connect to your running Microsoft SQL Server, then click `OK` + - The SQL database will need to be configured using the code-first schemas in this project. This is a process which is outside the scope of this document. + +**If everything above succeeds, the app is now deployed** + +## Authors +- Morgana Spake +- Jesse Van Volkinburg +- Bonnie Wang +- Joé Jemmely + +## Developer documentation +- [Awsom Scheduler Documentation](https://cf-awsom-scheduler.github.io/back-end-dev-docs/) \ No newline at end of file diff --git a/awsomAPI.csproj b/awsomAPI.csproj index ff05b8e..8124df7 100644 --- a/awsomAPI.csproj +++ b/awsomAPI.csproj @@ -13,7 +13,7 @@ - D:\cf\back-end-api-server\awsomAPI.xml + D:\cf\back-end\back-end-api-server\awsomAPI.xml From a024cae06d92750e26a6e3a9f29f804916b2cba3 Mon Sep 17 00:00:00 2001 From: Jesse Van Volkinburg <42327429+vanvoljg@users.noreply.github.com> Date: Fri, 19 Jul 2019 20:03:25 -0700 Subject: [PATCH 34/34] Update README.md --- README.md | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 63 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 297bbc2..1cde0a8 100644 --- a/README.md +++ b/README.md @@ -1 +1,63 @@ -# back-end-api-server \ No newline at end of file +# Awsom Scheduler API (back-end) + +This is the back-end API code for the Awsom Scheduler, written in C# .NET Core 2.2. + +The project uses Entity Framework Core for database access and modification and uses a Microsoft SQL Server database. + +## Setup and Deployment + +### Requirements +- Server capable of hosting a .NET Core 2.2 application +- Microsoft SQL Server (and connection string) + +### Environment / Configuration variables +- `Secret` - Secret key for securely signing JSON Web Tokens +- `ConnectionStrings:ProductionConnection` - Connection string for the running SQL server + +### Deployment + +#### 1. GitHub +1. Navigate to our GitHub page for the back-end code + - [Awsom Scheduler Back-End Repo](https://github.com/cf-awsom-scheduler/back-end-api-server) +2. Fork the repository + +**The `deploy` branch is the one which is used for deployment.** + +#### 2. Azure +1. Navigate to the Azure Dashboard, then to App Services +2. `Add` a new app +3. Select a `Subscription` and `Resource Group` +4. Enter an instance name +5. For the remaining options, choose the following + - `Publish`: Code + - `Runtime stack`: .NET Core 2.2 + - `Operating system`: Windows (preferred) or Linux + - `Region`: (as desired) +6. Choose an `App Service Plan` +7. Click `Review and create` +8. (Wait for the app to deploy on Azure... probably get a cup of coffee or tea) +9. Navigate into the newly-created app's dashboard and then click `Deployment Center` from the menu +10. Choose `GitHub` for deployment and click `Continue` + - If you haven't done it before, you will need to provide Azure with access to your GitHub repositories +12. Choose `App Service build service` and click `Continue` +13. Find the forked repository you created above + - `Organization` will be your username or the organization you used create the fork + - `Repository` will be the forked repo + - `Branch` will be `deploy` +14. Click `Continue` +15. Click `Finish` +16. On the app dashboard (left side), click `Configuration` +17. In `Application Settings`, create a new application setting named `Secret` with a value of your choosing, then click `OK` +18. In `Connection Strings`, create a new connection string named `ProductionConnection` with a value that will let you connect to your running Microsoft SQL Server, then click `OK` + - The SQL database will need to be configured using the code-first schemas in this project. This is a process which is outside the scope of this document. + +**If everything above succeeds, the app is now deployed** + +## Authors +- Morgana Spake +- Jesse Van Volkinburg +- Bonnie Wang +- Joé Jemmely + +## Developer documentation +- [Awsom Scheduler Documentation](https://cf-awsom-scheduler.github.io/back-end-dev-docs/)