From e2f7377e97a61234591489c1821a942ac906ddbf Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 15 Oct 2019 23:41:54 -0400 Subject: [PATCH 01/36] initial commit. Restaurant/Review Models & Controller created --- .gitignore | 340 ++++++++++++++++++ README.md | 22 ++ RestaurantReview/RestaurantReview.sln | 31 ++ .../Controllers/RestaurantsController.cs | 26 ++ .../Controllers/ReviewsController.cs | 39 ++ .../RestaurantReview/Models/Restaurant.cs | 14 + .../RestaurantReview/Models/Review.cs | 11 + RestaurantReview/RestaurantReview/Program.cs | 24 ++ .../Properties/launchSettings.json | 30 ++ .../RestaurantReview/RestaurantReview.csproj | 14 + RestaurantReview/RestaurantReview/Startup.cs | 48 +++ .../appsettings.Development.json | 9 + .../RestaurantReview/appsettings.json | 8 + .../RestaurantReviewTests.csproj | 15 + .../RestaurantReviewTests/UnitTest1.cs | 14 + 15 files changed, 645 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 RestaurantReview/RestaurantReview.sln create mode 100644 RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs create mode 100644 RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs create mode 100644 RestaurantReview/RestaurantReview/Models/Restaurant.cs create mode 100644 RestaurantReview/RestaurantReview/Models/Review.cs create mode 100644 RestaurantReview/RestaurantReview/Program.cs create mode 100644 RestaurantReview/RestaurantReview/Properties/launchSettings.json create mode 100644 RestaurantReview/RestaurantReview/RestaurantReview.csproj create mode 100644 RestaurantReview/RestaurantReview/Startup.cs create mode 100644 RestaurantReview/RestaurantReview/appsettings.Development.json create mode 100644 RestaurantReview/RestaurantReview/appsettings.json create mode 100644 RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj create mode 100644 RestaurantReview/RestaurantReviewTests/UnitTest1.cs diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..4ce6fdde --- /dev/null +++ b/.gitignore @@ -0,0 +1,340 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# 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 + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.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 + +# Visual Studio Trace Files +*.e2e + +# 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 + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# 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 +# Note: 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 +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable 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 +*.appx + +# 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 +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# 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 +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- Backup*.rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# 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 personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# BeatPulse healthcheck temp database +healthchecksdb \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 00000000..c506bb5e --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +RestaurantReviews +================= + +The Problem +-------------- +We are in the midst of building a mobile application that will let restaurant patrons rate the restaurant in which they are eating. As part of the build, we need to develop a web API that will accept and store the ratings and other sundry data from a publicly accessible interface. + +For this project, we would like you to build this API. Feel free to add your own twists and ideas to what type of data we should collect and return, but at a minimum your API should be able to: + +1. Get a list of restaurants by city +2. Post a restaurant that is not in the database +3. Post a review for a restaurant +4. Get of a list of reviews by user +5. Delete a review + +The Fine Print +-------------- +Please use whatever techniques you feel are applicable to solve the problem. We suggest that you approach this exercise as if this code was part of a larger system. The end result should be representative of your abilities and style. We prefer that you submit your solution in a language targeting the .NET Framework to help us better evaluate your code. + +Please fork this repository. If your solution involves code auto generated by a development tool, please commit it separately from your own work. When you have completed your solution, please issue a pull request to notify us that you are ready. + +Have fun. diff --git a/RestaurantReview/RestaurantReview.sln b/RestaurantReview/RestaurantReview.sln new file mode 100644 index 00000000..ca5187f6 --- /dev/null +++ b/RestaurantReview/RestaurantReview.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29009.5 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestaurantReview", "RestaurantReview\RestaurantReview.csproj", "{8360EA5F-0352-4385-8CAD-7404D91D7B0A}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestaurantReviewTests", "RestaurantReviewTests\RestaurantReviewTests.csproj", "{81113AFA-4B8B-43CA-9632-2787FEF30F5A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8360EA5F-0352-4385-8CAD-7404D91D7B0A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8360EA5F-0352-4385-8CAD-7404D91D7B0A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8360EA5F-0352-4385-8CAD-7404D91D7B0A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8360EA5F-0352-4385-8CAD-7404D91D7B0A}.Release|Any CPU.Build.0 = Release|Any CPU + {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {876CA238-341F-46DB-BD6C-AE2A4DDBB5F8} + EndGlobalSection +EndGlobal diff --git a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs new file mode 100644 index 00000000..148ed8df --- /dev/null +++ b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; + +namespace RestaurantReview.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class RestaurantsController : ControllerBase + { + // GET api/values + [HttpGet] + public ActionResult> Get() + { + return new string[] { "value1", "value2" }; + } + + // POST api/values + [HttpPost] + public void Post([FromBody] string value) + { + } + } +} diff --git a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs new file mode 100644 index 00000000..6e13b3a7 --- /dev/null +++ b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; + +namespace RestaurantReview.Controllers + { + [Route("api/[controller]")] + [ApiController] + public class ReviewsController : ControllerBase + { + // GET api/values + [HttpGet] + public ActionResult> Get() + { + return new string[] { "value1", "value2" }; + } + + // POST api/values + [HttpPost] + public void Post([FromBody] string value) + { + } + + // PUT api/values/5 + [HttpPut("{id}")] + public void Put(int id, [FromBody] string value) + { + } + + // DELETE api/values/5 + [HttpDelete("{id}")] + public void Delete(int id) + { + } + } + } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/Restaurant.cs b/RestaurantReview/RestaurantReview/Models/Restaurant.cs new file mode 100644 index 00000000..8e390ce2 --- /dev/null +++ b/RestaurantReview/RestaurantReview/Models/Restaurant.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace RestaurantReview.Models +{ + public class Restaurant + { + public int Id { get; set; } + public string Name { get; set; } + public string City { get; set; } + } +} diff --git a/RestaurantReview/RestaurantReview/Models/Review.cs b/RestaurantReview/RestaurantReview/Models/Review.cs new file mode 100644 index 00000000..3ec29c75 --- /dev/null +++ b/RestaurantReview/RestaurantReview/Models/Review.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace RestaurantReview.Models +{ + public class Review + { + } +} diff --git a/RestaurantReview/RestaurantReview/Program.cs b/RestaurantReview/RestaurantReview/Program.cs new file mode 100644 index 00000000..ee41691e --- /dev/null +++ b/RestaurantReview/RestaurantReview/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 RestaurantReview +{ + 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/RestaurantReview/RestaurantReview/Properties/launchSettings.json b/RestaurantReview/RestaurantReview/Properties/launchSettings.json new file mode 100644 index 00000000..b86bd7ec --- /dev/null +++ b/RestaurantReview/RestaurantReview/Properties/launchSettings.json @@ -0,0 +1,30 @@ +{ + "$schema": "http://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:50083", + "sslPort": 44353 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "api/values", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "RestaurantReview": { + "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/RestaurantReview/RestaurantReview/RestaurantReview.csproj b/RestaurantReview/RestaurantReview/RestaurantReview.csproj new file mode 100644 index 00000000..797d7135 --- /dev/null +++ b/RestaurantReview/RestaurantReview/RestaurantReview.csproj @@ -0,0 +1,14 @@ + + + + netcoreapp2.2 + InProcess + + + + + + + + + diff --git a/RestaurantReview/RestaurantReview/Startup.cs b/RestaurantReview/RestaurantReview/Startup.cs new file mode 100644 index 00000000..12b3ecea --- /dev/null +++ b/RestaurantReview/RestaurantReview/Startup.cs @@ -0,0 +1,48 @@ +using System; +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.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using Microsoft.Extensions.Options; + +namespace RestaurantReview +{ + 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.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/RestaurantReview/RestaurantReview/appsettings.Development.json b/RestaurantReview/RestaurantReview/appsettings.Development.json new file mode 100644 index 00000000..e203e940 --- /dev/null +++ b/RestaurantReview/RestaurantReview/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Debug", + "System": "Information", + "Microsoft": "Information" + } + } +} diff --git a/RestaurantReview/RestaurantReview/appsettings.json b/RestaurantReview/RestaurantReview/appsettings.json new file mode 100644 index 00000000..def9159a --- /dev/null +++ b/RestaurantReview/RestaurantReview/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj b/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj new file mode 100644 index 00000000..501a5ce5 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj @@ -0,0 +1,15 @@ + + + + netcoreapp2.2 + + false + + + + + + + + + diff --git a/RestaurantReview/RestaurantReviewTests/UnitTest1.cs b/RestaurantReview/RestaurantReviewTests/UnitTest1.cs new file mode 100644 index 00000000..76cbe878 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/UnitTest1.cs @@ -0,0 +1,14 @@ +using System; +using Xunit; + +namespace RestaurantReviewTests +{ + public class UnitTest1 + { + [Fact] + public void Test1() + { + //var c = new Controller(); + } + } +} From a6a53e01bae48e5e39a38ee1f563f72ed0e2c262 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 15 Oct 2019 23:49:10 -0400 Subject: [PATCH 02/36] review model added --- RestaurantReview/RestaurantReview/Models/Review.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/RestaurantReview/RestaurantReview/Models/Review.cs b/RestaurantReview/RestaurantReview/Models/Review.cs index 3ec29c75..a5d8e31e 100644 --- a/RestaurantReview/RestaurantReview/Models/Review.cs +++ b/RestaurantReview/RestaurantReview/Models/Review.cs @@ -7,5 +7,8 @@ namespace RestaurantReview.Models { public class Review { + public int ReviewId { get; set; } + public Restaurant Restaurant { get; set; } + public string User { get; set; } } } From e8a797cf746582ed55af8e9db27647d67575081a Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 16 Oct 2019 20:14:32 -0400 Subject: [PATCH 03/36] added DB setup script --- .../Controllers/RestaurantsController.cs | 52 ++++++++++++++++++- .../Controllers/ReviewsController.cs | 51 +++++++++--------- .../RestaurantReview/DB/dbsetup.sql | 35 +++++++++++++ .../RestaurantReview/Models/Restaurant.cs | 2 +- 4 files changed, 112 insertions(+), 28 deletions(-) create mode 100644 RestaurantReview/RestaurantReview/DB/dbsetup.sql diff --git a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs index 148ed8df..9e0792eb 100644 --- a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs @@ -3,6 +3,7 @@ using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; +using RestaurantReview.Models; namespace RestaurantReview.Controllers { @@ -12,9 +13,56 @@ public class RestaurantsController : ControllerBase { // GET api/values [HttpGet] - public ActionResult> Get() + public ActionResult> Get() { - return new string[] { "value1", "value2" }; + return new List() + { + new Restaurant{ + RestaurantId = 1, + City = "brooklyn", + Name = "Martys" + }, + new Restaurant{ + RestaurantId = 2, + City = "brooklyn", + Name = "Martys" + }, + new Restaurant{ + RestaurantId = 3, + City = "chicago", + Name = "Martys" + }, + new Restaurant{ + RestaurantId = 4, + City = "boston", + Name = "Martys" + }, + new Restaurant{ + RestaurantId = 5, + City = "pittsburgh", + Name = "Martys" + }, + new Restaurant{ + RestaurantId = 6, + City = "chicago", + Name = "Martys" + }, + new Restaurant{ + RestaurantId = 7, + City = "boston", + Name = "Martys" + }, + new Restaurant{ + RestaurantId = 8, + City = "chicago", + Name = "Martys" + }, + new Restaurant{ + RestaurantId = 9, + City = "pittsburgh", + Name = "Martys" + } + }.FindAll(restaurant => restaurant.City.Equals("brooklyn")); } // POST api/values diff --git a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs index 6e13b3a7..3b99f8f4 100644 --- a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs @@ -6,34 +6,35 @@ using Microsoft.AspNetCore.Mvc; namespace RestaurantReview.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class ReviewsController : ControllerBase { - [Route("api/[controller]")] - [ApiController] - public class ReviewsController : ControllerBase + // GET api/values + [HttpGet] + [Route("api/{id}")] + public ActionResult> Get() { - // GET api/values - [HttpGet] - public ActionResult> Get() - { - return new string[] { "value1", "value2" }; - } + return new string[] { "value1", "value2" }; + } - // POST api/values - [HttpPost] - public void Post([FromBody] string value) - { - } + // POST api/values + [HttpPost] + public void Post([FromBody] string value) + { + } - // PUT api/values/5 - [HttpPut("{id}")] - public void Put(int id, [FromBody] string value) - { - } + // PUT api/values/5 + [HttpPut("{id}")] + public void Put(int id, [FromBody] string value) + { + } - // DELETE api/values/5 - [HttpDelete("{id}")] - public void Delete(int id) - { - } + // DELETE api/values/5 + [HttpDelete("{id}")] + public void Delete(int id) + { } - } \ No newline at end of file + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/DB/dbsetup.sql b/RestaurantReview/RestaurantReview/DB/dbsetup.sql new file mode 100644 index 00000000..c544c2f6 --- /dev/null +++ b/RestaurantReview/RestaurantReview/DB/dbsetup.sql @@ -0,0 +1,35 @@ +use master; +IF DB_ID('RestaurantReviewManager') IS NOT NULL + DROP database RestaurantReviewManager + +create database RestaurantReviewManager; +IF DB_ID('RestaurantReviewManager') IS NOT NULL + use RestaurantReviewManager; + + +CREATE TABLE Restaurants( + RestaurantId int identity(1,1) NOT NULL, + Name VARCHAR(50) NOT NULL, + City VARCHAR(50) NOT NULL, + + CONSTRAINT PK_RestaurantId PRIMARY KEY (RestaurantId) +); + +CREATE TABLE Users( + UserId INT IDENTITY(1,1) NOT NULL, + UserName VARCHAR(50) NOT NULL, + + CONSTRAINT PK_UserId PRIMARY KEY (UserId) +); + +CREATE TABLE Reviews( + ReviewId int identity(1,1) NOT NULL, + RestaurantId INT NOT NULL, + UserId INT NOT NULL, + ReviewText VARCHAR(100) NOT NULL, + + CONSTRAINT PK_ReviewId PRIMARY KEY (ReviewId), + CONSTRAINT FK_Reviews_RestaurantId FOREIGN KEY (RestaurantId) REFERENCES Restaurants(RestaurantId), + CONSTRAINT FK_Reviews_UserId FOREIGN KEY (UserId) REFERENCES Users(UserId) + +); \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/Restaurant.cs b/RestaurantReview/RestaurantReview/Models/Restaurant.cs index 8e390ce2..28bc6c65 100644 --- a/RestaurantReview/RestaurantReview/Models/Restaurant.cs +++ b/RestaurantReview/RestaurantReview/Models/Restaurant.cs @@ -7,7 +7,7 @@ namespace RestaurantReview.Models { public class Restaurant { - public int Id { get; set; } + public int RestaurantId { get; set; } public string Name { get; set; } public string City { get; set; } } From 890c1346b6e064461bbb302a05e7c1a2c0f71fd8 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 16 Oct 2019 20:35:55 -0400 Subject: [PATCH 04/36] added DB seed data and sql query file --- RestaurantReview/RestaurantReview/DB/queryDB.sql | 7 +++++++ RestaurantReview/RestaurantReview/DB/seedDB.sql | 1 + 2 files changed, 8 insertions(+) create mode 100644 RestaurantReview/RestaurantReview/DB/queryDB.sql create mode 100644 RestaurantReview/RestaurantReview/DB/seedDB.sql diff --git a/RestaurantReview/RestaurantReview/DB/queryDB.sql b/RestaurantReview/RestaurantReview/DB/queryDB.sql new file mode 100644 index 00000000..3ab163d0 --- /dev/null +++ b/RestaurantReview/RestaurantReview/DB/queryDB.sql @@ -0,0 +1,7 @@ +SELECT * FROM Restaurants +SELECT * FROM Users +SELECT * FROM Reviews + +SELECT * FROM Reviews +JOIN Restaurants on Reviews.RestaurantId = Restaurants.RestaurantId +JOIN Users on Reviews.UserId = Users.UserId diff --git a/RestaurantReview/RestaurantReview/DB/seedDB.sql b/RestaurantReview/RestaurantReview/DB/seedDB.sql new file mode 100644 index 00000000..5f282702 --- /dev/null +++ b/RestaurantReview/RestaurantReview/DB/seedDB.sql @@ -0,0 +1 @@ + \ No newline at end of file From 81bfb79a30bfcb54bc46e363e94b8fbd2efb5876 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 16 Oct 2019 20:37:38 -0400 Subject: [PATCH 05/36] added db seed data file --- .../RestaurantReview/DB/seedDB.sql | 67 ++++++++++++++++++- 1 file changed, 66 insertions(+), 1 deletion(-) diff --git a/RestaurantReview/RestaurantReview/DB/seedDB.sql b/RestaurantReview/RestaurantReview/DB/seedDB.sql index 5f282702..544db485 100644 --- a/RestaurantReview/RestaurantReview/DB/seedDB.sql +++ b/RestaurantReview/RestaurantReview/DB/seedDB.sql @@ -1 +1,66 @@ - \ No newline at end of file +INSERT INTO RESTAURANTS VALUES('Tonys', 'Boston'); +INSERT INTO RESTAURANTS VALUES('Max', 'Boston'); +INSERT INTO RESTAURANTS VALUES('Joint', 'New York'); +INSERT INTO RESTAURANTS VALUES('Hut', 'New York'); +INSERT INTO RESTAURANTS VALUES('The Cow', 'Pittsburgh'); +INSERT INTO RESTAURANTS VALUES('Curds', 'Pittsburgh'); +INSERT INTO RESTAURANTS VALUES('Dunkin Nonuts', 'Chicago'); +INSERT INTO RESTAURANTS VALUES('Flippin Pancakes', 'Chicago'); +INSERT INTO RESTAURANTS VALUES('Deli', 'Los Angeles'); +INSERT INTO RESTAURANTS VALUES('Pizzeria', 'Los Angeles'); + +INSERT INTO USERS(UserName) VALUES('user1') +INSERT INTO USERS(UserName) VALUES('user2') +INSERT INTO USERS(UserName) VALUES('user3') +INSERT INTO USERS(UserName) VALUES('user4') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(1, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(1, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(1, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(1, 4, 'Restaurant is subpar') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(2, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(2, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(2, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(2, 4, 'Restaurant is subpar') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(3, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(3, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(3, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(3, 4, 'Restaurant is subpar') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(4, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(4, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(4, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(4, 4, 'Restaurant is subpar') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(5, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(5, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(5, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(5, 4, 'Restaurant is subpar') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(6, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(6, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(6, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(6, 4, 'Restaurant is subpar') + + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(7, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(7, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(7, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(7, 4, 'Restaurant is subpar') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(8, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(8, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(8, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(8, 4, 'Restaurant is subpar') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(9, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(9, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(9, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(9, 4, 'Restaurant is subpar') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(10, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(10, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(10, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(10, 4, 'Restaurant is subpar') \ No newline at end of file From b0a1cd0cb9c5f2673542064508ef26ac23ab874f Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 16 Oct 2019 23:01:37 -0400 Subject: [PATCH 06/36] added dal for restaurants and reviews, restaurants has get by city and post new, reviews has get all reviews and reviews controller filters it to the user in the parameter --- .../Controllers/RestaurantsController.cs | 58 +++---------------- .../Controllers/ReviewsController.cs | 10 ++-- .../RestaurantReview/DAL/RestaurantsDAL.cs | 49 ++++++++++++++++ .../RestaurantReview/DAL/ReviewsDAL.cs | 57 ++++++++++++++++++ .../RestaurantReview/Models/Review.cs | 3 +- .../RestaurantReview/Models/User.cs | 13 +++++ .../RestaurantReview/RestaurantReview.csproj | 6 +- 7 files changed, 139 insertions(+), 57 deletions(-) create mode 100644 RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs create mode 100644 RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs create mode 100644 RestaurantReview/RestaurantReview/Models/User.cs diff --git a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs index 9e0792eb..881eb973 100644 --- a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs @@ -3,6 +3,7 @@ using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; +using RestaurantReview.DAL; using RestaurantReview.Models; namespace RestaurantReview.Controllers @@ -12,63 +13,18 @@ namespace RestaurantReview.Controllers public class RestaurantsController : ControllerBase { // GET api/values - [HttpGet] - public ActionResult> Get() + [HttpGet("{city}")] + public ActionResult> Get(string city) { - return new List() - { - new Restaurant{ - RestaurantId = 1, - City = "brooklyn", - Name = "Martys" - }, - new Restaurant{ - RestaurantId = 2, - City = "brooklyn", - Name = "Martys" - }, - new Restaurant{ - RestaurantId = 3, - City = "chicago", - Name = "Martys" - }, - new Restaurant{ - RestaurantId = 4, - City = "boston", - Name = "Martys" - }, - new Restaurant{ - RestaurantId = 5, - City = "pittsburgh", - Name = "Martys" - }, - new Restaurant{ - RestaurantId = 6, - City = "chicago", - Name = "Martys" - }, - new Restaurant{ - RestaurantId = 7, - City = "boston", - Name = "Martys" - }, - new Restaurant{ - RestaurantId = 8, - City = "chicago", - Name = "Martys" - }, - new Restaurant{ - RestaurantId = 9, - City = "pittsburgh", - Name = "Martys" - } - }.FindAll(restaurant => restaurant.City.Equals("brooklyn")); + return new RestaurantsDAL().GetRestaurants() + .FindAll(restaurant => restaurant.City.Equals(city)); } // POST api/values [HttpPost] - public void Post([FromBody] string value) + public void Post([FromBody] Restaurant restaurant) { + new RestaurantsDAL().PostRestaurant(restaurant); } } } diff --git a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs index 3b99f8f4..0f894665 100644 --- a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs @@ -4,6 +4,8 @@ using System.Threading.Tasks; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; +using RestaurantReview.DAL; +using RestaurantReview.Models; namespace RestaurantReview.Controllers { @@ -12,11 +14,11 @@ namespace RestaurantReview.Controllers public class ReviewsController : ControllerBase { // GET api/values - [HttpGet] - [Route("api/{id}")] - public ActionResult> Get() + [HttpGet("{user}")] + + public ActionResult> Get(string user) { - return new string[] { "value1", "value2" }; + return new ReviewsDAL().GetAllReviews().FindAll(review => review.User.UserName.Equals(user)); } // POST api/values diff --git a/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs new file mode 100644 index 00000000..1f244189 --- /dev/null +++ b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs @@ -0,0 +1,49 @@ +using RestaurantReview.Models; +using System; +using System.Collections.Generic; +using System.Data.SqlClient; +using System.Linq; +using System.Threading.Tasks; + +namespace RestaurantReview.DAL +{ + public class RestaurantsDAL + { + public List GetRestaurants() + { + List restaurants = new List(); + string connData; + connData = @"Data Source=DESKTOP-B54NHFS ; Initial Catalog=RestaurantReviewManager; Integrated Security=SSPI;"; + using (SqlConnection conn = new SqlConnection(connData)) + { + conn.Open(); + SqlCommand SelectAll = new SqlCommand("select * from Restaurants", conn); + SqlDataReader reader = SelectAll.ExecuteReader(); + while (reader.Read()) + { + restaurants.Add(new Restaurant + { + RestaurantId = Convert.ToInt32(reader["RestaurantId"]), + City = Convert.ToString(reader["City"]), + Name = Convert.ToString(reader["Name"]) + }); + } + } + return restaurants; + } + + public void PostRestaurant(Restaurant restaurant) + { + string connData; + connData = @"Data Source=DESKTOP-B54NHFS ; Initial Catalog=RestaurantReviewManager; Integrated Security=SSPI;"; + using (SqlConnection conn = new SqlConnection(connData)) + { + conn.Open(); + SqlCommand SelectAll = new SqlCommand($"INSERT INTO RESTAURANTS VALUES(@Name, @City);", conn); + SelectAll.Parameters.AddWithValue("@Name", restaurant.Name); + SelectAll.Parameters.AddWithValue("@City", restaurant.City); + SelectAll.ExecuteNonQuery(); + } + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs new file mode 100644 index 00000000..5c38c00d --- /dev/null +++ b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs @@ -0,0 +1,57 @@ +using RestaurantReview.Models; +using System; +using System.Collections.Generic; +using System.Data.SqlClient; +using System.Linq; +using System.Threading.Tasks; + +namespace RestaurantReview.DAL +{ + public class ReviewsDAL + { + public List GetAllReviews() + { + List reviews = new List(); + string connData; + connData = @"Data Source=DESKTOP-B54NHFS ; Initial Catalog=RestaurantReviewManager; Integrated Security=SSPI;"; + using (SqlConnection conn = new SqlConnection(connData)) + { + conn.Open(); + SqlCommand SelectAll = new SqlCommand("SELECT * FROM Reviews " + + "JOIN Restaurants on Reviews.RestaurantId = Restaurants.RestaurantId " + + "JOIN Users on Reviews.UserId = Users.UserId", conn); + SqlDataReader reader = SelectAll.ExecuteReader(); + while (reader.Read()) + { + reviews.Add(new Review + { + Restaurant = new Restaurant + { + RestaurantId = Convert.ToInt32(reader["RestaurantId"]), + City = Convert.ToString(reader["City"]), + Name = Convert.ToString(reader["Name"]) + }, + ReviewId = Convert.ToInt32(reader["ReviewId"]), + ReviewText = Convert.ToString(reader["ReviewText"]), + User = new User + { + UserId = Convert.ToInt32(reader["UserId"]), + UserName = Convert.ToString(reader["UserName"]) + } + }); + } + } + return reviews; + } + public void PostReview() + { + + } + public void DeleteReview() + { + + } + + + } +} diff --git a/RestaurantReview/RestaurantReview/Models/Review.cs b/RestaurantReview/RestaurantReview/Models/Review.cs index a5d8e31e..7ccafc6b 100644 --- a/RestaurantReview/RestaurantReview/Models/Review.cs +++ b/RestaurantReview/RestaurantReview/Models/Review.cs @@ -9,6 +9,7 @@ public class Review { public int ReviewId { get; set; } public Restaurant Restaurant { get; set; } - public string User { get; set; } + public User User { get; set; } + public string ReviewText { get; set; } } } diff --git a/RestaurantReview/RestaurantReview/Models/User.cs b/RestaurantReview/RestaurantReview/Models/User.cs new file mode 100644 index 00000000..49f41dab --- /dev/null +++ b/RestaurantReview/RestaurantReview/Models/User.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace RestaurantReview.Models +{ + public class User + { + public int UserId { get; set; } + public string UserName { get; set; } + } +} diff --git a/RestaurantReview/RestaurantReview/RestaurantReview.csproj b/RestaurantReview/RestaurantReview/RestaurantReview.csproj index 797d7135..8f4a15a0 100644 --- a/RestaurantReview/RestaurantReview/RestaurantReview.csproj +++ b/RestaurantReview/RestaurantReview/RestaurantReview.csproj @@ -1,4 +1,4 @@ - + netcoreapp2.2 @@ -11,4 +11,8 @@ + + + + From b033a008601139fd611fc81f32f45cdfef154b95 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 16 Oct 2019 23:32:43 -0400 Subject: [PATCH 07/36] added post Review and delete review methods --- .../Controllers/ReviewsController.cs | 10 +++---- .../RestaurantReview/DAL/ReviewsDAL.cs | 27 ++++++++++++++++--- 2 files changed, 26 insertions(+), 11 deletions(-) diff --git a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs index 0f894665..1dd740bf 100644 --- a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs @@ -23,20 +23,16 @@ public ActionResult> Get(string user) // POST api/values [HttpPost] - public void Post([FromBody] string value) - { - } - - // PUT api/values/5 - [HttpPut("{id}")] - public void Put(int id, [FromBody] string value) + public void Post([FromBody] Review review) { + new ReviewsDAL().PostReview(review); } // DELETE api/values/5 [HttpDelete("{id}")] public void Delete(int id) { + new ReviewsDAL().DeleteReview(id); } } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs index 5c38c00d..6c12a855 100644 --- a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs @@ -43,13 +43,32 @@ public List GetAllReviews() } return reviews; } - public void PostReview() + public void PostReview(Review review) { - + string connData; + connData = @"Data Source=DESKTOP-B54NHFS ; Initial Catalog=RestaurantReviewManager; Integrated Security=SSPI;"; + using (SqlConnection conn = new SqlConnection(connData)) + { + conn.Open(); + SqlCommand SelectAll = new SqlCommand($"INSERT INTO Reviews VALUES(@RestaurantId, @UserId, @ReviewText);", conn); + SelectAll.Parameters.AddWithValue("@RestaurantId", review.Restaurant.RestaurantId); + SelectAll.Parameters.AddWithValue("@UserId", review.User.UserId); + SelectAll.Parameters.AddWithValue("@ReviewText", review.ReviewText); + SelectAll.ExecuteNonQuery(); + } } - public void DeleteReview() + public void DeleteReview(int id) { - + string connData; + connData = @"Data Source=DESKTOP-B54NHFS ; Initial Catalog=RestaurantReviewManager; Integrated Security=SSPI;"; + using (SqlConnection conn = new SqlConnection(connData)) + { + conn.Open(); + SqlCommand SelectAll = new SqlCommand($"Delete FROM Reviews WHERE Reviews.ReviewId = @ReviewId", conn); + SelectAll.Parameters.AddWithValue("@ReviewId", id); + + SelectAll.ExecuteNonQuery(); + } } From 19b4431348bee36024de672b2d458a5d08e828e8 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 17 Oct 2019 15:30:05 -0400 Subject: [PATCH 08/36] injected local connectionstring dependency --- .../Controllers/RestaurantsController.cs | 10 ++++++++-- .../Controllers/ReviewsController.cs | 14 ++++++++++---- .../RestaurantReview/DAL/RestaurantsDAL.cs | 16 ++++++++++------ .../RestaurantReview/DAL/ReviewsDAL.cs | 18 +++++++++--------- .../RestaurantReview/Services/Conn.cs | 15 +++++++++++++++ .../RestaurantReview/Services/IConn.cs | 12 ++++++++++++ RestaurantReview/RestaurantReview/Startup.cs | 4 ++++ 7 files changed, 68 insertions(+), 21 deletions(-) create mode 100644 RestaurantReview/RestaurantReview/Services/Conn.cs create mode 100644 RestaurantReview/RestaurantReview/Services/IConn.cs diff --git a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs index 881eb973..387edd42 100644 --- a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs @@ -5,6 +5,7 @@ using Microsoft.AspNetCore.Mvc; using RestaurantReview.DAL; using RestaurantReview.Models; +using RestaurantReview.Services; namespace RestaurantReview.Controllers { @@ -12,11 +13,16 @@ namespace RestaurantReview.Controllers [ApiController] public class RestaurantsController : ControllerBase { + public IConn connection; + public RestaurantsController(IConn conn) + { + this.connection = conn; + } // GET api/values [HttpGet("{city}")] public ActionResult> Get(string city) { - return new RestaurantsDAL().GetRestaurants() + return new RestaurantsDAL(connection.connstring()).GetRestaurants() .FindAll(restaurant => restaurant.City.Equals(city)); } @@ -24,7 +30,7 @@ public ActionResult> Get(string city) [HttpPost] public void Post([FromBody] Restaurant restaurant) { - new RestaurantsDAL().PostRestaurant(restaurant); + new RestaurantsDAL(connection.connstring()).PostRestaurant(restaurant); } } } diff --git a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs index 1dd740bf..4802c1b9 100644 --- a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs @@ -6,6 +6,7 @@ using Microsoft.AspNetCore.Mvc; using RestaurantReview.DAL; using RestaurantReview.Models; +using RestaurantReview.Services; namespace RestaurantReview.Controllers { @@ -13,26 +14,31 @@ namespace RestaurantReview.Controllers [ApiController] public class ReviewsController : ControllerBase { + public IConn connection; + public ReviewsController(IConn conn) + { + this.connection = conn; + } // GET api/values [HttpGet("{user}")] - + public ActionResult> Get(string user) { - return new ReviewsDAL().GetAllReviews().FindAll(review => review.User.UserName.Equals(user)); + return new ReviewsDAL(connection.connstring()).GetAllReviews().FindAll(review => review.User.UserName.Equals(user)); } // POST api/values [HttpPost] public void Post([FromBody] Review review) { - new ReviewsDAL().PostReview(review); + new ReviewsDAL(connection.connstring()).PostReview(review); } // DELETE api/values/5 [HttpDelete("{id}")] public void Delete(int id) { - new ReviewsDAL().DeleteReview(id); + new ReviewsDAL(connection.connstring()).DeleteReview(id); } } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs index 1f244189..20429a14 100644 --- a/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs @@ -1,4 +1,5 @@ using RestaurantReview.Models; +using RestaurantReview.Services; using System; using System.Collections.Generic; using System.Data.SqlClient; @@ -9,12 +10,17 @@ namespace RestaurantReview.DAL { public class RestaurantsDAL { + private readonly string connectionstring; + public RestaurantsDAL(string connString) + { + this.connectionstring = new Conn().connstring(); + } + public List GetRestaurants() { List restaurants = new List(); - string connData; - connData = @"Data Source=DESKTOP-B54NHFS ; Initial Catalog=RestaurantReviewManager; Integrated Security=SSPI;"; - using (SqlConnection conn = new SqlConnection(connData)) + + using (SqlConnection conn = new SqlConnection(connectionstring)) { conn.Open(); SqlCommand SelectAll = new SqlCommand("select * from Restaurants", conn); @@ -34,9 +40,7 @@ public List GetRestaurants() public void PostRestaurant(Restaurant restaurant) { - string connData; - connData = @"Data Source=DESKTOP-B54NHFS ; Initial Catalog=RestaurantReviewManager; Integrated Security=SSPI;"; - using (SqlConnection conn = new SqlConnection(connData)) + using (SqlConnection conn = new SqlConnection(connectionstring)) { conn.Open(); SqlCommand SelectAll = new SqlCommand($"INSERT INTO RESTAURANTS VALUES(@Name, @City);", conn); diff --git a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs index 6c12a855..4cbfd8f1 100644 --- a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs @@ -1,4 +1,5 @@ using RestaurantReview.Models; +using RestaurantReview.Services; using System; using System.Collections.Generic; using System.Data.SqlClient; @@ -9,12 +10,15 @@ namespace RestaurantReview.DAL { public class ReviewsDAL { + private readonly string connectionstring; + public ReviewsDAL(string connString) + { + this.connectionstring = new Conn().connstring(); + } public List GetAllReviews() { List reviews = new List(); - string connData; - connData = @"Data Source=DESKTOP-B54NHFS ; Initial Catalog=RestaurantReviewManager; Integrated Security=SSPI;"; - using (SqlConnection conn = new SqlConnection(connData)) + using (SqlConnection conn = new SqlConnection(connectionstring)) { conn.Open(); SqlCommand SelectAll = new SqlCommand("SELECT * FROM Reviews " + @@ -45,9 +49,7 @@ public List GetAllReviews() } public void PostReview(Review review) { - string connData; - connData = @"Data Source=DESKTOP-B54NHFS ; Initial Catalog=RestaurantReviewManager; Integrated Security=SSPI;"; - using (SqlConnection conn = new SqlConnection(connData)) + using (SqlConnection conn = new SqlConnection(connectionstring)) { conn.Open(); SqlCommand SelectAll = new SqlCommand($"INSERT INTO Reviews VALUES(@RestaurantId, @UserId, @ReviewText);", conn); @@ -59,9 +61,7 @@ public void PostReview(Review review) } public void DeleteReview(int id) { - string connData; - connData = @"Data Source=DESKTOP-B54NHFS ; Initial Catalog=RestaurantReviewManager; Integrated Security=SSPI;"; - using (SqlConnection conn = new SqlConnection(connData)) + using (SqlConnection conn = new SqlConnection(connectionstring)) { conn.Open(); SqlCommand SelectAll = new SqlCommand($"Delete FROM Reviews WHERE Reviews.ReviewId = @ReviewId", conn); diff --git a/RestaurantReview/RestaurantReview/Services/Conn.cs b/RestaurantReview/RestaurantReview/Services/Conn.cs new file mode 100644 index 00000000..52a88d9b --- /dev/null +++ b/RestaurantReview/RestaurantReview/Services/Conn.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace RestaurantReview.Services +{ + public class Conn : IConn + { + public string connstring() + { + return @"Data Source=DESKTOP-B54NHFS ; Initial Catalog=RestaurantReviewManager; Integrated Security=SSPI;"; + } + } +} diff --git a/RestaurantReview/RestaurantReview/Services/IConn.cs b/RestaurantReview/RestaurantReview/Services/IConn.cs new file mode 100644 index 00000000..f8a44ed5 --- /dev/null +++ b/RestaurantReview/RestaurantReview/Services/IConn.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace RestaurantReview.Services +{ + public interface IConn + { + string connstring(); + } +} diff --git a/RestaurantReview/RestaurantReview/Startup.cs b/RestaurantReview/RestaurantReview/Startup.cs index 12b3ecea..cf8b1375 100644 --- a/RestaurantReview/RestaurantReview/Startup.cs +++ b/RestaurantReview/RestaurantReview/Startup.cs @@ -10,6 +10,9 @@ using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; +using RestaurantReview.Controllers; +using RestaurantReview.DAL; +using RestaurantReview.Services; namespace RestaurantReview { @@ -26,6 +29,7 @@ public Startup(IConfiguration configuration) public void ConfigureServices(IServiceCollection services) { services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); + services.AddScoped(); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. From 8a247040b361dbd8b58e81d3f71dda3580d2bb0c Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 17 Oct 2019 17:27:40 -0400 Subject: [PATCH 09/36] converted to AWS hosted database --- RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs | 2 +- RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs | 2 +- RestaurantReview/RestaurantReview/Services/Conn.cs | 7 ++++++- RestaurantReview/RestaurantReview/Services/IConn.cs | 1 + 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs index 20429a14..25ee4088 100644 --- a/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs @@ -13,7 +13,7 @@ public class RestaurantsDAL private readonly string connectionstring; public RestaurantsDAL(string connString) { - this.connectionstring = new Conn().connstring(); + this.connectionstring = new Conn().AWSconnstring(); } public List GetRestaurants() diff --git a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs index 4cbfd8f1..ef9ab29a 100644 --- a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs @@ -13,7 +13,7 @@ public class ReviewsDAL private readonly string connectionstring; public ReviewsDAL(string connString) { - this.connectionstring = new Conn().connstring(); + this.connectionstring = new Conn().AWSconnstring(); } public List GetAllReviews() { diff --git a/RestaurantReview/RestaurantReview/Services/Conn.cs b/RestaurantReview/RestaurantReview/Services/Conn.cs index 52a88d9b..03b75074 100644 --- a/RestaurantReview/RestaurantReview/Services/Conn.cs +++ b/RestaurantReview/RestaurantReview/Services/Conn.cs @@ -7,7 +7,12 @@ namespace RestaurantReview.Services { public class Conn : IConn { - public string connstring() + public string AWSconnstring() + { + return @"Data Source=restaurantreviewsdb.cur7afppexfe.us-east-2.rds.amazonaws.com,1433; Initial Catalog=RestaurantReviewManager;User ID=admin;Password=Whatthe770!"; + } + + public string connstring() { return @"Data Source=DESKTOP-B54NHFS ; Initial Catalog=RestaurantReviewManager; Integrated Security=SSPI;"; } diff --git a/RestaurantReview/RestaurantReview/Services/IConn.cs b/RestaurantReview/RestaurantReview/Services/IConn.cs index f8a44ed5..b4de303e 100644 --- a/RestaurantReview/RestaurantReview/Services/IConn.cs +++ b/RestaurantReview/RestaurantReview/Services/IConn.cs @@ -8,5 +8,6 @@ namespace RestaurantReview.Services public interface IConn { string connstring(); + string AWSconnstring(); } } From a5a838818ad1a491800fa951d7c2c13fbf08f1a4 Mon Sep 17 00:00:00 2001 From: tzvi-seliger Date: Thu, 17 Oct 2019 22:21:41 -0400 Subject: [PATCH 10/36] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index c506bb5e..687ec388 100644 --- a/README.md +++ b/README.md @@ -20,3 +20,13 @@ Please use whatever techniques you feel are applicable to solve the problem. We Please fork this repository. If your solution involves code auto generated by a development tool, please commit it separately from your own work. When you have completed your solution, please issue a pull request to notify us that you are ready. Have fun. + + + POST - api/Restaurants - send JSON object in request body + GET - api/Restaurants/{city} + + DELETE - api/Reviews/{id} + GET - api/Reviews/{username} + POST - api/Reviews - Send JSON object in request body + + From d543b0388ad81a501dfe53702cb75a9366f5381b Mon Sep 17 00:00:00 2001 From: tzvi-seliger Date: Thu, 17 Oct 2019 22:40:42 -0400 Subject: [PATCH 11/36] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 687ec388..0b2f91dd 100644 --- a/README.md +++ b/README.md @@ -28,5 +28,13 @@ Have fun. DELETE - api/Reviews/{id} GET - api/Reviews/{username} POST - api/Reviews - Send JSON object in request body + + ```json +{ + "firstName": "John", + "lastName": "Smith", + "age": 25 +} +``` From 8011077ca4271f182fc87ca73f5d10b0b5199b19 Mon Sep 17 00:00:00 2001 From: tzvi-seliger Date: Thu, 17 Oct 2019 22:42:32 -0400 Subject: [PATCH 12/36] Update README.md --- README.md | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0b2f91dd..9cdb7839 100644 --- a/README.md +++ b/README.md @@ -22,19 +22,24 @@ Please fork this repository. If your solution involves code auto generated by a Have fun. - POST - api/Restaurants - send JSON object in request body - GET - api/Restaurants/{city} + - POST - api/Restaurants - send JSON object in request body + - GET - api/Restaurants/{city} - DELETE - api/Reviews/{id} - GET - api/Reviews/{username} - POST - api/Reviews - Send JSON object in request body + - DELETE - api/Reviews/{id} + - GET - api/Reviews/{username} + - POST - api/Reviews - Send JSON object in request body ```json -{ - "firstName": "John", - "lastName": "Smith", - "age": 25 -} + { + "Restaurant":{ + "RestaurantId": 1 + }, + "User": { + "UserId": 2 + }, + "ReviewText": "It was ok not excellent" + } + ``` From 5b8a6ace2e71e2f7bf1467909c66de4f9b4bdc3a Mon Sep 17 00:00:00 2001 From: tzvi-seliger Date: Thu, 17 Oct 2019 22:45:25 -0400 Subject: [PATCH 13/36] Update README.md --- README.md | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 9cdb7839..39f01de2 100644 --- a/README.md +++ b/README.md @@ -30,16 +30,15 @@ Have fun. - POST - api/Reviews - Send JSON object in request body ```json - { - "Restaurant":{ - "RestaurantId": 1 - }, - "User": { - "UserId": 2 - }, - "ReviewText": "It was ok not excellent" - } - -``` +{ + "Restaurant": { + "RestaurantId": 1 + }, + "User": { + "UserId": 2 + }, + "ReviewText": "It was ok not excellent" +} + ``` From 5488243db99d086c0da681e5395aef94739642fa Mon Sep 17 00:00:00 2001 From: tzvi-seliger Date: Thu, 17 Oct 2019 22:46:09 -0400 Subject: [PATCH 14/36] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 39f01de2..96feb66d 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Have fun. - GET - api/Reviews/{username} - POST - api/Reviews - Send JSON object in request body - ```json + ```javascript { "Restaurant": { "RestaurantId": 1 From 6b2a0d0a4adb9964f30df1b71a2b8e58edcf8c4a Mon Sep 17 00:00:00 2001 From: tzvi-seliger Date: Thu, 17 Oct 2019 22:57:43 -0400 Subject: [PATCH 15/36] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 96feb66d..70c1a2a8 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,12 @@ Have fun. - POST - api/Restaurants - send JSON object in request body + ```javascript +{ + "Name": {"Restaurant Name"}, + "City": "Boston" +} + ``` - GET - api/Restaurants/{city} - DELETE - api/Reviews/{id} From 16e12d06a1719435325e2b0b762b230f0f226c07 Mon Sep 17 00:00:00 2001 From: tzvi-seliger Date: Thu, 17 Oct 2019 22:59:29 -0400 Subject: [PATCH 16/36] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 70c1a2a8..5e0aa68a 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Please fork this repository. If your solution involves code auto generated by a Have fun. - - POST - api/Restaurants - send JSON object in request body + - POST - api/Restaurants - send JSON object in request body - for example: ```javascript { "Name": {"Restaurant Name"}, @@ -33,7 +33,7 @@ Have fun. - DELETE - api/Reviews/{id} - GET - api/Reviews/{username} - - POST - api/Reviews - Send JSON object in request body + - POST - api/Reviews - Send JSON object in request body - for example: ```javascript { From 7c17bb93d87339cc4e7c97b10d4ae86fb6d30d7c Mon Sep 17 00:00:00 2001 From: tzvi-seliger Date: Thu, 17 Oct 2019 23:08:17 -0400 Subject: [PATCH 17/36] Update README.md --- README.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e0aa68a..ee2c98bc 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,27 @@ Have fun. } ``` - GET - api/Restaurants/{city} - + example + https://localhost:44353/api/Restaurants/Boston + ```javascript +[ + { + "restaurantId": 1, + "name": "Tonys", + "city": "Boston" + }, + { + "restaurantId": 2, + "name": "Max", + "city": "Boston" + }, + { + "restaurantId": 11, + "name": "Sams", + "city": "Boston" + } +] +``` - DELETE - api/Reviews/{id} - GET - api/Reviews/{username} - POST - api/Reviews - Send JSON object in request body - for example: From 884f3fc1a56b780a6bde771bc64260cf1123780f Mon Sep 17 00:00:00 2001 From: tzvi-seliger Date: Thu, 17 Oct 2019 23:09:18 -0400 Subject: [PATCH 18/36] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ee2c98bc..8e359186 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Have fun. ``` - GET - api/Restaurants/{city} example - https://localhost:44353/api/Restaurants/Boston + `https://localhost:44353/api/Restaurants/Boston` ```javascript [ { From 6954d5adb6ca3323ab93306b52c7276767b742c3 Mon Sep 17 00:00:00 2001 From: tzvi-seliger Date: Fri, 18 Oct 2019 00:53:26 -0400 Subject: [PATCH 19/36] Update README.md --- README.md | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 8e359186..b7dbffe7 100644 --- a/README.md +++ b/README.md @@ -22,17 +22,18 @@ Please fork this repository. If your solution involves code auto generated by a Have fun. - - POST - api/Restaurants - send JSON object in request body - for example: + - POST - `https://localhost:44353/api/Restaurants` - send JSON object in request body - for example: ```javascript { "Name": {"Restaurant Name"}, "City": "Boston" } ``` - - GET - api/Restaurants/{city} + - GET - `https://localhost:44353/api/Restaurants/{city}` example `https://localhost:44353/api/Restaurants/Boston` - ```javascript + Response: +```javascript [ { "restaurantId": 1, @@ -51,11 +52,28 @@ Have fun. } ] ``` - - DELETE - api/Reviews/{id} - - GET - api/Reviews/{username} - - POST - api/Reviews - Send JSON object in request body - for example: + - DELETE - `https://localhost:44353/api/Reviews/{id}` + - GET - `https://localhost:44353/api/Reviews/{username}` + - Response: + ``` javascript + { + "reviewId": 37, + "restaurant": { + "restaurantId": 10, + "name": "Pizzeria", + "city": "Los Angeles" + }, + "user": { + "userId": 1, + "userName": "user1" + }, + "reviewText": "Restaurant is awesome" + } +] +``` + - POST - `https://localhost:44353/api/Reviews` - Send JSON object in request body - for example: - ```javascript + ``` javascript { "Restaurant": { "RestaurantId": 1 From 25a350e78a37bb0b6b073163b667969c2d9c417e Mon Sep 17 00:00:00 2001 From: tzvi-seliger Date: Fri, 18 Oct 2019 01:02:48 -0400 Subject: [PATCH 20/36] Update README.md --- README.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b7dbffe7..6cf63467 100644 --- a/README.md +++ b/README.md @@ -21,19 +21,19 @@ Please fork this repository. If your solution involves code auto generated by a Have fun. - +**Restaurants API** - POST - `https://localhost:44353/api/Restaurants` - send JSON object in request body - for example: - ```javascript + ```json { - "Name": {"Restaurant Name"}, + "Name": "Tony's Pizzeria", "City": "Boston" } ``` - GET - `https://localhost:44353/api/Restaurants/{city}` example `https://localhost:44353/api/Restaurants/Boston` - Response: -```javascript + - Response: +```json [ { "restaurantId": 1, @@ -52,10 +52,11 @@ Have fun. } ] ``` +**Reviews API** - DELETE - `https://localhost:44353/api/Reviews/{id}` - GET - `https://localhost:44353/api/Reviews/{username}` - - Response: - ``` javascript + - Response: + ``` json { "reviewId": 37, "restaurant": { From 95be19816d09f7cee28cd415fa7714bdc207e8e5 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 18 Oct 2019 16:21:21 -0400 Subject: [PATCH 21/36] added PUT method to update Review to Reviews Controller --- .../Controllers/RestaurantsController.cs | 10 +++++----- .../Controllers/ReviewsController.cs | 18 ++++++++++++------ .../RestaurantReview/DAL/RestaurantsDAL.cs | 2 +- .../RestaurantReview/DAL/ReviewsDAL.cs | 16 +++++++++++++--- .../RestaurantReview/Models/UpdateReview.cs | 13 +++++++++++++ 5 files changed, 44 insertions(+), 15 deletions(-) create mode 100644 RestaurantReview/RestaurantReview/Models/UpdateReview.cs diff --git a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs index 387edd42..00979b0a 100644 --- a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs @@ -18,19 +18,19 @@ public RestaurantsController(IConn conn) { this.connection = conn; } - // GET api/values + // GET api/Restaurants [HttpGet("{city}")] public ActionResult> Get(string city) { - return new RestaurantsDAL(connection.connstring()).GetRestaurants() - .FindAll(restaurant => restaurant.City.Equals(city)); + return new RestaurantsDAL(connection.AWSconnstring()).GetRestaurants() + .FindAll(restaurant => restaurant.City.Equals(city)); } - // POST api/values + // POST api/Restaurants - must send in a restaurant body with it [HttpPost] public void Post([FromBody] Restaurant restaurant) { - new RestaurantsDAL(connection.connstring()).PostRestaurant(restaurant); + new RestaurantsDAL(connection.AWSconnstring()).PostRestaurant(restaurant); } } } diff --git a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs index 4802c1b9..48a9493c 100644 --- a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs @@ -19,26 +19,32 @@ public ReviewsController(IConn conn) { this.connection = conn; } - // GET api/values + // GET api/Reviews/{username} [HttpGet("{user}")] public ActionResult> Get(string user) { - return new ReviewsDAL(connection.connstring()).GetAllReviews().FindAll(review => review.User.UserName.Equals(user)); + return new ReviewsDAL(connection.AWSconnstring()).GetAllReviews() + .FindAll(review => review.User.UserName.Equals(user)); } - // POST api/values + // POST api/Reviews - must send in a Review Json object [HttpPost] public void Post([FromBody] Review review) { - new ReviewsDAL(connection.connstring()).PostReview(review); + new ReviewsDAL(connection.AWSconnstring()).PostReview(review); + } + [HttpPut] + public void Put([FromBody] UpdateReview updateReview) + { + new ReviewsDAL(connection.AWSconnstring()).UpdateReview(updateReview); } - // DELETE api/values/5 + // DELETE api/Reviews/{id} [HttpDelete("{id}")] public void Delete(int id) { - new ReviewsDAL(connection.connstring()).DeleteReview(id); + new ReviewsDAL(connection.AWSconnstring()).DeleteReview(id); } } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs index 25ee4088..19a340c7 100644 --- a/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs @@ -19,7 +19,7 @@ public RestaurantsDAL(string connString) public List GetRestaurants() { List restaurants = new List(); - + using (SqlConnection conn = new SqlConnection(connectionstring)) { conn.Open(); diff --git a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs index ef9ab29a..9ca9552d 100644 --- a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs @@ -59,6 +59,19 @@ public void PostReview(Review review) SelectAll.ExecuteNonQuery(); } } + public void UpdateReview(UpdateReview updateReview) + { + using (SqlConnection conn = new SqlConnection(connectionstring)) + { + conn.Open(); + SqlCommand updateReviewCmd = new SqlCommand($"UPDATE Reviews SET ReviewText = @reviewText WHERE ReviewId = @id;", conn); + updateReviewCmd.Parameters.AddWithValue("@id", updateReview.ReviewId); + updateReviewCmd.Parameters.AddWithValue("@reviewText", updateReview.ReviewText); + updateReviewCmd.ExecuteNonQuery(); + } + + } + public void DeleteReview(int id) { using (SqlConnection conn = new SqlConnection(connectionstring)) @@ -66,11 +79,8 @@ public void DeleteReview(int id) conn.Open(); SqlCommand SelectAll = new SqlCommand($"Delete FROM Reviews WHERE Reviews.ReviewId = @ReviewId", conn); SelectAll.Parameters.AddWithValue("@ReviewId", id); - SelectAll.ExecuteNonQuery(); } } - - } } diff --git a/RestaurantReview/RestaurantReview/Models/UpdateReview.cs b/RestaurantReview/RestaurantReview/Models/UpdateReview.cs new file mode 100644 index 00000000..97200c4f --- /dev/null +++ b/RestaurantReview/RestaurantReview/Models/UpdateReview.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace RestaurantReview.Models +{ + public class UpdateReview + { + public int ReviewId { get; set; } + public string ReviewText { get; set; } + } +} From 2eebfc4f8dbf6299894060b46b50c0191bd52cf3 Mon Sep 17 00:00:00 2001 From: tzvi-seliger Date: Fri, 18 Oct 2019 17:52:20 -0400 Subject: [PATCH 22/36] Update README.md --- README.md | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 6cf63467..c06e51f4 100644 --- a/README.md +++ b/README.md @@ -5,21 +5,7 @@ The Problem -------------- We are in the midst of building a mobile application that will let restaurant patrons rate the restaurant in which they are eating. As part of the build, we need to develop a web API that will accept and store the ratings and other sundry data from a publicly accessible interface. -For this project, we would like you to build this API. Feel free to add your own twists and ideas to what type of data we should collect and return, but at a minimum your API should be able to: - -1. Get a list of restaurants by city -2. Post a restaurant that is not in the database -3. Post a review for a restaurant -4. Get of a list of reviews by user -5. Delete a review - -The Fine Print --------------- -Please use whatever techniques you feel are applicable to solve the problem. We suggest that you approach this exercise as if this code was part of a larger system. The end result should be representative of your abilities and style. We prefer that you submit your solution in a language targeting the .NET Framework to help us better evaluate your code. - -Please fork this repository. If your solution involves code auto generated by a development tool, please commit it separately from your own work. When you have completed your solution, please issue a pull request to notify us that you are ready. - -Have fun. +*Project Tracking is at https://trello.com/b/y0AEDhOj/softwriters-restaurantreviews* **Restaurants API** - POST - `https://localhost:44353/api/Restaurants` - send JSON object in request body - for example: @@ -53,10 +39,10 @@ Have fun. ] ``` **Reviews API** - - DELETE - `https://localhost:44353/api/Reviews/{id}` - GET - `https://localhost:44353/api/Reviews/{username}` - Response: ``` json + [ { "reviewId": 37, "restaurant": { @@ -85,5 +71,15 @@ Have fun. "ReviewText": "It was ok not excellent" } ``` + - PUT - `https://localhost:44353/api/Reviews/{id}` + - Send JSON object in request body - for example: + ``` javascript +{ + "ReviewId": 37, + "ReviewText": "They apologized and I am very happy" +} +``` + - DELETE - `https://localhost:44353/api/Reviews/{id}` + From 88bfe9f9af9af3091beac8748a749a14e837ac9c Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 18 Oct 2019 17:53:09 -0400 Subject: [PATCH 23/36] saving --- RestaurantReview/RestaurantReview.sln | 10 ++++++-- .../RestaurantDALTests/GetRestaurantTests.cs | 25 +++++++++++++++++++ .../RestaurantReviewMSTests.csproj | 23 +++++++++++++++++ .../RestaurantReviewMSTests/UnitTest1.cs | 14 +++++++++++ .../RestaurantReviewTests.csproj | 10 +++++++- .../RestaurantsDALTests/GetRestaurantsTest.cs | 22 ++++++++++++++++ .../RestaurantReviewTests/UnitTest1.cs | 5 ++-- 7 files changed, 104 insertions(+), 5 deletions(-) create mode 100644 RestaurantReview/RestaurantReviewMSTests/RestaurantDALTests/GetRestaurantTests.cs create mode 100644 RestaurantReview/RestaurantReviewMSTests/RestaurantReviewMSTests.csproj create mode 100644 RestaurantReview/RestaurantReviewMSTests/UnitTest1.cs create mode 100644 RestaurantReview/RestaurantReviewTests/RestaurantsDALTests/GetRestaurantsTest.cs diff --git a/RestaurantReview/RestaurantReview.sln b/RestaurantReview/RestaurantReview.sln index ca5187f6..082b87c9 100644 --- a/RestaurantReview/RestaurantReview.sln +++ b/RestaurantReview/RestaurantReview.sln @@ -3,9 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.29009.5 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestaurantReview", "RestaurantReview\RestaurantReview.csproj", "{8360EA5F-0352-4385-8CAD-7404D91D7B0A}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RestaurantReview", "RestaurantReview\RestaurantReview.csproj", "{8360EA5F-0352-4385-8CAD-7404D91D7B0A}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestaurantReviewTests", "RestaurantReviewTests\RestaurantReviewTests.csproj", "{81113AFA-4B8B-43CA-9632-2787FEF30F5A}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RestaurantReviewTests", "RestaurantReviewTests\RestaurantReviewTests.csproj", "{81113AFA-4B8B-43CA-9632-2787FEF30F5A}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestaurantReviewMSTests", "RestaurantReviewMSTests\RestaurantReviewMSTests.csproj", "{12BFBAB3-915A-4A85-8691-B01C7725CA06}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -21,6 +23,10 @@ Global {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Debug|Any CPU.Build.0 = Debug|Any CPU {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Release|Any CPU.ActiveCfg = Release|Any CPU {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Release|Any CPU.Build.0 = Release|Any CPU + {12BFBAB3-915A-4A85-8691-B01C7725CA06}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {12BFBAB3-915A-4A85-8691-B01C7725CA06}.Debug|Any CPU.Build.0 = Debug|Any CPU + {12BFBAB3-915A-4A85-8691-B01C7725CA06}.Release|Any CPU.ActiveCfg = Release|Any CPU + {12BFBAB3-915A-4A85-8691-B01C7725CA06}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/RestaurantReview/RestaurantReviewMSTests/RestaurantDALTests/GetRestaurantTests.cs b/RestaurantReview/RestaurantReviewMSTests/RestaurantDALTests/GetRestaurantTests.cs new file mode 100644 index 00000000..288db13f --- /dev/null +++ b/RestaurantReview/RestaurantReviewMSTests/RestaurantDALTests/GetRestaurantTests.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using RestaurantReview.DAL; +using RestaurantReview.Services; + +namespace RestaurantReviewMSTests +{ + [TestClass] + public class GetRestaurantsTests + { + public IConn connection; + public GetRestaurantsTests(IConn conn) + { + this.connection = conn; + } + + [TestMethod] + public void GetRestaurantsTests_ReturnsCorrectData() + { + var sut = new RestaurantsDAL(connection.AWSconnstring()); + } + } +} diff --git a/RestaurantReview/RestaurantReviewMSTests/RestaurantReviewMSTests.csproj b/RestaurantReview/RestaurantReviewMSTests/RestaurantReviewMSTests.csproj new file mode 100644 index 00000000..05540925 --- /dev/null +++ b/RestaurantReview/RestaurantReviewMSTests/RestaurantReviewMSTests.csproj @@ -0,0 +1,23 @@ + + + + netcoreapp2.2 + + false + + + + + + + + + + + + + + + + + diff --git a/RestaurantReview/RestaurantReviewMSTests/UnitTest1.cs b/RestaurantReview/RestaurantReviewMSTests/UnitTest1.cs new file mode 100644 index 00000000..421aebaa --- /dev/null +++ b/RestaurantReview/RestaurantReviewMSTests/UnitTest1.cs @@ -0,0 +1,14 @@ + +using Microsoft.VisualStudio.TestTools.UnitTesting; + +namespace RestaurantReviewMSTests +{ + [TestClass] + public class UnitTest1 + { + [TestMethod] + public void TestMethod1() + { + } + } +} diff --git a/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj b/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj index 501a5ce5..b9a87313 100644 --- a/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj +++ b/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj @@ -1,4 +1,4 @@ - + netcoreapp2.2 @@ -12,4 +12,12 @@ + + + + + + + + diff --git a/RestaurantReview/RestaurantReviewTests/RestaurantsDALTests/GetRestaurantsTest.cs b/RestaurantReview/RestaurantReviewTests/RestaurantsDALTests/GetRestaurantsTest.cs new file mode 100644 index 00000000..93d5435d --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/RestaurantsDALTests/GetRestaurantsTest.cs @@ -0,0 +1,22 @@ +using System; +using Xunit; +using RestaurantReview.Models; +using RestaurantReview.DAL; +using RestaurantReview.Services; + +namespace RestaurantReviewTests.RestaurantsDALTests +{ + public class GetRestaurantsTest + { + public IConn connection; + public GetRestaurantsTest(IConn conn) + { + this.connection = conn; + } + [Fact] + public void GetRestaurantsTests_ReturnsCorrectData() + { + var sut = new RestaurantsDAL(connection.AWSconnstring()); + } + } +} diff --git a/RestaurantReview/RestaurantReviewTests/UnitTest1.cs b/RestaurantReview/RestaurantReviewTests/UnitTest1.cs index 76cbe878..3211bf37 100644 --- a/RestaurantReview/RestaurantReviewTests/UnitTest1.cs +++ b/RestaurantReview/RestaurantReviewTests/UnitTest1.cs @@ -1,3 +1,4 @@ +using RestaurantReview.Models; using System; using Xunit; @@ -8,7 +9,7 @@ public class UnitTest1 [Fact] public void Test1() { - //var c = new Controller(); + var sut = new Review(); } } -} +} \ No newline at end of file From 63d32eb31f75596e7c95192b876971b2c6d4f445 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 28 Oct 2019 02:43:57 -0400 Subject: [PATCH 24/36] saving changes --- .../Controllers/RestaurantsController.cs | 22 ++-- .../Controllers/ReviewsController.cs | 24 ++-- .../RestaurantReview/DAL/RestaurantsDAL.cs | 45 +++++-- .../RestaurantReview/DAL/ReviewsDAL.cs | 75 +++++++++-- .../RestaurantReview/DAL/UserDAL.cs | 122 ++++++++++++++++++ .../RestaurantReview/Exceptions.cs | 11 ++ .../RestaurantReview/Models/Restaurant.cs | 20 ++- .../RestaurantReview/Models/Review.cs | 20 ++- .../RestaurantReview/Models/UpdateReview.cs | 9 +- .../RestaurantReview/Models/User.cs | 9 +- RestaurantReview/RestaurantReview/Program.cs | 11 +- .../Properties/launchSettings.json | 4 +- .../RestaurantReview/RestaurantReview.csproj | 5 +- .../RestaurantReview/Services/Conn.cs | 9 +- .../RestaurantReview/Services/IConn.cs | 10 +- RestaurantReview/RestaurantReview/Startup.cs | 20 ++- .../appsettings.Development.json | 2 +- .../RestaurantReview/appsettings.json | 2 +- 18 files changed, 313 insertions(+), 107 deletions(-) create mode 100644 RestaurantReview/RestaurantReview/DAL/UserDAL.cs create mode 100644 RestaurantReview/RestaurantReview/Exceptions.cs diff --git a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs index 00979b0a..e1f59e07 100644 --- a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs @@ -1,7 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; +using Microsoft.AspNetCore.Cors; using Microsoft.AspNetCore.Mvc; using RestaurantReview.DAL; using RestaurantReview.Models; @@ -9,28 +6,33 @@ namespace RestaurantReview.Controllers { + [EnableCors("CorsPolicy")] [Route("api/[controller]")] [ApiController] public class RestaurantsController : ControllerBase { public IConn connection; + public RestaurantsController(IConn conn) { this.connection = conn; } + // GET api/Restaurants [HttpGet("{city}")] - public ActionResult> Get(string city) + public IActionResult Get(string city) { - return new RestaurantsDAL(connection.AWSconnstring()).GetRestaurants() - .FindAll(restaurant => restaurant.City.Equals(city)); + var dal = new RestaurantsDAL(connection.AWSconnstring()).GetRestaurants() + .FindAll(restaurant => restaurant.City.ToLower().Equals(city.ToLower())); + if (dal.Count >= 1) { return Ok(dal); } else { return StatusCode(404, "There are no results for this city" ); } } // POST api/Restaurants - must send in a restaurant body with it [HttpPost] - public void Post([FromBody] Restaurant restaurant) + public IActionResult Post([FromBody] Restaurant restaurant) { - new RestaurantsDAL(connection.AWSconnstring()).PostRestaurant(restaurant); + var dal = new RestaurantsDAL(connection.AWSconnstring()).PostRestaurant(restaurant); + if (dal.IsSuccessful) { return (Ok(dal.toreturn)); } else { return StatusCode(304, dal.toreturn); } } } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs index 48a9493c..d9a355b5 100644 --- a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs @@ -1,12 +1,8 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.AspNetCore.Http; -using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc; using RestaurantReview.DAL; using RestaurantReview.Models; using RestaurantReview.Services; +using System.Collections.Generic; namespace RestaurantReview.Controllers { @@ -15,17 +11,22 @@ namespace RestaurantReview.Controllers public class ReviewsController : ControllerBase { public IConn connection; + public ReviewsController(IConn conn) { this.connection = conn; } - // GET api/Reviews/{username} - [HttpGet("{user}")] - public ActionResult> Get(string user) + // GET api/Reviews/{username} + [HttpGet("{username}")] + public IActionResult Get(string username) { - return new ReviewsDAL(connection.AWSconnstring()).GetAllReviews() - .FindAll(review => review.User.UserName.Equals(user)); + var usermatch = new UserDAL(connection.AWSconnstring()).GetUser(username); + if(!usermatch.IsSuccessful) return StatusCode(404, "User was not found"); + var list = new ReviewsDAL(connection.AWSconnstring()).GetAllReviews() + .FindAll(review => review.User.UserName.ToLower().Equals(username.ToLower())); + + if (list.Count >= 1) { return Ok(list); } else { return StatusCode(404, "There are no results for this user"); } } // POST api/Reviews - must send in a Review Json object @@ -34,6 +35,7 @@ public void Post([FromBody] Review review) { new ReviewsDAL(connection.AWSconnstring()).PostReview(review); } + [HttpPut] public void Put([FromBody] UpdateReview updateReview) { diff --git a/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs index 19a340c7..64f84840 100644 --- a/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs @@ -3,14 +3,15 @@ using System; using System.Collections.Generic; using System.Data.SqlClient; -using System.Linq; -using System.Threading.Tasks; +using System.Net; +using System.Web.Http; namespace RestaurantReview.DAL { public class RestaurantsDAL { private readonly string connectionstring; + public RestaurantsDAL(string connString) { this.connectionstring = new Conn().AWSconnstring(); @@ -27,27 +28,55 @@ public List GetRestaurants() SqlDataReader reader = SelectAll.ExecuteReader(); while (reader.Read()) { - restaurants.Add(new Restaurant + Restaurant restaurant = new Restaurant { RestaurantId = Convert.ToInt32(reader["RestaurantId"]), City = Convert.ToString(reader["City"]), Name = Convert.ToString(reader["Name"]) - }); + }; + if (restaurant.ValidateCity() && restaurant.ValidateName()) + restaurants.Add(restaurant); } } return restaurants; } - public void PostRestaurant(Restaurant restaurant) + public (bool IsSuccessful, Restaurant toreturn) PostRestaurant(Restaurant restaurant) { + bool IsSuccessful; + Restaurant toreturn = new Restaurant(); using (SqlConnection conn = new SqlConnection(connectionstring)) { conn.Open(); SqlCommand SelectAll = new SqlCommand($"INSERT INTO RESTAURANTS VALUES(@Name, @City);", conn); - SelectAll.Parameters.AddWithValue("@Name", restaurant.Name); - SelectAll.Parameters.AddWithValue("@City", restaurant.City); - SelectAll.ExecuteNonQuery(); + try + { + if (!(restaurant.ValidateName() && restaurant.ValidateCity())) throw new HttpResponseException(HttpStatusCode.NotModified); + SelectAll.Parameters.AddWithValue("@Name", restaurant.Name); + SelectAll.Parameters.AddWithValue("@City", restaurant.City); + toreturn.Name = restaurant.Name; + toreturn.City = restaurant.City; + SelectAll.ExecuteNonQuery(); + IsSuccessful = true; + } + catch (HttpResponseException e) + { + if (!restaurant.ValidateCity()) + { + toreturn.City = "City is incorrect " + e.Message; + } + + IsSuccessful = false; + if (!restaurant.ValidateName()) + { + toreturn.Name = "Name is too short " + e.Message + " name must be at least 1 character"; + } + + if (toreturn.Name is null) toreturn.Name = restaurant.Name; + if (toreturn.City is null) toreturn.City = restaurant.City; + } } + return (IsSuccessful, toreturn); } } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs index 9ca9552d..c9f6767d 100644 --- a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs @@ -3,18 +3,20 @@ using System; using System.Collections.Generic; using System.Data.SqlClient; -using System.Linq; -using System.Threading.Tasks; +using System.Net; +using System.Web.Http; namespace RestaurantReview.DAL { public class ReviewsDAL { private readonly string connectionstring; + public ReviewsDAL(string connString) { this.connectionstring = new Conn().AWSconnstring(); } + public List GetAllReviews() { List reviews = new List(); @@ -47,18 +49,68 @@ public List GetAllReviews() } return reviews; } - public void PostReview(Review review) + //public (bool IsSuccessful, Restaurant toreturn) PostRestaurant(Restaurant restaurant) + //{ + // bool IsSuccessful; + // Restaurant toreturn = new Restaurant(); + // using (SqlConnection conn = new SqlConnection(connectionstring)) + // { + // conn.Open(); + // SqlCommand SelectAll = new SqlCommand($"INSERT INTO RESTAURANTS VALUES(@Name, @City);", conn); + // try + // { + // if (!(restaurant.ValidateName() && restaurant.ValidateCity())) throw new HttpResponseException(HttpStatusCode.NotModified); + // SelectAll.Parameters.AddWithValue("@Name", restaurant.Name); + // SelectAll.Parameters.AddWithValue("@City", restaurant.City); + // toreturn.Name = restaurant.Name; + // toreturn.City = restaurant.City; + // SelectAll.ExecuteNonQuery(); + // IsSuccessful = true; + // } + // catch (HttpResponseException e) + // { + // if (!restaurant.ValidateCity()) + // { + // toreturn.City = "City is incorrect " + e.Message; + // } + + // IsSuccessful = false; + // if (!restaurant.ValidateName()) + // { + // toreturn.Name = "Name is too short " + e.Message + " name must be at least 1 character"; + // } + + // if (toreturn.Name is null) toreturn.Name = restaurant.Name; + // if (toreturn.City is null) toreturn.City = restaurant.City; + // } + // } + // return (IsSuccessful, toreturn); + //} + public (bool IsSuccesssful, Review toreturn) PostReview(Review review) { - using (SqlConnection conn = new SqlConnection(connectionstring)) + Review toreturn = new Review(); + bool IsSuccessful; + try { - conn.Open(); - SqlCommand SelectAll = new SqlCommand($"INSERT INTO Reviews VALUES(@RestaurantId, @UserId, @ReviewText);", conn); - SelectAll.Parameters.AddWithValue("@RestaurantId", review.Restaurant.RestaurantId); - SelectAll.Parameters.AddWithValue("@UserId", review.User.UserId); - SelectAll.Parameters.AddWithValue("@ReviewText", review.ReviewText); - SelectAll.ExecuteNonQuery(); + using (SqlConnection conn = new SqlConnection(connectionstring)) + { + //if (!review.ValidateUserNameFormat()) throw new HttpResponseException(HttpStatusCode.NotModified); + conn.Open(); + SqlCommand SelectAll = new SqlCommand($"INSERT INTO Reviews VALUES(@RestaurantId, @UserId, @ReviewText);", conn); + SelectAll.Parameters.AddWithValue("@RestaurantId", review.Restaurant.RestaurantId); + SelectAll.Parameters.AddWithValue("@UserId", review.User.UserId); + SelectAll.Parameters.AddWithValue("@ReviewText", review.ReviewText); + SelectAll.ExecuteNonQuery(); + IsSuccessful = true; + } } + catch + { + IsSuccessful = false; + } + return (IsSuccessful, toreturn); } + public void UpdateReview(UpdateReview updateReview) { using (SqlConnection conn = new SqlConnection(connectionstring)) @@ -69,7 +121,6 @@ public void UpdateReview(UpdateReview updateReview) updateReviewCmd.Parameters.AddWithValue("@reviewText", updateReview.ReviewText); updateReviewCmd.ExecuteNonQuery(); } - } public void DeleteReview(int id) @@ -83,4 +134,4 @@ public void DeleteReview(int id) } } } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/DAL/UserDAL.cs b/RestaurantReview/RestaurantReview/DAL/UserDAL.cs new file mode 100644 index 00000000..9810d76c --- /dev/null +++ b/RestaurantReview/RestaurantReview/DAL/UserDAL.cs @@ -0,0 +1,122 @@ +using RestaurantReview.Models; +using RestaurantReview.Services; +using System; +using System.Linq; +using System.Collections.Generic; +using System.Data.SqlClient; +using System.Net; +using System.Web.Http; + +namespace RestaurantReview.DAL +{ + public class UserDAL + { + private readonly string connectionstring; + + public UserDAL(string connString) + { + this.connectionstring = new Conn().AWSconnstring(); + } + + public List GetUsers() + { + List users = new List(); + using (SqlConnection conn = new SqlConnection(connectionstring)) + { + conn.Open(); + SqlCommand SelectAll = new SqlCommand("SELECT * FROM Users ", conn); + SqlDataReader reader = SelectAll.ExecuteReader(); + while (reader.Read()) + { + users.Add(new User + { + UserName = Convert.ToString(reader["UserName"]), + UserId = Convert.ToInt32(reader["UserId"]) + }); + } + } + return users; + } + + public (bool IsSuccessful, User usertoreturn) GetUser(string username) + { + bool IsSuccessful; + User usermatch; + try + { + usermatch = GetUsers().FirstOrDefault(user => user.UserName.ToLower().Equals(username.ToLower())); + IsSuccessful = true; + if (usermatch.UserName is null) throw new Exception(); + } + catch + { + IsSuccessful = false; + usermatch = new User(); + usermatch.UserName = "none"; + } + return (IsSuccessful, usermatch); + } + //public (bool IsSuccessful, Restaurant toreturn) PostRestaurant(Restaurant restaurant) + //{ + // bool IsSuccessful; + // Restaurant toreturn = new Restaurant(); + // using (SqlConnection conn = new SqlConnection(connectionstring)) + // { + // conn.Open(); + // SqlCommand SelectAll = new SqlCommand($"INSERT INTO RESTAURANTS VALUES(@Name, @City);", conn); + // try + // { + // if (!(restaurant.ValidateName() && restaurant.ValidateCity())) throw new HttpResponseException(HttpStatusCode.NotModified); + // SelectAll.Parameters.AddWithValue("@Name", restaurant.Name); + // SelectAll.Parameters.AddWithValue("@City", restaurant.City); + // toreturn.Name = restaurant.Name; + // toreturn.City = restaurant.City; + // SelectAll.ExecuteNonQuery(); + // IsSuccessful = true; + // } + // catch (HttpResponseException e) + // { + // if (!restaurant.ValidateCity()) + // { + // toreturn.City = "City is incorrect " + e.Message; + // } + + // IsSuccessful = false; + // if (!restaurant.ValidateName()) + // { + // toreturn.Name = "Name is too short " + e.Message + " name must be at least 1 character"; + // } + + // if (toreturn.Name is null) toreturn.Name = restaurant.Name; + // if (toreturn.City is null) toreturn.City = restaurant.City; + // } + // } + // return (IsSuccessful, toreturn); + //} + //public (bool IsSuccesssful, Review toreturn) PostReview(Review review) + //{ + // bool IsSuccessful; + // try + // { + // using (SqlConnection conn = new SqlConnection(connectionstring)) + // { + // if (!review.ValidateUserNameFormat()) throw new HttpResponseException(HttpStatusCode.NotModified); + // conn.Open(); + // SqlCommand SelectAll = new SqlCommand($"INSERT INTO Reviews VALUES(@RestaurantId, @UserId, @ReviewText);", conn); + // SelectAll.Parameters.AddWithValue("@RestaurantId", review.Restaurant.RestaurantId); + // SelectAll.Parameters.AddWithValue("@UserId", review.User.UserId); + // SelectAll.Parameters.AddWithValue("@ReviewText", review.ReviewText); + // SelectAll.ExecuteNonQuery(); + // } + // } + // catch + // { + // IsSuccessful = false; + // } + + //} + + + + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Exceptions.cs b/RestaurantReview/RestaurantReview/Exceptions.cs new file mode 100644 index 00000000..159c3369 --- /dev/null +++ b/RestaurantReview/RestaurantReview/Exceptions.cs @@ -0,0 +1,11 @@ +using System; + +namespace RestaurantReview +{ + public class IsTooShort : Exception + { + public IsTooShort(string message) : base(message) + { + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/Restaurant.cs b/RestaurantReview/RestaurantReview/Models/Restaurant.cs index 28bc6c65..f38179ca 100644 --- a/RestaurantReview/RestaurantReview/Models/Restaurant.cs +++ b/RestaurantReview/RestaurantReview/Models/Restaurant.cs @@ -1,7 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; +using System.Text.RegularExpressions; namespace RestaurantReview.Models { @@ -10,5 +7,18 @@ public class Restaurant public int RestaurantId { get; set; } public string Name { get; set; } public string City { get; set; } + + public bool ValidateCity() + { + MatchCollection matches; + Regex defaultRegex = new Regex(@"^([a-zA-Z]+|[a-zA-Z]+\s[a-zA-Z]+)$"); + matches = defaultRegex.Matches(this.City); + return matches.Count == 1; + } + + public bool ValidateName() + { + return this.Name.Length < 40 && this.Name.Length >= 1; + } } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/Review.cs b/RestaurantReview/RestaurantReview/Models/Review.cs index 7ccafc6b..5ec1af8a 100644 --- a/RestaurantReview/RestaurantReview/Models/Review.cs +++ b/RestaurantReview/RestaurantReview/Models/Review.cs @@ -1,7 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; +using System.Text.RegularExpressions; namespace RestaurantReview.Models { @@ -11,5 +8,18 @@ public class Review public Restaurant Restaurant { get; set; } public User User { get; set; } public string ReviewText { get; set; } + public bool ValidateUserNameFormat() + { + MatchCollection matches; + Regex defaultRegex = new Regex(@"^[A-Za-z]{4, 15}+$"); + matches = defaultRegex.Matches(this.User.UserName); + + return matches.Count == 1; + } + + //public bool ValidateName() + //{ + // return this.Name.Length < 40 && this.Name.Length >= 1; + //} } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/UpdateReview.cs b/RestaurantReview/RestaurantReview/Models/UpdateReview.cs index 97200c4f..523deb72 100644 --- a/RestaurantReview/RestaurantReview/Models/UpdateReview.cs +++ b/RestaurantReview/RestaurantReview/Models/UpdateReview.cs @@ -1,13 +1,8 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace RestaurantReview.Models +namespace RestaurantReview.Models { public class UpdateReview { public int ReviewId { get; set; } public string ReviewText { get; set; } } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/User.cs b/RestaurantReview/RestaurantReview/Models/User.cs index 49f41dab..56103309 100644 --- a/RestaurantReview/RestaurantReview/Models/User.cs +++ b/RestaurantReview/RestaurantReview/Models/User.cs @@ -1,13 +1,8 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace RestaurantReview.Models +namespace RestaurantReview.Models { public class User { public int UserId { get; set; } public string UserName { get; set; } } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Program.cs b/RestaurantReview/RestaurantReview/Program.cs index ee41691e..d06351c4 100644 --- a/RestaurantReview/RestaurantReview/Program.cs +++ b/RestaurantReview/RestaurantReview/Program.cs @@ -1,12 +1,5 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.AspNetCore; +using Microsoft.AspNetCore; using Microsoft.AspNetCore.Hosting; -using Microsoft.Extensions.Configuration; -using Microsoft.Extensions.Logging; namespace RestaurantReview { @@ -21,4 +14,4 @@ public static IWebHostBuilder CreateWebHostBuilder(string[] args) => WebHost.CreateDefaultBuilder(args) .UseStartup(); } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Properties/launchSettings.json b/RestaurantReview/RestaurantReview/Properties/launchSettings.json index b86bd7ec..c33de320 100644 --- a/RestaurantReview/RestaurantReview/Properties/launchSettings.json +++ b/RestaurantReview/RestaurantReview/Properties/launchSettings.json @@ -1,8 +1,8 @@ { "$schema": "http://json.schemastore.org/launchsettings.json", "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, + "windowsAuthentication": false, + "anonymousAuthentication": true, "iisExpress": { "applicationUrl": "http://localhost:50083", "sslPort": 44353 diff --git a/RestaurantReview/RestaurantReview/RestaurantReview.csproj b/RestaurantReview/RestaurantReview/RestaurantReview.csproj index 8f4a15a0..bc2083f7 100644 --- a/RestaurantReview/RestaurantReview/RestaurantReview.csproj +++ b/RestaurantReview/RestaurantReview/RestaurantReview.csproj @@ -6,13 +6,10 @@ + - - - - diff --git a/RestaurantReview/RestaurantReview/Services/Conn.cs b/RestaurantReview/RestaurantReview/Services/Conn.cs index 03b75074..ea0eeed4 100644 --- a/RestaurantReview/RestaurantReview/Services/Conn.cs +++ b/RestaurantReview/RestaurantReview/Services/Conn.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace RestaurantReview.Services +namespace RestaurantReview.Services { public class Conn : IConn { @@ -17,4 +12,4 @@ public string connstring() return @"Data Source=DESKTOP-B54NHFS ; Initial Catalog=RestaurantReviewManager; Integrated Security=SSPI;"; } } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Services/IConn.cs b/RestaurantReview/RestaurantReview/Services/IConn.cs index b4de303e..ae9826ad 100644 --- a/RestaurantReview/RestaurantReview/Services/IConn.cs +++ b/RestaurantReview/RestaurantReview/Services/IConn.cs @@ -1,13 +1,9 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace RestaurantReview.Services +namespace RestaurantReview.Services { public interface IConn { string connstring(); + string AWSconnstring(); } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Startup.cs b/RestaurantReview/RestaurantReview/Startup.cs index cf8b1375..83e35a68 100644 --- a/RestaurantReview/RestaurantReview/Startup.cs +++ b/RestaurantReview/RestaurantReview/Startup.cs @@ -1,17 +1,8 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; -using Microsoft.AspNetCore.HttpsPolicy; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; -using Microsoft.Extensions.Logging; -using Microsoft.Extensions.Options; -using RestaurantReview.Controllers; -using RestaurantReview.DAL; using RestaurantReview.Services; namespace RestaurantReview @@ -30,6 +21,12 @@ public void ConfigureServices(IServiceCollection services) { services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); services.AddScoped(); + + services.AddCors(options => + { + options.AddPolicy("CorsPolicy", + builder => builder.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader()); + }); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. @@ -47,6 +44,7 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env) app.UseHttpsRedirection(); app.UseMvc(); + app.UseCors(); } } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/appsettings.Development.json b/RestaurantReview/RestaurantReview/appsettings.Development.json index e203e940..f999bc20 100644 --- a/RestaurantReview/RestaurantReview/appsettings.Development.json +++ b/RestaurantReview/RestaurantReview/appsettings.Development.json @@ -6,4 +6,4 @@ "Microsoft": "Information" } } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/appsettings.json b/RestaurantReview/RestaurantReview/appsettings.json index def9159a..ba5b9074 100644 --- a/RestaurantReview/RestaurantReview/appsettings.json +++ b/RestaurantReview/RestaurantReview/appsettings.json @@ -5,4 +5,4 @@ } }, "AllowedHosts": "*" -} +} \ No newline at end of file From 0e003586d4895633c82957f8d50d4fc4e29eed18 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 28 Oct 2019 02:45:34 -0400 Subject: [PATCH 25/36] Saving changes --- RestaurantReview/R2/R2.csproj | 21 ++++++++++ RestaurantReview/R2/UnitTest1.cs | 31 +++++++++++++++ RestaurantReview/RestaurantReview.sln | 6 --- .../RestaurantDALTests/GetRestaurantTests.cs | 25 ------------ .../RestaurantReviewMSTests.csproj | 9 ++--- .../RestaurantReviewMSTests/UnitTest1.cs | 14 ------- .../Controllers/RestaurantController.cs | 27 +++++++++++++ .../Models/RestaurantModel.cs | 38 +++++++++++++++++++ .../RestaurantReviewTests.csproj | 4 +- .../RestaurantsDALTests/GetRestaurantsTest.cs | 22 ----------- .../RestaurantReviewTests/UnitTest1.cs | 15 -------- 11 files changed, 124 insertions(+), 88 deletions(-) create mode 100644 RestaurantReview/R2/R2.csproj create mode 100644 RestaurantReview/R2/UnitTest1.cs delete mode 100644 RestaurantReview/RestaurantReviewMSTests/RestaurantDALTests/GetRestaurantTests.cs delete mode 100644 RestaurantReview/RestaurantReviewMSTests/UnitTest1.cs create mode 100644 RestaurantReview/RestaurantReviewTests/Controllers/RestaurantController.cs create mode 100644 RestaurantReview/RestaurantReviewTests/Models/RestaurantModel.cs delete mode 100644 RestaurantReview/RestaurantReviewTests/RestaurantsDALTests/GetRestaurantsTest.cs delete mode 100644 RestaurantReview/RestaurantReviewTests/UnitTest1.cs diff --git a/RestaurantReview/R2/R2.csproj b/RestaurantReview/R2/R2.csproj new file mode 100644 index 00000000..c4ab7a65 --- /dev/null +++ b/RestaurantReview/R2/R2.csproj @@ -0,0 +1,21 @@ + + + + netcoreapp2.2 + + false + + + + + + + + + + + + + + + diff --git a/RestaurantReview/R2/UnitTest1.cs b/RestaurantReview/R2/UnitTest1.cs new file mode 100644 index 00000000..cdd3d83f --- /dev/null +++ b/RestaurantReview/R2/UnitTest1.cs @@ -0,0 +1,31 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using RestaurantReview.Controllers; +using RestaurantReview.Models; +using RestaurantReview.Services; +using System; +using System.Collections.Generic; +using System.Text; +using System.Linq; +using System.Threading.Tasks; +using RestaurantReview.DAL; +using System.Data.SqlClient; + + +namespace RestaurantReviewMSTests.Controllers +{ + [TestClass] + public class Restaurants + { + public IConn connection = new Conn(); + + [TestMethod] + public void RestaurantsControllerTest() + { + var RC = new RestaurantsController(connection); + var result = RC.Get("Boston"); + var resultType = result as ActionResult>; + Assert.IsInstanceOfType(resultType, typeof(ActionResult>)); + } + } +} diff --git a/RestaurantReview/RestaurantReview.sln b/RestaurantReview/RestaurantReview.sln index 082b87c9..1adcdd89 100644 --- a/RestaurantReview/RestaurantReview.sln +++ b/RestaurantReview/RestaurantReview.sln @@ -7,8 +7,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RestaurantReview", "Restaur EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RestaurantReviewTests", "RestaurantReviewTests\RestaurantReviewTests.csproj", "{81113AFA-4B8B-43CA-9632-2787FEF30F5A}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestaurantReviewMSTests", "RestaurantReviewMSTests\RestaurantReviewMSTests.csproj", "{12BFBAB3-915A-4A85-8691-B01C7725CA06}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -23,10 +21,6 @@ Global {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Debug|Any CPU.Build.0 = Debug|Any CPU {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Release|Any CPU.ActiveCfg = Release|Any CPU {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Release|Any CPU.Build.0 = Release|Any CPU - {12BFBAB3-915A-4A85-8691-B01C7725CA06}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {12BFBAB3-915A-4A85-8691-B01C7725CA06}.Debug|Any CPU.Build.0 = Debug|Any CPU - {12BFBAB3-915A-4A85-8691-B01C7725CA06}.Release|Any CPU.ActiveCfg = Release|Any CPU - {12BFBAB3-915A-4A85-8691-B01C7725CA06}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/RestaurantReview/RestaurantReviewMSTests/RestaurantDALTests/GetRestaurantTests.cs b/RestaurantReview/RestaurantReviewMSTests/RestaurantDALTests/GetRestaurantTests.cs deleted file mode 100644 index 288db13f..00000000 --- a/RestaurantReview/RestaurantReviewMSTests/RestaurantDALTests/GetRestaurantTests.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; -using Microsoft.VisualStudio.TestTools.UnitTesting; -using RestaurantReview.DAL; -using RestaurantReview.Services; - -namespace RestaurantReviewMSTests -{ - [TestClass] - public class GetRestaurantsTests - { - public IConn connection; - public GetRestaurantsTests(IConn conn) - { - this.connection = conn; - } - - [TestMethod] - public void GetRestaurantsTests_ReturnsCorrectData() - { - var sut = new RestaurantsDAL(connection.AWSconnstring()); - } - } -} diff --git a/RestaurantReview/RestaurantReviewMSTests/RestaurantReviewMSTests.csproj b/RestaurantReview/RestaurantReviewMSTests/RestaurantReviewMSTests.csproj index 05540925..57e6bb7f 100644 --- a/RestaurantReview/RestaurantReviewMSTests/RestaurantReviewMSTests.csproj +++ b/RestaurantReview/RestaurantReviewMSTests/RestaurantReviewMSTests.csproj @@ -1,4 +1,4 @@ - + netcoreapp2.2 @@ -7,13 +7,12 @@ + + - - - - + diff --git a/RestaurantReview/RestaurantReviewMSTests/UnitTest1.cs b/RestaurantReview/RestaurantReviewMSTests/UnitTest1.cs deleted file mode 100644 index 421aebaa..00000000 --- a/RestaurantReview/RestaurantReviewMSTests/UnitTest1.cs +++ /dev/null @@ -1,14 +0,0 @@ - -using Microsoft.VisualStudio.TestTools.UnitTesting; - -namespace RestaurantReviewMSTests -{ - [TestClass] - public class UnitTest1 - { - [TestMethod] - public void TestMethod1() - { - } - } -} diff --git a/RestaurantReview/RestaurantReviewTests/Controllers/RestaurantController.cs b/RestaurantReview/RestaurantReviewTests/Controllers/RestaurantController.cs new file mode 100644 index 00000000..03f719c6 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/Controllers/RestaurantController.cs @@ -0,0 +1,27 @@ +using Microsoft.AspNetCore.Mvc; +using RestaurantReview.Controllers; +using RestaurantReview.Models; +using RestaurantReview.Services; +using System.Collections.Generic; +using Xunit; + +namespace RestaurantReviewTests +{ + public class RestaurantController + { + public IConn connection = new Conn(); + + [Fact] + public void RestaurantsControllerTest() + { + //Arrange + var RC = new RestaurantsController(connection); + + //Act + var result = RC.Get("Boston"); + + //Assert + Assert.IsType(result); + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/Models/RestaurantModel.cs b/RestaurantReview/RestaurantReviewTests/Models/RestaurantModel.cs new file mode 100644 index 00000000..f7790713 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/Models/RestaurantModel.cs @@ -0,0 +1,38 @@ +using RestaurantReview.Models; +using Xunit; + +namespace RestaurantReviewTests +{ + public class RestaurantModel + { + [Fact] + public void RestaurantModel_CityWithSpaceValid() + { + var sut = new Restaurant + { + City = "Sau Paulo" + }; + Assert.True(sut.ValidateCity(), "should return 1 match"); + } + + [Fact] + public void RestaurantModel_CityWithNumberInvalid() + { + var sut = new Restaurant + { + City = "Sau Paulo1" + }; + Assert.False(sut.ValidateCity(), "should return 0 matches"); + } + + [Fact] + public void RestaurantModel_CityWithSpecialCharsInvalid() + { + var sut = new Restaurant + { + City = "Sau Paulo!?!" + }; + Assert.False(sut.ValidateCity(), "should return 0 matches"); + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj b/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj index b9a87313..292059ce 100644 --- a/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj +++ b/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj @@ -7,7 +7,9 @@ + + @@ -17,7 +19,7 @@ - + diff --git a/RestaurantReview/RestaurantReviewTests/RestaurantsDALTests/GetRestaurantsTest.cs b/RestaurantReview/RestaurantReviewTests/RestaurantsDALTests/GetRestaurantsTest.cs deleted file mode 100644 index 93d5435d..00000000 --- a/RestaurantReview/RestaurantReviewTests/RestaurantsDALTests/GetRestaurantsTest.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System; -using Xunit; -using RestaurantReview.Models; -using RestaurantReview.DAL; -using RestaurantReview.Services; - -namespace RestaurantReviewTests.RestaurantsDALTests -{ - public class GetRestaurantsTest - { - public IConn connection; - public GetRestaurantsTest(IConn conn) - { - this.connection = conn; - } - [Fact] - public void GetRestaurantsTests_ReturnsCorrectData() - { - var sut = new RestaurantsDAL(connection.AWSconnstring()); - } - } -} diff --git a/RestaurantReview/RestaurantReviewTests/UnitTest1.cs b/RestaurantReview/RestaurantReviewTests/UnitTest1.cs deleted file mode 100644 index 3211bf37..00000000 --- a/RestaurantReview/RestaurantReviewTests/UnitTest1.cs +++ /dev/null @@ -1,15 +0,0 @@ -using RestaurantReview.Models; -using System; -using Xunit; - -namespace RestaurantReviewTests -{ - public class UnitTest1 - { - [Fact] - public void Test1() - { - var sut = new Review(); - } - } -} \ No newline at end of file From 735f12a5f7769443e4f52f92748f84c56c7c4d73 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 28 Oct 2019 02:59:31 -0400 Subject: [PATCH 26/36] saving --- RestaurantReview/R2/R2.csproj | 21 + RestaurantReview/R2/UnitTest1.cs | 31 + ...Studio.TestPlatform.MSTest.TestAdapter.dll | Bin 0 -> 134192 bytes ...TestAdapter.PlatformServices.Interface.dll | Bin 0 -> 24832 bytes ...latform.MSTestAdapter.PlatformServices.dll | Bin 0 -> 31984 bytes .../R2/bin/Debug/netcoreapp2.2/R2.deps.json | 3394 ++++ .../R2/bin/Debug/netcoreapp2.2/R2.dll | Bin 0 -> 5632 bytes .../R2/bin/Debug/netcoreapp2.2/R2.pdb | Bin 0 -> 1112 bytes .../netcoreapp2.2/R2.runtimeconfig.dev.json | 9 + .../Debug/netcoreapp2.2/R2.runtimeconfig.json | 9 + .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 0 -> 14848 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 0 -> 4692 bytes .../Debug/netcoreapp2.2/R2.AssemblyInfo.cs | 23 + .../netcoreapp2.2/R2.AssemblyInfoInputs.cache | 1 + .../obj/Debug/netcoreapp2.2/R2.assets.cache | Bin 0 -> 87003 bytes .../netcoreapp2.2/R2.csproj.CopyComplete | 0 .../R2.csproj.CoreCompileInputs.cache | 1 + .../R2.csproj.FileListAbsolute.txt | 17 + .../R2.csprojAssemblyReference.cache | Bin 0 -> 154331 bytes .../R2/obj/Debug/netcoreapp2.2/R2.dll | Bin 0 -> 5632 bytes .../R2/obj/Debug/netcoreapp2.2/R2.pdb | Bin 0 -> 1112 bytes RestaurantReview/R2/obj/R2.csproj.nuget.cache | 5 + .../R2/obj/R2.csproj.nuget.dgspec.json | 151 + .../R2/obj/R2.csproj.nuget.g.props | 24 + .../R2/obj/R2.csproj.nuget.g.targets | 12 + RestaurantReview/R2/obj/project.assets.json | 9677 ++++++++++++ RestaurantReview/RestaurantReview.sln | 31 + .../Controllers/RestaurantsController.cs | 38 + .../Controllers/ReviewsController.cs | 51 + .../RestaurantReview/DAL/RestaurantsDAL.cs | 82 + .../RestaurantReview/DAL/ReviewsDAL.cs | 136 + .../RestaurantReview/DAL/UserDAL.cs | 118 + .../RestaurantReview/DB/dbsetup.sql | 35 + .../RestaurantReview/DB/queryDB.sql | 7 + .../RestaurantReview/DB/seedDB.sql | 66 + .../RestaurantReview/Exceptions.cs | 11 + .../RestaurantReview/Models/Restaurant.cs | 24 + .../RestaurantReview/Models/Review.cs | 26 + .../RestaurantReview/Models/UpdateReview.cs | 8 + .../RestaurantReview/Models/User.cs | 8 + RestaurantReview/RestaurantReview/Program.cs | 17 + .../Properties/launchSettings.json | 30 + .../RestaurantReview/RestaurantReview.csproj | 15 + .../RestaurantReview.csproj.user | 6 + .../RestaurantReview/Services/Conn.cs | 15 + .../RestaurantReview/Services/IConn.cs | 9 + RestaurantReview/RestaurantReview/Startup.cs | 50 + .../appsettings.Development.json | 9 + .../RestaurantReview/appsettings.json | 8 + .../netcoreapp2.2/RestaurantReview.deps.json | 5682 +++++++ .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 0 -> 18432 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 0 -> 5780 bytes .../RestaurantReview.runtimeconfig.dev.json | 9 + .../RestaurantReview.runtimeconfig.json | 12 + .../RestaurantReview.assets.cache | Bin 0 -> 49417 bytes .../RestaurantReview.AssemblyInfo.cs | 23 + .../RestaurantReview.AssemblyInfoInputs.cache | 1 + .../RestaurantReview.RazorAssemblyInfo.cache | 1 + .../RestaurantReview.RazorAssemblyInfo.cs | 20 + ...aurantReview.RazorTargetAssemblyInfo.cache | 1 + .../RestaurantReview.assets.cache | Bin 0 -> 123254 bytes ...urantReview.csproj.CoreCompileInputs.cache | 1 + ...staurantReview.csproj.FileListAbsolute.txt | 14 + ...aurantReview.csprojAssemblyReference.cache | Bin 0 -> 258011 bytes .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 0 -> 18432 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 0 -> 5780 bytes .../obj/RestaurantReview.csproj.nuget.cache | 5 + .../RestaurantReview.csproj.nuget.dgspec.json | 79 + .../obj/RestaurantReview.csproj.nuget.g.props | 29 + .../RestaurantReview.csproj.nuget.g.targets | 17 + .../RestaurantReview/obj/project.assets.json | 13053 ++++++++++++++++ .../DesignTimeBuild/.dtbcache | Bin 0 -> 797898 bytes .../.vs/RestaurantReviewMSTests/v16/.suo | Bin 0 -> 5632 bytes .../RestaurantReviewMSTests.csproj | 22 + ...Studio.TestPlatform.MSTest.TestAdapter.dll | Bin 0 -> 134192 bytes ...TestAdapter.PlatformServices.Interface.dll | Bin 0 -> 24832 bytes ...latform.MSTestAdapter.PlatformServices.dll | Bin 0 -> 31984 bytes .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 0 -> 14848 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 0 -> 4692 bytes .../RestaurantReviewMSTests.deps.json | 3440 ++++ .../netcoreapp2.2/RestaurantReviewMSTests.dll | Bin 0 -> 6144 bytes .../netcoreapp2.2/RestaurantReviewMSTests.pdb | Bin 0 -> 1344 bytes ...aurantReviewMSTests.runtimeconfig.dev.json | 9 + ...RestaurantReviewMSTests.runtimeconfig.json | 9 + .../RestaurantReviewMSTests.AssemblyInfo.cs | 23 + ...rantReviewMSTests.AssemblyInfoInputs.cache | 1 + .../RestaurantReviewMSTests.assets.cache | Bin 0 -> 87993 bytes ...estaurantReviewMSTests.csproj.CopyComplete | 0 ...viewMSTests.csproj.CoreCompileInputs.cache | 1 + ...tReviewMSTests.csproj.FileListAbsolute.txt | 17 + ...eviewMSTests.csprojAssemblyReference.cache | Bin 0 -> 3978 bytes .../netcoreapp2.2/RestaurantReviewMSTests.dll | Bin 0 -> 6144 bytes .../netcoreapp2.2/RestaurantReviewMSTests.pdb | Bin 0 -> 1344 bytes ...RestaurantReviewMSTests.csproj.nuget.cache | 5 + ...rantReviewMSTests.csproj.nuget.dgspec.json | 155 + ...staurantReviewMSTests.csproj.nuget.g.props | 24 + ...aurantReviewMSTests.csproj.nuget.g.targets | 12 + .../obj/project.assets.json | 9751 ++++++++++++ .../Controllers/RestaurantController.cs | 25 + .../Models/RestaurantModel.cs | 38 + .../RestaurantReviewTests.csproj | 26 + .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 0 -> 18432 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 0 -> 5780 bytes .../RestaurantReviewTests.deps.json | 3532 +++++ .../netcoreapp2.2/RestaurantReviewTests.dll | Bin 0 -> 6144 bytes .../netcoreapp2.2/RestaurantReviewTests.pdb | Bin 0 -> 1496 bytes ...staurantReviewTests.runtimeconfig.dev.json | 9 + .../RestaurantReviewTests.runtimeconfig.json | 9 + .../xunit.runner.reporters.netcoreapp10.dll | Bin 0 -> 72616 bytes .../xunit.runner.utility.netcoreapp10.dll | Bin 0 -> 221096 bytes ...er.visualstudio.dotnetcore.testadapter.dll | Bin 0 -> 150440 bytes .../RestaurantReviewTests.AssemblyInfo.cs | 23 + ...aurantReviewTests.AssemblyInfoInputs.cache | 1 + .../RestaurantReviewTests.assets.cache | Bin 0 -> 88771 bytes .../RestaurantReviewTests.csproj.CopyComplete | 0 ...ReviewTests.csproj.CoreCompileInputs.cache | 1 + ...antReviewTests.csproj.FileListAbsolute.txt | 17 + ...tReviewTests.csprojAssemblyReference.cache | Bin 0 -> 157486 bytes .../netcoreapp2.2/RestaurantReviewTests.dll | Bin 0 -> 6144 bytes .../netcoreapp2.2/RestaurantReviewTests.pdb | Bin 0 -> 1496 bytes .../RestaurantReviewTests.csproj.nuget.cache | 5 + ...aurantReviewTests.csproj.nuget.dgspec.json | 155 + ...RestaurantReviewTests.csproj.nuget.g.props | 26 + ...staurantReviewTests.csproj.nuget.g.targets | 13 + .../obj/project.assets.json | 9808 ++++++++++++ 125 files changed, 60279 insertions(+) create mode 100644 RestaurantReview/R2/R2.csproj create mode 100644 RestaurantReview/R2/UnitTest1.cs create mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll create mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll create mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll create mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.deps.json create mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.dll create mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.pdb create mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.runtimeconfig.dev.json create mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.runtimeconfig.json create mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/RestaurantReview.dll create mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/RestaurantReview.pdb create mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.AssemblyInfo.cs create mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.AssemblyInfoInputs.cache create mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.assets.cache create mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.CopyComplete create mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.CoreCompileInputs.cache create mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.FileListAbsolute.txt create mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csprojAssemblyReference.cache create mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.dll create mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.pdb create mode 100644 RestaurantReview/R2/obj/R2.csproj.nuget.cache create mode 100644 RestaurantReview/R2/obj/R2.csproj.nuget.dgspec.json create mode 100644 RestaurantReview/R2/obj/R2.csproj.nuget.g.props create mode 100644 RestaurantReview/R2/obj/R2.csproj.nuget.g.targets create mode 100644 RestaurantReview/R2/obj/project.assets.json create mode 100644 RestaurantReview/RestaurantReview.sln create mode 100644 RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs create mode 100644 RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs create mode 100644 RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs create mode 100644 RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs create mode 100644 RestaurantReview/RestaurantReview/DAL/UserDAL.cs create mode 100644 RestaurantReview/RestaurantReview/DB/dbsetup.sql create mode 100644 RestaurantReview/RestaurantReview/DB/queryDB.sql create mode 100644 RestaurantReview/RestaurantReview/DB/seedDB.sql create mode 100644 RestaurantReview/RestaurantReview/Exceptions.cs create mode 100644 RestaurantReview/RestaurantReview/Models/Restaurant.cs create mode 100644 RestaurantReview/RestaurantReview/Models/Review.cs create mode 100644 RestaurantReview/RestaurantReview/Models/UpdateReview.cs create mode 100644 RestaurantReview/RestaurantReview/Models/User.cs create mode 100644 RestaurantReview/RestaurantReview/Program.cs create mode 100644 RestaurantReview/RestaurantReview/Properties/launchSettings.json create mode 100644 RestaurantReview/RestaurantReview/RestaurantReview.csproj create mode 100644 RestaurantReview/RestaurantReview/RestaurantReview.csproj.user create mode 100644 RestaurantReview/RestaurantReview/Services/Conn.cs create mode 100644 RestaurantReview/RestaurantReview/Services/IConn.cs create mode 100644 RestaurantReview/RestaurantReview/Startup.cs create mode 100644 RestaurantReview/RestaurantReview/appsettings.Development.json create mode 100644 RestaurantReview/RestaurantReview/appsettings.json create mode 100644 RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.deps.json create mode 100644 RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.dll create mode 100644 RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.pdb create mode 100644 RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.runtimeconfig.dev.json create mode 100644 RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.runtimeconfig.json create mode 100644 RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.0/RestaurantReview.assets.cache create mode 100644 RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.AssemblyInfo.cs create mode 100644 RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.AssemblyInfoInputs.cache create mode 100644 RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.RazorAssemblyInfo.cache create mode 100644 RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.RazorAssemblyInfo.cs create mode 100644 RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.RazorTargetAssemblyInfo.cache create mode 100644 RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.assets.cache create mode 100644 RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csproj.CoreCompileInputs.cache create mode 100644 RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csproj.FileListAbsolute.txt create mode 100644 RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csprojAssemblyReference.cache create mode 100644 RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.dll create mode 100644 RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.pdb create mode 100644 RestaurantReview/RestaurantReview/obj/RestaurantReview.csproj.nuget.cache create mode 100644 RestaurantReview/RestaurantReview/obj/RestaurantReview.csproj.nuget.dgspec.json create mode 100644 RestaurantReview/RestaurantReview/obj/RestaurantReview.csproj.nuget.g.props create mode 100644 RestaurantReview/RestaurantReview/obj/RestaurantReview.csproj.nuget.g.targets create mode 100644 RestaurantReview/RestaurantReview/obj/project.assets.json create mode 100644 RestaurantReview/RestaurantReviewMSTests/.vs/RestaurantReviewMSTests/DesignTimeBuild/.dtbcache create mode 100644 RestaurantReview/RestaurantReviewMSTests/.vs/RestaurantReviewMSTests/v16/.suo create mode 100644 RestaurantReview/RestaurantReviewMSTests/RestaurantReviewMSTests.csproj create mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll create mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll create mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll create mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReview.dll create mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReview.pdb create mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.deps.json create mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.dll create mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.pdb create mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.runtimeconfig.dev.json create mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.runtimeconfig.json create mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.AssemblyInfo.cs create mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.AssemblyInfoInputs.cache create mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.assets.cache create mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.CopyComplete create mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.CoreCompileInputs.cache create mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.FileListAbsolute.txt create mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csprojAssemblyReference.cache create mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.dll create mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.pdb create mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/RestaurantReviewMSTests.csproj.nuget.cache create mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/RestaurantReviewMSTests.csproj.nuget.dgspec.json create mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/RestaurantReviewMSTests.csproj.nuget.g.props create mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/RestaurantReviewMSTests.csproj.nuget.g.targets create mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/project.assets.json create mode 100644 RestaurantReview/RestaurantReviewTests/Controllers/RestaurantController.cs create mode 100644 RestaurantReview/RestaurantReviewTests/Models/RestaurantModel.cs create mode 100644 RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj create mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReview.dll create mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReview.pdb create mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReviewTests.deps.json create mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReviewTests.dll create mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReviewTests.pdb create mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReviewTests.runtimeconfig.dev.json create mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReviewTests.runtimeconfig.json create mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/xunit.runner.reporters.netcoreapp10.dll create mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/xunit.runner.utility.netcoreapp10.dll create mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/xunit.runner.visualstudio.dotnetcore.testadapter.dll create mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.AssemblyInfo.cs create mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.AssemblyInfoInputs.cache create mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.assets.cache create mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.CopyComplete create mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.CoreCompileInputs.cache create mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.FileListAbsolute.txt create mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csprojAssemblyReference.cache create mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.dll create mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.pdb create mode 100644 RestaurantReview/RestaurantReviewTests/obj/RestaurantReviewTests.csproj.nuget.cache create mode 100644 RestaurantReview/RestaurantReviewTests/obj/RestaurantReviewTests.csproj.nuget.dgspec.json create mode 100644 RestaurantReview/RestaurantReviewTests/obj/RestaurantReviewTests.csproj.nuget.g.props create mode 100644 RestaurantReview/RestaurantReviewTests/obj/RestaurantReviewTests.csproj.nuget.g.targets create mode 100644 RestaurantReview/RestaurantReviewTests/obj/project.assets.json diff --git a/RestaurantReview/R2/R2.csproj b/RestaurantReview/R2/R2.csproj new file mode 100644 index 00000000..c4ab7a65 --- /dev/null +++ b/RestaurantReview/R2/R2.csproj @@ -0,0 +1,21 @@ + + + + netcoreapp2.2 + + false + + + + + + + + + + + + + + + diff --git a/RestaurantReview/R2/UnitTest1.cs b/RestaurantReview/R2/UnitTest1.cs new file mode 100644 index 00000000..cdd3d83f --- /dev/null +++ b/RestaurantReview/R2/UnitTest1.cs @@ -0,0 +1,31 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using RestaurantReview.Controllers; +using RestaurantReview.Models; +using RestaurantReview.Services; +using System; +using System.Collections.Generic; +using System.Text; +using System.Linq; +using System.Threading.Tasks; +using RestaurantReview.DAL; +using System.Data.SqlClient; + + +namespace RestaurantReviewMSTests.Controllers +{ + [TestClass] + public class Restaurants + { + public IConn connection = new Conn(); + + [TestMethod] + public void RestaurantsControllerTest() + { + var RC = new RestaurantsController(connection); + var result = RC.Get("Boston"); + var resultType = result as ActionResult>; + Assert.IsInstanceOfType(resultType, typeof(ActionResult>)); + } + } +} diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll new file mode 100644 index 0000000000000000000000000000000000000000..515d8781a64b6fdb0b5f6cddb1d13b9f0072d980 GIT binary patch literal 134192 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 H-jx0yL|jAt literal 0 HcmV?d00001 diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll new file mode 100644 index 0000000000000000000000000000000000000000..85806bb1847f6ac3e709eb23891c312e0cff9027 GIT binary patch literal 24832 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 literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReviewMSTests/.vs/RestaurantReviewMSTests/v16/.suo b/RestaurantReview/RestaurantReviewMSTests/.vs/RestaurantReviewMSTests/v16/.suo new file mode 100644 index 0000000000000000000000000000000000000000..af55fb72cee99645be54d2fe795463c4a7193f35 GIT binary patch literal 5632 zcmca`Uhu)fjZzO8(10BSGsD0CoD6J8;*3aa1_1`J97ycn|Ns9%QXn>vISPhQ2m~?Y z17Qh+0)s0<9*{0#s02kN(LjuW6&~kI1avL9(XSobdzFzBqz;;x0)RH=Gh{J%0&PzN zvRoM|2$+H@EylnEw;vSjsIu63%s^pa@&$unhGZawxT1_9lOcs673d;8hG3vuau`a1 zA(9DXM2xU;fXzwU6xB*)}Il$IXG2S9ojg0mesGZ1z*HqFZk^M%RPU@&0%J#$Z zJ&Z>7%P4#JhX57wKO?C918P5jLW`Ijg`EGRfjzzyU`bN~>{S&p!~#nqA7JkW)XxF+ zNFg#Hv3y{EClTHoL)cj)DlXCbE&%1tBPgn_g_H?g=RwTRt + + + netcoreapp2.2 + + false + + + + + + + + + + + + + + + + diff --git a/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll b/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll new file mode 100644 index 0000000000000000000000000000000000000000..515d8781a64b6fdb0b5f6cddb1d13b9f0072d980 GIT binary patch literal 134192 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 H-jx0yL|jAt literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll b/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll new file mode 100644 index 0000000000000000000000000000000000000000..85806bb1847f6ac3e709eb23891c312e0cff9027 GIT binary patch literal 24832 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 aO5D1`XLX?CGrl!lOD>*xA$J1t{ro>i2z{ym literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll b/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll new file mode 100644 index 0000000000000000000000000000000000000000..a68484e4d8d1e152b366bfde6714278baa11005d GIT binary patch literal 31984 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 literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReview.dll b/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReview.dll new file mode 100644 index 0000000000000000000000000000000000000000..57d3980d48cfce4686584d523df8b4301166ddba GIT binary patch literal 14848 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 literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.deps.json b/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.deps.json new file mode 100644 index 00000000..2745d821 --- /dev/null +++ b/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.deps.json @@ -0,0 +1,3440 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v2.2", + "signature": "9593f0133d64083cfccda0a98f27a4e4565cef2a" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v2.2": { + "RestaurantReviewMSTests/1.0.0": { + "dependencies": { + "MSTest.TestAdapter": "1.4.0", + "MSTest.TestFramework": "1.4.0", + "Microsoft.AspNetCore.Mvc.Core": "2.2.5", + "Microsoft.NET.Test.Sdk": "16.0.1", + "Moq": "4.13.1", + "RestaurantReview": "1.0.0", + "System.Data.SqlClient": "4.8.0-preview1.19504.10" + }, + "runtime": { + "RestaurantReviewMSTests.dll": {} + } + }, + "Castle.Core/4.4.0": { + "dependencies": { + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.4.0.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "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" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "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" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.0" + } + } + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "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.7.0-preview1.19504.10", + "System.Threading.Tasks.Extensions": "4.5.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": { + "assemblyVersion": "2.2.5.0", + "fileVersion": "2.2.5.19109" + } + } + }, + "Microsoft.AspNetCore.Razor.Language/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "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" + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": {}, + "Microsoft.CodeAnalysis.Common/2.8.0": { + "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.7.0-preview1.19504.10", + "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" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.0.62830" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/2.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "2.8.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.0.62830" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/2.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "2.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "2.8.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.0.62830" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "2.8.0", + "System.Composition": "1.0.31", + "System.Diagnostics.Contracts": "4.3.0", + "System.Linq.Parallel": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.0.62830" + } + } + }, + "Microsoft.CodeCoverage/16.0.1": { + "runtime": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "16.0.28223.3002" + } + } + }, + "Microsoft.DotNet.PlatformAbstractions/2.1.0": { + "dependencies": { + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "2.1.0.0" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.DependencyInjection/2.2.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0" + }, + "runtime": { + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.DependencyModel/2.1.0": { + "dependencies": { + "Microsoft.DotNet.PlatformAbstractions": "2.1.0", + "Newtonsoft.Json": "11.0.2", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Linq": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "2.1.0.0" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "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" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Options/2.2.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Primitives": "2.2.0", + "System.ComponentModel.Annotations": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Primitives/2.2.0": { + "dependencies": { + "System.Memory": "4.5.1", + "System.Runtime.CompilerServices.Unsafe": "4.7.0-preview1.19504.10" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0", + "System.Buffers": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.NET.Test.Sdk/16.0.1": { + "dependencies": { + "Microsoft.CodeCoverage": "16.0.1", + "Microsoft.TestPlatform.TestHost": "16.0.1" + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview1.19504.10": {}, + "Microsoft.TestPlatform.ObjectModel/16.0.1": { + "dependencies": { + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.Process": "4.1.0", + "System.Diagnostics.TextWriterTraceListener": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Reflection.Metadata": "1.4.2", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Runtime.Loader": "4.0.0", + "System.Runtime.Serialization.Json": "4.0.2", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Threading.Thread": "4.3.0", + "System.Xml.XPath.XmlDocument": "4.0.1" + }, + "runtime": { + "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + } + }, + "resources": { + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/16.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyModel": "2.1.0", + "Microsoft.TestPlatform.ObjectModel": "16.0.1", + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netstandard1.5/testhost.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + } + }, + "resources": { + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "dependencies": { + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.3", + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.3" + }, + "runtime": { + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "2.2.0", + "Microsoft.CodeAnalysis.CSharp": "2.8.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp.Workspaces": "2.8.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.3", + "Newtonsoft.Json": "11.0.2", + "NuGet.Frameworks": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration": "2.2.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview1.19504.10", + "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + } + } + }, + "Moq/4.13.1": { + "dependencies": { + "Castle.Core": "4.4.0", + "System.Threading.Tasks.Extensions": "4.5.1" + }, + "runtime": { + "lib/netstandard2.0/Moq.dll": { + "assemblyVersion": "4.13.0.0", + "fileVersion": "4.13.1.0" + } + } + }, + "MSTest.TestAdapter/1.4.0": { + "dependencies": { + "System.Diagnostics.TextWriterTraceListener": "4.3.0" + } + }, + "MSTest.TestFramework/1.4.0": { + "runtime": { + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": { + "assemblyVersion": "14.0.0.0", + "fileVersion": "14.0.3021.1" + }, + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": { + "assemblyVersion": "14.0.0.0", + "fileVersion": "14.0.3021.1" + } + } + }, + "Newtonsoft.Json/11.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.2.21924" + } + } + }, + "NuGet.Frameworks/4.7.0": { + "runtime": { + "lib/netstandard1.6/NuGet.Frameworks.dll": { + "assemblyVersion": "4.7.0.5", + "fileVersion": "4.7.0.5148" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/debian.8-x64/native/_._": { + "rid": "debian.8-x64", + "assetType": "native" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/fedora.23-x64/native/_._": { + "rid": "fedora.23-x64", + "assetType": "native" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/fedora.24-x64/native/_._": { + "rid": "fedora.24-x64", + "assetType": "native" + } + } + }, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0-preview1.19504.10": { + "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": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "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" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/opensuse.13.2-x64/native/_._": { + "rid": "opensuse.13.2-x64", + "assetType": "native" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/opensuse.42.1-x64/native/_._": { + "rid": "opensuse.42.1-x64", + "assetType": "native" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "runtimeTargets": { + "runtime/osx.10.10-x64/native/_._": { + "rid": "osx.10.10-x64", + "assetType": "native" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/osx.10.10-x64/native/_._": { + "rid": "osx.10.10-x64", + "assetType": "native" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/rhel.7-x64/native/_._": { + "rid": "rhel.7-x64", + "assetType": "native" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/ubuntu.14.04-x64/native/_._": { + "rid": "ubuntu.14.04-x64", + "assetType": "native" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/ubuntu.16.04-x64/native/_._": { + "rid": "ubuntu.16.04-x64", + "assetType": "native" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/ubuntu.16.10-x64/native/_._": { + "rid": "ubuntu.16.10-x64", + "assetType": "native" + } + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.0": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "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" + } + }, + "System.Collections.Immutable/1.3.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "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" + } + }, + "System.Collections.Specialized/4.3.0": { + "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" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Annotations/4.5.0": {}, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.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" + } + }, + "System.Composition/1.0.31": { + "dependencies": { + "System.Composition.AttributedModel": "1.0.31", + "System.Composition.Convention": "1.0.31", + "System.Composition.Hosting": "1.0.31", + "System.Composition.Runtime": "1.0.31", + "System.Composition.TypedParts": "1.0.31" + } + }, + "System.Composition.AttributedModel/1.0.31": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Composition.Convention/1.0.31": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.AttributedModel": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Convention.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Composition.Hosting/1.0.31": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.Runtime": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Hosting.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Composition.Runtime/1.0.31": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Runtime.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Composition.TypedParts/1.0.31": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.AttributedModel": "1.0.31", + "System.Composition.Hosting": "1.0.31", + "System.Composition.Runtime": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.SqlClient/4.8.0-preview1.19504.10": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0-preview1.19504.10", + "System.Diagnostics.DiagnosticSource": "4.7.0-preview1.19504.10", + "System.Security.Principal.Windows": "4.7.0-preview1.19504.10", + "System.Text.Encoding.CodePages": "4.7.0-preview1.19504.10", + "runtime.native.System.Data.SqlClient.sni": "4.7.0-preview1.19504.10" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.0", + "fileVersion": "4.700.19.50410" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.0", + "fileVersion": "4.700.19.50410" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.0", + "fileVersion": "4.700.19.50410" + } + } + }, + "System.Diagnostics.Contracts/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.7.0-preview1.19504.10": { + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.50410" + } + } + }, + "System.Diagnostics.FileVersionInfo/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "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.2", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Diagnostics.Process/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "Microsoft.Win32.Primitives": "4.0.1", + "Microsoft.Win32.Registry": "4.7.0-preview1.19504.10", + "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.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Thread": "4.3.0", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.3.0" + }, + "runtimeTargets": { + "runtime/linux/lib/_._": { + "rid": "linux", + "assetType": "runtime" + }, + "runtime/osx/lib/_._": { + "rid": "osx", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.2", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.TextWriterTraceListener/4.3.0": { + "dependencies": { + "System.Diagnostics.TraceSource": "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.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Collections": "4.3.0", + "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", + "runtime.native.System": "4.3.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Dynamic.Runtime/4.3.0": { + "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" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "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" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Buffers": "4.5.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" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "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" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "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" + } + }, + "System.Linq.Expressions/4.3.0": { + "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" + } + }, + "System.Linq.Parallel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "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.Threading.Tasks": "4.3.0" + } + }, + "System.Memory/4.5.1": {}, + "System.ObjectModel/4.3.0": { + "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" + } + }, + "System.Private.DataContractSerialization/4.1.1": { + "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.1.1", + "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.XmlDocument": "4.3.0", + "System.Xml.XmlSerializer": "4.0.11" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "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" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.4.2": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.1", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview1.19504.10": { + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "4.0.6.0", + "fileVersion": "4.700.19.50410" + } + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Reflection": "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" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Runtime.Loader/4.0.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Serialization.Json/4.0.2": { + "dependencies": { + "System.IO": "4.3.0", + "System.Private.DataContractSerialization": "4.1.1", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0-preview1.19504.10": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "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" + }, + "runtimeTargets": { + "runtime/osx/lib/_._": { + "rid": "osx", + "assetType": "runtime" + }, + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "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" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "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" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "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" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "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" + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "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" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Security.Principal.Windows/4.7.0-preview1.19504.10": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + } + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0-preview1.19504.10": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime.CompilerServices.Unsafe": "4.7.0-preview1.19504.10" + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/4.5.0": { + "runtime": { + "lib/netstandard2.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.1": {}, + "System.Threading.Tasks.Parallel/4.3.0": { + "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" + } + }, + "System.Threading.Thread/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.ThreadPool/4.0.10": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.ValueTuple/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "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.5.1" + } + }, + "System.Xml.XDocument/4.3.0": { + "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" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "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" + } + }, + "System.Xml.XmlSerializer/4.0.11": { + "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" + } + }, + "System.Xml.XPath/4.3.0": { + "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" + } + }, + "System.Xml.XPath.XDocument/4.3.0": { + "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" + } + }, + "System.Xml.XPath.XmlDocument/4.0.1": { + "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.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XPath": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "1.0.24212.1" + } + } + }, + "RestaurantReview/1.0.0": { + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration.Design": "2.2.3" + }, + "runtime": { + "RestaurantReview.dll": {} + } + } + } + }, + "libraries": { + "RestaurantReviewMSTests/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Castle.Core/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "path": "castle.core/4.4.0", + "hashPath": "castle.core.4.4.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", + "path": "microsoft.aspnetcore.authentication.core/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", + "path": "microsoft.aspnetcore.http/2.2.0", + "hashPath": "microsoft.aspnetcore.http.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", + "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", + "path": "microsoft.aspnetcore.mvc.core/2.2.5", + "hashPath": "microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IeyzVFXZdpUAnWKWoNYE0SsP1Eu7JLjZaC94jaI1VfGtK57QykROz/iGMc8D0VcqC8i02qYTPQN/wPKm6PfidA==", + "path": "microsoft.aspnetcore.razor.language/2.2.0", + "hashPath": "microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", + "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "path": "microsoft.aspnetcore.routing/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", + "path": "microsoft.codeanalysis.analyzers/1.1.0", + "hashPath": "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-06AzG7oOLKTCN1EnoVYL1bQz+Zwa10LMpUn7Kc+PdpN8CQXRqXTyhfxuKIz6t0qWfoatBNXdHD0OLcEYp5pOvQ==", + "path": "microsoft.codeanalysis.common/2.8.0", + "hashPath": "microsoft.codeanalysis.common.2.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RizcFXuHgGmeuZhxxE1qQdhFA9lGOHlk0MJlCUt6LOnYsevo72gNikPcbANFHY02YK8L/buNrihchY0TroGvXQ==", + "path": "microsoft.codeanalysis.csharp/2.8.0", + "hashPath": "microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EJWaxi2bI47iEZen/nZkJEDZCrP9Oj3PJtMwBv34Z0ZvvdSkpgsdqlHSud8d5vC53LnCXLfBLewfqHcILDVSDw==", + "path": "microsoft.codeanalysis.csharp.workspaces/2.8.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tJlJ99SD8bHBAXShOG/pXQ1K118cnsF01obEf9aAtdgLbw3yEPahZ7qvWeGMjrheUhvOsSkv/wTKYg9euKa8MQ==", + "path": "microsoft.codeanalysis.workspaces.common/2.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512" + }, + "Microsoft.CodeCoverage/16.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W7WI3iH6At2I/9x2ODgCIIMO0QfpA7ZCoHkeygMLAaz3Nms/GsugKz9N4hkTve2Lj66g2K4CAmbwe6utEH66lw==", + "path": "microsoft.codecoverage/16.0.1", + "hashPath": "microsoft.codecoverage.16.0.1.nupkg.sha512" + }, + "Microsoft.DotNet.PlatformAbstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==", + "path": "microsoft.dotnet.platformabstractions/2.1.0", + "hashPath": "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==", + "path": "microsoft.extensions.configuration.abstractions/2.2.0", + "hashPath": "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==", + "path": "microsoft.extensions.dependencyinjection/2.2.0", + "hashPath": "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==", + "path": "microsoft.extensions.dependencymodel/2.1.0", + "hashPath": "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==", + "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==", + "path": "microsoft.extensions.hosting.abstractions/2.2.0", + "hashPath": "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "path": "microsoft.extensions.objectpool/2.2.0", + "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==", + "path": "microsoft.extensions.options/2.2.0", + "hashPath": "microsoft.extensions.options.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==", + "path": "microsoft.extensions.primitives/2.2.0", + "hashPath": "microsoft.extensions.primitives.2.2.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "path": "microsoft.net.http.headers/2.2.0", + "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512" + }, + "Microsoft.NET.Test.Sdk/16.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ON7UIMIhAwrYb0ep+3ztoWVGvtfo88IhiHVnbyOiuVsi8bOMCdMPVcR+EX1WYGgKAd030pHRaxazMlkQ6uDyJQ==", + "path": "microsoft.net.test.sdk/16.0.1", + "hashPath": "microsoft.net.test.sdk.16.0.1.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bS52lVUR5Mb/yuorV8cLSvsPDEOms1LTQ+bN8s3/rrdaU3VSpfvWGorRk5xftj1kyrJ7Dxlw/GADyyekoOfDnQ==", + "path": "microsoft.netcore.platforms/3.1.0-preview1.19504.10", + "hashPath": "microsoft.netcore.platforms.3.1.0-preview1.19504.10.nupkg.sha512" + }, + "Microsoft.TestPlatform.ObjectModel/16.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AIQ9azu2b31R8nOuFnR32d7cdWidjjLl1dFyLC3LNifzAJoEdCUgkHWUpTTHKWcHhwa9E/NRcdzVple8pbKJ9Q==", + "path": "microsoft.testplatform.objectmodel/16.0.1", + "hashPath": "microsoft.testplatform.objectmodel.16.0.1.nupkg.sha512" + }, + "Microsoft.TestPlatform.TestHost/16.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H4bYjOjkK4FYQ23RnsHm8FcqR0te8Eky9i9sS1IjVFBlDh1MU7aIwmBUpKpaSAy5xNu7UTHku4RZTWzWHDzS7g==", + "path": "microsoft.testplatform.testhost/16.0.1", + "hashPath": "microsoft.testplatform.testhost.16.0.1.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wc71c9HWTeXy9/w9O4Yr2LKmdJjVyIoJ/XQX8/6uma4EAVU25RLtUWlvhA0gpgFw9Kf1TkCv70x+CbKnRw/d8Q==", + "path": "microsoft.visualstudio.web.codegeneration/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wXlpxDfRD5aPypa0p0UE97tkRQvAz9D9FfA2GITzr+LlGIpybyGnxkwGVp0Vha1Ibr0kJG0HdnqfeHME/WuAcQ==", + "path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.contracts.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-APdPavBUYcGPBaW4rjxBVRePWmg0ZzhIRymOzvLFWUtzfvJKw1+8PaCzsH7Uvl+felm0L1UVQwBx1Do0R7j7Xg==", + "path": "microsoft.visualstudio.web.codegeneration.core/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.core.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xH50cYOU+infRq4KikBuu2qeXcwW4tE0D5TDfKLuLrEtDm90aXI+0qygPsqyISf+lOW7L7rQ64BH/dRYkK3c3Q==", + "path": "microsoft.visualstudio.web.codegeneration.design/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.design.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N9S7TeFZjXzNY9OVbz4OFw9cM9oEeMaCnuLFhetNioy/wPwZbgglrctAEYxfDbvocQ17YCAVR2EMRbYHNDHyVg==", + "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sW2lHnOoL1xFnSm/2zSedeUoQPlbhPfWjSuUYsxYUj/N5QmLmH98ZLaqP26k6Om/heR6Gux/veXI96yM1Parow==", + "path": "microsoft.visualstudio.web.codegeneration.templating/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.templating.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/r/y+XpOpbCwN/M/HopjfGTDRlmixTd4G6HG6FaBkD/YF3T1u+4WMRVtuB6zz7aw571HmX+6UokEa6HJSwkPDA==", + "path": "microsoft.visualstudio.web.codegeneration.utils/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.utils.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0gVuA4KUCHFM4M/9SjG+7j7BzZ7SW/BufF97Q78i2VV8JBbQXc/5Rf6YUG1VGW2fwSEOl9+S26utEGS+86GGGw==", + "path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.2.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", + "path": "microsoft.win32.primitives/4.0.1", + "hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CXsd7k96HdyP0vV9T5mQQ0O1Lj00xJBHTQ+d8Y99mxu/GuTB9MYKeGE1b58AIaxF88maJOFMtt6WhiqEPC9ONw==", + "path": "microsoft.win32.registry/4.7.0-preview1.19504.10", + "hashPath": "microsoft.win32.registry.4.7.0-preview1.19504.10.nupkg.sha512" + }, + "Moq/4.13.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ic4m9/b10tz9oRB1Oi5bW7E/FS6Pd2SH5OJFhlmhUJkQhiV5FyrIRxVUEaG5KOpSpcfSPGAVW4rRZt6OzrS5zg==", + "path": "moq/4.13.1", + "hashPath": "moq.4.13.1.nupkg.sha512" + }, + "MSTest.TestAdapter/1.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2/rL9DG+cVAgPs98OGm2sbZ4FTgn+MGEan5P9NRAgqMV3+nYRKG7/5R0jY7lBMq9ISms+84MSqTHWs6QnPt4A==", + "path": "mstest.testadapter/1.4.0", + "hashPath": "mstest.testadapter.1.4.0.nupkg.sha512" + }, + "MSTest.TestFramework/1.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kV/yZ0XLiOElsVeLT0GnNrsoKcPvVNOP6Cv2zkAiceJY0rpro0L+3t54bRApLwTg1mxlo4rLziBG7X6X69KcrQ==", + "path": "mstest.testframework/1.4.0", + "hashPath": "mstest.testframework.1.4.0.nupkg.sha512" + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "path": "newtonsoft.json/11.0.2", + "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512" + }, + "NuGet.Frameworks/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qbXaB76XYUVLocLBs8Z9TS/ERGK2wm797feO+0JEPFvT7o7MRadOR77mqaSD4J1k8G+DlZQyq+MlkCuxrkr3ag==", + "path": "nuget.frameworks/4.7.0", + "hashPath": "nuget.frameworks.4.7.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ITo7gZ7yGHMkNj1O6PRmK+i917jbWNs5CZN/jwVSh8hO+3+8C5roDkXJYbM1hA5LZAUagtm9ph5whvnDOTilDg==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0-preview1.19504.10", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0-preview1.19504.10.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b+V9JC/Ii3sR659flBeaBJww111425tgjcDS1k+hqV4sGh9FALRDBvJnDtQ895gAzpPTUOFDHdqaZ2Et7BpZMg==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "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.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", + "path": "system.buffers/4.5.0", + "hashPath": "system.buffers.4.5.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", + "path": "system.collections.immutable/1.3.1", + "hashPath": "system.collections.immutable.1.3.1.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", + "path": "system.componentmodel.annotations/4.5.0", + "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512" + }, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==", + "path": "system.componentmodel.eventbasedasync/4.0.11", + "hashPath": "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HZiP0DwTHJ+C+rdFqP47nBYUh5283kcwXIGY2zOVVhsJmVI/2tYiX2zNRdjRQRHsTox58Ydkec6h0pWSh8wAsw==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Composition/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==", + "path": "system.composition/1.0.31", + "hashPath": "system.composition.1.0.31.nupkg.sha512" + }, + "System.Composition.AttributedModel/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==", + "path": "system.composition.attributedmodel/1.0.31", + "hashPath": "system.composition.attributedmodel.1.0.31.nupkg.sha512" + }, + "System.Composition.Convention/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==", + "path": "system.composition.convention/1.0.31", + "hashPath": "system.composition.convention.1.0.31.nupkg.sha512" + }, + "System.Composition.Hosting/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==", + "path": "system.composition.hosting/1.0.31", + "hashPath": "system.composition.hosting.1.0.31.nupkg.sha512" + }, + "System.Composition.Runtime/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==", + "path": "system.composition.runtime/1.0.31", + "hashPath": "system.composition.runtime.1.0.31.nupkg.sha512" + }, + "System.Composition.TypedParts/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==", + "path": "system.composition.typedparts/1.0.31", + "hashPath": "system.composition.typedparts.1.0.31.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6isAINOX/v56q7JLaC9XDXzc7T/yh62QR+pa+Jt0ayjmYmLRCmzyt4rTy5jWe15ZcQfS9yQNxIzwyO7yGs6Zbg==", + "path": "system.data.sqlclient/4.8.0-preview1.19504.10", + "hashPath": "system.data.sqlclient.4.8.0-preview1.19504.10.nupkg.sha512" + }, + "System.Diagnostics.Contracts/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==", + "path": "system.diagnostics.contracts/4.3.0", + "hashPath": "system.diagnostics.contracts.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.7.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CxeUzuw9Lz1+6gkPpQI83BeoUNxn6VnDF28qazxSRyRzWSzLzoeh9ObYG7LYqcPckgm0UaE9nQdd7oDq5ncMKg==", + "path": "system.diagnostics.diagnosticsource/4.7.0-preview1.19504.10", + "hashPath": "system.diagnostics.diagnosticsource.4.7.0-preview1.19504.10.nupkg.sha512" + }, + "System.Diagnostics.FileVersionInfo/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==", + "path": "system.diagnostics.fileversioninfo/4.3.0", + "hashPath": "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Process/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", + "path": "system.diagnostics.process/4.1.0", + "hashPath": "system.diagnostics.process.4.1.0.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "path": "system.diagnostics.stacktrace/4.3.0", + "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.TextWriterTraceListener/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==", + "path": "system.diagnostics.textwritertracelistener/4.3.0", + "hashPath": "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "path": "system.diagnostics.tracesource/4.3.0", + "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Linq.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==", + "path": "system.linq.parallel/4.3.0", + "hashPath": "system.linq.parallel.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==", + "path": "system.memory/4.5.1", + "hashPath": "system.memory.4.5.1.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Private.DataContractSerialization/4.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==", + "path": "system.private.datacontractserialization/4.1.1", + "hashPath": "system.private.datacontractserialization.4.1.1.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/1.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KYPNMDrLB2R+G5JJiJ2fjBpihtktKVIjsirmyyv+VDo5rQkIR9BWeCYM1wDSzbQatWNZ/NQfPsQyTB1Ui3qBfQ==", + "path": "system.reflection.metadata/1.4.2", + "hashPath": "system.reflection.metadata.1.4.2.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zw6YIPYZNJdb5fVVlLLG0i9NO/p+10u8LM8ApWat+9oLo15xaCGC6XyYALrvc+DzmxkwWLxU6n8SNf71V+x3+Q==", + "path": "system.runtime.compilerservices.unsafe/4.7.0-preview1.19504.10", + "hashPath": "system.runtime.compilerservices.unsafe.4.7.0-preview1.19504.10.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", + "path": "system.runtime.interopservices.runtimeinformation/4.0.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512" + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", + "path": "system.runtime.loader/4.0.0", + "hashPath": "system.runtime.loader.4.0.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Json/4.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==", + "path": "system.runtime.serialization.json/4.0.2", + "hashPath": "system.runtime.serialization.json.4.0.2.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", + "path": "system.runtime.serialization.primitives/4.1.1", + "hashPath": "system.runtime.serialization.primitives.4.1.1.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGk/B6+DoaHlC4PAc7OWPmxI91JtH4zXHHmwlSQAOnL5sll3hgX8kVR9loCnVHfshSo1vP8vt15Xy84xyKiqKw==", + "path": "system.security.accesscontrol/4.7.0-preview1.19504.10", + "hashPath": "system.security.accesscontrol.4.7.0-preview1.19504.10.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Df++ZTMSEaRRyov1jZ7VSm8GemEu9cJJ+QY1y6wvF631OvS5dts98RhuoqcZxACVkNRIzl5ThIqd46qd7b+Vg==", + "path": "system.security.principal.windows/4.7.0-preview1.19504.10", + "hashPath": "system.security.principal.windows.4.7.0-preview1.19504.10.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aYpmMGgjDYpDYtDpUHwnSqSKgatkoZ4aSteVs6WKxo3/dRbHnL5rQ3QX9g7teACCIw8T2KW9OUxIg0b1kZEABg==", + "path": "system.text.encoding.codepages/4.7.0-preview1.19504.10", + "hashPath": "system.text.encoding.codepages.4.7.0-preview1.19504.10.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==", + "path": "system.text.encodings.web/4.5.0", + "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", + "path": "system.threading.tasks.extensions/4.5.1", + "hashPath": "system.threading.tasks.extensions.4.5.1.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==", + "path": "system.threading.tasks.parallel/4.3.0", + "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" + }, + "System.Threading.Thread/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", + "path": "system.threading.thread/4.3.0", + "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" + }, + "System.Threading.ThreadPool/4.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", + "path": "system.threading.threadpool/4.0.10", + "hashPath": "system.threading.threadpool.4.0.10.nupkg.sha512" + }, + "System.ValueTuple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==", + "path": "system.valuetuple/4.3.0", + "hashPath": "system.valuetuple.4.3.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlSerializer/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", + "path": "system.xml.xmlserializer/4.0.11", + "hashPath": "system.xml.xmlserializer.4.0.11.nupkg.sha512" + }, + "System.Xml.XPath/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", + "path": "system.xml.xpath/4.3.0", + "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==", + "path": "system.xml.xpath.xdocument/4.3.0", + "hashPath": "system.xml.xpath.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath.XmlDocument/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==", + "path": "system.xml.xpath.xmldocument/4.0.1", + "hashPath": "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512" + }, + "RestaurantReview/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.dll b/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.dll new file mode 100644 index 0000000000000000000000000000000000000000..f54f16652c887049b9f3471c68f2c30b197e6c92 GIT binary patch literal 6144 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 a89IQ;f7qh>|D$@N`(Zo$U+#Y?0{;f?Ubw^n literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.pdb b/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.pdb new file mode 100644 index 0000000000000000000000000000000000000000..86376e3d982a9473927a893008622811b1167d95 GIT binary patch literal 1344 zcmZWpZ)j6j6uRb<2!nD(-37CZa=W(&AREYx5EX(P{c}4UfL&W$)hC z+TtWh{WCI#8~cZ-V`X2I3Ci$88Ep7v^Mj661nrm~#@KL7`b8=z=-4?g(MWqA=bn3h zzjMw#_q=ysT(34%b{%9jxW|qVG6#A&a+;yeN<6T_SoA@`HRe14uAf50 zSxU(z%E&23$pyv$y$meox&i3FAnsO>=NIN7bKr$O)ori_5Ai*-SA*>Z8$EEK?Ssej zoZSEwcx(2n!2988sM)O;1S7Iw#(b1C!OYz1(ei_=qjWm}+T_pZIVzc?4?@BH-1k3E;CqMyI_ck&0KXk$Y1VMZxSZ1$xEw?#0SF~+$W)wpToxUHyp zC~kkN-SIW8i@hHhKJIw;jVm#XAKsvTRwf}R$i#vd7j&b9;i_%en_sXSFpW^yC>vum>=Nxy ziJltaqATa4?e%tbiNa1U6Ywt8z7c(Sy~tW?5>{T?*nC?oT|jEw9x-$-+Gsg~O)Ia5 zzR~iIr;Q9e7agoei-l(|A1PO&ld1h3UrfzROrD&%7dm}D+I4-+*3;8He|cYdV{v>{ rpztF8L0TIrS +// 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: System.Reflection.AssemblyCompanyAttribute("RestaurantReviewMSTests")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("RestaurantReviewMSTests")] +[assembly: System.Reflection.AssemblyTitleAttribute("RestaurantReviewMSTests")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.AssemblyInfoInputs.cache b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.AssemblyInfoInputs.cache new file mode 100644 index 00000000..66b8ddd2 --- /dev/null +++ b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +e31c2abb3a7544579cf36371a2ba4cf8b6f3f0b9 diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.assets.cache b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..6f9a24e3458d6e5c7ba12b08d725eafcdf2891fe GIT binary patch literal 87993 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 literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.CopyComplete b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.CopyComplete new file mode 100644 index 00000000..e69de29b diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.CoreCompileInputs.cache b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.CoreCompileInputs.cache new file mode 100644 index 00000000..47ebb8fe --- /dev/null +++ b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +48b1c3df7716fab82064c1dc819e9b92ed6a2ceb diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.FileListAbsolute.txt b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.FileListAbsolute.txt new file mode 100644 index 00000000..55d562ca --- /dev/null +++ b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.FileListAbsolute.txt @@ -0,0 +1,17 @@ +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\RestaurantReviewMSTests.deps.json +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\RestaurantReviewMSTests.runtimeconfig.json +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\RestaurantReviewMSTests.runtimeconfig.dev.json +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\RestaurantReviewMSTests.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\RestaurantReviewMSTests.pdb +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\RestaurantReview.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\RestaurantReview.pdb +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\obj\Debug\netcoreapp2.2\RestaurantReviewMSTests.csprojAssemblyReference.cache +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\obj\Debug\netcoreapp2.2\RestaurantReviewMSTests.csproj.CoreCompileInputs.cache +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\obj\Debug\netcoreapp2.2\RestaurantReviewMSTests.AssemblyInfoInputs.cache +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\obj\Debug\netcoreapp2.2\RestaurantReviewMSTests.AssemblyInfo.cs +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\obj\Debug\netcoreapp2.2\RestaurantReviewMSTests.csproj.CopyComplete +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\obj\Debug\netcoreapp2.2\RestaurantReviewMSTests.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\obj\Debug\netcoreapp2.2\RestaurantReviewMSTests.pdb diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csprojAssemblyReference.cache b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csprojAssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..7ff2055ea2776c0ead3647bf60ebdd19988c8548 GIT binary patch literal 3978 zcmd5;d2AGA6rb69w!m^$K#mrl6xdRYE|l4sZ`+}>JIl;$p{P*Q zgn&_yD-;qXA*dVyHAX?Ba>byQfXJPah=LR(L5QGo`rd4hZAEFpKbXzD`DXTg?|bj} z-urzYMN<@Y4=#M-)y4o~X1>TPvMPr(_L-O{32Y&!mZ_{yR!CY(5m8i8j^wz#tebVQ zuCx?iOwwWs$%&Adrf^bP%9L1868VXwqEId)k({6_BjgPY54qif*TrRUW?U@w{%iOv zRE>oF8mAG|VnU)s^fzOV_+Q|KBoST%7gTmUr*|P_R#uIbj^f zYqDakizf-(^~vEVrx3-4cKzafVuFvVrHGSaM5QPrWi}_-lI#2^Py{i;Ney!@Pt6>~ zJHQPSEU*KdXUs5Qa5)ox`j>eaWm2(N5&>|1oJuH~ZjTdjip2`zb=sF5n63iqfoUB0 zB&GO?B$f~*z(!&vL<>YYzKkm&Y9I{IsTzwSq;O#}S60dbZq~!P0+JXEM2MzpTtwg$ z0TLHz#J@;XW1QsIVuC2Mg)n=H#AzW}3F|N8>P@kNBw1|W(VEA`qp|Ze62WRzb>|px zF3?i6cuv(M!t#K7z;l0)yaC7vDq-d8E7)O${Fbf|mgj(FcLwWjj(NZ~vhRtX z3s1z|=n_{>Zl-KT_gWPt`erWW)ZEFY2t;p)mKmdEnh}6Aha|2UsJ52>PJBBI5Qf{1tW|Y4##xo#3pgqO26$9x4gwq%oOMS9yJZ;I&V#qapkY#rns-=M$dl#fGqOA$FUd;B;Oq|M zADWBvx!JN}Db5$+Ol>LF&rD45G*T|& zNf9PdHn{K@k$5>$;B5okk3STt;AImiXk<$r4tOSB4s7QQa6d4pxz}r>uG2NuzbsFi zefrbQi@y-Rd#+nm7x(p9^JZ?lz2uYIXKs8xn9{Q6tU6b?dw?hJcI5J~yov9h-}s6< z??~rCZx*cMpX`43?55s#w~tefuDv>uYL}DV*?;ilHcS46vxoBg3|X+~dVaytl77S6 zMhBZeUYuDy=B}bfC&LX7ai{Q~UlPK0V5?wrg#!BU!CF zzH4>*M1JOK?}*JW-rQNV^|N2skN)PvS=Kguzn_NIIFLN_pv2$b+P7-##S|Kuq&_G- J_SRoXe*;rw=>q@& literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.dll b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.dll new file mode 100644 index 0000000000000000000000000000000000000000..f54f16652c887049b9f3471c68f2c30b197e6c92 GIT binary patch literal 6144 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 a89IQ;f7qh>|D$@N`(Zo$U+#Y?0{;f?Ubw^n literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.pdb b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.pdb new file mode 100644 index 0000000000000000000000000000000000000000..86376e3d982a9473927a893008622811b1167d95 GIT binary patch literal 1344 zcmZWpZ)j6j6uRb<2!nD(-37CZa=W(&AREYx5EX(P{c}4UfL&W$)hC z+TtWh{WCI#8~cZ-V`X2I3Ci$88Ep7v^Mj661nrm~#@KL7`b8=z=-4?g(MWqA=bn3h zzjMw#_q=ysT(34%b{%9jxW|qVG6#A&a+;yeN<6T_SoA@`HRe14uAf50 zSxU(z%E&23$pyv$y$meox&i3FAnsO>=NIN7bKr$O)ori_5Ai*-SA*>Z8$EEK?Ssej zoZSEwcx(2n!2988sM)O;1S7Iw#(b1C!OYz1(ei_=qjWm}+T_pZIVzc?4?@BH-1k3E;CqMyI_ck&0KXk$Y1VMZxSZ1$xEw?#0SF~+$W)wpToxUHyp zC~kkN-SIW8i@hHhKJIw;jVm#XAKsvTRwf}R$i#vd7j&b9;i_%en_sXSFpW^yC>vum>=Nxy ziJltaqATa4?e%tbiNa1U6Ywt8z7c(Sy~tW?5>{T?*nC?oT|jEw9x-$-+Gsg~O)Ia5 zzR~iIr;Q9e7agoei-l(|A1PO&ld1h3UrfzROrD&%7dm}D+I4-+*3;8He|cYdV{v>{ rpztF8L0TIrS + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Raizel Seliger\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 5.1.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + + C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.codeanalysis.analyzers\1.1.0 + + \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/RestaurantReviewMSTests.csproj.nuget.g.targets b/RestaurantReview/RestaurantReviewMSTests/obj/RestaurantReviewMSTests.csproj.nuget.g.targets new file mode 100644 index 00000000..d48dc196 --- /dev/null +++ b/RestaurantReview/RestaurantReviewMSTests/obj/RestaurantReviewMSTests.csproj.nuget.g.targets @@ -0,0 +1,12 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/project.assets.json b/RestaurantReview/RestaurantReviewMSTests/obj/project.assets.json new file mode 100644 index 00000000..8277dd54 --- /dev/null +++ b/RestaurantReview/RestaurantReviewMSTests/obj/project.assets.json @@ -0,0 +1,9751 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v2.2": { + "Castle.Core/4.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Castle.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.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.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.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.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.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.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.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.Core/2.2.5": { + "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.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.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.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.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.CSharp.Workspaces/2.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "[2.8.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[2.8.0]" + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[2.8.0]", + "System.Composition": "1.0.31", + "System.Diagnostics.Contracts": "4.3.0", + "System.Linq.Parallel": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} + } + }, + "Microsoft.CodeCoverage/16.0.1": { + "type": "package", + "compile": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard1.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard1.0/Microsoft.CodeCoverage.targets": {} + } + }, + "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.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.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.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.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.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.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.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.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.NET.Test.Sdk/16.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "16.0.1", + "Microsoft.TestPlatform.TestHost": "16.0.1" + }, + "build": { + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props": {}, + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} + } + }, + "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/3.1.0-preview1.19504.10": { + "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.TestPlatform.ObjectModel/16.0.1": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.ComponentModel.TypeConverter": "4.1.0", + "System.Diagnostics.Process": "4.1.0", + "System.Diagnostics.TextWriterTraceListener": "4.0.0", + "System.Diagnostics.TraceSource": "4.0.0", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Runtime.Loader": "4.0.0", + "System.Runtime.Serialization.Json": "4.0.2", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Threading.Thread": "4.0.0", + "System.Xml.XPath.XmlDocument": "4.0.1" + }, + "compile": { + "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "resource": { + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/16.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyModel": "1.0.3", + "Microsoft.TestPlatform.ObjectModel": "16.0.1", + "Newtonsoft.Json": "9.0.1" + }, + "compile": { + "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netstandard1.5/testhost.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netstandard1.5/testhost.dll": {} + }, + "resource": { + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.3", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} + }, + "runtime": { + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "2.2.0", + "Microsoft.CodeAnalysis.CSharp": "2.8.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp.Workspaces": "2.8.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.3", + "Newtonsoft.Json": "11.0.2", + "NuGet.Frameworks": "4.7.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview1.19504.10", + "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "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" + } + } + }, + "Moq/4.13.1": { + "type": "package", + "dependencies": { + "Castle.Core": "4.4.0", + "System.Threading.Tasks.Extensions": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Moq.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Moq.dll": {} + } + }, + "MSTest.TestAdapter/1.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Diagnostics.TextWriterTraceListener": "4.3.0" + }, + "build": { + "build/netcoreapp1.0/MSTest.TestAdapter.props": {} + } + }, + "MSTest.TestFramework/1.4.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {}, + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {}, + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {} + } + }, + "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": {} + } + }, + "NuGet.Frameworks/4.7.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.6/NuGet.Frameworks.dll": {} + }, + "runtime": { + "lib/netstandard1.6/NuGet.Frameworks.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.7.0-preview1.19504.10": { + "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.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard1.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/System.Collections.NonGeneric.dll": {} + }, + "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/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.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.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Composition/1.0.31": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "1.0.31", + "System.Composition.Convention": "1.0.31", + "System.Composition.Hosting": "1.0.31", + "System.Composition.Runtime": "1.0.31", + "System.Composition.TypedParts": "1.0.31" + } + }, + "System.Composition.AttributedModel/1.0.31": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.AttributedModel.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.AttributedModel.dll": {} + } + }, + "System.Composition.Convention/1.0.31": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.AttributedModel": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.Convention.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Convention.dll": {} + } + }, + "System.Composition.Hosting/1.0.31": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.Runtime": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.Hosting.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Hosting.dll": {} + } + }, + "System.Composition.Runtime/1.0.31": { + "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.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Runtime.dll": {} + } + }, + "System.Composition.TypedParts/1.0.31": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.AttributedModel": "1.0.31", + "System.Composition.Hosting": "1.0.31", + "System.Composition.Runtime": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.TypedParts.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.TypedParts.dll": {} + } + }, + "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.8.0-preview1.19504.10": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0-preview1.19504.10", + "System.Diagnostics.DiagnosticSource": "4.7.0-preview1.19504.10", + "System.Security.Principal.Windows": "4.7.0-preview1.19504.10", + "System.Text.Encoding.CodePages": "4.7.0-preview1.19504.10", + "runtime.native.System.Data.SqlClient.sni": "4.7.0-preview1.19504.10" + }, + "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.7.0-preview1.19504.10": { + "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.Process/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "Microsoft.Win32.Registry": "4.0.0", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.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.TextWriterTraceListener/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.TraceSource": "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" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.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.TraceSource/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.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "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.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.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.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.Parallel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "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.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Parallel.dll": {} + } + }, + "System.Memory/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "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.1.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "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.4.2": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.1", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/netstandard1.1/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.7.0-preview1.19504.10": { + "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.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "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.Json/4.0.2": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.AccessControl/4.7.0-preview1.19504.10": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "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.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/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.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.Principal.Windows/4.7.0-preview1.19504.10": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/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.7.0-preview1.19504.10": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime.CompilerServices.Unsafe": "4.7.0-preview1.19504.10" + }, + "compile": { + "lib/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.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.1": { + "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/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.ValueTuple/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "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.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1" + }, + "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/System.Xml.XPath.dll": {} + }, + "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": {} + } + }, + "System.Xml.XPath.XmlDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XPath": "4.0.1", + "System.Xml.XmlDocument": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + } + }, + "RestaurantReview/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v2.2", + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration.Design": "2.2.3" + }, + "compile": { + "bin/placeholder/RestaurantReview.dll": {} + }, + "runtime": { + "bin/placeholder/RestaurantReview.dll": {} + } + } + } + }, + "libraries": { + "Castle.Core/4.4.0": { + "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "type": "package", + "path": "castle.core/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ASL - Apache Software Foundation License.txt", + "CHANGELOG.md", + "LICENSE", + "castle.core.4.4.0.nupkg.sha512", + "castle.core.nuspec", + "lib/net35/Castle.Core.dll", + "lib/net35/Castle.Core.xml", + "lib/net40/Castle.Core.dll", + "lib/net40/Castle.Core.xml", + "lib/net45/Castle.Core.dll", + "lib/net45/Castle.Core.xml", + "lib/netstandard1.3/Castle.Core.dll", + "lib/netstandard1.3/Castle.Core.xml", + "lib/netstandard1.5/Castle.Core.dll", + "lib/netstandard1.5/Castle.Core.xml", + "readme.txt" + ] + }, + "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.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.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.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.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.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.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.Core/2.2.5": { + "sha512": "/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.core/2.2.5", + "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.5.nupkg.sha512", + "microsoft.aspnetcore.mvc.core.nuspec" + ] + }, + "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.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.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.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.CSharp.Workspaces/2.8.0": { + "sha512": "EJWaxi2bI47iEZen/nZkJEDZCrP9Oj3PJtMwBv34Z0ZvvdSkpgsdqlHSud8d5vC53LnCXLfBLewfqHcILDVSDw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.workspaces/2.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { + "sha512": "tJlJ99SD8bHBAXShOG/pXQ1K118cnsF01obEf9aAtdgLbw3yEPahZ7qvWeGMjrheUhvOsSkv/wTKYg9euKa8MQ==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.common/2.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.dll", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.pdb", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.xml", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.xml", + "microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.common.nuspec" + ] + }, + "Microsoft.CodeCoverage/16.0.1": { + "sha512": "W7WI3iH6At2I/9x2ODgCIIMO0QfpA7ZCoHkeygMLAaz3Nms/GsugKz9N4hkTve2Lj66g2K4CAmbwe6utEH66lw==", + "type": "package", + "path": "microsoft.codecoverage/16.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard1.0/CodeCoverage/CodeCoverage.config", + "build/netstandard1.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll", + "build/netstandard1.0/CodeCoverage/covrun32.dll", + "build/netstandard1.0/CodeCoverage/msdia140.dll", + "build/netstandard1.0/Microsoft.CodeCoverage.props", + "build/netstandard1.0/Microsoft.CodeCoverage.targets", + "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.16.0.1.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "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.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.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.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.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.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.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.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.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.NET.Test.Sdk/16.0.1": { + "sha512": "ON7UIMIhAwrYb0ep+3ztoWVGvtfo88IhiHVnbyOiuVsi8bOMCdMPVcR+EX1WYGgKAd030pHRaxazMlkQ6uDyJQ==", + "type": "package", + "path": "microsoft.net.test.sdk/16.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net40/Microsoft.NET.Test.Sdk.props", + "build/net40/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets", + "build/uap10.0/Microsoft.NET.Test.Sdk.props", + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", + "microsoft.net.test.sdk.16.0.1.nupkg.sha512", + "microsoft.net.test.sdk.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/3.1.0-preview1.19504.10": { + "sha512": "bS52lVUR5Mb/yuorV8cLSvsPDEOms1LTQ+bN8s3/rrdaU3VSpfvWGorRk5xftj1kyrJ7Dxlw/GADyyekoOfDnQ==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0-preview1.19504.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0-preview1.19504.10.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.TestPlatform.ObjectModel/16.0.1": { + "sha512": "AIQ9azu2b31R8nOuFnR32d7cdWidjjLl1dFyLC3LNifzAJoEdCUgkHWUpTTHKWcHhwa9E/NRcdzVple8pbKJ9Q==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/16.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.4/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard1.4/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard1.4/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "microsoft.testplatform.objectmodel.16.0.1.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/16.0.1": { + "sha512": "H4bYjOjkK4FYQ23RnsHm8FcqR0te8Eky9i9sS1IjVFBlDh1MU7aIwmBUpKpaSAy5xNu7UTHku4RZTWzWHDzS7g==", + "type": "package", + "path": "microsoft.testplatform.testhost/16.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "build/uap10.0/Microsoft.TestPlatform.TestHost.props", + "build/uap10.0/Microsoft.TestPlatform.TestHost.targets", + "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/x64/msdia140.dll", + "build/uap10.0/x86/msdia140.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/_._", + "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll", + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/testhost.deps.json", + "lib/netstandard1.5/testhost.dll", + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/x64/msdia140.dll", + "lib/netstandard1.5/x86/msdia140.dll", + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/uap10.0/testhost.dll", + "microsoft.testplatform.testhost.16.0.1.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { + "sha512": "wc71c9HWTeXy9/w9O4Yr2LKmdJjVyIoJ/XQX8/6uma4EAVU25RLtUWlvhA0gpgFw9Kf1TkCv70x+CbKnRw/d8Q==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.xml", + "microsoft.visualstudio.web.codegeneration.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "sha512": "wXlpxDfRD5aPypa0p0UE97tkRQvAz9D9FfA2GITzr+LlGIpybyGnxkwGVp0Vha1Ibr0kJG0HdnqfeHME/WuAcQ==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.xml", + "microsoft.visualstudio.web.codegeneration.contracts.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.contracts.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "sha512": "APdPavBUYcGPBaW4rjxBVRePWmg0ZzhIRymOzvLFWUtzfvJKw1+8PaCzsH7Uvl+felm0L1UVQwBx1Do0R7j7Xg==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.core/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml", + "microsoft.visualstudio.web.codegeneration.core.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.core.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "sha512": "xH50cYOU+infRq4KikBuu2qeXcwW4tE0D5TDfKLuLrEtDm90aXI+0qygPsqyISf+lOW7L7rQ64BH/dRYkK3c3Q==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.design/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/dotnet-aspnet-codegenerator-design.exe", + "lib/net461/dotnet-aspnet-codegenerator-design.xml", + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll", + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.xml", + "microsoft.visualstudio.web.codegeneration.design.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.design.nuspec", + "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.exe", + "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.xml", + "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.exe", + "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.xml", + "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.exe", + "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.xml", + "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.exe", + "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.xml" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "sha512": "N9S7TeFZjXzNY9OVbz4OFw9cM9oEeMaCnuLFhetNioy/wPwZbgglrctAEYxfDbvocQ17YCAVR2EMRbYHNDHyVg==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Templates/DbContext/NewLocalDbContext.cshtml", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml", + "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "sha512": "sW2lHnOoL1xFnSm/2zSedeUoQPlbhPfWjSuUYsxYUj/N5QmLmH98ZLaqP26k6Om/heR6Gux/veXI96yM1Parow==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.templating/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml", + "microsoft.visualstudio.web.codegeneration.templating.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.templating.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "sha512": "/r/y+XpOpbCwN/M/HopjfGTDRlmixTd4G6HG6FaBkD/YF3T1u+4WMRVtuB6zz7aw571HmX+6UokEa6HJSwkPDA==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.utils/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml", + "microsoft.visualstudio.web.codegeneration.utils.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.utils.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "sha512": "0gVuA4KUCHFM4M/9SjG+7j7BzZ7SW/BufF97Q78i2VV8JBbQXc/5Rf6YUG1VGW2fwSEOl9+S26utEGS+86GGGw==", + "type": "package", + "path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Generators/ParameterDefinitions/area.json", + "Generators/ParameterDefinitions/controller.json", + "Generators/ParameterDefinitions/identity.json", + "Generators/ParameterDefinitions/razorpage.json", + "Generators/ParameterDefinitions/view.json", + "Templates/ControllerGenerator/ApiControllerWithActions.cshtml", + "Templates/ControllerGenerator/ApiControllerWithContext.cshtml", + "Templates/ControllerGenerator/ApiEmptyController.cshtml", + "Templates/ControllerGenerator/ControllerWithActions.cshtml", + "Templates/ControllerGenerator/EmptyController.cshtml", + "Templates/ControllerGenerator/MvcControllerWithContext.cshtml", + "Templates/Identity/Data/ApplicationDbContext.cshtml", + "Templates/Identity/Data/ApplicationUser.cshtml", + "Templates/Identity/IdentityHostingStartup.cshtml", + "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml", + "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml", + "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml", + "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", + "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Lockout.cshtml", + "Templates/Identity/Pages/Account/Account.Login.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Login.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml", + "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Logout.cshtml", + "Templates/Identity/Pages/Account/Account.Register.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Register.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml", + "Templates/Identity/Pages/Account/Account._ViewImports.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", + "Templates/Identity/Pages/Error.cs.cshtml", + "Templates/Identity/Pages/Error.cshtml", + "Templates/Identity/Pages/_Layout.cshtml", + "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml", + "Templates/Identity/Pages/_ViewImports.cshtml", + "Templates/Identity/Pages/_ViewStart.cshtml", + "Templates/Identity/ScaffoldingReadme.cshtml", + "Templates/Identity/SupportPages._CookieConsentPartial.cshtml", + "Templates/Identity/SupportPages._ViewImports.cshtml", + "Templates/Identity/SupportPages._ViewStart.cshtml", + "Templates/Identity/_LoginPartial.cshtml", + "Templates/Identity/wwwroot/css/site.css", + "Templates/Identity/wwwroot/favicon.ico", + "Templates/Identity/wwwroot/js/site.js", + "Templates/Identity/wwwroot/lib/bootstrap/LICENSE", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map", + "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", + "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", + "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", + "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", + "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt", + "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js", + "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js", + "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map", + "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml", + "Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml", + "Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml", + "Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml", + "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml", + "Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map", + "Templates/MvcLayout/Error.cshtml", + "Templates/MvcLayout/_Layout.cshtml", + "Templates/RazorPageGenerator/Create.cshtml", + "Templates/RazorPageGenerator/CreatePageModel.cshtml", + "Templates/RazorPageGenerator/Delete.cshtml", + "Templates/RazorPageGenerator/DeletePageModel.cshtml", + "Templates/RazorPageGenerator/Details.cshtml", + "Templates/RazorPageGenerator/DetailsPageModel.cshtml", + "Templates/RazorPageGenerator/Edit.cshtml", + "Templates/RazorPageGenerator/EditPageModel.cshtml", + "Templates/RazorPageGenerator/Empty.cshtml", + "Templates/RazorPageGenerator/EmptyPageModel.cshtml", + "Templates/RazorPageGenerator/List.cshtml", + "Templates/RazorPageGenerator/ListPageModel.cshtml", + "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Empty.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/EmptyPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml", + "Templates/Startup/ReadMe.cshtml", + "Templates/Startup/Startup.cshtml", + "Templates/ViewGenerator/Create.cshtml", + "Templates/ViewGenerator/Delete.cshtml", + "Templates/ViewGenerator/Details.cshtml", + "Templates/ViewGenerator/Edit.cshtml", + "Templates/ViewGenerator/Empty.cshtml", + "Templates/ViewGenerator/List.cshtml", + "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml", + "lib/netstandard2.0/bootstrap3_identitygeneratorfilesconfig.json", + "lib/netstandard2.0/bootstrap4_identitygeneratorfilesconfig.json", + "microsoft.visualstudio.web.codegenerators.mvc.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegenerators.mvc.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.1": { + "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", + "type": "package", + "path": "microsoft.win32.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.0.1.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { + "sha512": "CXsd7k96HdyP0vV9T5mQQ0O1Lj00xJBHTQ+d8Y99mxu/GuTB9MYKeGE1b58AIaxF88maJOFMtt6WhiqEPC9ONw==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0-preview1.19504.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0-preview1.19504.10.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/net472/Microsoft.Win32.Registry.dll", + "ref/net472/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/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Moq/4.13.1": { + "sha512": "ic4m9/b10tz9oRB1Oi5bW7E/FS6Pd2SH5OJFhlmhUJkQhiV5FyrIRxVUEaG5KOpSpcfSPGAVW4rRZt6OzrS5zg==", + "type": "package", + "path": "moq/4.13.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Moq.dll", + "lib/net45/Moq.xml", + "lib/netstandard2.0/Moq.dll", + "lib/netstandard2.0/Moq.xml", + "moq.4.13.1.nupkg.sha512", + "moq.nuspec" + ] + }, + "MSTest.TestAdapter/1.4.0": { + "sha512": "t2/rL9DG+cVAgPs98OGm2sbZ4FTgn+MGEan5P9NRAgqMV3+nYRKG7/5R0jY7lBMq9ISms+84MSqTHWs6QnPt4A==", + "type": "package", + "path": "mstest.testadapter/1.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll", + "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll", + "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", + "build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/net45/MSTest.TestAdapter.props", + "build/net45/MSTest.TestAdapter.targets", + "build/netcoreapp1.0/MSTest.TestAdapter.props", + "build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", + "build/uap10.0/MSTest.TestAdapter.props", + "build/uap10.0/MSTest.TestAdapter.targets", + "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", + "mstest.testadapter.1.4.0.nupkg.sha512", + "mstest.testadapter.nuspec" + ] + }, + "MSTest.TestFramework/1.4.0": { + "sha512": "kV/yZ0XLiOElsVeLT0GnNrsoKcPvVNOP6Cv2zkAiceJY0rpro0L+3t54bRApLwTg1mxlo4rLziBG7X6X69KcrQ==", + "type": "package", + "path": "mstest.testframework/1.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML", + "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", + "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.XML", + "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML", + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML", + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "mstest.testframework.1.4.0.nupkg.sha512", + "mstest.testframework.nuspec" + ] + }, + "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" + ] + }, + "NuGet.Frameworks/4.7.0": { + "sha512": "qbXaB76XYUVLocLBs8Z9TS/ERGK2wm797feO+0JEPFvT7o7MRadOR77mqaSD4J1k8G+DlZQyq+MlkCuxrkr3ag==", + "type": "package", + "path": "nuget.frameworks/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/NuGet.Frameworks.dll", + "lib/net40/NuGet.Frameworks.xml", + "lib/net46/NuGet.Frameworks.dll", + "lib/net46/NuGet.Frameworks.xml", + "lib/netstandard1.6/NuGet.Frameworks.dll", + "lib/netstandard1.6/NuGet.Frameworks.xml", + "nuget.frameworks.4.7.0.nupkg.sha512", + "nuget.frameworks.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": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "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.7.0-preview1.19504.10": { + "sha512": "ITo7gZ7yGHMkNj1O6PRmK+i917jbWNs5CZN/jwVSh8hO+3+8C5roDkXJYbM1hA5LZAUagtm9ph5whvnDOTilDg==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0-preview1.19504.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.7.0-preview1.19504.10.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", + ".signature.p7s", + "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", + ".signature.p7s", + "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", + ".signature.p7s", + "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": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "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": "T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "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": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "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.3.1": { + "sha512": "n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", + "type": "package", + "path": "system.collections.immutable/1.3.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.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.3.1.nupkg.sha512", + "system.collections.immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", + "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": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "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/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.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.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.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.ComponentModel.EventBasedAsync/4.0.11": { + "sha512": "Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==", + "type": "package", + "path": "system.componentmodel.eventbasedasync/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.EventBasedAsync.dll", + "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.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.ComponentModel.EventBasedAsync.dll", + "ref/netcore50/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll", + "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512", + "system.componentmodel.eventbasedasync.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "HZiP0DwTHJ+C+rdFqP47nBYUh5283kcwXIGY2zOVVhsJmVI/2tYiX2zNRdjRQRHsTox58Ydkec6h0pWSh8wAsw==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Composition/1.0.31": { + "sha512": "I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==", + "type": "package", + "path": "system.composition/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "system.composition.1.0.31.nupkg.sha512", + "system.composition.nuspec" + ] + }, + "System.Composition.AttributedModel/1.0.31": { + "sha512": "NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==", + "type": "package", + "path": "system.composition.attributedmodel/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.AttributedModel.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll", + "system.composition.attributedmodel.1.0.31.nupkg.sha512", + "system.composition.attributedmodel.nuspec" + ] + }, + "System.Composition.Convention/1.0.31": { + "sha512": "GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==", + "type": "package", + "path": "system.composition.convention/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.Convention.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll", + "system.composition.convention.1.0.31.nupkg.sha512", + "system.composition.convention.nuspec" + ] + }, + "System.Composition.Hosting/1.0.31": { + "sha512": "fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==", + "type": "package", + "path": "system.composition.hosting/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.Hosting.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll", + "system.composition.hosting.1.0.31.nupkg.sha512", + "system.composition.hosting.nuspec" + ] + }, + "System.Composition.Runtime/1.0.31": { + "sha512": "0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==", + "type": "package", + "path": "system.composition.runtime/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll", + "system.composition.runtime.1.0.31.nupkg.sha512", + "system.composition.runtime.nuspec" + ] + }, + "System.Composition.TypedParts/1.0.31": { + "sha512": "0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==", + "type": "package", + "path": "system.composition.typedparts/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.TypedParts.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll", + "system.composition.typedparts.1.0.31.nupkg.sha512", + "system.composition.typedparts.nuspec" + ] + }, + "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.8.0-preview1.19504.10": { + "sha512": "6isAINOX/v56q7JLaC9XDXzc7T/yh62QR+pa+Jt0ayjmYmLRCmzyt4rTy5jWe15ZcQfS9yQNxIzwyO7yGs6Zbg==", + "type": "package", + "path": "system.data.sqlclient/4.8.0-preview1.19504.10", + "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/net461/System.Data.SqlClient.xml", + "lib/netcoreapp2.1/System.Data.SqlClient.dll", + "lib/netcoreapp2.1/System.Data.SqlClient.xml", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.xml", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.xml", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.xml", + "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/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", + "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/net461/System.Data.SqlClient.xml", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", + "system.data.sqlclient.4.8.0-preview1.19504.10.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.7.0-preview1.19504.10": { + "sha512": "CxeUzuw9Lz1+6gkPpQI83BeoUNxn6VnDF28qazxSRyRzWSzLzoeh9ObYG7LYqcPckgm0UaE9nQdd7oDq5ncMKg==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.7.0-preview1.19504.10", + "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.7.0-preview1.19504.10.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.Process/4.1.0": { + "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", + "type": "package", + "path": "system.diagnostics.process/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.Process.dll", + "lib/net461/System.Diagnostics.Process.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.Process.dll", + "ref/net461/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.xml", + "ref/netstandard1.3/de/System.Diagnostics.Process.xml", + "ref/netstandard1.3/es/System.Diagnostics.Process.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.3/it/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml", + "ref/netstandard1.4/System.Diagnostics.Process.dll", + "ref/netstandard1.4/System.Diagnostics.Process.xml", + "ref/netstandard1.4/de/System.Diagnostics.Process.xml", + "ref/netstandard1.4/es/System.Diagnostics.Process.xml", + "ref/netstandard1.4/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.4/it/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win/lib/net46/System.Diagnostics.Process.dll", + "runtimes/win/lib/net461/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win7/lib/netcore50/_._", + "system.diagnostics.process.4.1.0.nupkg.sha512", + "system.diagnostics.process.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.TextWriterTraceListener/4.3.0": { + "sha512": "F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==", + "type": "package", + "path": "system.diagnostics.textwritertracelistener/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TextWriterTraceListener.dll", + "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TextWriterTraceListener.dll", + "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll", + "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/de/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/es/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/it/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TextWriterTraceListener.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512", + "system.diagnostics.textwritertracelistener.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.TraceSource/4.3.0": { + "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "type": "package", + "path": "system.diagnostics.tracesource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "system.diagnostics.tracesource.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.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.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.Parallel/4.3.0": { + "sha512": "td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==", + "type": "package", + "path": "system.linq.parallel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Parallel.dll", + "lib/netstandard1.3/System.Linq.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.Linq.Parallel.dll", + "ref/netcore50/System.Linq.Parallel.xml", + "ref/netcore50/de/System.Linq.Parallel.xml", + "ref/netcore50/es/System.Linq.Parallel.xml", + "ref/netcore50/fr/System.Linq.Parallel.xml", + "ref/netcore50/it/System.Linq.Parallel.xml", + "ref/netcore50/ja/System.Linq.Parallel.xml", + "ref/netcore50/ko/System.Linq.Parallel.xml", + "ref/netcore50/ru/System.Linq.Parallel.xml", + "ref/netcore50/zh-hans/System.Linq.Parallel.xml", + "ref/netcore50/zh-hant/System.Linq.Parallel.xml", + "ref/netstandard1.1/System.Linq.Parallel.dll", + "ref/netstandard1.1/System.Linq.Parallel.xml", + "ref/netstandard1.1/de/System.Linq.Parallel.xml", + "ref/netstandard1.1/es/System.Linq.Parallel.xml", + "ref/netstandard1.1/fr/System.Linq.Parallel.xml", + "ref/netstandard1.1/it/System.Linq.Parallel.xml", + "ref/netstandard1.1/ja/System.Linq.Parallel.xml", + "ref/netstandard1.1/ko/System.Linq.Parallel.xml", + "ref/netstandard1.1/ru/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.parallel.4.3.0.nupkg.sha512", + "system.linq.parallel.nuspec" + ] + }, + "System.Memory/4.5.1": { + "sha512": "sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==", + "type": "package", + "path": "system.memory/4.5.1", + "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/_._", + "ref/netstandard1.1/System.Memory.dll", + "ref/netstandard1.1/System.Memory.xml", + "ref/netstandard2.0/System.Memory.dll", + "ref/netstandard2.0/System.Memory.xml", + "system.memory.4.5.1.nupkg.sha512", + "system.memory.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.1.1": { + "sha512": "lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==", + "type": "package", + "path": "system.private.datacontractserialization/4.1.1", + "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.1.1.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", + ".signature.p7s", + "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.4.2": { + "sha512": "KYPNMDrLB2R+G5JJiJ2fjBpihtktKVIjsirmyyv+VDo5rQkIR9BWeCYM1wDSzbQatWNZ/NQfPsQyTB1Ui3qBfQ==", + "type": "package", + "path": "system.reflection.metadata/1.4.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.4.2.nupkg.sha512", + "system.reflection.metadata.nuspec" + ] + }, + "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.7.0-preview1.19504.10": { + "sha512": "Zw6YIPYZNJdb5fVVlLLG0i9NO/p+10u8LM8ApWat+9oLo15xaCGC6XyYALrvc+DzmxkwWLxU6n8SNf71V+x3+Q==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.7.0-preview1.19504.10", + "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.7.0-preview1.19504.10.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.0.0": { + "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "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.0.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0": { + "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", + "type": "package", + "path": "system.runtime.loader/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net462/_._", + "lib/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.xml", + "ref/netstandard1.5/de/System.Runtime.Loader.xml", + "ref/netstandard1.5/es/System.Runtime.Loader.xml", + "ref/netstandard1.5/fr/System.Runtime.Loader.xml", + "ref/netstandard1.5/it/System.Runtime.Loader.xml", + "ref/netstandard1.5/ja/System.Runtime.Loader.xml", + "ref/netstandard1.5/ko/System.Runtime.Loader.xml", + "ref/netstandard1.5/ru/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml", + "system.runtime.loader.4.0.0.nupkg.sha512", + "system.runtime.loader.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.Json/4.0.2": { + "sha512": "+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==", + "type": "package", + "path": "system.runtime.serialization.json/4.0.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Serialization.Json.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Json.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.Runtime.Serialization.Json.dll", + "ref/netcore50/System.Runtime.Serialization.Json.xml", + "ref/netcore50/de/System.Runtime.Serialization.Json.xml", + "ref/netcore50/es/System.Runtime.Serialization.Json.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Json.xml", + "ref/netcore50/it/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Json.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Json.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.json.4.0.2.nupkg.sha512", + "system.runtime.serialization.json.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.1.1", + "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.1.1.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Security.AccessControl/4.7.0-preview1.19504.10": { + "sha512": "PGk/B6+DoaHlC4PAc7OWPmxI91JtH4zXHHmwlSQAOnL5sll3hgX8kVR9loCnVHfshSo1vP8vt15Xy84xyKiqKw==", + "type": "package", + "path": "system.security.accesscontrol/4.7.0-preview1.19504.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "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/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.7.0-preview1.19504.10.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "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": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "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.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.Principal.Windows/4.7.0-preview1.19504.10": { + "sha512": "3Df++ZTMSEaRRyov1jZ7VSm8GemEu9cJJ+QY1y6wvF631OvS5dts98RhuoqcZxACVkNRIzl5ThIqd46qd7b+Vg==", + "type": "package", + "path": "system.security.principal.windows/4.7.0-preview1.19504.10", + "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/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "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/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/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/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0-preview1.19504.10.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.7.0-preview1.19504.10": { + "sha512": "aYpmMGgjDYpDYtDpUHwnSqSKgatkoZ4aSteVs6WKxo3/dRbHnL5rQ3QX9g7teACCIw8T2KW9OUxIg0b1kZEABg==", + "type": "package", + "path": "system.text.encoding.codepages/4.7.0-preview1.19504.10", + "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/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.4.7.0-preview1.19504.10.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.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.1": { + "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.1", + "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/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.1.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.Threading.ThreadPool/4.0.10": { + "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", + "type": "package", + "path": "system.threading.threadpool/4.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.0.10.nupkg.sha512", + "system.threading.threadpool.nuspec" + ] + }, + "System.ValueTuple/4.3.0": { + "sha512": "cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==", + "type": "package", + "path": "system.valuetuple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/.xml", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/.xml", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "system.valuetuple.4.3.0.nupkg.sha512", + "system.valuetuple.nuspec" + ] + }, + "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.0.11": { + "sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", + "type": "package", + "path": "system.xml.xmlserializer/4.0.11", + "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.0.11.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", + ".signature.p7s", + "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" + ] + }, + "System.Xml.XPath.XmlDocument/4.0.1": { + "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==", + "type": "package", + "path": "system.xml.xpath.xmldocument/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512", + "system.xml.xpath.xmldocument.nuspec" + ] + }, + "RestaurantReview/1.0.0": { + "type": "project", + "path": "../RestaurantReview/RestaurantReview.csproj", + "msbuildProject": "../RestaurantReview/RestaurantReview.csproj" + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v2.2": [ + "MSTest.TestAdapter >= 1.4.0", + "MSTest.TestFramework >= 1.4.0", + "Microsoft.AspNetCore.Mvc.Core >= 2.2.5", + "Microsoft.NET.Test.Sdk >= 16.0.1", + "Microsoft.NETCore.App >= 2.2.0", + "Moq >= 4.13.1", + "RestaurantReview >= 1.0.0", + "System.Data.SqlClient >= 4.8.0-preview1.19504.10" + ] + }, + "packageFolders": { + "C:\\Users\\Raizel Seliger\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReviewMSTests\\RestaurantReviewMSTests.csproj", + "projectName": "RestaurantReviewMSTests", + "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReviewMSTests\\RestaurantReviewMSTests.csproj", + "packagesPath": "C:\\Users\\Raizel Seliger\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReviewMSTests\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Raizel Seliger\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp2.2" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp2.2": { + "projectReferences": { + "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj": { + "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp2.2": { + "dependencies": { + "MSTest.TestAdapter": { + "target": "Package", + "version": "[1.4.0, )" + }, + "MSTest.TestFramework": { + "target": "Package", + "version": "[1.4.0, )" + }, + "Microsoft.AspNetCore.Mvc.Core": { + "target": "Package", + "version": "[2.2.5, )" + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[16.0.1, )" + }, + "Microsoft.NETCore.App": { + "suppressParent": "All", + "target": "Package", + "version": "[2.2.0, )", + "autoReferenced": true + }, + "Moq": { + "target": "Package", + "version": "[4.13.1, )" + }, + "System.Data.SqlClient": { + "target": "Package", + "version": "[4.8.0-preview1.19504.10, )" + } + }, + "imports": [ + "net461" + ], + "assetTargetFallback": true, + "warn": true + } + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/Controllers/RestaurantController.cs b/RestaurantReview/RestaurantReviewTests/Controllers/RestaurantController.cs new file mode 100644 index 00000000..48268b2e --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/Controllers/RestaurantController.cs @@ -0,0 +1,25 @@ +using Microsoft.AspNetCore.Mvc; +using RestaurantReview.Controllers; +using RestaurantReview.Services; +using Xunit; + +namespace RestaurantReviewTests +{ + public class RestaurantController + { + public IConn connection = new Conn(); + + [Fact] + public void RestaurantsControllerTest() + { + //Arrange + var RC = new RestaurantsController(connection); + + //Act + var result = RC.Get("Boston"); + + //Assert + Assert.IsType(result); + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/Models/RestaurantModel.cs b/RestaurantReview/RestaurantReviewTests/Models/RestaurantModel.cs new file mode 100644 index 00000000..f7790713 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/Models/RestaurantModel.cs @@ -0,0 +1,38 @@ +using RestaurantReview.Models; +using Xunit; + +namespace RestaurantReviewTests +{ + public class RestaurantModel + { + [Fact] + public void RestaurantModel_CityWithSpaceValid() + { + var sut = new Restaurant + { + City = "Sau Paulo" + }; + Assert.True(sut.ValidateCity(), "should return 1 match"); + } + + [Fact] + public void RestaurantModel_CityWithNumberInvalid() + { + var sut = new Restaurant + { + City = "Sau Paulo1" + }; + Assert.False(sut.ValidateCity(), "should return 0 matches"); + } + + [Fact] + public void RestaurantModel_CityWithSpecialCharsInvalid() + { + var sut = new Restaurant + { + City = "Sau Paulo!?!" + }; + Assert.False(sut.ValidateCity(), "should return 0 matches"); + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj b/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj new file mode 100644 index 00000000..3b56329f --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj @@ -0,0 +1,26 @@ + + + + netcoreapp2.2 + + false + + + + + + + + + + + + + + + + + + + + diff --git a/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReview.dll b/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReview.dll new file mode 100644 index 0000000000000000000000000000000000000000..8413e972152aafbfd243c89563c6dcfe82b5cd34 GIT binary patch literal 18432 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 C6Bxh% literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReview.pdb b/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReview.pdb new file mode 100644 index 0000000000000000000000000000000000000000..d37d25b7c812883db632008f08b672638af8732e GIT binary patch literal 5780 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 UMfLv&^}XKvQS$%3|EnJOH?X3YVgLXD literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReviewTests.pdb b/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReviewTests.pdb new file mode 100644 index 0000000000000000000000000000000000000000..b32d688651e25a2190f3d9930940ad48a2a2cb05 GIT binary patch literal 1496 zcmZuxe{2&~9Dna!d+n{W>$nFZoTvxO5(2VF*BhBkH@9|k#t@;qKI>&&uiU%q z1i|d8WI9K18bbUBorZ)2)PMMcU}TF47=I)}j3y(E(HIhq{zU=`2J!o@oyE=9eBbNm z`|EwbpZne=QauTbFygBoq`xZ>Ew;&<9R(86L9PRd^=C%7?rV^};2wJ!p@#`V0d7l~ zhL+DVZtnn{i|d9`C=UO5qFDFPt}ZwWfL{;*Cvy4-#|e+*O^wIjLFb3#KRxp9!sEaH z0jb5|FhP)DWM~TBoLl+ z5?tSgh)Wow1x!$aU^GMs@(LKO6$n_*f)~$u8?4PlKt+(FASZb_koPgcg$BW!`&O>y z1_3OKxW(~vfv#e20_=t=7V&z(BK&v+UmSY?yYImgR4i68@4N0E%=7WZqp{N|LOw^c ze8<25M!Rr@w-&-V!00mJ{BdsfLRDe%9_-U(-r0Y2_BcdL^Tv`2GAOfhCSsNe7*@mO z2VXna*p!%jW88oE_?gI`BLh1wdA@CYGlk}#`hd)yO75{P&Rp1e_FVMXzH7-(k(k=g zOgcs|Cd#AkAw~`6Po}j4G#5?LoR+1ADCey#HNAzjI-1T>78%o2LudN)rktmyY*J>* zEHf&$ZIL(2ZSE0E%Vq8Zi>ezmT`0itw)FlR(YJF@9^?_J%&6RN=vgB@CacW1+vg9( zHn#T+4AbcMdhnLAHFE0n^6HIWod^VObRK=~w}D?8*4{WUTRweciZh8_9sH4!m9^BJ ztk6eI1#Xpli|U#r+>*A8blyzTqDIGMMbDdtp36apE0!61^$g9iRm=1#Y7{k=yarr6@r4b5*@|z zyGyO5P0@YdL~gpbymDx}=Zmd-TCFe5xL!VS=fn8b&(6<1efRJ0;Dds2orDD!@dnX0 zFKXo15*%_2p+!SS)!=B?E!Boz52fqTTkU;6*UwF^y13@d>iaJozP&wJzI*b;*_pc7mFt-+4N91EtrQiNdhDcA&G1vC?H{zutNgk8ir(mK*)=4CM+hQLEMX0 zlv)?0N^NVcU95JoKdstotJPYy+NxEm)!N!>D=l4YE&jjf-1pwRnFM~ezt8{w`A6rz zd(OG{+;h)8_uO;ueKRaO_d4(mH<#`Y{iNzUo~1vj zYT4Y8sO&b4O=fIcWm~MP%Scvkh*z3DU6mbOmGf6LS8g-f;|)1E;jtF$l?#ZLdc3so zx8`r`)?TO4m06yNM1KY*sIU$B9->O*EAb@Cm%OIrW(3PGf9pX9{-Mh~=+~UfxG4Xh zdRm|=O|Rs6Xa(oNcaFmZ@P|ZqRp2?tL)m!z?kG_=o*(6#Q(Lb&r3JErqY)1bFQs4=5m+S^VpHWB@E-Jkym&j9Hq8&Dh04KKqs(t0z zt$0L>fiO|DyY!lRDfBE;1${VL0%CQ2mU#;3iBbR;*Irn3Tt}Dm#4vz~G9&}sQ0>K< z&mWxyf*0k#!R5=jyyopkXWHtMDclh(WXx^>V@#W zkyCSI{f`AJL*Y;1Je}rxa;@VbCkG`dKcmmw{S6 z8UeZfWku7U%PR0hVXfhQDB7oxS}(Kh=ib=}7>BQ)JE~XoPKhXNiLjkM8I9@{{Wf-( z!j2H^c{a9GVRgY?U}MV^mJM02INipUE9@(Rt+TPi74|W~j-E0`$xsm%v?XQ~(^Z#_ zOg|{)l2ghwb2QW)%>zZ18YwjlIy0ot{n|p{R59iiwl`dc}-M zNb09lS+a!OvglEmuo7lMfgZ(h>uLnp4)u$z(SVd}Q*dQG?IKz)kE>CM@d#^LFKfMY zT|Ync;)ZO!BHR$tD{>lMnow3;tCa`=#dx$(j2{yo(qRtZsnL3eCmWGb1)i{J&U>FT zMk`2K8^f(RJ<8K78X5q`8_>4}Q;Jm;WmHzZ2|rXwV=QXcviw)0E!c0QG;6|XRv(zF zH(*rb(J;&#g$1MkETZZbPfln-Y_%p(x-Ki=HEK|H@*}SL5Tn0gs$OwH!zp@2T|+G^ zpcIhF}aO44>$uS72{G(Q8TvC1KTSR-m}SAE*dVDUG7^5Ipo52C4@t zMmK~573Xu=Q>GNEo(C*VOkXG^HcTl{_)$u+(@zofM!R@LwuLVhe3yd{TX-y=XvlQ% zITrr6f=@d5kcI!L;CtrWil@?Qwo+@3*2``}jdn?)Z$iD(*(o{E3Fv1qWT{>XMttbX zIOshB3o7(QeC3m$0Y~A%qg&~PSw^GCMaLs4^s9bG{FVZaEGmTNoZ?(kk8m6C75c^I zTudLc9Z6sxmMjk|Ivj;%4596k@bvcMAAJN(PYINUr>~Rz=!Q&%&jH?Tec*~oPt@S4 zKhHA)F3Yo6tEgk{M+*4bs{5H=qKidM_{bq<{x%&ic65i6lB-8aM9Hp-E zSpjk06=do2R^?0K^u1Bk(=9|j!;sI0VR*wd zVXVnIqRBdvn2{IgPB@y@DFU5Zo@;<8v5xhzXTp@ZIz8YOMHpb5POQk9QfwA#)Ln5wMO_s0)mDg7R$0Rc zl^NdfWmT*$3M;Y;=>`M~r-_cq$quU!b2Y?sgJo(MBomq~G{%ox~dR_hU)-X}P|BtSP?Q zb74u78Shhgzd~Q)poNv9`NTw20Yn?jrxs7)v%$Oyn$VuxXJXoDYKBe$-`b7lUo#2b z=v1amHV=AHC3-3Y=Sok^e>j+E70W%@#Aw=OCYxpom}cI^fHx|wEH+;eNSaruX=V)q z$y9+Zfzk?m%T-{5`Oj1VpDHF|PBUBd6raiF?F=cQC!0^FfN5e26{BS|Ys<}10qRD) z2fcG(SSxEt4=e}{E;2aY1BMN!AF+iG%P>DGzlhS&Y0yqT+>-CeY?wRaImFU+cf_bX zWR^v)1UWF6%znm$6^^KY#!jOOmbx5`S6(5{LV- z0{S#_fYq{qVU+S|C5eTchiiB8@ZdfzaTcTD$?Pm#S!(}+6$z{kgOyL_Wj`VZOrqmD znCXc{s2XkJ`dFZR*bS8)FYJePq36uoSPYWZ%T0QXB~IR0iY)9}BbXz>)kO+O>)(V@ z1r&w3g!?y2zPLY*r{2pDwm%?ZQcWnJK1M`WFp~{hFH7z|7nS}p!UPPW6*i0+7DOb z!|dluny>U4$cJrx#VNNLXEPPf8YZ!hiO2QT+>LXPH_l~*jYdcG#CeQ9-;G9p^~42? zz7Pon84jNSTi_!b_%m)dT#}_@ciYOV}!WM~8HP+X1G6knoXks7?>6QP6br zpD6Xewz2~(Og%*11-|3O5OjFNS5#EQmZaCJ{+vM*Hmd#mA}J0OTBvlL zaXE;=!Za@uL8PPX&quT8+Vp&X$miOG z>lyIxV@tQl4>Cr#fS)rEuzw!3)`g~sxtkY8;^!30pJasr#%tj;FV?=aG!w;AY7^KNy!0UYit4s*5lK(K1*kw!&h&CZ6`^w$V9}x)eCFb_()vurGlWC4 z!Vr#f7V73qNM_u~9h`8EZq7|XOLTKl3Yw*x%Tv%Py4jL~szMc&rxfYtxj?D;W_(5% z1`)=O=A4A_0kM}e&&3{Fji$_JI9D2ue(auwweH!aP@CKp7&oEb?&-i8HzQ}wz)rNF z$%F~}>#}td2k4l2=yzDE`=pj}E8wgNxri+eBInhOA3}M6;GV$F7UQ6bumSOo#~Qy7cH<46YBJ}l(Z4su2c z`4b0udJ6fBgFGXJ{HcSS31s547>nxE_$O{>IAxB;9YS}8#-cMnF;|Q3475dOA%tGN zJF}=WkXBKa!p+JV%S={QQ;xx9(yMnntOmF07{Lizb?o2-bY~7&bZ5R+@8(f(cfhfl zOjd){>ex_bQLC?x8J&RcSkjR60d_RlQ>}+d)`m-vyN7e5ya^LF;B1`^Y2Mw4fYnAW ziOg~RdA5?>>OkhKSQ~&?(N^s_~_?> z*R_5uI(!H*TX0`s+;RN{Zs3c^8+Rd5TP&boWb~I9eYYF^b4Gue(TL?zrGLTbuQ2+n zZuCox{u-md?nb}N=zAIc4LAA~M&HNi``zeYGWwg0{+1j4Dx<&6=Iy3xO4^h1pPo*Vr-qt9dX`AGQ8&r28%f&<4slJ#pm%;kGo>wHA^2%tKj zo^_=82yR`Zz@tFDYURH_sBnF`*2}}-HGTk^%}F;N0|YiU6F8jktAScR@6&J^R#K&| zSD<67!~B^wR-?h{<}7zh7j z#>4G}4Y)ZM9{w$yfIkZx@Lw+cvy6X^@vvDJ9+ntRz{VK9t|hnl z-NHUOuE4>*SlrDhrbZ$lg1gv3KAkX$<@{Fl*lVQs827omxnC_v>Z>f4BMQLMBCzSE zSXu>=ssLQ+pku3dfs-Q;&6{cOjskI|R`H4B8Xq;QIgTkw6VPY1!|2{`&5sH$ms ze?|4>%$cd(r#hoZTH~wr&WD$J?<;r#}Aw+j9 zAr&8ICMS<2IL_&XY;`;iy=Q?Zw)g>@m9$EujPM$NL|%@r zuhq0MId=?+_@U@ux$vK@!ndfxe;ZubYY6i1pzOmE?@`l9DnsAAW?_+#KkJfg33t)D zM_a-9#6M8Czge>Af4Cphl}miU`8Axk-veC9fUkckKk$CQGJdMdy5*eh<<$5ms+m8B zy#B<$kTpI;!gp=Avlt(s@%Qnud%Qp1FzHh6C z9r1lzABgsS8|(}D;(o-axaVR>-E##n{c+F52zAeOqt|>3^7)M8ELtxs#J*xn2~nF- zij^`%DVIzQmP{B0mgyrf@4rm)#r>D!srNFZWC|*o7!mb&FwhnstnGA)#phE}*V_*d z;q>uZ$rtw{NCH2G6u*$-#|YP5o<^&{Z=%KTW~uA#ze%3H{#)ef@BfTE)m`C@k}vN6 zG@g1dLyCV`@n?jK|De0V&w(z1@nK|+>wn}ShX~kWGUWt!g?K&jY*6cqy>(c2WCS#* z1TUO28n3IC8easX+TE$k-~rf?&-@UBnDCJGF2e1`n}=kNnF?gD<=ca`_Dc0tLw z!u$rK!7$?r^XrU8edh{O_MVu9)*U9d>%N50dZ81(!{mno>PKt67Xpf|XEvV&Lk08x zp06{RmVTXSokfOd?h@s1ha;wW8Er=Jzt($#HrGj;nHP;2_nDdG)Wv1?&{v(+Io5q< zFeE+_J7HG)AU<2rxuD@^3zXj0k8v(AWi)zaFnW0?5{J<7p}Ot#`|)Q~zd4rMiGJrv zzg4^4ti?7?+BxBN4ZO3=yMuKwDr;$YmC>(pas-Km{2jxoxOGa3auHK_B|(TK4KO15 zEy#&|K!D)7)8bjL0jbpbW0v5~=HuQLew#~KndqCpr8tBVwTml^4Lzk!G`QP2XSxvy}vcu&&s82%fQnX>6$PYkN`?~9(jKP&C zTWvmqy!jRq`+AGvQ6&z%8CmC^>`DOk1==@|H@}xE_yV%g00w#AVyxBb>|dFgj{0}- zFo|3kI+~o4i|^rVx!z^=?pru%Loc<237h4}=K6B|xq9?FU?^d|5k#9=0Tqeks$nw9 zsJl9=b*}-JZQX?NtAgR7Z^G=@r-66$`oIQE0w*4t>`hj2r|@p2tY^a~dI)MJSZ72? zcw?$}J!(jaBgJ}e3;-@Z8*ThvoGj zE#m9nj3zXB>!$!dJR73ChUFA*^D?0jBz_(*MlU^Du~iS8iouB`L{#9LQHFRwATJ9U z_+CeNMo3`pkAgqI3(H5mHAm=3zFu+)Ub01;q+Vcp^+*|Bo~}5q#1SzfdK9mShmRDd zqoc!shT>)py?m!oLC|Ft*325;0bD!Ld0(cgs}_Dsp>a1_vb z88q+>kT4v2C-Q+_jG!+u5}4{>ViX=m1(KYQQOWr#B!OOt;4|=D4UFa(#*R&4(ao?n zMs;TPoM;We#5g4V2I`>QHG$so$l-NqMi>Y*!p3+cB?c4`F4Xb;iwT@zd%*WSY%}0K zY7u`wW;Vup3(^9=ye>cCHCPSIfC+fzy^o*Ai|0W{Vg_6foa&h+UYR$b*>L^xK<_x< z&83*esRI=5J)5a00B0pAjqe78_uYj7I9y$(RArrzU~Yy3{GwYODjgXHYr)I!+#!y^ zq+_3g6L=M?Is-@M7Y3{*Up{G*RvXo2k$^D?O<1krYdhiNu~eu2-WP!nv)`Gf6HH*lZF2m4U5GbXbAy$0ML@NwB6tK71`hQtrpdtqrz zd9P7kby3-n_%YKGZkpOhtpnd_?8|zP^Wg1IPp!|qa2PLcZP1l#6~6_b&+Hb`>r8rs z6NSAtg`L8KgBZvoBss@KBtWN08;COOHtv!tQ@J$n@GM4;3HDURCR5l~1v@PR`$xf^ zmWGw~;G1#c&wWCem)_nk$n0(}SjIiwZTCc-tBpqe8B!lHja{GLEODI$s@^FbHlY0J zQXa9CUA}}l%Mp~-waJ3Oo=GXKwt-Lo^#ODWXD1?%cq)WO5H!cka9CjOUrN||xTe0aq2yXI9xTxC;EA(|yioR>54eT4_i?J^BDdahrvl5uC&>u=e<9 zix=w?>_+Ro7`4$}A0AoyuxV9#*%`AnIG(UR3@>9=G*gPGMEZhd>=H1tI)h~_k2_N) zonZnmWBhbQGtwKsie^e&O>4a@+Q({s*vXr}1-;UG|M%uGnzlCh;AzIa{N*n>1X3~7 z9Rjod6uh5fs!Cq}Rsv@(hl8;eH+4?OYa0TtY^-gOpco1^YI<42YO9xXK(E^xaP>KQ zCmTv5@P(m*P!!|IK|-0+y-@#Nv}9>Fr12L`C%pDQFg2~0356l8kDtej;Z#(tDB2B0 z=Yi9Nd`r+DvL_VbDhmjV*wItI$$-&7vGL6ix9JpWVu#zF%)&^W(Aau?dSsjuwKyn7%Y6piYk%kHt^v1 zo=Sn^_hYh=#|#ntI>6Tg=E+itr(GU&I>k#g3!gFzk2sSjm@CcfcL0hp4Yo zq|$w#g#3cY(Lxei^k0F(nyC%viU@A3FC(Ci4?4XH57JAgZMWiDE-Z0vp$c`@IOjbcwbSW~JYwXFCxLN)C zP|XrION$n;xbMR-v|c8_#QXSpytv8s%OY-8bQ!Y@Ymu-FoYu?3msrlooJbC{QQu`U z*-Q+Cs(SWoPzn6&DOr)6xOB;fUl#S3tlcMd|2ZbS1F0#PbtVj5?5v!1FRZ;dQ(l9$7P5MDIVq z&ptRVUxBXi_hu)&_G_qI>tzBq_>@$6=)lK^Wl@sdAYNxaE>{_egvPxutm2WZUOEb;C_Hl9r9^*2;5P8Tz1GxbgdIQ&GQkRDR%g2kYI;5 zd>3o_Mm`(&&^ zHW|Yjk)z5A!Zpy_46d-@ zbzocQ7oQaIt7YprM#O6A{v){=Eve4c2V`t({A z`4=t-tNF)^oNNBEMQD*w|Ly$j!?~TW0D)N%&%ZplFRhme9GLObHUGFCILZ7&Oy!*3 zNHjKTl-sql9>le?D%iE-8{!zQeRsh`JNG*RuEqDAiR%0@+eu%oX!rYR=ya}@-xsg2et=KFe zQ%hoDzOr{vF>%9%5z9~`k$mG^AR>AAort_h9#%O&SWf=7I@WZrpSDxt(PXD2qiQ=P z25@wR-&7ENrypHq>Ram-1>@+dV928@IVKgYiMAqzE@zcOTh6Kxei(K^>+m@pA1o_! zE`^8S@4*u?@y|D<;c+!c+km?b&wM=jkNNxzL-Hy_ObMudm)ah+WnG*9G&t%4bSI)t)H{(}6Ok{#5W!O;7)7@Fml$6kG{ywz30({Ep<*dGf653eZ zS1^j6Eb1#5O}{QbR8>PCR%MshP&LJlD>ildd{3ybTG<|Bsp{i*#w|Gv)X!^h$?M*5vo9IQ^fZXG*3~OzL_heN587OZsFfOTMD`P*pj-2)*f49pv(x zhcW*vsyQ8i{N+>#{nyf)p6`vSr6P?rwp!9PBaV*DrBxXBFf9|C@f1E&aym^O&8>eE zqdA+hE7)4Tj?vWVGcw}0NIqZeVOse!C3ESUWl@xQ2G*t1#8I5T2zZ^o01l_qC#s(* z8AYFkgbOK=HKKepB_Q)?s)vTl>Fkkx1=FZBi=}2yueUwx<3*b&Ta zw&?j^;HlFK#XN#b#~rFdiz7EeZ@GY0J&xAFOrdDa?a!JEQ+~UJJr<)5oohA9< z;4qD`p|{I+j2Ti}4Ck4Tx4VJqxQLdK~_c zJ%fh^@HHtvY;=Y|?4iC=bEs-2X$Vyqsw`#5%fAu>=swJ=8K7iIy^@g(DyXBnZiNqxBwm zuUX>8`g0Cd?Sj7pgpxmta0_EC=n?;v;u(0ib`JWHPl3?|l{4_B>wJMeJA$Ff_@+A3 z)(tPH`~c8O+JhE$RWNNjohP(Qq~vU@JzR1YO7?hWlPSP2)&ps!2Gb#%8tJEY_~`WnU} zpT3>P=SS=50rFPm(`ZBmGiU>Sm%QlFWmp4yC{EuK=zI)g4|QOtkSci*eIGQU%V7&^ zJPCT-MN80=E+|RQ3KtHlX3%!}nTxiQ-capH3m4N{0=1xI4_!)c3xw@0plj%N0(}$9 zTMvDje(&OPnBK)3M^6R6kzGX(*L*h{zv~!$ID73tZ^`$Oo>Rc-WqIER{-@=SBmExI zD(WbI68S@=KS4Sv=Q*U`EPW36+90QAOFFCO`^bMK>jk7`{$C(n4Q}k~Uq`xB@*ieD zhx}JjSJ$)r&!MepRj(tBNP3o}V~{~+l@rHrAJ+#~Mk4x~y0UyeMSZTIoYQs%7sHEUEK$|$`tf9~~Vz;J(c`bzOt zNI%f8&6!5u^xcqCLObXtq(7zGfPW~D$M*~6hmpU36zl3b&lfZBKdiY2n6aTvPMHri zZvB6}-;weU3FjYy=P1w9l7B_gUjcI$EkG^qBlCYt@V^5-;9-1v>z9GsTiScvcW*t? zm%QAU>paJhpXK9GF7tj7>2ux>U3ERV%$e&dsqXc%Z2yvUq0g3(>xNJ=vqhbDiN@S@ zM>@6A%PT$n!T+%I0{WGLg4Y-AM0EX*1>IdTDc4WO zoRX)Zr}L`_f0qZZjjZ?KeJ+9a1aFFL_XKE-KsN?2ubPz`qzhC@v@kC>MEev(hx|>s zVOlhXx$L2a@|}1=?VtsnQNA3s;8;a_zc?T3-R&0iqk?Wk);HBKZ9mNpHRop2Jp$c` zU%*(GnF0D(PMOf;7;$k)ICK(R|g*V zo<}35DrjZkJ@5JSfr&As1{k$t^ zwFCVGs z$95l0RFI7AKAJ9&8ry4Vjss29uA$8iRG5D)y)>I!*h5$O4+O5GBp-5E?d>Q2b}&QS z-hSF`LEPScx=caR-hR49Al2UWbdv*3)UKzoa}*c0&l_lh1u@SX=u8V@o;T1!1qsg^ zXr(}k=K)&hKvnq%=)*?B-(#N3!;|tqLnG!Y=veNo{F|u7g5J$(%D+PX&BX7&UlMYzWj-t=!e}U>2GHpM7vFM)sFVb`i znh(3ai^iU%>hTzTi5?N?hn_pK@6ErP)-7ThL*L2&GOZU#>Fgfjuff=(c@JG|L9F?E zsNaHE^Y_rD3KGrVL;D0$T)sjF9B88U6?#gbJ=pPV$@?n(!-6(?9?t(7O>g4%xZYFw zU#DLvh}hTNPr=1ZQ@-w-v`nDO>F(+m^S?<63wjdJx9Ol&a!1*(^B@gpwN0uuZTfq-${tAYa z$NUi;v>>*ZC+K|(Vmo`1T2`uhU#Rv)eoXIL(Bsv)k!NT#j^u40`2t-jkdo|0x=zu= zhrCD!(`a`Jw3h~`*YhIXZ$U2s`Z;|l&>NoNH6FYP`A9Rj@P?--X9OVr84`w=_7crm zo1(o$%LP)}eVNV`NXhatZ4hWLevWWdRjV zWzCQLnzp!Fc$2ofT6mKNtQH=oXyi?L%Yu@gXyiB4ayB#COE2IBf#1>r3p(J9M&6;v zEa(q_{y@hCQhj)j!hE1Ea(d`JDiUZf-Ae}o@6i+&?T>VZMVs!Kl>bL+wxCNrv-1B$ zTP-NZyC(mA+G|0NdzxFD}9&c|An5ipk2QG`N!x@3p(K2mj72O zIY;&AOTJzCf1@S~dcgOd_wUqaLA;yz2Yt zAT?tDqB?>0QoiRv;9s;Ea6zw>z zw;-l{MDsgRw2x@DKuR+5Tqux|j653!+DkXls0a>i@c))9P9MSkK%>byY+K(dWz1e+ zJoH(~H{;-&!LP)gY$K0QKKIZd(pVgwm zyJb+A11=f3EzN3IwZ0{rWtc6}s`PqbG-?x>RsMY(4SHyBegtH&@$USs8q2oL%hV?# z%uP|>2r=dXU_2tZW=XEJR4)B>%l|8pYN#|nU!w&gp_{6D=jL#pw8$8{tqVl+4;C{A zP5Sjdw5{Rvfu-scUHzt-^D4zJ^?~|Bk%T4m;4HvS?OINlE1N- zwN#J1kA8>LPX|HO>E{K z;q;2B(;%T++o?Q{UFnGYd@oM5xXj5l|DRGfiM4#Gj5+_Ric@^65~Ai`MYH} zQC?ZpSHvom1u986)x;XTVvRnrM!#62Zds$UuB$6ql88t@n5&S+>1N@{sh=*A{C+Q=Ufh9GwVj|w%lnXiGPnnrS;ae1 zhN-K(S61vp%4d5w)Abbx>1OZ5yu);d_olqNfZtbnAN0dgjiC4Z&m;YI%}dY_W5&|Y zYW{-szLF2VDuW(Q^CT_xJOFNEJve)+oQiZt!CcRmgu|oWr?n-XsmMQ1 zW$1egd5{_&kLUW}cBH$idyzixA3)0IBvn%8N$-OtmwP6Ou4W)bi%7S7W(v>wNL#4U z^Qp4Wc~*IH@Rh1n9<%CRlWQEL&-tGs)Ii?w&O`DH7$^QHXD-bcr_YVB73%VU#Tr?y4{1wBemlEgkh9uX#}W!24#+_cf32!ck9X&w0OA^@0}iZLRz* zFnh3zi1?~-9_aCTvb(9ww=VAktq+`a?|9##yok3&bbi$Hi}E_}rNZ-N?V9RU-jMe; zly9NCOV0N0qc-nWZ=Z}&pM}|v!^VSB{yFVO*`M@I^0Bo{^5u=&?|sz!ruR1Q0krZw zJ*Va4eD0`+cc*tMnLWJMxJU9ce3hf#_RjDx zSmJw-W{zz1Jw~%}r~foPh2zYpVcT21jlSVE>wO;(j|kgXyAQSp3w#t7yA$~vDhGV4 zytyM`pW4xaD}niB@Uw#dyzf=%%UfcN_e;BPp_LbW?@BB05_6uUwc_01Rgvc{NnaJI zjv?QI_gYxaqZ+60Sn2kWANqV4>lTXnE*X>M&zAhl-dSTS{Y6%u#-8dQVdcL&X0d;) zm49VStG~|5SB*{jr&{@&#$4r}Y2|MleaJuG%E!ju=U-~&7mRtr-(uyv#=Pb~-^!me z=Fk44+OP1{#t&t_9M#@K{;2j(q{nD!*4f?$sITM&G3YX|f3$thJdSK4iJM}&b^U&x$z)Tu zZ}_64?+ozl@X!k)^UL1fj=nE&)H6TlK;Ti|Vzl+DaE^G{=HEgYz8hhWG0F3G#q)uq zm<4fq$2V)(OMwVH#(LiiVlD5&S9pT&im!MVz9JI*z{eK52ORS0nD9B~Vefa$!!vG` zHn*lJxXSxcNjLrtm!(hliJk4PI^+?QpRZ~@*ilUgTD-YfO&l& zPzTN>;iG0>>)=?eu3){d5t^A9p5bK~W_VdAP5uRWOTtb5 z&DamJmpBl3S2Xs3)!!xl+rl$N{`n&RQfXzWw9+W+=DVWLccIVc>0Qxh3tIQn`5Jqz zc8$H(3*v2FppJsSP>bm5Eg9<;?e3C2S#Qbc=i=`FjO<*j%=3{Bqh;AaT2J`bG^m{} zK)RVWAnl}0NV};MX_78Nx|6me?W10#12lm2Qo0Q3m2@@Iee@}$PtbvE4XfhU!8z)= zIlF-BJDlwnzis^4N}a41F5u1UiIt3f+hF40-|S zJo-D*B^1D0SIty_^gNo2w2gKa#PFMF7i725R(hw9@Gimy*_D#sA?c%%?$x-hN-tCA zNIK6awItmm>0U|iko0qszA35K&n3r5I#1FzN%u6?;165#T$OZrH#mo6)) z4E55(1?#g|hSw#fY>`LOIg+lIbU@PEC4EHF*CnMKDKF_9N!Lp{P{?iFE-4lD(!UGV zBb`z>fYd0w9qE?~UoX7@Wh#epdiw}YUzfCUB9fzR^MlQ_xS$gJMRCg{*eB({)Yac9tlJP zrv(-Ungd;dWZ>e!zQE0aUj_ac7#^$*&Iqmuo)c^h{w#QJ=%LULLQjT%8hSDGMyNUb zqwv4OUPS0V>_h@cgV>?s<`lLOM%hdKqJe2bj;6 zBF_K6h2ejB(~Dh;j;Ds+2B3iuQvSDhLP+t}7SdY03#DN;No56>p#$+*MF;Pfzm)jU{>Iqz}3s;7}5dKQ|{_t5@E3(eZ@(u8w(gzEB4r?gU%~?2B0L*#ycSY9A z*xhF0)?(kDiTf+F5nedHkiRRkHdb&(2nt14WZi|mZf3bYoIz#cuEnWdN;=M8mo=Fm z8S-W094WKz_i&PwiCa8+Fm4(4&fG@o@4BpJOJ=tYUUc}`C9lZ(lY>k3H#&q~@D)n@ zu?|w@t{I}gy~3{w>(*#|#$X;COs$F>fYdcU*^0Jw6TioPy77 z^i$7m^p@xIRHFTa-oWR5?Uyv#dmH^O;L);zx6xR9rUc8hYlGvp$MCr=G+rAQ9aTEVKZ?|D4 z<7T3vE1qmK%y_K3JF`qrvZJ#jxhuWI%y}rAjJL!S$<;kwv)fx+Cr@;>GqDxW>=|f~ zGpXin^yDd=YcUolj4qZ-!CXNIP6Z3H#h*OYW+0hWJ@KCSnnc_@+c38_CF9$el`7KK z+B&}@(cKx_HLo+4NI3OQO_N6;5%aWkc_s<$h>_NZNi=g|M^{H;v%B*^rb@R8rclA;0B zPe&)pq0+K=A`#mZUli+V?-WGSf{S`$Yyk6&ZQU_baE?G$2_-gcY!HJ+b5jDyr5%YR zKVlc}!ediB*~-H;iQ+rEA#RKXPSeq3n%NxhY8MU16Fr^DgqYZ5YB8F+l2br#XmjZo zFbuk>efFs^C7Ky)Z;#vg4MzJe^*sfP=nNAI@<2>h0|C}O-53SDJR9F7`dS(5Fab8r z?+}H?%w2#mD3rUQeTq`cw5b_v0h{qecdGk9r0W9+s|BfRc?sk#2~I`sA{GD{s~~cY zD9H0Lt&U&R14kfTo8}Zm&MAnzyZ@)TNT-Q8tZ7*|-GxMc_6!${{4%4xr!ziVmG0_5 zi}-TMf)xvCp1@sltc zcoH?W6C5l{*G@_09g!33#3(K7GoXgxYixKC84&74>ww+Kgkv8F-gXdQcOc5!jj z!mzo`Qy##=B&8B{BpTb>sfp)Jsw2u<#oI|u>Jt!I*dgi&uf{|ozHLM2t_3^eZCDPB zt|3^SxQwuHYNRoAuqn}OJ`O3Z0-SoAu|00?a>#>g4lc9NvJ8Urh@1Ea>9;}~GG`MD zy0&+iM%Okt(^w~Z*u_3p5m`}*g|QBXRUcG7)uKgY)md3)D)pMTc64{!6>T6@)5dUB zJ1=dl#A=0Vsgf3g3tCyr;G4Q&%^mH{yCC__S*K2@DK9jTGslFFZZ|0=p|64$(}4W(WQtq)Vx>% zx|0AvB!aZvMpp{A)YxQ`)A+N+r+kN9q-giqTn61ECrfifnXnPwQxy|bRf}L%fV_lo#1gnJ|V?=3gd{al4m4~Sf zVTV{=l(nLk9msL~03{~ah&g%~Dx?$hpKtVVk=Azgv@E%0SGN_5@x)+gp=oSWx}*i$ z;kC|2Txh|~n6hBelvr!9B_b;^jj&%H+ZHEf2s=yA7nq;ZwX%t@;Yun7I=6Es9#UTj9jt@qV#JCCUnuzl{EQ$gSf~?_c;I>M!d&i3&V$F{@t7CumZutxxlpbc$O^N)qbt_g zw5bc5XLg@f@MY8Oksz^%g|SYQP!1tZD`O@gwUMS}Xa|!jk(?jzjBkRalGrCg(@CwZ zVx1hcc4Ky$5|*Mwdt(w`z~0bCS4RSz|qQ=_WWn)e~-PmEoRenJiHU&M(YQz{M3Q{>NTPnle&p`aAAjEM=@f`|G za$KRZ>{V3G@jtGeJ~j3vH^arSlZJ}j6sP#v9m&nB)W+UTXWL&CODNtg=B~5iNtJI` zT30~pcHT!Rn{F|Y>qsP!u8wa*Yz|{|;+;Wz8V7-{H7w{t*n&07Mp{~Juq=WpSme)+ znO&Uajgs1V$;^`wa|Oal3&$$4vMq*{5ozuH8a4N9NXRc1kWw=<&2WjB7iN<2DgTjL z107WLW9CC`KZHj}-2#X}#zb33 z2W^1wTw`{Sv0)3z!aWZgvkeHjWnp)KHXFNu_jGI=OR=w`1v@)rORWGVooynPcW5by zH{r{0-ihH(2)V7Z1CvIwvgK}QZr@5P_6$-JP7F82I(y&cHc+Ro0 zAbIa80lAW0N? zyE&D2TsyUjTc^cFhvKYu)zsQ1yX%a7oC*$I%cniS)?QnftAhY>{TXC+R^X$rV`=qWU8wPe< z@orwOa7csYrK26b-4q#8ln!<;DUe;hYq4=rl-Z|BBHT{_cB?7O3Y;jhJ4j*J62ZF7 z>`*c>>`ZDzVx5pvU0+By;eH^C)8hmtyA{~6w_r%QLK}iZ;bV6mNT>~a3CV3t4KG=7 zrz+uu76Lj_!aF1UXxnTRvJUA4V(-#oaC1%VaB>6@`1IKxwdL_-18<3K7~7H&dn zvb9x?P_4%1_H5jUEG9yGd?jW_(nf4h1RfHsF`H1PNjX;w>QqQ|@FTliwQD!6A+emd zTJ20iw6Os(*J|r3EQ886b^;O(v)0CU8CZMNC0a(!wKzRI0cllF2hOU7uGSKdZJUSd zmJ^Vz=vQ^vF2lhbTTvoI1XhtM2?yw$b1sT^Vrp53(7XZyP-7wSEUtJQx1rVsXH6LD z00X7ZiYMiu5m{M`GgT_KW6Np}mIG(1k=%;I0^m{=j4fR`4uYowF8lb{Kp7v_D+%)k zAzO^4#tslOod?G&aysQ)!{IhWokq%84nuOEft0VFXqkayc{~wQ+S4c%3M9lAxMAmL ziueSl8Ow23dxF|~l#g51(b?INu#h}?m4is|rf&mIBM_rmXO0QGF$^r9bv8KepgC@C z@4$g!W&yP`LR@Ck)pibZ4|ggkZZ%=qP69WQJjw>ScW^29ovC*M_x_?b|^;JgeKq(rna^wH+MKJ)IA4eZs7RG zL8p{p?L<=)XJLYd9HLczwL^5#(!7WZuY$ow-aH^O!U~nJ;-8osWv!m6)h!_=CVW&S zo{c<}5)$61oK?&A#|>&PrW9@G*^ya?MsAdKoN1$&yX_p*eVk3l&Q`o}bf+uNZv2VbsBsJq41&?;z z-nz^X=p-$TZ%j7hR@;ov#fWYNW;O5o(@|UqcWj-z(#oV`IMB2WxFeou>RQ;zjAWyd z@|EHn$>?syaWxK3JCdA75T^2CU6j~t^mMlK<^_=gZUtAE)>vAHm+I)7^=swO4=cys z!pfR*KyIrC8v+vBk$ny8T$ZbO3S=*9W!1(9aaWre=WxuuSjd1|ca63lT{hmp1FCK! zRY`TYsVv;eyX=?PEi{@YUdynEI4hBRm=sU@vO*$wf;OWK@<#@dzB zsY7sgw!G;j9qx$H;_XT{8)seMr6X6e=X4cx-+ZK(9O{5Ky#yaDrXO%-&`)q+n^9`; z8Ej?&_xWl%&DP(?6T?1IP&|gvvNMM1B^`}g=P*OdkX~m9?#>vdm*m~E;)orMfjMJs z6WvCZ608TW2$;K6d2!visdQ#L?3W?NH)31Yo#fM8ERhI1c#o}CD`}nm0JaxNYMPt`SYe#lY0kX;~8diXNu-3xR9$BV$RL@RMHBUi4?$@UdJNkk~} z5E4Ls0^N=5GR!Rw_U)O?!94NaR0^$*?Vwf@3D;PYY+G*Zu${HbOWT_#LZ?#&tWBKS zapIn|J-*X@SRp>Zc2p|(R4Df8D%WDDXKRf81@Vh3A_&$I)@d?^%U8~C#fJs7EmSGm zftbV^bP#a9a@gM8xl0wz9CFv;-yo6`{H#%L#YxLei3Quble^?yyZW>6i*)dyc$;-Q zew)F>`>b7fzcr2&gGe!8I*@L_yX$eHfj#q3pa(!ZRicQ2LY1@;MY;sT6_a?`-2ikt zD9!kXBon~kDi5y>4&6ut{&BwlK!hw7$%IId|LhjDv=z0x(AIX~Iw4ye`Gm+|%eg^t zIQ13T;;3DTFG!hISwrB3Qagc?4MbU3@+`g-N?Ii;Yok+!LS3STPNJ$dw8b*T@Y+20 zl)1+tK^rjL$dUJaq8t;s7_`E48n|^F-VYv!H!3TUo@eFkh8UY_iXpo(&M$^iSI~0g zSg|}h*vAW}6ot!g!f+%u&`PDH5;cfC#-8F7AD602Q&x1c0< zmrfZPUnw?Z%fLN|35HyJ-15`bCJY|8zX>HfA=gl9Wvxxb+tlMgkK(t7y3qSJ^n=w} zDZSfiDY*@lZ5F3qngnB9M^jOAJcidZ@cI9*8moi|8y%~#2cT0dkq1Y0)m9E0LoZF1 z4noZHn$SUI)g3ZmDOIO)Xh7!|;HxBTZOR6Dc+<-$-b#7kecF7O2)>9S3XF+_CmJ$$ zO;2N{OdG+&KtI?IxXq3Yip`D(At}B<4IQ1j@PsuC^p>@vcMF;7uv-- zhyJr3c(D6<4lnt*HQ0>egS5vZ!JNji!JPGfyOwB*l%SwDPo!eQ9y1QgvR^rQFP3ZSF zK+1ha(XKsX*%j{sH3l!inyHsE+_LRo#*?S25kJ+t5OOZG-Srd0WAq^~bhC zIUFmfaRn5y$78uA7Y(;DgJq?NZ4plCJdUT5vW&3~Xgpqsls>XnSPRRfE%wxGtGwLt z@}0o%<}W}wwq%^`fx_~}L`zhWqBMgyM<%!j6s~L!l*8C|j2X8~Ui^zx-hOCpv^AGT z!}D5NDs|&H&pr{~Z1EcS<&*OXkquJ7NWlpyq8p@L(98MY&N{c3UdrSCxundo{d^N^ zwcgemN0=%UU|Ul4m7pW64pVj99VFJ8k4jZEWWFs#wjMe`TpstVx#) z#T=wDt`jrB9tm>VO0%I!HWwZ#J3^i(z99x#c`deO*A!zss3wTkE?N&?8)kJ5pjO_i{qqFW(!B z*BaZNDl;sKLuTaz;SJAB@tG&1&jIv*P`}Y#-?pFsh{F;$hrzb{AMx7CUwKSgqi5^z zJi)N8nq|b9p6MA<8(R?26o2*Zx@KXyx}x;6B%M|R+f zlM86OnUe{{0RcNUUgQ$^cB&ol^ZgJ8wbo1$* z;kcD!(4?h&+kQEUQjx*@6AUGHp63RyU_I6#r~J$~f&$JSS^{oS&8k!kaiV#oVjH*0 z!S@p<=lgNzXl9(`Zsnu{>+gdR6Vh?`*$g&k&U4(-hocxyv6sM)iQucJfOg{8fM%su z7_~#)0HbH$`*Bt^%1f_9)s?8n|Jf1gdGJu|>sKRf!m4lb0<_kQGA&pgS+?caEo~PYLthp&Lsr($ z0<4u>My;v~QI`8PU;5AlXgN5oKnqJzg4b7tx3it=rswjtk+5*x@~4edA4jgID}>Az}qwqXg2}o6_lN`?djFoFHcb3kaftx z7av2|onx2GXQ1}xJaxcw2Jl>u!&o~MWOvk#;Z{z7S76V;-v30HN-W{(bi5LyrI;z9 z)pE#($h^+5u-(v*+LduF-Z`j4WFCbb=&nl$?ElkaR2s=$%G}*K)?79eRqSIpw{FiI z)w=EZ$l1pwoQPNEma{WYzz6WWBxf&&w=OdF^lGK*mYGRt&0as##~8L^Sy%dw8h9_f z){eC@fNCejdkj9?Xs}veik=(L9_xqg&Ay$mZ&BK0Se31+b)AiY2b*Q*6Q^`pl%CnB zXpQP0Yl``v zoO5gk2W4NgWjl5eLI?@Tnmv1V2_-oSNhzWzvXn$bmQ-XZqJ$)}C0UcQW~rn*?>SDX z@AtRe&%O75@8|wcnRn)y?U|Wpp68i)-+5+ze@z2Gp#3$;^*w0H9+Vp3-%?=e!XwZA zvk7GaL=PmSC^*@>45E3*biUr@{koumi z4?#3bc`2m=QUJ3_5W1Xy(%S~UEKMFWX^S0Je7#zh1hhwRL!^8@CacJP+BP+;{r)XBZ8XT{Q;sXYr(0m9kE^aPh zof*V45%18!ka$ht#c=}%!-^+91SzTb5O6Lw8c+xczzl-`I2;Otz#>6)I3xy+1y3v} z5pM*l#Ty}^I1q*-u{0RS3x0TWC>s_@1%u&R=gbo2SwumdL%DMfMAAUK;g_VW;kdO9EW#8 z!;m;oDlqc}J-DDcaHKlS@vgx36+KipD8Lgc3(E&%#ruHVC=93%%ZC8PF*3tZFgO-8 z5{_r22DmY@G6ld9R3w)ggTm8su&fMr)k9vBr3h&%%t4|0%_oQIM? z!1JKjade>kPoTq~@^KuD2;hxug!6zJp$BLch~)t{fl<>?645{%L5jwK_950uBLxpY z-w_~!2wvyvLIo90s_Q%CM!`XL5|;QVDjXdnoZJ|wO`!1rMjA5EMlK``oC_3& z!$BP%MGt5O&;*uDt5Hl~Oo4%I(00%)s2|q*;%5s%x2CXSsMf>eya;HBX(&iBk&uc8 zqr?mf1O5H0gHT`s!AS%`LkkFm$V$#n$;k?GGDWci<7&Vq{|9ELX&?}}6QMSD zo^xXYc2WZF-xGlQX#tHB12z=IO^2ac#~+8qVKJchKu2(q`-2P2JRBCg8H2?BWB5QF z(8L2Z0u*}z0uXUxz>G1%fyobX2S9WPC=nwx*C8xH*^*#Rq>{z~Fdovxk4y#g6EJ|t zR0t&~1v3mwNeQ9=X@gM*(=+lqxs^B)<;YMdaN7n7+(rQ!Z2%fkfchJN`V^q)2B0Yg zsIvj6Ljh`T0BTZzY8!xR6rjQepaKObvjO-MdF~BBZc0kl4M0{3kU}ib^kfGU4fF{# zfhbi0B8#H5K59dk{PaT!CXU%hB-f4GnVK&X~DY7#@n6Qcni z2E!Rl5;Rd^BpFahkpYE(IWR?*fJu=8$D+v(YOn(Ug@MR~#6$^sJ|{wx2TEK{$y-he z-lGKXVE`Khycm+IkR*WkDVW_r@{y+~d8VBd#9*-aogfKCs%`KxMRqVnw&I;=7$Ig0 zgclEto(AILl(Z0wj;yC9i9euUWP>(=3<%Ibkd=mjKtK|Ykq3^Y0f>UKfZPLmixWSF z8q~>6g^%pTN4{ZYiW~zY2tD6HPrMVT5fa~IMg!FmMFbhSsc?`=04f9%0uF-Y9*iS( zC)qtq1|`x!EH5erq|E^RPxgQzWQt0ohf;ti3B@~%e2^qbB-I+(3khvX5Xc)6KEPro zU{PemNL&lxO5$2%oauoWUPm7YaH!CzY!cZxL4M*flHZl&dXii+fdv3R6bp^WF%b+M z79R>R!ZbLj|7Yh?dY_Alm;v<(NiYGTfDp!#IcOTd1)>s=kru)P@-RgfQo6g4ghU1u zBxV3O1`JeGF5XEM!$_);#Hs;J{G*Y;k=h2i?;z=v4Po(Hi%UpS8{mT@qXizMw9sP= zjw9g&c>vXlU}!*{WYYUb_5G#%a(xU7DHjl5WNHBO2bx0vsDwWerUP0k$N}&siymS$ zq`(2uNRnZ||FhuV+I4RO=Jx=xff2`+XgC~a>Y`D>o~61|b;PgVJ2DHl1(=|Wgu#-* zH>PL=a6ovknWhX31zj5fhY3lcF2DH@yTFjv{VAcE?MmJLGl?FD?Pkx#4Ds&_7>GM* z%xjo#ARK3eNOnCL8&Dm5?h~I95Q8~_`AY^v4!g?uMrViVw4&bl^Q2lbRm)Y}AHSth ze9OBsK>#;=@0~eS(2&OIZr3`~CmPje)~`}t-Fd>eW#;gwbe<|b-cQy~v6L?=vCwK2 z+DM~;HZ!5OU9J$00DCy(K&Yd@g*Y%21VjO{grUIgDnNUN94zDjCIkZ)r~?NwUWo#> zG+~?me#0FO!vJC+tw+$@`0WTZ0)fUM(O?OI#+xG1O!5dc7J;UR2$`g-1CTNb4ODE% zNr9X+$jN}5Y$`NwWG({o=F@=;Kj#KB6aY*O4B$`o7L>mef#!k|r!s(eJD{*r6c4C2 zl6nE*23R%@q#}la9Ny~yER?ODhFmN}VNimzq-+rH1SvzI6w#0q2RWx8=PcwTqR@cn zLQV%Q$WP&0P}C$fc_sj^1_hHLZT6RX4}sDlCkqsB1$l0wLHYnV79d5M%b-wV1}Ol< z0rZ3>6ND7dqKG71s=tK?^S|77dC9+9pu)z*Lq8xp7!%`Go}{1@sNs zMUr$#Bod$k*fUrbLJLTGU^SaO*C50&5LfnrL);s`o#aZ8TmlYY1quVpG#mm8F3_t^o%m!olYXop0FX(T|YzHOdBNqXU zt&3+!DpM9Uke{*?g8WSDt13V$SO###2c#X7RuSL{#2qM>qyxi{kn+oggQ3=CDi^fU zhBRlOfvi6j)}P$#PxkdE6Qoptblb?uS=WPVWT+8S+z9VaQKW-ylCl*Ms~U^i3i~qlMrUg%R?rLE`}05I~Z< zL{EsYkiZW>MDing12%EgfS@2%4Tq%z`PRn`%r%HEAfX1bfHA}}ffYw&HjukN=Mt0= z^gN(>20k>XH~QCLfXc`P(SRbs(glnd7b71EPqbbS;E8rzWb~|&qA)C#C^S2O4}rvj zjSf*5J@~_6M9HLyg#&xq(2ob=-}?}oEPh2Qf_;j0Fy3klLfO zk53n}m`6UG595QwI75LMxI>V2UOwoU12`ecr%SQm1A_^`Vcb6r+wh5Mi}C%X3}88$ zMpjB*iXbIVklzN(9K&H$q%imx9S+<2t9bHxLB5~o1^GltWoZM;M|?6;1Th#)0S;q> zU=RqLVUbuj} ziT`F%R1UmUhQpNq&72z!&a4|Pg-|E_gWSJP%Kcua5_qW$?&tb9a{ZmL8rtL4=8!LwmG3L=x28qg z9-jZ4_&xr!x^ZSf(O?z3JKNCL{Fq^%0o;gPWZdjUmWk$Pa(vEG9i}1^M=x?KHFWNc?`8dxXIRjTLdFiekf#P^`BeCmhyLThMDcslvPlK ztrt-?zFq{>ge>XRZ+tXkAsrD|q@rf+)}o$aupsei(#6>E}Y;%y*GeZKB-0G9zzDjwWnWcK}$ zU;`uHmgMt}gU81QyX++o+jlO1ms@Cmo^fP6U2ggI2Mfu<3%dl?%8)G+U96vO<`-;Y zce$~^bQmdksj|Yq4O90{VwU#QbhEJ6r9^vH`dF1p-FpL<^sf7VSGXlgJGm|0*Q!&V zVNPZC*q5Q;Pj&-6*8NgHJ`69_d_6HCT^#z!yEk~@6s`S`V%yegp*LQFG6kx{fV!f( zSld&(MRMp*$uYf#m+7~NqfUPgljtr;+T09V?K`Lzv+>EG}?y*qdZ zW>$1o>_xh;8LvOPKjXd4D`Nhr71r79v$C_ovr@DCv+Vvfge$Ir2zVAu6j>0dUnk+n zRKm%I!ogxAzePGAjFGkQL1fLiV#y;z;zA^$g!Ufl9_zh+=bU1Atyj)=$HIaadOPl? zgqUR?xutb$@z9IQy0OG2;(9`Cl&o}vI zPuB7I<3$6lJR}J89n&Pox_OveqV#;Np4`XL;9fC|vRj4Oo%jXrR}+CR_SZE^x^MPM zt#kK1Uo?I3eZW46Ip(qw)G0Ii5V6Y2R~tKyI9nGuBoTmmcU?|8vgYD z46~?N)uFP;J9f+&G^wJJX4$8A`#2Q0$X^tf*NAVMbpdyDtNrOzW-kYjbqj(7rdD!A^(!cC;l|HW5tC7-tLao*=0!(VMB*91aVzBVif zJr~aQi$AGuFt6`?TmP!q_(jDA+DLh1C5<&tn_6n)`jukV450~f37KBYc=5+Gk3r4xr&CA=K!J&GisV~ zYpD3d+pO1>#N#oaT{7}cSY}VNW%So8MNPyh7(Y&}SW-jiw~Z`ExxZiat#coG+kKxl z{ZqZ7vuaX|;^N{(`RR@pjqa9*L*j`w^w`L6pTAl=8(-MYH=mR~#=rk_+Q7MVmaA7@ z+FvCulzl<_ZkCm+u6>j|pTlDBJ%n>SNnH4PcDIO;n6x4L%+2Ka`Q$adyxG&q zUk}iwzpj2+XMMMcBea-kEYPaqIE`_*wyI$*&9O6QRv8?}K?b9J^6=~#+NcXAmxVE5r+6G(ss~Ght`LIlytA1=V^2muVyN%z; z(WOtwb=FxswF_`q96wBxd7?9IDE#UKhjMH%x^3Z>(ro@P`!`1Sw+Cy8Woy=sL$LXu#9hpOm+N>j#@@B_b2Azi_eiVs~`G{>#eN=gUwn!{|KMh0f?84raC6+(v^S~D*8#ypm3i}$UR-b%?YAWF z@}$H+ikBAm!e*?_x-?yK5UyJw$x2bt>TBOhG^-g0`3!Q^B2(Hw`*Km(Dk?9-@Vx~ zQi*+O*}&>Wbj-pb))j%rYj!?E-kHVq5fZW=+bhs*^Zs@QUl!4ApWeX2cKNH%C~+uH zOv~ z%IMYx>cmg^q;e~2jqr;-wO;1NBt&IiC}|2zGKRmE@(gEQ`9385VNvM>2uw^+&$^wc zRzn`UJTw*QUcdj)AbLAyuwa3@Zehqr#Xa-=>mkhy%Q*D~M`Y6150&V)<)XK_vzN?P z#Kl&Z#a6pmBDP1@x($uQ9Xt7M^(@Pp8_jX?=-P}&KVaV-)8DF|pFnA}Cyz3mFuo*T z!x}EXRIsbKmVVVPqn4J(pgC6TX|GbaUH3}ZP)KCnWOYXWW5G{JPgLvLFIFr(t7cy1 zvF@K)uB*aNnC=O@_@h$jY{-d_$l~rWwp9&%Ro>@|b3OvZ;$W=)> z^R7}|P<+c!KZ5=;UMp0}R@7`O^fGqK($!+tZ7p$~>CzYMhLup~^jGa84Ld!O8jiSU zgnsZF&W~+0I~zDGwz4mIQOWqP!e7fgg07|0g|)kWJ<(juq#zzUZ*={k*UP~2#ZKKd z1|M&C?5&-xT`}ojl6O~{I;USg?EL+4k%RQh_PseFKGH6y4WC9-iQX61z>6Q>@k%Ty zto-9Sv9C7Vn@47t+arwfzk7}7-#)Q(BK~sMaIePcV0E#VdphR1()RNR-C6ZeW!ofa zyXDbAozOh217qO4o@trpaEKaxPDSh~q1gR$@!b+R3K)Ia+FEN7i#2{3x4if9Q`h5E z3PcsCTk>BVlFYovo#zpIu;8(cnak3Z&_!G4#(`n6bLxQ+##`c7+J|oucN$yuoVMBd z)gnc03#X^wu+W1S&y+kO6;w;t8X7l&d1k7_L+uFIUpqmaz zvs4e5@4lSECbnY6vqb1AIEPzbbDU(JQ&+>Cn5^B>--xUaU?C~;HI!;6C^NB5g?E*_3Ka^%FW zohK4+@^pn%RATmD%f8)4mEC6Ivfre|{sotpo-CWE&vbX0g%3lp$jg>1f=pYq^L-?! zbuU+v&iZVuUcx)NUY^C*mOdHIe{H|09_k?LIWfex;-=>Cg}A*eXjj~<@qBCMv-MK5uXTTV^|Grg z!Cv%qfJx9nakmE#4jwJJpmO4vsbuasD(-sWZyxbIy|KtGRaN^3j`>u_{Ny zs7k8#-{qr;d2Hu&`eenNGb7WX*PCv|6Bkb2Sz$_62$5h2$%rMI?muF=5|NM)_1Ar6~FSGUtGK&a{r?3=P*mNDaTLa(l!>)*HXrWmP0H% zI$SHCX@r*!-|EUe{wyu%K;zp>t`8nLuy9qEjl8WrrO4yidpOi*ale|2J!|~V6WqR% z1vcyhIntK}^pm!}HkNCpo!&L|xL~JIqW{4i*9#s!%*d$sH&^a?!jnI$_)pp#J7TJR)Y35M zsK=$AEw`@rmP^Twd^z0b zPT%(*hZlq72CoJic0W|A)fkzsd2y*QYkM1A%JyeG%xBFAb#y_`5mZ}sC)?*v-!$>K z7F9~ekh1k?;i$VyK(F@siWy<~wv2k}!drgRR zHcR%uylF7`WAmW_f0bc}mx%_oC+6>6bFshiGILMk_QRu3ZR|HqoMpRuX|G?Dcgu@D z?W=mDPp#d$wD%k>L_85uifHzk(D9%5wsSGF3$AzJfr zLP4L=E?2XBqeU;ZG35htL*v#XexWDnTi+2~p1Gv7uqwpMe)Q-pKXy9Gw6JpT9?def zqRZc-1M@B$CH0kAn%+BC+!1^3s1EO@t^3L+P~W75m#&-cS*?7uWZcJjcwd&&%%B~P z*?b{U^qnBFqKx@Lg~|OhlHw+zoIWxUGU|adV?9DuQAW39nhH-2ninWG4JG&&Jm)Iw zkROcE4SJ5`jL(&PcO+#XMzmG?>PNYz8^hHsGsj*z-SC$4I@^Tan@i7g)SaF9ZL-u8cD!M7sKNq$W87=*b9llf+^cQM)9fCMbA`l40eiI)t%d`b?$e>K z>U5bb8N4?IyxC#W5QJ`Ho*N)aF}3rYIvx6H$L@wjsTfM%8GcTm|n#O%glK1+i4blm-VJ(B2}sNyC}#{y=><)x!Bvp2E{| zYdtniEJ-xZU-D$0F4|=jJ$y$vbNtcAM_;C%zUVYO(NXZkqg+)k+ET%}#9siB&wR_~ z4OcJE)B4X#Mh6~0^vftOHtO3P{prcc++&ySO&ks>rhoF_(c&lmLte8AOWbpBLXN#p zdCYt4Yp$2l(f0d4?tb&Vsk)4HSiBYJxc_L+N%=d|w#^p?eV@F^HPa*}yarZ}o}W z`M9<3LE822PJYf?#e*}S5z@YYJ9guFKCQ;$zG_+5epN#^hmJ}ijl+c*m7difhCS>a zobujdsq)okG~jxRX<8}s9y>pG`BzMZHt{;T$E|ulW-COCoOCtM{q8rLG|jL%FG0JO zRbDaVZUqBpSEH{(Z%*+9!)=M}Qv(j_KfZn~H^zl(V10*c00VX0pHau!p~^ zv2fSiUM)jGp@Z=@#FW5GLt9pQO@@7`1RX8xE-ML&^$12RO9ga&QI?vfjw_f$x((2C z-b-7g@jWZ0o~s}$AGB&CWMO3Q>s447DE-8uz@M7C|C9v>>i}Ie+(Qja(DVSXzZy+SKF4L!BnQ-)VfVt?pz`Foz$soYqZv zE8e;1nOQ}tO?sd)?@7T}V>R!J-DCdTe0xhGgg$;rE=_!V<|Tf_;>bXni`g)S>)~ko z%Y>U3gO~$LOOq6H#3IhM42@o`i+IpmmGO3S;~b-&{QcvYJuA~+Tpkx^u65qjLm#$X zwLUaa@J4+9+B@+kgHcsSPS)IkNAb@5JuS{*dFMvgxUQ(*bY8fD9_Uj`d*QIjI;CWk z@Q%GYl{3X^TeRzn0S`OQGh-l=zEz;g^TdF|DZ4};dDH3TxnY;NHShY~XS^qHosJyk z4sD0>OPW>nG~+jweA^%6n)rH3tTG&zXRs&J!17{lz3eUZl{c%|ur+He&#l^e2FnhDj1} zZ}XWf##=^~Pt1Dsr25Ylth6TuUm4ar!=RqF<;|S?h0*jCL;X_Ki0%4)BO*!HmDa8X z?B?}ESz>O*h7ym?K ze06QKLoDRj5o9faW8%5!0l06=i3R5qgI3SIm?H+zs!`4sjhxoO-eV(!Pc+3b{5Zt` z#!nKi$Hx%#bdffH6 zJ|ae|aqFbHRa5bMda7%A*3VjQtW0z4=M2pk`O$Nbd1?F6-uL3ZZz|ru60G)$?%Qiq zuD~^Rn3e9}=$V5dy*zJQq$3W#zB73vI`ezc=(VA0`l{6#CUO(&7GTm?|0sK(0%l}!vWmt(mj`KNd$USW ziYt*xp}Fqr=J+!LF1vNnJH?D$SOgCU%PNX^o!OzQCVO{EVLc9%s2e z>NLu>h1s(G+W=&U=clGom+w|t^sE^${{l;!q(zC~L5IfGN z@A3U+l*X}gb!+LHk}{o#>EBNc=JMun4~{fvr`ft*%Bi@7IqvAWs)gBIjL@G>>T*8) zLn}^_ZC-!mQo=N+w!BKjw!$RyyK$9`Jh{BXw@t+EKbLxMao0?$Tk%JK^0V0Iy1sI? zE$5#a-}v%kUMlL*lC+2K=m?v}>JN=`7Dnuv^0dr3+oV}0ef>5S3v7PxC;M3c(!B@o zPH#Tu@b=JRp{w7qFW=jXPpi#0ercDG44O1bn^OEuw=ZR(vF&#G_J-=~bZK3}o>h6pE?TnPv}Q(DVfyXSS- z@Uod#(Ms>>io2qXi=5M@2jJWX1v{FRxIWyfu8IBO-^Hyq5>mVpJK4ahQFC5uMS0~> z_?q31!y0V?%u@HtiIvwcbS+D$`%OKkcCgvyBmDMQP^jvDmuKA5Hm^NyR~)-{u=VwY z#Qoe~b$W6$of7-w2Eq^A_Agz&=&?u9p`rSyIQQ1K%tj?m=Y?zW%=SY2cTd=>&xf9- zH_7b3thw;c-^q0;Rxb2wUT^a)wHoBu6%Eg;!5yEDevMxq|NM0C_r6I?sQIlzsq`&k zYs^({TkLMZw z)seDF)>wKrC+%Q0`z7WvC-0CSC;z*{x2P*sFE~iD;3U5*anA;PjJy=l2@hF_G#-g= zcashu_LmMyN9Fw*<{r{WdRoI9kG#*Mn@ZZ+Q*J7 z1qiRn31tkJtxozICiZ#9w7h;6!8`tmV1DHb?L5t8=F?||JW(8mBM#1n68T%yU%94Q zPd8L*t##addCe=c<-Pm$?|lLhThx_Jr*MysO5Gj;d-p^6PX>m!F&mkfSL&PIjP&}_ zs7Y1pomMm(D{oqD+iTaR;mlR<>l41ibYdaDO`}H!ghq zo_%EXeF^W(0>*qT`@G>xb!6W#QqEAA$;fVKs2?%;I_ikfMMI zNm1J8nS`e;aYV1QaSzSh9d0${_njJP*KCc-zHD~SEqbkHoBP)79Yvz;99xUW10xP` znEF(@EidK>Rfifb>a}*p&8Ih3|4>-d7od3+CmMA3RH<8>=+UdE0&m2LhT!xhzvL9= z?ue&piodxl{=7GL6xe(>eu7Ln>6#Fax)r| zMP#km7iMJes%;vrS&VZtUrI)1cJJKZ5;pTTjPYHu&Ig0fQJj){$8^Jnc#E#D&7HIS zu#!E~`f5{s(v8n5QSuy?;t^Lk95wH}7rg3dp(fE0op-^5)9~|q{jI@jm#{Cs$!?7CrU+szrp7&K&e1`=SITWk3 zI+YHnvxLlQpD6o$tw40HpZkDEId|uky0!EOi`E}+tc}{dmtQ<@JG8H#wPKY{uVUBB z2nm+s#m&kqh;8f|(JM1`gX~|Ak61TvJ}#W?SlX4k(sq3>b?u_XbJoMtI=Sc5o~2~? zMrfzrexov$5vDk278aKrxy`z0XYXW({gwpz14!8~bx#wsA6!5l3=HM-EsU($K_f1A zXHn$5H87=& z|9<|z+5>RX;DXD!BY$rJ^yv%?947oL97?wf{8@o7WQM_)VwB%7QXY7r1M?2Rg$y*9 ztsiW60M9+(z^gGS=|j}a8uV!;3VeOj!2o@SNd5{(W4$00c#}GvOaVZ@Eua(_I7yUrXX4r6GWJ zlm9^n!a*N^ZzmW*Ug#(+bPyG)Bkb3~b`UQGLOP&+$dC5a4R|dC+3i$ z3&`jubolVs5oHL^Ux!GgKpD_+SiV0FlkNpj=ny0M$T(zxj1L&g`BguJBXls1Z~ZVR z_;d*T6k)U*>bC&#zf6}w@v@)WT@dtek z^^`j}v3>}o`6~?S0c~I}lMi6=&&MH@)E?vY@}OhCP)5gGs4_VhLyk!1!$P* zc6z#dY6Fw-eBj0f8Fqjr0MjxvhJ=JjxqzqxAWG_hpO1_J6Syn7A}SBZn?jU9IyDofA3 zNWGq~X|2*Zklek!|B&)^gXcyH`Yec|%g<7LPYPA{_Wt06OGMs12nzra%&MWi*-=d-_A23gu z(xhr?3hZ%piY02A+z7Lc8)P@I?2;O{<1&+oNNwdnZ@TUg^gX%lYVZ}0L> zDVAV?8e=LKi^R``Z9A2NUNvn~OhMTFS%UgJ~J)UAj>R;L}f8f9G zfluF_UVC*l()P-M){lAxLL%;2N(->4WBXp`uS`lYUkiE9Ye0xXC4$Kuwmy+DC7Ne* zd05WKaaIpjGM^CKNV&BC6%$!TnIJE#BqJ*?qp%H3WZ8{Dg3a%21q?i(0KiuMJRJb$ zzBCkrWF~*7|LfcUAGnzfx+5ouPa9kS#b@RTE`|ih1^^TJSJSqhrubcsJoaq4-S}1` zMYm^Xy!EkMSf=wCVbjN|PDnAr-+M93^EBPtWu!07TjB8FSuwipMUW%nP%`2TTA}oM zQ_D!k@r6j-SZW$3_$Yz<_7kd`0e1H1m3+;*$GdRb6I?>|t!V{b)MO)TSt1p8ab}pO zNIT|52}zm8_gt|o?HfL=iaMXYNpST(Z}GsG(wiRPQAQ`5gHFRI=WqFxQ7lm z>nR%Uk>`X%M=J2;T+rcjy(Kq?6`DT=n>n7rFF2j5LHi>vV}062!8Jfnscx8=Ew&eK zpSrT9?Pp=K7vU4STKMjc&A*+Tzt&(Bq*g{x7thay%R?9TJ_8BItyAK)Q`O76WM z(x6?rX?#LkpN7e}3AN=-GdF|U z56%9#;JoWldk^bvt8bM;55))C_sv_El-r;)Uz};eOkGwxV5QwXR>X=H_SW5Ey!YYV zv8D>NOc#g4_ZQU)_d`!l5~8Ti0mc-v&Xka?1USpE@He%@&D>LK#@GJnvj44Y0O%5c z1u4k=(j{bN2#N$b8CeKoLm-}!!4nt(1)!*ysR3M0c^g4d`FFmwuKQq_5tf=Vj3hCK z!Z3q_J}y4s<~x}!1OX^N4fBTcOMmhyF-j`rKTY*7xz<}$NL;wBs*C7S;0>%}+tX9l zOSx3(-Q&VKt3Sl-rR^Sis!p#dUoJu+WtN^=wH?|jnihMUEojHL;p3W@GheIK@ehcZ z9##0@_>@7TNsPm!v)FC^XmY}+N|x&A@ZsqGA16PZ@wuhmyB4uUX)Gt>t-R1fc7C3l z48<>TPfS=I28qNw=9;9GQ;U0NQ|Wj4EoDC>3i0`OCj>9wsu2mc&4_t1vTyI)%%j)A zch1&$>xv6TCiX@;OQct9&f{ui_R=)ca?Z*NS$vL{W@_b_aiq%O(YbqeK`t@wy-)0` zxgWXxubOhoy%}q^Ixckv_;PU}xzE+Yk*>bOa7FG4S=op}Z~^6&?Kigcw|wiD z!eNkir=Om!KCbU`=W1E`z|pfxcu6qb!OUku0p&DHgfic;$Sh6*JKbh;Gf7KLvt9ao z^!6F=k^D&+zbiSINRlS}7fwe^gG%N_5fcf-1cFYMc9v$0#y@0H;F#GjiAE71nC5 z&F21w_qz5i*K3B4bY+ zK5e^t(fZ<*u*k35XtYGGv2dG2T7Rg}wUmEfL&fBUISS`fi8E$F)ddLem>OkE!e=`S zz4a`o;hKO;%j^iLxnxWnhtoGFHW&4M7Y{J(LRcpDd@Fpw8zy+eR`~Tx=L2sP!W2?4 z<%)^*YHBapirRP`c3@OWAG|!+&~#~58ogie+m8#fpN*VFr-w84WynM^fjPs(hJeEf zzW+NpE`ssz*!_mZZ5FYd!2WZ2NsW}D+px4n5x6#lXk~CiX5iRab5+X}EPI|#crWT%r+At-0DMB@Lt@0-mR z$wQIy?%)dAU}tFADor{|M|L+76<7nJqTsO87Z*cMGSNh~`8AZ-4=z_8E57_TMA5C? z)IM!uqFq9XeveaC^T@e1$L6=4KKwAxi`QRz?Pz6?;oeQS;XT<+tr0%U-G4@|4?U@W zdrx6VxUTtSf9DdVolMU6veXwmVMinwapHS_a9gXV`S_$u6^3LiNY^OZKJYnPgW0VkK4bA>WIaA05YcDGl%^c>FLa#><`D9X{l z&n*_cyd{nAvACz-#gGrnox7B@sPBqBx$y2Ra+HxSF8+*S?J3u%Zuy_s&TD?{vfS(x zgJw{At@|{Nkw3t{UFl}0*IJc>c^TKG0LF~@)a)o+Ga(As@Ux4NNVrTCt{lKhevT8g z(}BwdpbP{Y`PZF}5H#)jMguh?*y`{=xe;6djs9dz82I1paMbN_=hHvy8uez^0Zj`l z{&Q=?oMx^UlADjWA?<}=p?wHOi!Q`5!|a2%-=E!KJ23IShmAp&0Q3MQ86|?ejIyk< zO;!|b6(I^81ymKUbv1>$ZdJD#rNvxf9bYVJyhn56h(l|qz~8lk|9lhV*D8jhl=4A` zFv*)Bt}cA~JNclS*@F%_`S`D|Vj%TJ3G{$GS$`p~pkzQxNIx6G?%#1@BCWZBDuSid zAOoqgq@@!-1w^j&XHDP~bdW#LV_XCOrS@?(CDlt_HHhA(pi5-7%dMJbx?Ehwz0j)BAkkV}hld*8?NVkveb&wB zo1p!3Mta)Q?lXIDXJOAj+Pl1Xv%>d^#L;lRQGwVS>+iO!Ghv3f<@rF5>$>)VR0b<<`M+oazsn$KDa$PcZGLQA z1YtoR*OCQr6#Om-l!CwPjnp0mPx=oQA5m}@iX=rKKv5PvQSiOMmMQeYj1Ro{AY0!2 zb)6g80<1Q8)j__k1hT~nS$~CIH<67BL$C9ommrYscL)l-@PclMq1g9@UdBQGKQD>f zNqS}E30@45%jN?<6JP-wa?MC(KriXY_JE<>(2F(bju6W07U)hC2qy?{&2^j2&TpxjW{4g5h*a$BVcv_FRk$@-hx`T6cUKJGQK+b>6*a!YfBN}D$;_-Khm)+N6SPU{ z>LLkrBWS()mpp&yfq$2W7)>D)pr(ZpLjFxP&6tu4sA<|1B>zrLqwp4ppOIGCt}gmJ zf3g_B%t$)yp+8tENi*Y_)r^w8{b{aTfqB5>QP-v00s?K&C zGs1I9RyXox<&89f@AaYWi}5{lXQ-&BcaBGP`S?H2G~*F@vvt>C-v!qqU)O7Cd5?DB zf}UF$pVJW?t4=>PF52d3Cn;nXA0(Aazu&a)@}3_iRB@tx^PyEQtwPW4%qvuZC5C#& zxu81jF23Db`z3d`#DyQ@r{6>s&b=(liMd>F9%tdDr}4F0E=5}*jw;kf#j{V~9!k5@ z&qG1+2#dPTWU5OH12dg4*ukTc0gGk!bty!XE!5pD%Ne0LO4X-$=@IK6T}E*Io#X%K zQfPg-3KpW2LE9*RHtfO6C<4I)w(cNNL)wGi5d1F@hW~0y@8JvCX~WiY$KT{Xh)QeR zwolaZuAo5!4x=My%6RO>mt#gA5fgW_KA$Z+HF~M`0RQ>aTIOoY&d2W}u-#rPFy&<_ z9@XjRH(9un}+mJ zjSi>ooVIJeOuKL7CUwBUp>_dAhT!&qz&$iYZ+EEJR+_%c4r6&@v_+6$SN(CjqgSCc z=K1&84|=_)OzgkA`C2%Mh{c^W9gmvOHTj;rRU&URSp7jN!^z{BGA!LiUGpw2M|r4T zoMaE&JhvG=qt@DOG=tXqo@2JvIGVeGdwX$vUm@e-o5I3Liys%(#S^>@2!dxDn9$$y zsEwQLI#W5tpOadmWF$@F^YZvJ7JQl+{&u(S-`M8E62d4<1F#w&!oh!&)o4?40al~* z@35MmZ06@y-XQ|8phIGO z_x4djJPi-Hj!N(kckh>AQP4(tl=cTBh60;XySKZH@$O<|bBI%RGIG}45_{lG;$Dej zvAD5N-fmi!+{o8>J^!-ct_#r@BJL)+e=~E6ySaGqV%=vePx|m?_?`Qr!IfzTq6N-4 zJqt^YuwFgGFydDM7ryJAI~{AvKWgQ83xE=xcAtxX$pjc{{W02Cbcq3u2OccThYys&*%UNQ~e+4%}F#g?o;kR{e zDuLtYG6<}5>3>`5fQ9bQr7V>U18JM`*Ye~q3ti#oI?e@53dav#JYio{CdI`yahG*L zD}4K_6dH$f?=q+e;u}gw(8+KSI0)c<3W{Y1JW_DIEHWki`? zd;4;%g`cGL#j42Ogez?dTBlu%{g&frWMwB8B-^vypBGMPFNUz3G#Yb^5kZVAEYdcv z`BOdl;c_f9$=9;u)rGnUJ?gg2OD4kAS}<$AYYEi-^fK>g1W}oLElj-FUI{qWWFQ50 zt;w~+RX@P}8gMN3+geSlKO_^xehe+=1y5~zHQkuN)ZG6dMJ09Cm%4YhBeb5TIU&gG zllkGDfjaKRMinQXp65Sv-B90S@Iats^T#`;tREt@p2pRTdQK0^CQKF3SI*lyAC%jy Isttqv5Boia7ytkO literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/xunit.runner.utility.netcoreapp10.dll b/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/xunit.runner.utility.netcoreapp10.dll new file mode 100644 index 0000000000000000000000000000000000000000..95d56a3ad868050053c8d27663ce46cd43b6285e GIT binary patch literal 221096 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

6IJI#0fi#ZyuK+&( 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 z }es${H6g8E%`awYIXp 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 literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/xunit.runner.visualstudio.dotnetcore.testadapter.dll b/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/xunit.runner.visualstudio.dotnetcore.testadapter.dll new file mode 100644 index 0000000000000000000000000000000000000000..0577a3cb6d3f27278cf8337b947687f94c34a677 GIT binary patch literal 150440 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

`O~ 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

*weXhEZ~ie(bhiN;RC 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

L|%4B9wfwoLC2ZlET8hc!LNoMuzjX>nCM^k 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 GNe9s&Khhk~_34=JHJ(E3mwq3?oHguV;^!8h8#Z z11&)XP=VHlrY(QV|It=<5ZdoU1W)iMv-7lZg^K)^scK@~q^LHZu6BTk$Ke-mdZmO@ z?f~{4qp$k(@tt^w`a4)cp&%#d1fWEC46+7s=7MtBLs)-WK!5XIU93$w*-W6Dq!#9E zfNcczSN~S$FLvNR)d>jxIZXgF%?sr5Z<=Y!KWhPIn#4~g|H(}IDO;fO?7Nq3VJ<8A zyNCgV*>@Y(^)DjzyJbf4MJ$lBYX7L72XFCF*K|r1HFXvyW;NHO!i`UdBP>oyq6M{n zA9db9xTl#BicLlMr8gvJVyyf@%9)Hj_$P0{3s;q-WjnkO=&GJ2IkwfxnOX&R)~ zD8e|UpG`Csr%~T@dXAk%&Y?#kq8vzWKAX0GGLoZ4!LY>q@Z)@fMWus9L0UEM~LB!^T(cT6WX59k|h;_FmawX;pPaF z2Fc6J9T!CktO=0Kh^4@aqlvowkn~QCaLvauB9}8L zMjE*u%sWzCD%ig7FMJiP{XRG5o<`S&t*3OD-FuPRf%jT#vU|l3dFC-b4F5NFiu(s6 z#a}sfZjCHNK4t8#Ny{LSX!xNq_`S_P%l-6`S_Bi~mvnVf&`K>#T!FLxB@N#Gey|V9 zQP{gQf`sQ+SZdX5eS(M>mPgtR?Gi!mX)TLH;>l{F%z>WAkBe3dHw8cb$oj zh>#A2MrRZck;HHE)tHro$$Q8jRFBP9V4p2jRBUTP5`I%put?&u zZhrM?{BR(cO(n9Vf0%5bmF(obCQ1CV$TUztge%d)@zHQ}LhbKKh~FWkE6^ zek4?=;{*8DFmMR}k%Rq*z5xv2e{g4=l5n?GLN#qh50~bB%FLeDd5$6Ri3T0Y2XzdM z!NcA3mULrMiL+LFoUl-$-_vDoLgXfYT$OgtkZ;+6Qf9pDUMQG=bzVC@=X2L|%P^3R zqNkP2oAuu6j2qF8(XQwqROQ~fwsA%)Ivb09eve;U4;_mP9I}sW6<*_tkGMEvAF<|`7Et`D?;W+8)F$WKGjOPY1ki? zcj~x-Sbm`nhYltKk$`~n6a;)x*f<&e)Nu0MJcMc)6jH;+so~*YXVh=LEI$K2bqixy zXVZG7MYVma30k!&2c<8Pfv10iv9oOmm@N9CQxWov66^Yc!}Gf$(P#PtW;OIgNwmd8 zP4Yn^j%}1(VZ?>orczf% +// 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: System.Reflection.AssemblyCompanyAttribute("RestaurantReviewTests")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("RestaurantReviewTests")] +[assembly: System.Reflection.AssemblyTitleAttribute("RestaurantReviewTests")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.AssemblyInfoInputs.cache b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.AssemblyInfoInputs.cache new file mode 100644 index 00000000..7c423e67 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +95e49adbfce7be27aeb92a99b2edf75b02241bae diff --git a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.assets.cache b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..12b68cc733f4d3bcfee8f46751c4ca1f38230c54 GIT binary patch literal 88771 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 literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.CopyComplete b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.CopyComplete new file mode 100644 index 00000000..e69de29b diff --git a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.CoreCompileInputs.cache b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.CoreCompileInputs.cache new file mode 100644 index 00000000..d0230487 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +9f246d01f2c41581cf0f52e73bae9a088f0a4f74 diff --git a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.FileListAbsolute.txt b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.FileListAbsolute.txt new file mode 100644 index 00000000..90ce0543 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.FileListAbsolute.txt @@ -0,0 +1,17 @@ +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\obj\Debug\netcoreapp2.2\RestaurantReviewTests.csprojAssemblyReference.cache +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\obj\Debug\netcoreapp2.2\RestaurantReviewTests.csproj.CoreCompileInputs.cache +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\obj\Debug\netcoreapp2.2\RestaurantReviewTests.AssemblyInfoInputs.cache +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\obj\Debug\netcoreapp2.2\RestaurantReviewTests.AssemblyInfo.cs +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\xunit.runner.visualstudio.dotnetcore.testadapter.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\xunit.runner.reporters.netcoreapp10.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\xunit.runner.utility.netcoreapp10.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\RestaurantReviewTests.deps.json +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\RestaurantReviewTests.runtimeconfig.json +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\RestaurantReviewTests.runtimeconfig.dev.json +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\RestaurantReviewTests.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\RestaurantReviewTests.pdb +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\RestaurantReview.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\RestaurantReview.pdb +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\obj\Debug\netcoreapp2.2\RestaurantReviewTests.csproj.CopyComplete +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\obj\Debug\netcoreapp2.2\RestaurantReviewTests.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\obj\Debug\netcoreapp2.2\RestaurantReviewTests.pdb diff --git a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csprojAssemblyReference.cache b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csprojAssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..2290976d5baafa6b7cb772218dff464dbeab2295 GIT binary patch literal 157486 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 literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.dll b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.dll new file mode 100644 index 0000000000000000000000000000000000000000..9f7d57a14c55d84714a7d6faf86e7b2cfcda4e53 GIT binary patch literal 6144 zcmeHLeQX>@6@Pno{<>htcIuFXkZ#Tmg9@pXMg^&&K|&-#h^hjKN>HUzq=ppKia${Ppc0=V2!V?DlAx$aMMA1j!|%=R z-K}FMq~tFo=Dcs_eaxFTZ{EC_@$jdgrzjD{@ZGvabPY9^q=a_|=fG}x@OlefZF+O# zHRb4=8?&>9tCk$Q;OIp)uUnSwsX3uKWlJ?IHGM3j7VT-FH8;l}3RI5{5FJ&blz6=F z*~(~dQG!+|-B1onqffoQ1GS1TiI0JbD&pIXmb9O1I)@K*E>TK8L)0q&YIT76B2<9h zW86*>-KYzQ;cANLL%`G9iLzn(e`>2$)1_o1@FSr}up5{xD$$hY zxK19Jv@MB7Jw8k+T#~R}bA)L_kZq+Ye5`9VzEDXL^@UK`{3`nug>8#a9eEpxejF!K zfaBxQK2V9%)uICNXHdmlENMJm@1R|>SE9Y5VKds>KDKov;Q zilr(F(05gLls2KpblS*mhr}ia{Yv&KG$~$hKY-fl1Z8svQ?}lr57zj$K7#weLwD}; z<-7H%&ayACmLk!oU}bD8Y*q;7@xJ1DGtvGq26EQ`#J5sk=8--{de~pDx!qc~wyS$r z&pvd*8km4n=-l~Pq938&jJWK~c#dHeT$cC;_QVy`o#Pq$Mw1^7orlMV(x6=hz8*g8 z>@)2g3!}gQns_h0r|jamfQSqa4ten51;2)gGQ2RXlxYZRqMt^%4~N8`l~<$n zbU4B=rFYteRU zh+K@d&|}dpvDNgI*f_Ss)!1LbeGrzdqi=$;fnJZX%udL&9lkZbA6w~dOkxjc{A(pU zT8c3imDmp=jB#``?{Bd|i8aCEk!T@+qblpXNZX^QA(fHXg*E44WrQYujD8kl?DLCw zF9bXbdLs1m0J|u$#*Kt>fnJr^J|7Eo_EoX<=$8#7HAwoN{}U>OJ{fJI^HBw1#FnfD zjMEmtR_c*(pM)t1ha@~M;bRi&fc3N>p&{YZfa~dLdM=irmylyO(<_pGF@SA#t?q zN_qycpB|^x$`s`RUy$$(3Ez@1sW82Rc0(?9uCl&xpe&^rb`dt;n*One?NnvS%L_mT+`WO!s4W$}G5^C~9M6%QK3ChTQBzN!-zRjb}k;%9i12 zd2SBsrYk5da^*rn&zU0SA;sm&o}iTLiek=O$QoXloYkFz@CI?W5c9Tkda3-NVTuXi zxQ1;lWe!<0wo}wSFm>~eQvJ3yV-&EAELT&~Zx>63DT!mk)X&J4TjLMvd9Q|5>>qUy z8_O|Roo+4EdIUa{bkE2cCKk5F%{t}Vy{!c^z?nd)6PdhiS*|=GLjIpH+_G+Fyz;bR zYrKl1m;pOMJC-|zSd%eyd%%QnKaORTYSX4kiy{DX<6B-31otv34eN$QL-4RgY;QGw z#Ec1R;BQF|nxTDy9-d>Hrf@>Wg@{_-vz>~zw4oO)+x3jR8$*>@SnFOJygdBJ4Uhcc+q)^IDoSHi zC8Z9Hwl+pv>Kh{MsrCV;wC@9KA84s>Rg?|1J{DKnkH;F6_91kM)KNr?lsKfavyMIQDv)bX_$b<=&>C%IAj@esRVr-{5=8IZPHiU?v^-EvoN2=?nfk&A z@+hrSsH3*vp&gGap+a?XAK;dXL3(gW#m}cp1Shf_nMeQCk+=Uz%J3+ksNceO3Gby# z{C*1x3-X=#3pE<1TK>4=gI9)dM|6fdPL5s~|7($1ZllvAFxgvW=JUMj(T%S&se z=^SN_q;~H41O=x4y<#fdG5_vwr$&cYIxio;slE5b;F*OP&`aD_xwW)Zo?|}eB-V1^ zjF5S==(0URCSu9GwTaZ^QVsV-iO6+O@rvemz^MP44r%mn+k2Oxv(UMaq~G-Av0rav z`C)SdciiWbM0@3Z-tVzDx*LrN%Fs!`0UASV2ru*z;6s3e{%f7SAA9G0|EA~bs@(bx z`D%zSX%$XDqO_z9Pb0r z9dIlvEThSjGTl`9?WP>s_&*0;TncWtHZoaBjA-~4K8BhzBxgq71|(z9<}i|= zdHnyu=kp^lD|J<7k(Qjiw5hbn<`1H?8yQEb&SwHT9oSQwe-G~T-PMn6SO%G>of}8HtZ_n#PLG2BDp5_x=!7A(J9zTVO_U-w&qvt1-S+(_}zsMiijK&vsbYf z7OzIF53dQ)&3>Z4gaZDZ*Iqwx=uFX6=luI{ZvrVhp$aQ+PvctCn;6dy?%119ktnTc z-Lx&yn^+KT;?Tk7cys&!Uj_IEu0n<7_9pN`+3)6OMNxNm6f3Wj9eKOBUw4bzTu(wR z>XtEsyjwYT ze1X45dv+#dKaA~)eA&U60S<~Io-D&oF+J)SbGY;sgnN%#cU82iC^bFE(D^c-$VbH- zP9&3IZ$jtylYLq^3AJpb^0;)ujWhh@2__|#bS+~|#q_R4wjb!KIspO)x+*Jl5Q~35 UMfLv&^}XKvQS$%3|EnJOH?X3YVgLXD literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.pdb b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.pdb new file mode 100644 index 0000000000000000000000000000000000000000..b32d688651e25a2190f3d9930940ad48a2a2cb05 GIT binary patch literal 1496 zcmZuxe{2&~9Dna!d+n{W>$nFZoTvxO5(2VF*BhBkH@9|k#t@;qKI>&&uiU%q z1i|d8WI9K18bbUBorZ)2)PMMcU}TF47=I)}j3y(E(HIhq{zU=`2J!o@oyE=9eBbNm z`|EwbpZne=QauTbFygBoq`xZ>Ew;&<9R(86L9PRd^=C%7?rV^};2wJ!p@#`V0d7l~ zhL+DVZtnn{i|d9`C=UO5qFDFPt}ZwWfL{;*Cvy4-#|e+*O^wIjLFb3#KRxp9!sEaH z0jb5|FhP)DWM~TBoLl+ z5?tSgh)Wow1x!$aU^GMs@(LKO6$n_*f)~$u8?4PlKt+(FASZb_koPgcg$BW!`&O>y z1_3OKxW(~vfv#e20_=t=7V&z(BK&v+UmSY?yYImgR4i68@4N0E%=7WZqp{N|LOw^c ze8<25M!Rr@w-&-V!00mJ{BdsfLRDe%9_-U(-r0Y2_BcdL^Tv`2GAOfhCSsNe7*@mO z2VXna*p!%jW88oE_?gI`BLh1wdA@CYGlk}#`hd)yO75{P&Rp1e_FVMXzH7-(k(k=g zOgcs|Cd#AkAw~`6Po}j4G#5?LoR+1ADCey#HNAzjI-1T>78%o2LudN)rktmyY*J>* zEHf&$ZIL(2ZSE0E%Vq8Zi>ezmT`0itw)FlR(YJF@9^?_J%&6RN=vgB@CacW1+vg9( zHn#T+4AbcMdhnLAHFE0n^6HIWod^VObRK=~w}D?8*4{WUTRweciZh8_9sH4!m9^BJ ztk6eI1#Xpli|U#r+>*A8blyzTqDIGMMbDdtp36apE0!61^$g9iRm=1#Y7{k=yarr6@r4b5*@|z zyGyO5P0@YdL~gpbymDx}=Zmd-TCFe5xL!VS=fn8b&(6<1efRJ0;Dds2orDD!@dnX0 zFKXo15*%_2p+!SS)!=B?E!Boz52fqTTkU;6*UwF^y13@d>iaJozP&wJzI*b;*_pc7mFt-+4N91E + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Raizel Seliger\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 5.1.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + + + C:\Users\Raizel Seliger\.nuget\packages\xunit.analyzers\0.10.0 + C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.codeanalysis.analyzers\1.1.0 + + \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/obj/RestaurantReviewTests.csproj.nuget.g.targets b/RestaurantReview/RestaurantReviewTests/obj/RestaurantReviewTests.csproj.nuget.g.targets new file mode 100644 index 00000000..4b7695f4 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/obj/RestaurantReviewTests.csproj.nuget.g.targets @@ -0,0 +1,13 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + + \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/obj/project.assets.json b/RestaurantReview/RestaurantReviewTests/obj/project.assets.json new file mode 100644 index 00000000..d9f47315 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/obj/project.assets.json @@ -0,0 +1,9808 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v2.2": { + "Microsoft.AspNet.WebApi.Client/5.2.7": { + "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.AspNet.WebApi.Core/5.2.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.WebApi.Client": "5.2.7" + }, + "compile": { + "lib/net45/System.Web.Http.dll": {} + }, + "runtime": { + "lib/net45/System.Web.Http.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.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.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.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.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.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.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.Core/2.2.5": { + "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.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.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.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.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.CSharp.Workspaces/2.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "[2.8.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[2.8.0]" + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[2.8.0]", + "System.Composition": "1.0.31", + "System.Diagnostics.Contracts": "4.3.0", + "System.Linq.Parallel": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} + } + }, + "Microsoft.CodeCoverage/16.0.1": { + "type": "package", + "compile": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard1.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard1.0/Microsoft.CodeCoverage.targets": {} + } + }, + "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.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.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.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.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.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.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.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.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.NET.Test.Sdk/16.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "16.0.1", + "Microsoft.TestPlatform.TestHost": "16.0.1" + }, + "build": { + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props": {}, + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} + } + }, + "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/3.1.0-preview1.19504.10": { + "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.TestPlatform.ObjectModel/16.0.1": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.ComponentModel.TypeConverter": "4.1.0", + "System.Diagnostics.Process": "4.1.0", + "System.Diagnostics.TextWriterTraceListener": "4.0.0", + "System.Diagnostics.TraceSource": "4.0.0", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Runtime.Loader": "4.0.0", + "System.Runtime.Serialization.Json": "4.0.2", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Threading.Thread": "4.0.0", + "System.Xml.XPath.XmlDocument": "4.0.1" + }, + "compile": { + "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "resource": { + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/16.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyModel": "1.0.3", + "Microsoft.TestPlatform.ObjectModel": "16.0.1", + "Newtonsoft.Json": "9.0.1" + }, + "compile": { + "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netstandard1.5/testhost.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netstandard1.5/testhost.dll": {} + }, + "resource": { + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.3", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} + }, + "runtime": { + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "2.2.0", + "Microsoft.CodeAnalysis.CSharp": "2.8.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp.Workspaces": "2.8.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.3", + "Newtonsoft.Json": "11.0.2", + "NuGet.Frameworks": "4.7.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview1.19504.10", + "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "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": {} + } + }, + "NuGet.Frameworks/4.7.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.6/NuGet.Frameworks.dll": {} + }, + "runtime": { + "lib/netstandard1.6/NuGet.Frameworks.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.7.0-preview1.19504.10": { + "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.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.1", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.ComponentModel.Primitives/4.1.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Primitives": "4.1.0", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Composition/1.0.31": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "1.0.31", + "System.Composition.Convention": "1.0.31", + "System.Composition.Hosting": "1.0.31", + "System.Composition.Runtime": "1.0.31", + "System.Composition.TypedParts": "1.0.31" + } + }, + "System.Composition.AttributedModel/1.0.31": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.AttributedModel.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.AttributedModel.dll": {} + } + }, + "System.Composition.Convention/1.0.31": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.AttributedModel": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.Convention.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Convention.dll": {} + } + }, + "System.Composition.Hosting/1.0.31": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.Runtime": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.Hosting.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Hosting.dll": {} + } + }, + "System.Composition.Runtime/1.0.31": { + "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.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Runtime.dll": {} + } + }, + "System.Composition.TypedParts/1.0.31": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.AttributedModel": "1.0.31", + "System.Composition.Hosting": "1.0.31", + "System.Composition.Runtime": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.TypedParts.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.TypedParts.dll": {} + } + }, + "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.8.0-preview1.19504.10": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0-preview1.19504.10", + "System.Diagnostics.DiagnosticSource": "4.7.0-preview1.19504.10", + "System.Security.Principal.Windows": "4.7.0-preview1.19504.10", + "System.Text.Encoding.CodePages": "4.7.0-preview1.19504.10", + "runtime.native.System.Data.SqlClient.sni": "4.7.0-preview1.19504.10" + }, + "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.7.0-preview1.19504.10": { + "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.Process/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "Microsoft.Win32.Registry": "4.0.0", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.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.TextWriterTraceListener/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.TraceSource": "4.0.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.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.TraceSource/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "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.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.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "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.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.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.Parallel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "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.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Parallel.dll": {} + } + }, + "System.Memory/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "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.1.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "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/_._": {} + }, + "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/_._": {} + }, + "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.4.2": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.1", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/netstandard1.1/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.7.0-preview1.19504.10": { + "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.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "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.Json/4.0.2": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.AccessControl/4.7.0-preview1.19504.10": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "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.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/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.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.Principal.Windows/4.7.0-preview1.19504.10": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/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.7.0-preview1.19504.10": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime.CompilerServices.Unsafe": "4.7.0-preview1.19504.10" + }, + "compile": { + "lib/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.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.1": { + "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/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.ValueTuple/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "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.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1" + }, + "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/System.Xml.XPath.dll": {} + }, + "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": {} + } + }, + "System.Xml.XPath.XmlDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XPath": "4.0.1", + "System.Xml.XmlDocument": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + } + }, + "xunit/2.4.0": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.0]", + "xunit.core": "[2.4.0]" + } + }, + "xunit.abstractions/2.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard2.0/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.0": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.0]", + "xunit.extensibility.execution": "[2.4.0]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.0": { + "type": "package", + "dependencies": { + "xunit.abstractions": "2.0.2" + }, + "compile": { + "lib/netstandard2.0/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.0": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.0]" + }, + "compile": { + "lib/netstandard2.0/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard2.0/xunit.execution.dotnet.dll": {} + } + }, + "xunit.runner.visualstudio/2.4.0": { + "type": "package", + "dependencies": { + "Microsoft.NET.Test.Sdk": "15.0.0" + }, + "build": { + "build/netcoreapp1.0/xunit.runner.visualstudio.props": {} + } + }, + "RestaurantReview/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v2.2", + "dependencies": { + "Microsoft.AspNet.WebApi.Core": "5.2.7", + "Microsoft.VisualStudio.Web.CodeGeneration.Design": "2.2.3" + }, + "compile": { + "bin/placeholder/RestaurantReview.dll": {} + }, + "runtime": { + "bin/placeholder/RestaurantReview.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.WebApi.Client/5.2.7": { + "sha512": "/76fAHknzvFqbznS6Uj2sOyE9rJB3PltY+f53TH8dX9RiGhk02EhuFCWljSj5nnqKaTsmma8DFR50OGyQ4yJ1g==", + "type": "package", + "path": "microsoft.aspnet.webapi.client/5.2.7", + "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.7.nupkg.sha512", + "microsoft.aspnet.webapi.client.nuspec" + ] + }, + "Microsoft.AspNet.WebApi.Core/5.2.7": { + "sha512": "gM2QzApnHdy1FbKUJ/ROGJSm69P2G+HMoVd/t5Vq1O/zZ5TI4IKC9PX6nUfRt/NHgebZOIWHpB4/4K4inuy4yQ==", + "type": "package", + "path": "microsoft.aspnet.webapi.core/5.2.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Content/web.config.transform", + "lib/net45/System.Web.Http.dll", + "lib/net45/System.Web.Http.xml", + "microsoft.aspnet.webapi.core.5.2.7.nupkg.sha512", + "microsoft.aspnet.webapi.core.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.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.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.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.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.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.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.Core/2.2.5": { + "sha512": "/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.core/2.2.5", + "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.5.nupkg.sha512", + "microsoft.aspnetcore.mvc.core.nuspec" + ] + }, + "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.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.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.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.CSharp.Workspaces/2.8.0": { + "sha512": "EJWaxi2bI47iEZen/nZkJEDZCrP9Oj3PJtMwBv34Z0ZvvdSkpgsdqlHSud8d5vC53LnCXLfBLewfqHcILDVSDw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.workspaces/2.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { + "sha512": "tJlJ99SD8bHBAXShOG/pXQ1K118cnsF01obEf9aAtdgLbw3yEPahZ7qvWeGMjrheUhvOsSkv/wTKYg9euKa8MQ==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.common/2.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.dll", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.pdb", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.xml", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.xml", + "microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.common.nuspec" + ] + }, + "Microsoft.CodeCoverage/16.0.1": { + "sha512": "W7WI3iH6At2I/9x2ODgCIIMO0QfpA7ZCoHkeygMLAaz3Nms/GsugKz9N4hkTve2Lj66g2K4CAmbwe6utEH66lw==", + "type": "package", + "path": "microsoft.codecoverage/16.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard1.0/CodeCoverage/CodeCoverage.config", + "build/netstandard1.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll", + "build/netstandard1.0/CodeCoverage/covrun32.dll", + "build/netstandard1.0/CodeCoverage/msdia140.dll", + "build/netstandard1.0/Microsoft.CodeCoverage.props", + "build/netstandard1.0/Microsoft.CodeCoverage.targets", + "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.16.0.1.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "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.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.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.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.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.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.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.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.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.NET.Test.Sdk/16.0.1": { + "sha512": "ON7UIMIhAwrYb0ep+3ztoWVGvtfo88IhiHVnbyOiuVsi8bOMCdMPVcR+EX1WYGgKAd030pHRaxazMlkQ6uDyJQ==", + "type": "package", + "path": "microsoft.net.test.sdk/16.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net40/Microsoft.NET.Test.Sdk.props", + "build/net40/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets", + "build/uap10.0/Microsoft.NET.Test.Sdk.props", + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", + "microsoft.net.test.sdk.16.0.1.nupkg.sha512", + "microsoft.net.test.sdk.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/3.1.0-preview1.19504.10": { + "sha512": "bS52lVUR5Mb/yuorV8cLSvsPDEOms1LTQ+bN8s3/rrdaU3VSpfvWGorRk5xftj1kyrJ7Dxlw/GADyyekoOfDnQ==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0-preview1.19504.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0-preview1.19504.10.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.TestPlatform.ObjectModel/16.0.1": { + "sha512": "AIQ9azu2b31R8nOuFnR32d7cdWidjjLl1dFyLC3LNifzAJoEdCUgkHWUpTTHKWcHhwa9E/NRcdzVple8pbKJ9Q==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/16.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.4/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard1.4/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard1.4/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "microsoft.testplatform.objectmodel.16.0.1.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/16.0.1": { + "sha512": "H4bYjOjkK4FYQ23RnsHm8FcqR0te8Eky9i9sS1IjVFBlDh1MU7aIwmBUpKpaSAy5xNu7UTHku4RZTWzWHDzS7g==", + "type": "package", + "path": "microsoft.testplatform.testhost/16.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "build/uap10.0/Microsoft.TestPlatform.TestHost.props", + "build/uap10.0/Microsoft.TestPlatform.TestHost.targets", + "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/x64/msdia140.dll", + "build/uap10.0/x86/msdia140.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/_._", + "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll", + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/testhost.deps.json", + "lib/netstandard1.5/testhost.dll", + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/x64/msdia140.dll", + "lib/netstandard1.5/x86/msdia140.dll", + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/uap10.0/testhost.dll", + "microsoft.testplatform.testhost.16.0.1.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { + "sha512": "wc71c9HWTeXy9/w9O4Yr2LKmdJjVyIoJ/XQX8/6uma4EAVU25RLtUWlvhA0gpgFw9Kf1TkCv70x+CbKnRw/d8Q==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.xml", + "microsoft.visualstudio.web.codegeneration.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "sha512": "wXlpxDfRD5aPypa0p0UE97tkRQvAz9D9FfA2GITzr+LlGIpybyGnxkwGVp0Vha1Ibr0kJG0HdnqfeHME/WuAcQ==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.xml", + "microsoft.visualstudio.web.codegeneration.contracts.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.contracts.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "sha512": "APdPavBUYcGPBaW4rjxBVRePWmg0ZzhIRymOzvLFWUtzfvJKw1+8PaCzsH7Uvl+felm0L1UVQwBx1Do0R7j7Xg==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.core/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml", + "microsoft.visualstudio.web.codegeneration.core.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.core.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "sha512": "xH50cYOU+infRq4KikBuu2qeXcwW4tE0D5TDfKLuLrEtDm90aXI+0qygPsqyISf+lOW7L7rQ64BH/dRYkK3c3Q==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.design/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/dotnet-aspnet-codegenerator-design.exe", + "lib/net461/dotnet-aspnet-codegenerator-design.xml", + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll", + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.xml", + "microsoft.visualstudio.web.codegeneration.design.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.design.nuspec", + "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.exe", + "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.xml", + "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.exe", + "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.xml", + "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.exe", + "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.xml", + "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.exe", + "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.xml" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "sha512": "N9S7TeFZjXzNY9OVbz4OFw9cM9oEeMaCnuLFhetNioy/wPwZbgglrctAEYxfDbvocQ17YCAVR2EMRbYHNDHyVg==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Templates/DbContext/NewLocalDbContext.cshtml", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml", + "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "sha512": "sW2lHnOoL1xFnSm/2zSedeUoQPlbhPfWjSuUYsxYUj/N5QmLmH98ZLaqP26k6Om/heR6Gux/veXI96yM1Parow==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.templating/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml", + "microsoft.visualstudio.web.codegeneration.templating.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.templating.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "sha512": "/r/y+XpOpbCwN/M/HopjfGTDRlmixTd4G6HG6FaBkD/YF3T1u+4WMRVtuB6zz7aw571HmX+6UokEa6HJSwkPDA==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.utils/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml", + "microsoft.visualstudio.web.codegeneration.utils.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.utils.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "sha512": "0gVuA4KUCHFM4M/9SjG+7j7BzZ7SW/BufF97Q78i2VV8JBbQXc/5Rf6YUG1VGW2fwSEOl9+S26utEGS+86GGGw==", + "type": "package", + "path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Generators/ParameterDefinitions/area.json", + "Generators/ParameterDefinitions/controller.json", + "Generators/ParameterDefinitions/identity.json", + "Generators/ParameterDefinitions/razorpage.json", + "Generators/ParameterDefinitions/view.json", + "Templates/ControllerGenerator/ApiControllerWithActions.cshtml", + "Templates/ControllerGenerator/ApiControllerWithContext.cshtml", + "Templates/ControllerGenerator/ApiEmptyController.cshtml", + "Templates/ControllerGenerator/ControllerWithActions.cshtml", + "Templates/ControllerGenerator/EmptyController.cshtml", + "Templates/ControllerGenerator/MvcControllerWithContext.cshtml", + "Templates/Identity/Data/ApplicationDbContext.cshtml", + "Templates/Identity/Data/ApplicationUser.cshtml", + "Templates/Identity/IdentityHostingStartup.cshtml", + "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml", + "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml", + "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml", + "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", + "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Lockout.cshtml", + "Templates/Identity/Pages/Account/Account.Login.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Login.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml", + "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Logout.cshtml", + "Templates/Identity/Pages/Account/Account.Register.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Register.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml", + "Templates/Identity/Pages/Account/Account._ViewImports.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", + "Templates/Identity/Pages/Error.cs.cshtml", + "Templates/Identity/Pages/Error.cshtml", + "Templates/Identity/Pages/_Layout.cshtml", + "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml", + "Templates/Identity/Pages/_ViewImports.cshtml", + "Templates/Identity/Pages/_ViewStart.cshtml", + "Templates/Identity/ScaffoldingReadme.cshtml", + "Templates/Identity/SupportPages._CookieConsentPartial.cshtml", + "Templates/Identity/SupportPages._ViewImports.cshtml", + "Templates/Identity/SupportPages._ViewStart.cshtml", + "Templates/Identity/_LoginPartial.cshtml", + "Templates/Identity/wwwroot/css/site.css", + "Templates/Identity/wwwroot/favicon.ico", + "Templates/Identity/wwwroot/js/site.js", + "Templates/Identity/wwwroot/lib/bootstrap/LICENSE", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map", + "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", + "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", + "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", + "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", + "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt", + "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js", + "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js", + "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map", + "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml", + "Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml", + "Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml", + "Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml", + "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml", + "Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map", + "Templates/MvcLayout/Error.cshtml", + "Templates/MvcLayout/_Layout.cshtml", + "Templates/RazorPageGenerator/Create.cshtml", + "Templates/RazorPageGenerator/CreatePageModel.cshtml", + "Templates/RazorPageGenerator/Delete.cshtml", + "Templates/RazorPageGenerator/DeletePageModel.cshtml", + "Templates/RazorPageGenerator/Details.cshtml", + "Templates/RazorPageGenerator/DetailsPageModel.cshtml", + "Templates/RazorPageGenerator/Edit.cshtml", + "Templates/RazorPageGenerator/EditPageModel.cshtml", + "Templates/RazorPageGenerator/Empty.cshtml", + "Templates/RazorPageGenerator/EmptyPageModel.cshtml", + "Templates/RazorPageGenerator/List.cshtml", + "Templates/RazorPageGenerator/ListPageModel.cshtml", + "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Empty.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/EmptyPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml", + "Templates/Startup/ReadMe.cshtml", + "Templates/Startup/Startup.cshtml", + "Templates/ViewGenerator/Create.cshtml", + "Templates/ViewGenerator/Delete.cshtml", + "Templates/ViewGenerator/Details.cshtml", + "Templates/ViewGenerator/Edit.cshtml", + "Templates/ViewGenerator/Empty.cshtml", + "Templates/ViewGenerator/List.cshtml", + "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml", + "lib/netstandard2.0/bootstrap3_identitygeneratorfilesconfig.json", + "lib/netstandard2.0/bootstrap4_identitygeneratorfilesconfig.json", + "microsoft.visualstudio.web.codegenerators.mvc.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegenerators.mvc.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.1": { + "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", + "type": "package", + "path": "microsoft.win32.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.0.1.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { + "sha512": "CXsd7k96HdyP0vV9T5mQQ0O1Lj00xJBHTQ+d8Y99mxu/GuTB9MYKeGE1b58AIaxF88maJOFMtt6WhiqEPC9ONw==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0-preview1.19504.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0-preview1.19504.10.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/net472/Microsoft.Win32.Registry.dll", + "ref/net472/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/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "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" + ] + }, + "NuGet.Frameworks/4.7.0": { + "sha512": "qbXaB76XYUVLocLBs8Z9TS/ERGK2wm797feO+0JEPFvT7o7MRadOR77mqaSD4J1k8G+DlZQyq+MlkCuxrkr3ag==", + "type": "package", + "path": "nuget.frameworks/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/NuGet.Frameworks.dll", + "lib/net40/NuGet.Frameworks.xml", + "lib/net46/NuGet.Frameworks.dll", + "lib/net46/NuGet.Frameworks.xml", + "lib/netstandard1.6/NuGet.Frameworks.dll", + "lib/netstandard1.6/NuGet.Frameworks.xml", + "nuget.frameworks.4.7.0.nupkg.sha512", + "nuget.frameworks.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": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "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.7.0-preview1.19504.10": { + "sha512": "ITo7gZ7yGHMkNj1O6PRmK+i917jbWNs5CZN/jwVSh8hO+3+8C5roDkXJYbM1hA5LZAUagtm9ph5whvnDOTilDg==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0-preview1.19504.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.7.0-preview1.19504.10.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", + ".signature.p7s", + "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", + ".signature.p7s", + "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", + ".signature.p7s", + "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": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "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": "T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "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": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "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.3.1": { + "sha512": "n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", + "type": "package", + "path": "system.collections.immutable/1.3.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.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.3.1.nupkg.sha512", + "system.collections.immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.1": { + "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==", + "type": "package", + "path": "system.collections.nongeneric/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.1.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.0.1": { + "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==", + "type": "package", + "path": "system.collections.specialized/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.1.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.0.1": { + "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", + "type": "package", + "path": "system.componentmodel/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.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.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.0.1.nupkg.sha512", + "system.componentmodel.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.ComponentModel.EventBasedAsync/4.0.11": { + "sha512": "Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==", + "type": "package", + "path": "system.componentmodel.eventbasedasync/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.EventBasedAsync.dll", + "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.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.ComponentModel.EventBasedAsync.dll", + "ref/netcore50/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll", + "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512", + "system.componentmodel.eventbasedasync.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.1.0": { + "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==", + "type": "package", + "path": "system.componentmodel.primitives/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.1.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.1.0": { + "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.1.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Composition/1.0.31": { + "sha512": "I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==", + "type": "package", + "path": "system.composition/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "system.composition.1.0.31.nupkg.sha512", + "system.composition.nuspec" + ] + }, + "System.Composition.AttributedModel/1.0.31": { + "sha512": "NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==", + "type": "package", + "path": "system.composition.attributedmodel/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.AttributedModel.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll", + "system.composition.attributedmodel.1.0.31.nupkg.sha512", + "system.composition.attributedmodel.nuspec" + ] + }, + "System.Composition.Convention/1.0.31": { + "sha512": "GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==", + "type": "package", + "path": "system.composition.convention/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.Convention.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll", + "system.composition.convention.1.0.31.nupkg.sha512", + "system.composition.convention.nuspec" + ] + }, + "System.Composition.Hosting/1.0.31": { + "sha512": "fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==", + "type": "package", + "path": "system.composition.hosting/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.Hosting.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll", + "system.composition.hosting.1.0.31.nupkg.sha512", + "system.composition.hosting.nuspec" + ] + }, + "System.Composition.Runtime/1.0.31": { + "sha512": "0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==", + "type": "package", + "path": "system.composition.runtime/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll", + "system.composition.runtime.1.0.31.nupkg.sha512", + "system.composition.runtime.nuspec" + ] + }, + "System.Composition.TypedParts/1.0.31": { + "sha512": "0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==", + "type": "package", + "path": "system.composition.typedparts/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.TypedParts.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll", + "system.composition.typedparts.1.0.31.nupkg.sha512", + "system.composition.typedparts.nuspec" + ] + }, + "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.8.0-preview1.19504.10": { + "sha512": "6isAINOX/v56q7JLaC9XDXzc7T/yh62QR+pa+Jt0ayjmYmLRCmzyt4rTy5jWe15ZcQfS9yQNxIzwyO7yGs6Zbg==", + "type": "package", + "path": "system.data.sqlclient/4.8.0-preview1.19504.10", + "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/net461/System.Data.SqlClient.xml", + "lib/netcoreapp2.1/System.Data.SqlClient.dll", + "lib/netcoreapp2.1/System.Data.SqlClient.xml", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.xml", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.xml", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.xml", + "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/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", + "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/net461/System.Data.SqlClient.xml", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", + "system.data.sqlclient.4.8.0-preview1.19504.10.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.7.0-preview1.19504.10": { + "sha512": "CxeUzuw9Lz1+6gkPpQI83BeoUNxn6VnDF28qazxSRyRzWSzLzoeh9ObYG7LYqcPckgm0UaE9nQdd7oDq5ncMKg==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.7.0-preview1.19504.10", + "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.7.0-preview1.19504.10.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.Process/4.1.0": { + "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", + "type": "package", + "path": "system.diagnostics.process/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.Process.dll", + "lib/net461/System.Diagnostics.Process.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.Process.dll", + "ref/net461/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.xml", + "ref/netstandard1.3/de/System.Diagnostics.Process.xml", + "ref/netstandard1.3/es/System.Diagnostics.Process.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.3/it/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml", + "ref/netstandard1.4/System.Diagnostics.Process.dll", + "ref/netstandard1.4/System.Diagnostics.Process.xml", + "ref/netstandard1.4/de/System.Diagnostics.Process.xml", + "ref/netstandard1.4/es/System.Diagnostics.Process.xml", + "ref/netstandard1.4/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.4/it/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win/lib/net46/System.Diagnostics.Process.dll", + "runtimes/win/lib/net461/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win7/lib/netcore50/_._", + "system.diagnostics.process.4.1.0.nupkg.sha512", + "system.diagnostics.process.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.TextWriterTraceListener/4.0.0": { + "sha512": "w36Dr8yKy8xP150qPANe7Td+/zOI3G62ImRcHDIEW+oUXUuTKZHd4DHmqRx5+x8RXd85v3tXd1uhNTfsr+yxjA==", + "type": "package", + "path": "system.diagnostics.textwritertracelistener/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TextWriterTraceListener.dll", + "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TextWriterTraceListener.dll", + "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll", + "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/de/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/es/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/it/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TextWriterTraceListener.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.textwritertracelistener.4.0.0.nupkg.sha512", + "system.diagnostics.textwritertracelistener.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.TraceSource/4.0.0": { + "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==", + "type": "package", + "path": "system.diagnostics.tracesource/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "system.diagnostics.tracesource.4.0.0.nupkg.sha512", + "system.diagnostics.tracesource.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.0.1": { + "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", + "type": "package", + "path": "system.globalization.extensions/4.0.1", + "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.0.1.nupkg.sha512", + "system.globalization.extensions.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.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.Parallel/4.3.0": { + "sha512": "td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==", + "type": "package", + "path": "system.linq.parallel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Parallel.dll", + "lib/netstandard1.3/System.Linq.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.Linq.Parallel.dll", + "ref/netcore50/System.Linq.Parallel.xml", + "ref/netcore50/de/System.Linq.Parallel.xml", + "ref/netcore50/es/System.Linq.Parallel.xml", + "ref/netcore50/fr/System.Linq.Parallel.xml", + "ref/netcore50/it/System.Linq.Parallel.xml", + "ref/netcore50/ja/System.Linq.Parallel.xml", + "ref/netcore50/ko/System.Linq.Parallel.xml", + "ref/netcore50/ru/System.Linq.Parallel.xml", + "ref/netcore50/zh-hans/System.Linq.Parallel.xml", + "ref/netcore50/zh-hant/System.Linq.Parallel.xml", + "ref/netstandard1.1/System.Linq.Parallel.dll", + "ref/netstandard1.1/System.Linq.Parallel.xml", + "ref/netstandard1.1/de/System.Linq.Parallel.xml", + "ref/netstandard1.1/es/System.Linq.Parallel.xml", + "ref/netstandard1.1/fr/System.Linq.Parallel.xml", + "ref/netstandard1.1/it/System.Linq.Parallel.xml", + "ref/netstandard1.1/ja/System.Linq.Parallel.xml", + "ref/netstandard1.1/ko/System.Linq.Parallel.xml", + "ref/netstandard1.1/ru/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.parallel.4.3.0.nupkg.sha512", + "system.linq.parallel.nuspec" + ] + }, + "System.Memory/4.5.1": { + "sha512": "sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==", + "type": "package", + "path": "system.memory/4.5.1", + "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/_._", + "ref/netstandard1.1/System.Memory.dll", + "ref/netstandard1.1/System.Memory.xml", + "ref/netstandard2.0/System.Memory.dll", + "ref/netstandard2.0/System.Memory.xml", + "system.memory.4.5.1.nupkg.sha512", + "system.memory.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.1.1": { + "sha512": "lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==", + "type": "package", + "path": "system.private.datacontractserialization/4.1.1", + "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.1.1.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", + ".signature.p7s", + "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.4.2": { + "sha512": "KYPNMDrLB2R+G5JJiJ2fjBpihtktKVIjsirmyyv+VDo5rQkIR9BWeCYM1wDSzbQatWNZ/NQfPsQyTB1Ui3qBfQ==", + "type": "package", + "path": "system.reflection.metadata/1.4.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.4.2.nupkg.sha512", + "system.reflection.metadata.nuspec" + ] + }, + "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.7.0-preview1.19504.10": { + "sha512": "Zw6YIPYZNJdb5fVVlLLG0i9NO/p+10u8LM8ApWat+9oLo15xaCGC6XyYALrvc+DzmxkwWLxU6n8SNf71V+x3+Q==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.7.0-preview1.19504.10", + "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.7.0-preview1.19504.10.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.0.0": { + "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "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.0.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0": { + "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", + "type": "package", + "path": "system.runtime.loader/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net462/_._", + "lib/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.xml", + "ref/netstandard1.5/de/System.Runtime.Loader.xml", + "ref/netstandard1.5/es/System.Runtime.Loader.xml", + "ref/netstandard1.5/fr/System.Runtime.Loader.xml", + "ref/netstandard1.5/it/System.Runtime.Loader.xml", + "ref/netstandard1.5/ja/System.Runtime.Loader.xml", + "ref/netstandard1.5/ko/System.Runtime.Loader.xml", + "ref/netstandard1.5/ru/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml", + "system.runtime.loader.4.0.0.nupkg.sha512", + "system.runtime.loader.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.Json/4.0.2": { + "sha512": "+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==", + "type": "package", + "path": "system.runtime.serialization.json/4.0.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Serialization.Json.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Json.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.Runtime.Serialization.Json.dll", + "ref/netcore50/System.Runtime.Serialization.Json.xml", + "ref/netcore50/de/System.Runtime.Serialization.Json.xml", + "ref/netcore50/es/System.Runtime.Serialization.Json.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Json.xml", + "ref/netcore50/it/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Json.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Json.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.json.4.0.2.nupkg.sha512", + "system.runtime.serialization.json.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.1.1", + "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.1.1.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Security.AccessControl/4.7.0-preview1.19504.10": { + "sha512": "PGk/B6+DoaHlC4PAc7OWPmxI91JtH4zXHHmwlSQAOnL5sll3hgX8kVR9loCnVHfshSo1vP8vt15Xy84xyKiqKw==", + "type": "package", + "path": "system.security.accesscontrol/4.7.0-preview1.19504.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "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/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.7.0-preview1.19504.10.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "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": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "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.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.Principal.Windows/4.7.0-preview1.19504.10": { + "sha512": "3Df++ZTMSEaRRyov1jZ7VSm8GemEu9cJJ+QY1y6wvF631OvS5dts98RhuoqcZxACVkNRIzl5ThIqd46qd7b+Vg==", + "type": "package", + "path": "system.security.principal.windows/4.7.0-preview1.19504.10", + "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/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "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/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/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/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0-preview1.19504.10.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.7.0-preview1.19504.10": { + "sha512": "aYpmMGgjDYpDYtDpUHwnSqSKgatkoZ4aSteVs6WKxo3/dRbHnL5rQ3QX9g7teACCIw8T2KW9OUxIg0b1kZEABg==", + "type": "package", + "path": "system.text.encoding.codepages/4.7.0-preview1.19504.10", + "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/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.4.7.0-preview1.19504.10.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.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.1": { + "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.1", + "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/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.1.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.Threading.ThreadPool/4.0.10": { + "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", + "type": "package", + "path": "system.threading.threadpool/4.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.0.10.nupkg.sha512", + "system.threading.threadpool.nuspec" + ] + }, + "System.ValueTuple/4.3.0": { + "sha512": "cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==", + "type": "package", + "path": "system.valuetuple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/.xml", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/.xml", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "system.valuetuple.4.3.0.nupkg.sha512", + "system.valuetuple.nuspec" + ] + }, + "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.0.11": { + "sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", + "type": "package", + "path": "system.xml.xmlserializer/4.0.11", + "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.0.11.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", + ".signature.p7s", + "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" + ] + }, + "System.Xml.XPath.XmlDocument/4.0.1": { + "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==", + "type": "package", + "path": "system.xml.xpath.xmldocument/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512", + "system.xml.xpath.xmldocument.nuspec" + ] + }, + "xunit/2.4.0": { + "sha512": "NL00nGsDsyWc1CWxz5FXXjLpW9oFG18WJoTPCyhNv4KGP/e5iLJqAqgM1uaJZyQ6WaTtmWIy4yjYP3RdcaT7Vw==", + "type": "package", + "path": "xunit/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "xunit.2.4.0.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.2": { + "sha512": "vItLB0WkaKg0426RgWq+ZdXH6D+YV/uH28C0weWMOBnVx7I+luHuEYss9hoOngpkiN5kUpLvh9VZRx1H2sk59A==", + "type": "package", + "path": "xunit.abstractions/2.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.2.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/0.10.0": { + "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "type": "package", + "path": "xunit.analyzers/0.10.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.0.10.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.4.0": { + "sha512": "Swvkm6iTjZr8TiUj5vMnmfG+2dD4s/BIBgsVOzTxxmoq2ndGsmM2WIL4wuqJ8RhxydWIDOPpIaaytjT2pMTEdg==", + "type": "package", + "path": "xunit.assert/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "lib/netstandard2.0/xunit.assert.dll", + "lib/netstandard2.0/xunit.assert.xml", + "xunit.assert.2.4.0.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.4.0": { + "sha512": "BJ/O/tPEcHUCwQYuwqXoYccTMyw6B5dA6yh7WxWWBhKbjqTsG9RWL0nCQXM5yQYJwUuFzBkiXDPN1BO6UdBB4Q==", + "type": "package", + "path": "xunit.core/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.4.0.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.4.0": { + "sha512": "qr/KrR6uukHXD9e/lLQjyCPfMEDuvvhNFDzsYzCF2kKlYKiqcADfUvA9Q68rBtKFtwHFeghjWEuv15KoGD2SfA==", + "type": "package", + "path": "xunit.extensibility.core/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "lib/netstandard2.0/xunit.core.dll", + "lib/netstandard2.0/xunit.core.xml", + "xunit.extensibility.core.2.4.0.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.4.0": { + "sha512": "252Dzn7i5bMPKtAL15aOP3qJhxKd+57I8ldwIQRJa745JxQuiBu5Da0vtIISVTtc3buRSkBwVnD9iUzsEmCzZA==", + "type": "package", + "path": "xunit.extensibility.execution/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.execution.desktop.dll", + "lib/net452/xunit.execution.desktop.xml", + "lib/netstandard1.1/xunit.execution.dotnet.dll", + "lib/netstandard1.1/xunit.execution.dotnet.xml", + "lib/netstandard2.0/xunit.execution.dotnet.dll", + "lib/netstandard2.0/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.4.0.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.visualstudio/2.4.0": { + "sha512": "3eq5cGXbEJkqW9nwLuXwtxy9B5gMA8i7HW4rN63AhAvy5UvEcQbZnve23wx/oPrkyg/4CbfNhxkBezS0b1oUdQ==", + "type": "package", + "path": "xunit.runner.visualstudio/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/_common/xunit.abstractions.dll", + "build/_common/xunit.runner.reporters.net452.dll", + "build/_common/xunit.runner.utility.net452.dll", + "build/_common/xunit.runner.visualstudio.testadapter.dll", + "build/net20/xunit.runner.visualstudio.props", + "build/netcoreapp1.0/xunit.abstractions.dll", + "build/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll", + "build/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "build/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "build/netcoreapp1.0/xunit.runner.visualstudio.dotnetcore.testadapter.deps.json", + "build/netcoreapp1.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll", + "build/netcoreapp1.0/xunit.runner.visualstudio.props", + "build/uap10.0/xunit.runner.reporters.netstandard11.dll", + "build/uap10.0/xunit.runner.utility.uwp10.dll", + "build/uap10.0/xunit.runner.utility.uwp10.pri", + "build/uap10.0/xunit.runner.visualstudio.props", + "build/uap10.0/xunit.runner.visualstudio.targets", + "build/uap10.0/xunit.runner.visualstudio.uwp.testadapter.dll", + "build/uap10.0/xunit.runner.visualstudio.uwp.testadapter.pri", + "xunit.runner.visualstudio.2.4.0.nupkg.sha512", + "xunit.runner.visualstudio.nuspec" + ] + }, + "RestaurantReview/1.0.0": { + "type": "project", + "path": "../RestaurantReview/RestaurantReview.csproj", + "msbuildProject": "../RestaurantReview/RestaurantReview.csproj" + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v2.2": [ + "Microsoft.AspNetCore.Mvc.Core >= 2.2.5", + "Microsoft.NET.Test.Sdk >= 16.0.1", + "Microsoft.NETCore.App >= 2.2.0", + "RestaurantReview >= 1.0.0", + "System.Data.SqlClient >= 4.8.0-preview1.19504.10", + "xunit >= 2.4.0", + "xunit.runner.visualstudio >= 2.4.0" + ] + }, + "packageFolders": { + "C:\\Users\\Raizel Seliger\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReviewTests\\RestaurantReviewTests.csproj", + "projectName": "RestaurantReviewTests", + "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReviewTests\\RestaurantReviewTests.csproj", + "packagesPath": "C:\\Users\\Raizel Seliger\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReviewTests\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Raizel Seliger\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp2.2" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp2.2": { + "projectReferences": { + "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj": { + "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp2.2": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Core": { + "target": "Package", + "version": "[2.2.5, )" + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[16.0.1, )" + }, + "Microsoft.NETCore.App": { + "suppressParent": "All", + "target": "Package", + "version": "[2.2.0, )", + "autoReferenced": true + }, + "System.Data.SqlClient": { + "target": "Package", + "version": "[4.8.0-preview1.19504.10, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.0, )" + }, + "xunit.runner.visualstudio": { + "target": "Package", + "version": "[2.4.0, )" + } + }, + "imports": [ + "net461" + ], + "assetTargetFallback": true, + "warn": true + } + } + }, + "logs": [ + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'Microsoft.AspNet.WebApi.Core 5.2.7' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.2'. This package may not be fully compatible with your project.", + "libraryId": "Microsoft.AspNet.WebApi.Core", + "targetGraphs": [ + ".NETCoreApp,Version=v2.2" + ] + } + ] +} \ No newline at end of file From b580e9bebeb243cfd704b85c94342bfa6234f557 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 28 Oct 2019 23:29:34 -0400 Subject: [PATCH 27/36] saving --- RestaurantReview/R2/R2.csproj | 21 - RestaurantReview/R2/UnitTest1.cs | 31 - ...Studio.TestPlatform.MSTest.TestAdapter.dll | Bin 134192 -> 0 bytes ...TestAdapter.PlatformServices.Interface.dll | Bin 24832 -> 0 bytes ...latform.MSTestAdapter.PlatformServices.dll | Bin 31984 -> 0 bytes .../R2/bin/Debug/netcoreapp2.2/R2.deps.json | 3394 ------ .../R2/bin/Debug/netcoreapp2.2/R2.dll | Bin 5632 -> 0 bytes .../R2/bin/Debug/netcoreapp2.2/R2.pdb | Bin 1112 -> 0 bytes .../netcoreapp2.2/R2.runtimeconfig.dev.json | 9 - .../Debug/netcoreapp2.2/R2.runtimeconfig.json | 9 - .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 14848 -> 0 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 4692 -> 0 bytes .../Debug/netcoreapp2.2/R2.AssemblyInfo.cs | 23 - .../netcoreapp2.2/R2.AssemblyInfoInputs.cache | 1 - .../obj/Debug/netcoreapp2.2/R2.assets.cache | Bin 87003 -> 0 bytes .../netcoreapp2.2/R2.csproj.CopyComplete | 0 .../R2.csproj.CoreCompileInputs.cache | 1 - .../R2.csproj.FileListAbsolute.txt | 17 - .../R2.csprojAssemblyReference.cache | Bin 154331 -> 0 bytes .../R2/obj/Debug/netcoreapp2.2/R2.dll | Bin 5632 -> 0 bytes .../R2/obj/Debug/netcoreapp2.2/R2.pdb | Bin 1112 -> 0 bytes RestaurantReview/R2/obj/R2.csproj.nuget.cache | 5 - .../R2/obj/R2.csproj.nuget.dgspec.json | 151 - .../R2/obj/R2.csproj.nuget.g.props | 24 - .../R2/obj/R2.csproj.nuget.g.targets | 12 - RestaurantReview/R2/obj/project.assets.json | 9677 ---------------- RestaurantReview/RestaurantReview.sln | 6 - .../Controllers/RestaurantsController.cs | 5 +- .../Controllers/ReviewsController.cs | 12 +- .../RestaurantReview/DAL/ReviewsDAL.cs | 6 - .../RestaurantReview/DAL/UserDAL.cs | 15 - .../RestaurantReview/Models/Review.cs | 12 - .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 18432 -> 18432 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 5780 -> 5780 bytes ...aurantReview.csprojAssemblyReference.cache | Bin 258011 -> 424 bytes .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 18432 -> 18432 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 5780 -> 5780 bytes .../DesignTimeBuild/.dtbcache | Bin 797898 -> 0 bytes .../.vs/RestaurantReviewMSTests/v16/.suo | Bin 5632 -> 0 bytes .../RestaurantReviewMSTests.csproj | 22 - ...Studio.TestPlatform.MSTest.TestAdapter.dll | Bin 134192 -> 0 bytes ...TestAdapter.PlatformServices.Interface.dll | Bin 24832 -> 0 bytes ...latform.MSTestAdapter.PlatformServices.dll | Bin 31984 -> 0 bytes .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 14848 -> 0 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 4692 -> 0 bytes .../RestaurantReviewMSTests.deps.json | 3440 ------ .../netcoreapp2.2/RestaurantReviewMSTests.dll | Bin 6144 -> 0 bytes .../netcoreapp2.2/RestaurantReviewMSTests.pdb | Bin 1344 -> 0 bytes ...aurantReviewMSTests.runtimeconfig.dev.json | 9 - ...RestaurantReviewMSTests.runtimeconfig.json | 9 - .../RestaurantReviewMSTests.AssemblyInfo.cs | 23 - ...rantReviewMSTests.AssemblyInfoInputs.cache | 1 - .../RestaurantReviewMSTests.assets.cache | Bin 87993 -> 0 bytes ...estaurantReviewMSTests.csproj.CopyComplete | 0 ...viewMSTests.csproj.CoreCompileInputs.cache | 1 - ...tReviewMSTests.csproj.FileListAbsolute.txt | 17 - ...eviewMSTests.csprojAssemblyReference.cache | Bin 3978 -> 0 bytes .../netcoreapp2.2/RestaurantReviewMSTests.dll | Bin 6144 -> 0 bytes .../netcoreapp2.2/RestaurantReviewMSTests.pdb | Bin 1344 -> 0 bytes ...RestaurantReviewMSTests.csproj.nuget.cache | 5 - ...rantReviewMSTests.csproj.nuget.dgspec.json | 155 - ...staurantReviewMSTests.csproj.nuget.g.props | 24 - ...aurantReviewMSTests.csproj.nuget.g.targets | 12 - .../obj/project.assets.json | 9751 ---------------- .../Controllers/RestaurantController.cs | 31 - .../Models/RestaurantModel.cs | 38 - .../RestaurantReviewTests.csproj | 29 - .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 18432 -> 0 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 5780 -> 0 bytes .../RestaurantReviewTests.deps.json | 3532 ------ .../netcoreapp2.2/RestaurantReviewTests.dll | Bin 6144 -> 0 bytes .../netcoreapp2.2/RestaurantReviewTests.pdb | Bin 1496 -> 0 bytes ...staurantReviewTests.runtimeconfig.dev.json | 9 - .../RestaurantReviewTests.runtimeconfig.json | 9 - .../xunit.runner.reporters.netcoreapp10.dll | Bin 72616 -> 0 bytes .../xunit.runner.utility.netcoreapp10.dll | Bin 221096 -> 0 bytes ...er.visualstudio.dotnetcore.testadapter.dll | Bin 150440 -> 0 bytes .../RestaurantReviewTests.AssemblyInfo.cs | 23 - ...aurantReviewTests.AssemblyInfoInputs.cache | 1 - .../RestaurantReviewTests.assets.cache | Bin 88771 -> 0 bytes .../RestaurantReviewTests.csproj.CopyComplete | 0 ...ReviewTests.csproj.CoreCompileInputs.cache | 1 - ...antReviewTests.csproj.FileListAbsolute.txt | 17 - ...tReviewTests.csprojAssemblyReference.cache | Bin 157486 -> 0 bytes .../netcoreapp2.2/RestaurantReviewTests.dll | Bin 6144 -> 0 bytes .../netcoreapp2.2/RestaurantReviewTests.pdb | Bin 1496 -> 0 bytes .../RestaurantReviewTests.csproj.nuget.cache | 5 - ...aurantReviewTests.csproj.nuget.dgspec.json | 155 - ...RestaurantReviewTests.csproj.nuget.g.props | 26 - ...staurantReviewTests.csproj.nuget.g.targets | 13 - .../obj/project.assets.json | 9808 ----------------- 91 files changed, 3 insertions(+), 40594 deletions(-) delete mode 100644 RestaurantReview/R2/R2.csproj delete mode 100644 RestaurantReview/R2/UnitTest1.cs delete mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll delete mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll delete mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll delete mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.deps.json delete mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.dll delete mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.pdb delete mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.runtimeconfig.dev.json delete mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.runtimeconfig.json delete mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/RestaurantReview.dll delete mode 100644 RestaurantReview/R2/bin/Debug/netcoreapp2.2/RestaurantReview.pdb delete mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.AssemblyInfo.cs delete mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.AssemblyInfoInputs.cache delete mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.assets.cache delete mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.CopyComplete delete mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.CoreCompileInputs.cache delete mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.FileListAbsolute.txt delete mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csprojAssemblyReference.cache delete mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.dll delete mode 100644 RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.pdb delete mode 100644 RestaurantReview/R2/obj/R2.csproj.nuget.cache delete mode 100644 RestaurantReview/R2/obj/R2.csproj.nuget.dgspec.json delete mode 100644 RestaurantReview/R2/obj/R2.csproj.nuget.g.props delete mode 100644 RestaurantReview/R2/obj/R2.csproj.nuget.g.targets delete mode 100644 RestaurantReview/R2/obj/project.assets.json delete mode 100644 RestaurantReview/RestaurantReviewMSTests/.vs/RestaurantReviewMSTests/DesignTimeBuild/.dtbcache delete mode 100644 RestaurantReview/RestaurantReviewMSTests/.vs/RestaurantReviewMSTests/v16/.suo delete mode 100644 RestaurantReview/RestaurantReviewMSTests/RestaurantReviewMSTests.csproj delete mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll delete mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll delete mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll delete mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReview.dll delete mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReview.pdb delete mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.deps.json delete mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.dll delete mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.pdb delete mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.runtimeconfig.dev.json delete mode 100644 RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.runtimeconfig.json delete mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.AssemblyInfo.cs delete mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.AssemblyInfoInputs.cache delete mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.assets.cache delete mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.CopyComplete delete mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.CoreCompileInputs.cache delete mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.FileListAbsolute.txt delete mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csprojAssemblyReference.cache delete mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.dll delete mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.pdb delete mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/RestaurantReviewMSTests.csproj.nuget.cache delete mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/RestaurantReviewMSTests.csproj.nuget.dgspec.json delete mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/RestaurantReviewMSTests.csproj.nuget.g.props delete mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/RestaurantReviewMSTests.csproj.nuget.g.targets delete mode 100644 RestaurantReview/RestaurantReviewMSTests/obj/project.assets.json delete mode 100644 RestaurantReview/RestaurantReviewTests/Controllers/RestaurantController.cs delete mode 100644 RestaurantReview/RestaurantReviewTests/Models/RestaurantModel.cs delete mode 100644 RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj delete mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReview.dll delete mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReview.pdb delete mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReviewTests.deps.json delete mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReviewTests.dll delete mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReviewTests.pdb delete mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReviewTests.runtimeconfig.dev.json delete mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReviewTests.runtimeconfig.json delete mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/xunit.runner.reporters.netcoreapp10.dll delete mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/xunit.runner.utility.netcoreapp10.dll delete mode 100644 RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/xunit.runner.visualstudio.dotnetcore.testadapter.dll delete mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.AssemblyInfo.cs delete mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.AssemblyInfoInputs.cache delete mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.assets.cache delete mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.CopyComplete delete mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.CoreCompileInputs.cache delete mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.FileListAbsolute.txt delete mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csprojAssemblyReference.cache delete mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.dll delete mode 100644 RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.pdb delete mode 100644 RestaurantReview/RestaurantReviewTests/obj/RestaurantReviewTests.csproj.nuget.cache delete mode 100644 RestaurantReview/RestaurantReviewTests/obj/RestaurantReviewTests.csproj.nuget.dgspec.json delete mode 100644 RestaurantReview/RestaurantReviewTests/obj/RestaurantReviewTests.csproj.nuget.g.props delete mode 100644 RestaurantReview/RestaurantReviewTests/obj/RestaurantReviewTests.csproj.nuget.g.targets delete mode 100644 RestaurantReview/RestaurantReviewTests/obj/project.assets.json diff --git a/RestaurantReview/R2/R2.csproj b/RestaurantReview/R2/R2.csproj deleted file mode 100644 index c4ab7a65..00000000 --- a/RestaurantReview/R2/R2.csproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - netcoreapp2.2 - - false - - - - - - - - - - - - - - - diff --git a/RestaurantReview/R2/UnitTest1.cs b/RestaurantReview/R2/UnitTest1.cs deleted file mode 100644 index cdd3d83f..00000000 --- a/RestaurantReview/R2/UnitTest1.cs +++ /dev/null @@ -1,31 +0,0 @@ -using Microsoft.AspNetCore.Mvc; -using Microsoft.VisualStudio.TestTools.UnitTesting; -using RestaurantReview.Controllers; -using RestaurantReview.Models; -using RestaurantReview.Services; -using System; -using System.Collections.Generic; -using System.Text; -using System.Linq; -using System.Threading.Tasks; -using RestaurantReview.DAL; -using System.Data.SqlClient; - - -namespace RestaurantReviewMSTests.Controllers -{ - [TestClass] - public class Restaurants - { - public IConn connection = new Conn(); - - [TestMethod] - public void RestaurantsControllerTest() - { - var RC = new RestaurantsController(connection); - var result = RC.Get("Boston"); - var resultType = result as ActionResult>; - Assert.IsInstanceOfType(resultType, typeof(ActionResult>)); - } - } -} diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll deleted file mode 100644 index 515d8781a64b6fdb0b5f6cddb1d13b9f0072d980..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134192 zcmb@v2b>f|+CN^?-P1GEGrR2U46`{9W@#oY8FtATB!hr}prU6EtutU?-E|Q~Oqj!Q z>M6$4GoEKU&Ts}iBdKV^;<})1P|NA^uJu{0V@4dgze?L%N&r?r5RrOTWQ%^lr z-7|aH`9c>$82JD5&qCaXC;g4*aL+*}l1m#NC>3`Hp6zv?XV$a579MtZw(;1Eb7*Ge z(TxYKJmwf@RpWsNH)d8J(|GtXjg#l@-FUR~n}eH6O02$$^}H!U%<|}BnD^U#-O}C` zy&Hp`fkHgy5yCIA2fl-NBgHie$~cZF)tmm@rx*_;{#{Y0pU zrsau{<$&f)HggbAvTh(S0XzZPg1_-XjBm~ye3S!1sw>r*c|G$Bx`_qZI69f+ia)BG zCcGkagAl2RM+6uvM9cji(b!LjC1`)A!tLo%ueHU6uo8GS(Q~n8Be$jL?S$5hcE$=3 z8K{dv4=M>D9wv6bgWP?dO07HyS_a?h@wCMxAShr)F9 zIC=!jJqk9OqRHT{7$Kcz@Z21)knIhXYvuZ`o<1Z5&Y=)l=}}UyD_CVEq|9m$pr+Ie z^ok=?y9Nz-jVMngJiABRVF5SXkH1~D_c z$}DfC=?n(S8G@jz(raTjnJG^qy97_&TWT0Krkj}%9-bQ`g@2+bD}_il=^d|NHpSBw zO&u>Ivdau>U_TUW;+>RYW0EA%z1*#d<5l-&5B3Pt#^5uxEQXHR?gc3g0#F-?-spag z0Ko}pJlcD?YOgobM$JM>vPsYUj^dDPQnO2_vK_C11=r_QM0S}`s?P|n52e_UWYS?# znAujKe^m+ta#GN;`%oPrM?_-wA_Cw;U6mNI90YIp4OTY_Cj#P=#QY@ z=b+x`g0Si@8*|Ufjz-W?P0b#Im=!lA0JUdz)VSzi+$RA>k3$+$hvNPY1{giwMVG__ z9SktK(q$4c;$fqMK}u*x{~8$cx&Q>NBf{R;f~cjZhU%;PpiyZk48xA0`pJ+cQFc#2 zR#znGtyo}G`U*xjw^7Q$FM9PC5gQyxzl6aX1%dJFhu#(w^X;NeF1vJ#gHVi)n*fW5Nr%6Hd*Yg^Q>ds}6k|`)|vpo~^ ztNMYb)zvHLTm4(aQa+!9!DOv5D!Pd%n#j#{tT~5?2Iy7KJ8Cdg*mY=w7PBFGQ>(D! z5^A7F)b1srqURmAP&Sy$HxLzOs;Q-_HD@+DK2MHF*gG`h9&DtJK_*su@n2mE63yf7EhDW*nQI;H}O){;<3X8O-n>b3T%_CY)L+(K1>Zu>zJ*;P-vFqQ*-PU}(gqsJn9Lk9suDj#Y z<`IF$_>StIndi8hCPNFA-#stY9eHVLwRG;DnmP_iG^>(_$y^a5Y{(I|j~O<20w!l`JP=HKC@22<#k!*94G{WcgTlJM0QoqO_Q9aBk46J3lojjS%r<5A55TSYUy`M8N&@8u8A8ca z4?S#T52aE`BP9=&*^ffpU6BGIDmXfoIc9lH$^<5viw!i~)7MED31VjYyG zL(T3S$)?M^NrXKN5dQvGIg*u^=>?k1K}3j!RC4@99idE(%sL|6N`${&M=X>^<|87c zU>jB-w=q!eg{`h9LXQ`O6zqWz`oPH45FrJHjoFQ3BN2`xLJA5AcN2IoB0Pu)DcA!c z@)?;kiI9Rl5JE8-ncInwf;|wz7%(!g5+Mb9AcT%IGCfQXQm}{7gUMoKW)dL5mK;+qA|OS%wLF*f;|)s6@k7cLJIakh)HQ=!afjEum?h@6eH70gcR(7Fhzt1 z6CnkAAcWy$WX>Q$3id$QOoWdUAq9IN8~{Shd0k*SiW1T>ZF>O~PxoljvKi7VRy!eb z`wXHhWx6>zx~!xlL^nFjY4Dqoqgy5E2+@rWGZl0*b9AdE9U;2Wg_&+vj_!C#M~H58 zrh~QJ3Ti$Bo)$6=VU0pBTIml8P1BrRS|68oY0W@WYy++mj>at8t z_pzf1#;U2>+E=Vtn{VrDu#~V!hHWfYrgI$vD|;Hs37V-2pDv4P0akZT2i94SAQsZ> zr9hP$rC#iGFlx;bf6BY#e6TW{Ge8kBTABc$JsSw}W_zM5BWBpt+TQ?8m@K~v2(kTj zK!H?4AZ)f#G;HoNW8_*olgc^^L2DQK!fbsSA@X>U$9WP68dZA4?+g3Oea_jSOV{PA z8uoKtBR(XDeO%?RuN5`Pv3QDElr*_4p8y;QxX@z+S%7+?IBDIMDJT-iyb6&=tb)>f z;Xv3b50;0Vb5N0RNam<@n-p};CA4Z_$k_Y=!YV5Xeo+4swnoZqS!ZzVw*~em3ClJ?E0eE`-);; zD2g>pi5D0Wp*>}^G{-xtNEdK4?|{G!+&i((UH#W-Y&Vy`NSeXS_AG+d1DvZC1Q zieg_XiVc+)<2$h^c2!aAbw#ny6vcj36q|??tHTjRv3C{4ep3`{M~m@2zbN*VqF7i0 zMP}B}qS)UQ#Xe9J`)N^ZX{=aj3h5h z1^pMk#|UgZEW-jOPj_GAwN%kUUt{_x!LbrcQi=x{pJ?%e&1$D|&w^KL*1k7RCOB?|L z9#M(lNHb1vqEY*9%1&`_K|Jb}_yaYg)UY?9K$LqQC^fHrk17uqv*gARu!jjL5gY-_ zXe?$wK-3qi5v1E&h=*Z6C|NyB4;1h>A_9l~Tn-!o0_K2Z$q^t9a1k5$x(JQ{ag>YT2o8C#paFq>lI*F1p@D;Y zwcpeD+!{j~CRrD?TzBrp!+uZ32ZMwC0phyzXN0NANT-PN7XPoB{oT@n08E-kifQWk^!`73H@%$_e%@pv>HZN$c*8$!TqpGukFH>5MMn zq65q;Vn}A#5y^7D%W<1jgxhMD8<9zF5ihd~dnG?O0jL>aQ}Odae7rT(Y>GP2wpMJ= znvM#H#y${SvbO>g@u_5t8!O^Z4#yS~BgTpZ3btYa=Qg0&?HmqdZ>MAn+s``?30uyc z^iVtdN4i2`Kel;lZ*MwxQKHZJ6CO07=^R}XcY7v%=Lre?Wu)5E)4|MBg&NPK`H%6n z0hQ(Tnj=7*=^{7+#91zaBS4((A~*uXIWB@DK%DC$I06J#Oj!y?fH==Za0CeKRwV^T z$ZjwN9fQ?koXg&NyP)qio44~%xP8XZW4VswE>JYjP)A@T!?0Euq9YZCabAg13wSv_ zcqj)Tn^f5BsNz(D97q*oJV*)E^0|>Hs+oe&4mQ1@=z%D%8S%kKs>U@Tno1^B|s0()V-> zq~=aNK5^Oo9Oxm?uHic&$D%A~5S(v63|xA7&Q7aDng6e6#FpW69s#>hSFF$pN4K@0 zoN5BObK)Li<}&G{qA~Oq>VovJY@9mo!@JEL5=(k#Y>_L4xo>fhuNus<~&OEO5y|`t_mwNIG^T|X(eH!VhNphY7PdUHTW)n zsx^=rZu$exXQ zLmS>Y({DJKi&p!asDgi&SxJ7ltw3NqhRbF$F$nASN#If%T_P9@tLqX#hS$O2w^;z& zy$PF$iLOoa+1?rH~CP%Q5qQv0$4o9er5mU~oI!Q!F2Pf5BCm9)A> z1Z8KVT(e3Y__Ba#Ei-6*AX4eGPl6QG3F~&?)|e^7+?dvI5oqJ#6@$`}$z@1!C*|%; zULX>0EVf*5yAs<9Boal=qm8)mwO)7rhpIutja`jKKI*&xB-M@f zmHXfsmvvj|cAz}~{a|HZ1R31g!%XKT#6rnRzwV zAw}NR)G$K&PL=xU(!4bFZJ5pSbk%ts#N<*>(*2esrnbHf3x`U??F7@tl8{XIg58~K zS22o2MdH-L67o#A1gr+=6_VqjXm`_Y?RKajY`puCd7m#PCl^k)q2*=YgR%~k+w$oH zsiKAH*uvZBv1H=5f=cCC%bt;q&krda70D?i$B#zq3i+Hder&j;QA4?(!_dssVBnhB zE*3TGG|FRxwugt;V;aAFo(>qYuy7p1mWBNmfWmw&$cOoXd3>)ccUcL(mxSrpj5`Fo zdY14|q#;UV&fCQ0H&i<5(;?tNGS#o;0|@^g+S zb-EH)aA;Z-;GY7RDh=ePU9hV!7_lb24Vq9Z)P&_;IU~c~1SX}lJ$sAACrX`2_p-1j z6G@VTRIheF?zD7aokOvbw)Eo8|)QHp%YU(XoQ!K6dswM&zOG*O%jfW4u zqr0xq`HWBY2W+Im{$SOW>saa)bSTj{@1Weo41F7>M_~rK|7MDB(XJHrL)!)DoM0?O zw}0M64vC=4s_y|B`7r3D?GY_Omr?Uex{l(eHX}Xa?MmZtOSap=e$C4C!!U+nI300` zxC02<9}}^VbEg#wICD4fuJV`HRGA*jNZ7lXm%V7j*EKH?@y8;8WE=-tkTLBih;<}r zhJ(Cl13^Ye7_!4TRv=8`dr`H*bUs89>oOnh^{wq@B24NR5!nKSI8Cl9FbBjA&xG=6r&u=6p&JxR4GaTR%ix>eHwkLuvY@~bS5R-sN(#hDLA-3#Y6kuYR zp=1fodNUrNt};V@%J4aOJ6{20=nI0raiK2>`nL;#$a21Sp|1%7xy*+w7L6YXVXRmV zIb4`07+8+xLf;VtvB)&Avq&rw`hg%c)--+o&Ay5yK_8?u?qj~q7J+`90oh>?g=;Ns zN&s;U|4sZa#eWO`v4)6p^`toDDw35IRx(zFL+*MjSz2o)tx8jQ5W;XQQAa zz8Z^M=g=|-YkERU%+OeAX*3RTElX?C5>II9dTEYqM)|I{GIL5T3|KZo;ME<>)Miu1 zkBB5TDkjc<07<7osTR{DxCWxZs{Nd{8v7RytO9NI7DUo|Ea|COh(SdCJKw9>)UER? z5_)W*5uNXi&W{zzQ<3yk70UxgDi7L9ZC-&V{b{MCvbM5XQC&jLPSmtXcYdOWCOu&T z9pjQj%$uVaGm1X zQ*n*$^5_So@~mln8;>@SKGn9Zb?fI^UTM7|8K6e&@*rnQi?K>2GP)ceOZsW^ZpC&P zNKHJYZOga}>^NGNuGhBxwHqdd4f1THL_r>dQG+ZGx&*RJyOCB8od@RSZl)sGVfQf7p_qLYdM$e=0(gTBXC}I3HC0Q#hT#J@+SL2;lznK3 zGr(&Q@nSClzgw^xwqwop6yPl)8*T%O#w@K17UGsBU!Ryvyw3sepyt4FVEJ@2i~XaS zh3L(=>3|k1zkHE{X?uX76OvdMgoZ4OjF0OnaLSNGo}3HGNT8D!jsO8uK_WN;1lDkg z;0O?xxCo9wMqY6lbnalZD~l3Q=TxcI0dw7m(f!6+0mQR zDEws_Rt)5$@Rw;=HjqYP)Isi~Vh3phO<^}Q3<{tr?1oM;n!;{qEGwXL3 zq9`N+?oA(#hx>)VJG5nhZNLPd6ysYH{g>6Q|j z%9WB)5^w8zW+%nM)sYhUuY^ak>guH~5Vb<`nKQA-x+|`^*@1)2>OyUaajK!4oU5od zQQ1{d*_+%`QuN9_bVWZ2PwVp7NnHu6FZt1c+-~1VQHb81l% zUPSfUtB5}^rgIdI387WA){juMu+&m-aM`&2?zYa2lH(@1dIfYUR6#>@xe3-)#gYK)jPuXyzn4 z-tSHmCz{@Z89$;ZA|)CSkm3}YiM9~xxTKZeSizD*&$^&Z6h^e(G>;|OZsBzpuG z0?95iV}l0=q*-|=p!`OM7ESDNBoV7xX=U;OSgBVJIM`%a4mK3%4T@F{nIOA>XUx}_ zF|OY&;PfZb1OjjjI7yCF2AmW{_~IpW!{MltDD?)MG_YNIQ{92U;FA#lFB@8CWr ztmlM&9Oe$~XE4^VJHk4ehP*A)X#WhtHud&@;i08!HM5OkxU<+y{c$Gx%sC4|8rD(; z>AISMezC*Ay*uJDfO%-`pHmj29or1U^tOLV4@{A-@GSMF20=z-SHxra0p~Q!rkQO- zM7}J%;enll#hI8+CYf!-RKC3E<-4k88}WC>LiWKd6f^cmX8XT^^82=7EtS{zT-C!p zxS4!H)@n*@{}zOJfe~UI zZTUoc7d_eW0murbR}&R80@U$NO6kBFQJ9Q3gUoCTCsT?IHJaq|eB02YQeaUjBZ3R7 z_6M{%0~_FZbI=V1%T4?uNuPvLf#NP zsS?cXCY9E!GoM^9g>HSDVxa!5E7wmLrP&M-*~@lqa& zr4$>ZIhh>`n6oAabDmGT=Sfi>sdg!a)owmd7Jdud!Hq>qlT*Vb_INj8qPhwE zLc2`7j%8*iP^pm~?UWSmLEBubk~X=PGns-Z2*Ras(v*fv!{*?-!zIpCpzLXc52lXP z!a>zDyG@&d{*pu7-$v8ZJ`RH}IaCY$-*dTRmnNlRmIbqdslH`TQ@zXbrEnNjixI+h z-2}ui62)5lpAVh)0{&Zw(;uyO@8OBnpWekrTdkId0h`WVhzI3LjhAK%R&4JMT3K-C z-kys}g|LdvAUVxMP+*^tZ_1L-6?0kw4 zh3y@XlQ)igEGmBcD zZ1g$U63MphrNk+`$;`2i|V6p0|5Et7zm1* zCReta*b8|2>)4DrmmbXrQk@iM#I`4qi=9NyGBm;27lBN`RFW&tZV3=8+ZfN|iI#@5 z%aO&>N|O7C0Q=!mA=t0~p(d|DN>?kptO-t)kiR;gQrA?_-w)=yQ|?8&z-|_Dl?2i^ zWcLH7U_~f7)5ohyX77f)E#^;$Z442CR!ys)6@d96I`2O zxG@Av-b&x9L8#3@+3Y{${-Kk`%2A?@`h?#4jr9_(6eoY*BD5R(TKM2###>ozaL{^Y zZ~q2yIP{Y#pMO(HK>7h|19lsRQ#uNvaKW;kGVZTf67u`tHh<2P`%0FrkH0lCo@7hy zwkm>JD0!^#^EfK$>aFfopbv9CQ$M@rW&29HAd7?1pv>U~Qu3vJnYDoPvQc^Bm4R+@ z3Hn*=A%FVZT%~AS(Hn1pnCKm0IT*Ch;`1~en|00sj}Jd_SizDs>=St&NjX?1Zf<5D zK%L>DrExw1`SCw&9}g<$U}|Wx0taib;%FmL?O+#Z^&BJ*)CKL)tn}NMU}9Hnd~Sl# zfjaoOQoo*o z#fF|Pn=`txp_E@`!`Z>+24X{AH;w>tql@6kGR;1P#tqDR&0dEXxkJgor*#d+xtK^} z&~7IhPXfp9_A1mNi!BH4rP^x=y;y6brboOnG7Ry~^t+ITN=wPCQP&RFH`7vJcJ;<; z6ZYAsQ9On%%&CZM$IUSlH^;p4AV*dQg~|w@qL7c5Dv6@$!Q&vF_BBZmBbctknB^Y& zNRkbE#7wVH2URrlBKQc!NkHOe8;x6g4O&v|ewc}ySRhThw@0m}5BAW^4*NI9tHNpw zhfMnfq?P#m0Y0wbb(mWdHo#S$J&h8Tdy5dwXAP@k-~IWr3+#x57l2r z5@ambz(Lpk4@ZFbvy0#e#sTS>UeGg>c@A7eP5Gss zxrETrGt}9;>lsdio}sM2re`ik8ta)$5&4ClA*r#Rp-4{85CA^T1iHm$aRp^< zMqVIiBBgdyFILydLHV60(k;G_UuqV=Un-V>vJsL#KWmi|+4#0!Ha@3Ms0g?5_`pY% z|5vn$)kQZP5>Q`k3)G9)P_c&e$Y3oy8a(V95zuP_A49QWTwy0A-<3ZCO__?eW-;_! z10Mb@6F0Bm8KsRFk^0DU22W8ciM`S>z&jXHCgKjop((KM!RW_V?@azaicEI%Vm&l* zCP>$wO*8QT`F2YUS*=@;gzDUnGVl$;`{?0qzn30xfWaIw;PQ7rRQT&e&~fe1tnx06 zR~)AaF%4~EGt=TQ$YF@Xl4!(;!u8umS+q7{>%572I5h6^*Lq?O9KU8as@HcTXaF2B z*kXsIbBp0Hd{$xEy$L@g_FIxds&`U5BKuI4+c9KVZ_ua@ekB5Krs^Ol+5ki9H7K z5}M~e*b{0aui3W(8!>jkKQAJFw|Zee-?i9`1f3GFQl`9NxP!}F3ciDZ^jJ6`uWkf* zhUV{S(47@{-VK~6FWuyPiMH|ujY8ztg!~3UA@W;7{(Cp%cZ7sDs2k>`PW zV?f}#F5hni3TuKTt~B_Yq2VmNKo*RlYzEJe-^t>U#mR~luX0w?gA9AiIRQb58d5vZ z&vc{FY`sfI={zxFwDC#O@NInrrG>rdtnv3!xso%zz|XwpUU39+%ZzI5VUGdVWZ0J; z1iF&|a2+E4u)l(jzcc>UpIJX@kDLEv^12H{I&iCHbr0)ZP%5G$@Y zArEX!dSio{C5u9bbTGifKi3x3HrQoWB-Aw}Qc`j5;SgawCMyD;n^eM3={fTR9yqf9 zeb4~Jzn%L^-EhRa!~JLvTyDUJ$f0J&!QlZMS5|H0H}Z}^Xh>@tUw&vGlO7Vo4K z`a)^a9z+3zl8i*ckya>l5sqwZZQ_9tjzpr6LyMoVQHUbaGu%_j{Z$%M*sfU4=?EgR zmPe@{W2C992)@lqofWQd-T|4)QMBhO(Q{S*P0v*o_FPr>o~uO9RZ^E#C;OtysyB73 zC2Da7)pG-aa5eg^I$X{D_L3Q{y_oF1T%SjAj`SJsbhTjk z-b2Gxu-!{Q`oec!lrTeb`39Z*PI7ef_t*2WKbh5RoA{0i_#L)8`P;qw9a0sc>Tj>nVqE!|(3hxlF? zy1EpDR)_m(WH4BKhY^?Qu^)p2vM2VQ=OPw@ZS)!D5FHDcWcnTHfkZu&2h#oi zO1~3Wq`DJBLuJqN^i%BbGeO&wTPU^Q^Is5TJ%v&uB`@?E~h@!N`w6ZYOt@ejG zi8q;#H1UeoMybxlpzHVvF;+V}5!q$p6Le2M54=pGM_m9Z7*PSakDcIG&DT>?RA-NJ>4GLFx(8q}UavjWW2Y!vb zBU}sS_-kqs-cvASIGz-Jnl*NzjSl<*?(c7;N5aOL%Ip0m)0yhRmgWrH8I80(k|oVUpN;ubEzLQ zKVu%)*h0`iGB8$7G@a`Ku?HuAk(I$}=LV{p>d7k#dQ$&|!^aGEHLFpFMKV9?Bq7}e z$=hLt;}6C${jFFbnmf@9sw)OG>1g#n0>5;Ec}9AJCL(sf)<_&I!v1*#sBUwykOp7W zikLfkgK*on+{iGt{ZB6L%|eCZ;>7m|>Ahj_joLc_M0~M`zXcOrgz*yZCc1IoihVJa zNJBFm*aj^jhgt=1EYsc{8cBAl7zRoZ#!FBcFF5ib<2;O0555GW zM2J_s(bC-%k6g#0_~`Ef{O^VT2xA)rUy$E(a~+Zpo8RKgs^n!FDXzMSV z4=?TL%s9TI_bQ$xrV+?K2O2&Y@Y;_difuKWLH9iXbdAAE_+o=JAHDxe_apZ~S&LDY?z|3$`FEaT_8p*gVAkPa zuP;6~fXJ#tF==r?4|m_60Q#J}5!#PaMYOJ{I@Nxu`>D3H7i-19S?*bdPoOKQ+;Dar z%ii0rK{OqIC0)GB98V&J#bxmiR-~rsQkKw#xr<1$uH6om6pDv^ywYqVj#9GD|Db+& z6@gLgV@r)yJkKu>+yBCorKngLk{6bZKcoHWQUzm--UGNIabcCZkH;?^qPO|0zc}mS zHx)N`QbX}FlrBA-PojE>LzLlcWXXb@)GK!ZuX~qiIFdUTSgW> z7c0mn9LybO0XSgHLG;_MzS0|ZzBPo zx~>BQ&I`zz##TE9H64%D1e|R^WL<&@0llD{ER>dML#bfCb~WX{?H=*E`SHdYFX1@` zxH#e7v8Wc;J?N_b9^(EdMQs#i();10OPBKepq9~CB%_++7^avX_BhO#G(JT?o}SP@ z*(Jco`SOIb52B&GFxYL1*US8T{ltD2sTy`di}AFdLC|#^-qv4^h;)ba$UKE5IP)9= z8wS5c_iE^U{uRGYvA3kaO7?3!79nYS{^Bqlic8yTrl>uXU(>~!I8&^9PRfJ!o0uVD z8P8j63NS@urh}b;MLr4>pZ)h?j=~6bubRBmZBoiP=@Y&Ccjvb+^MlPS`N3?p$c+0x z^TV42w7tWtx^Eyi4k5SG!)tfpffxSm9eC0k;&A%wbjFBXkvz@f$Y9N;F~w6AxBG3< zOLQ^V$^kIeE$rWH?B%6Xp6#GqGARMD<&4Dsabl0>R<{_A00Ez>ESDodz=o0tj?9oO zbbfhrH576UuO0H63Cn5xaS{19R(18F?`kO28gv4*Y!+q}Hv4#ioIfYg4{ncwH`~c? zdQJm~Q+_{Y0(J~=c*DZN7B8^z@WC(morkF{)Zh1^zgM74_Sag`pq|E++1DTd{N{`l z=qnH?4`y7A$s(I(KaXU*M5WuGA`{?v16r!(wAC}>+EYl%idK?0UDzY7GVo< z8uJd8aEjCDcCchyxG2EA_Yw-@;{XS1a5t=j^}uqTK(M{wQ?z`3O=tAAQ^g@@3dVC^ zvEh$${Lw)scM|ZlCLKt2AGLJ?uMb+g4sDJl8mpJV9nN zvyI@?6x_0=h|m5QG^ybgp&a5PLc}W~>fHjY=_b~kiL~ZSpn7km)>N|V3UBM06(w32 zzhvV|qz|f6)fz!pp~vP6gyMnA8HnF7%6(30@cURQdSqM;^}d(GRyS z2J=Mz{s-Nr>zR=6rcBkr1o^p!n1Kb^ zD@_ABd%}u~M0jju^P;%w62ny&oi4lBlhNW-j{v_2>+|#HgzzF9-2$~5OFf>>ArmG4 zYrw)?I3?!yz_|COWr?s#_)u3Ctt#M6sv7=p^bvS`V8>2Jvz;SReC8!ufSyK-egftM z)Dwd>j1xjtNz5ZdWFVK7)OS)-UPb*!KN+J(`L>HfZw5Mxl@8uXd>9$)A2#uMBA)|$ z+lmc*zpGqdeJ}ny0r_8k$F5DW1=w-OF{8X7!5c|-kJ9N5E*$xBft~sx9m6-IP54dzNfg+D@@Zit zfEU*lpFj$?X)xsel4tFu+J*ykbebxK@AEU1!7kUN$4{SYPM4xmu(K@sf|8l+r6A~H z7-@9j_aXUs1P{Lb76}^gp{zzT@Z@n3;QZlWe(-id&4~$EplKgVds=KI=)9TV$;N~K z2#Dc1n? z9gW=mhl2SP@xwE~-9+v$U!HN7ke3eSJqS(Anj_Aay3XY94jq)AFYu9@sbZyD1+5dh9YMyX&pou{g90yOssn zg$`CzD-|=_h(6_$&oyQnaZw}sNRYWISFXNNh9Nc(;x%0Tc%?tTVkYKjSu#u8pMsSK zeg7)Tpgpig-zg!Z1il$c>UKjA78brd)}tx9+jTs3&p0ds)xvukL_*)bh&ANx=}F*u zD9K}rl7~f2*W0mH;oOYMDfo5>L^9PCiTyP?vGB_q*bkMFE~yhWE#3JaM*OEK{vpY~ zPbU&_mq_bu}8O7Po!d@h1wh2Jl9>OhIuuid${sF2W6MwriFZ&KvoW?CT7OptHAY4 z*>G!@UzNnMd4AI}Zaz-D4Rbyn1W6rxpcrGPe`~%O9p6F#h z>x&|?%bZJ{`wkM~os?ovz&75&*2UU^wOuHs!IiqCpi*RK`J^MfpxTMvxi?Y%4w3jA z81q)@D7h}e=bl>^DLb|mKjqYM$eZ%vEnV71%UryLqdULoi-Hm|D8W@l?iY9pBr^Cp zp99kwoz;ci)(40s!md6y#jsK0FQ-E)wDzBm#zCit<&S*AP`4~Ls_>#RSNb6Ngn^oz z$KOqojli_YH39|<*@)CT@{+RZP%jM`Y;&!2Ibu=%feTy-cVJ9eO}Vcp-JC4(>Fkh^ z3G&Sf{++A_)a@ARx6zP~Wo85DqM(`8@xa#r@u8Zm7g70*Bm;(z16nUng!#Jky1@-o zFx2_Or|M**1r0Erk5H9#gKSb37+0jOhZK7`YmMYE9LXI|Lx-BqCzQ(<4eq!A0}C!> zuMJgc26vnaFjUYv~4CL=}mcv4}5;kAQ}Kn?fX>Xyzz*m-nEVGD( zhFeNrcwsu>fgLR1o!_rhEFz8^e_3pyG0*V}Jl-?i_@y5HjuhFVvylt7uzaTsUnS=k zk}Y%FK=d-d@Z=5;_T;HokSP(rpA4z%Ugtj;sKG+Nmpq#;0}ZY&44EL;(vEE?NuImO zqt#2%dIt^@tCI#;?#tPF`!fXcIng%M?Ksp;Ya^VV=b#RwYKkQEMs4_%%J~euQ^TcD z*A)yr`MEv!NU!je%EG4(Xei-~OCInx>hc3VmAX3T)#V3#a5y~+uf#^^T6qR(?I z%szPqVxH||jUatGosb!(SvdPSGQnF*Z`R;9TXKBkAm<5q2>?Z$F&i6z5q}48YF%aDgV}~)Vmsfy=cWM+5dFE zV_%F!XdHaA4>eR{A&!!91L6oUQgwMB14C;gk;o7CKr5rF@>sEe#Q73g(qZV)T&jbS zWE$zXuTcL{YQc#63b|oVws@BNi!pB9_z$Nl=mvB`z@P6c@h(I}gA7N|~{P@0J<* zSY^h}9cCMUv&U4*2&Zn?6mjo*9ayrKgB9KM7fhoU(GJ)KwB9vB?(i?UXY${GycK39 zj>L&b&!33PtJdk-A_={~zV&qsE_GAlTatdA0{#skRic3J03;3in3(GpIv167)kxvx z0}Jblns2g)z9&Az6rUfc1m(8*H4Z`Le#hHix*en`p)x@26)iGkNJE2;v9U9=94bY= zauVY^L}d7^&dcgYBxnDF0DcpM!DN%qf#qU_GWTGS@#k+}RNFTIjXji~%tUumywGh@ z(2tYh3ltS_Z9zBUE#VQkh=d&tK39i8UO0-u&o~OJ5Egvc5Qsp1Tl7v8YoZihQuE@= zxw?(1Xr&*<)iHfnY$c|?bQD$4H6(SWQ6UEJCFh=o-RtC=QpSZo--^fSXyIrzeuC()cO zgVZ};=D|ki!|;uW6TmxL0z94fa;{nE4*vai2WrE@Hmnq>`O`i3ZxxqQgDfcf!fN9XNbN9LV-AVu?D@ z-lqmno7&w*1eV$GQ?p@K46y`#1*sMlz}xb2PZP!$59K$IC?BmuuwYd_TmpLw*+afm zsjp%b)>IL*cHEAK){_gyTz?zs^fd^4PBFkoyY24)qc!}*1jz%mHiGkKz0~!5)SK?f zZ$<#R8{N*|OvT%8JymLVG`1w|JBV!sbA?AF?UtbU*FhTTi)7RAX(B2!W>H)5W6mbN zG)ZkWQ1Pu>Wm}I?Es)t$Xed{+7HsHThYCwnXJOA+YoJ%;Uh<@zTpD%_!5bAMZ~+t#4)}YPu=b78SC$bzZeyr8#UVb7p6%tN_sd$4!p zV{BfN(Jz|31h9ez4n#`FN_>Q;@kxo+<|V`&;(>Xo(>JF1TVR^jM&2x~jhtD0gvS1? zF4!?UfOSq#}353Wk`15L0EI4nEUL#Ds%WThr;X;;=0G6f6&-Ii}n`J{8I=_ zKhbB}qP-^LxgGF4D5^dak8;3*|1`93pN7rB0Bs6?^bDa7j8f?@;Qvhg$DUna3ol@W zvEK!iB$v2Y3>agS_1)umHUjqJi7Ih^u*p5)DPW(Fj;9bG3J{f9>$K$orOc7(6Ask-Z z@6MDdM#PEpn1wqBm5TTKZkkdm{)19V#fSYiO(_>E`o#y9i=R3CXnf^FQ{38b=zga7 zm;SR^E=KKJiQiOvbL>f}a&dMur3Sn^2bGIyOh0c5rC!ySIBZ%*@d-7R6JsLfrM&MQ zK=||!!r#+Ed5zYcgG}+RzH?Bu7}~fXT`$T<-)i<24Wq{mY7+H}XN*dSt(B+YHqQ|p zzCVZJ*Nvs{$;A{##!z@G<16M;eC*QGV&!7P%*u%g(SO`&v3ha&gj+G@S8}fZS;q7| zpBYdu<^gYtBV@G|k!P&&c*0|ra8xFD{ND-}0ER+eZOTRUyA z*wK0+B)_xoy|DLUP4^D07UwlBNLP!);|tQJ=s%da4YMe`jN?p=o zZZ*l|*o72sTukB1h?}AowdyUNpE(XRmo>x(4i`0`A1S_UrM~{57sda=@tKL8gJNPD zI9H3?xb(sO7NkdtOO_Mm$|maTJ~dQ_k03bsmn$R z-$=^!PXC>Q#)<(Gc1)cp%Dl@)m5V3FP_JDyta9R5@on?+S(gct$yBjZpSmO_N>Tbc zmeLH-XJ6vEtUuMEC%BCicOi^nkMOfOM_iZQG^JX!Lq65$Q!01uFltNh5uXgL7Jo&q zYH@2%!k;pR>ii+6o-mB~yoC0S6sOmJGPGVS8cuz8RSVHn7?%%>i8%P1VnUjvdPu?=xkoX+F+Jnqw*jGcpei=~a@2F(#SF5Wq)Nj!*g+a#{4q40=t zGa$WNXHXBmTDfWJaM8ix4|6EKWh{l;7gIQL426#}e$ZTsFI-CD1>-4P!;~iu-82=l zLJcwZM^NiZhEXfdX^CU(rP1#Q(ZAK=6dnm)$aAr1o-!m=EnaIOyg7noo8~b&mB+^6 z2&=`rV<)F{{mZc=hx5&yXiKvBR&%VlYQ^$dW5t%iLsDZ!%{YqxaqjY2)#8OE3)0KP zwtY9wF~v=gbG7)xFyj9YF85WN;!kq?5sv@B@lO$7AU>V_31*cLhnWGLiw3rOjuu^l+V|ZeqC5c*QBGS-&<0_Eu1tI|ed4^?xP4sd zq1OI$o`mWc8Zcf$^-Q@M(9xa?L<6UtIOm|*v&DsCjAt$K9i*VK3_Ubkrj29Dkt%Hh zLvs`~jiJ{SD&piS=K$P$}mvFDRnW0QIrEL*+ zF!UwTj`ln%wlbHST8Zal;yF&6I-#=l2l14E-wIr=ncTJfXwTCETVg;rjPF`LTRbhW zfh1@WLC*;65drVxxAH~oDXr~y#l-QvopT{$XA#A+>X`XQm!H5Q=dnPb+J5!pT zNeq#7G+S7nDGW_!DCC*O&{BpJmhbzc~ZJ2y=E!kFJ#iFjD_ob^&=SU59Z1AVWu?Fb(a zQs@nRfyr{aMe!pTKPLPZ;va-QL^!XMY0AH>+`F?+`U_+4&Vk@IL>$!oP2~`A=Kkwo z0A6_jg~L`-xRS$G#@xlJaSrd?k5bn$zLhbrGv)~nXEG+h;gK93#+09O>I~)?XH1yG z|1izd9B$`uKJfE9=MA9tHgb49hxc-L5{CzIIF7?KhZ{Nk*+;o<;qYn>1Af9h&2bIw zo!@!&VhZnJ%*`t(el*MW>`@f28BF1_W(qq7Q8;-a$$W9;50K$Il|Lc$&(*3t;`y;Y zgr6)9Av|VG7~#2(506g(^M@V-s=}gq@DPO2zAaU< ze{rtKz0)`RCFq|IjREC~a?1OD$wb8O2~9yL>J}IdXhu3#&}?e)CI=w5umgMSUUx3MVe3@P;IX4r78f z6ko^j|CCewr1?~7d8O49u zu5lQvkXYG4$aPfkNQ6IfTV#t)FL!`BIGjazZ8?qe>q_cP>J0>5&NUZT$|RtUsmB@BBSR z#USz3UJme6nEu)7orvF59jNXljD=4k{srpLOPpLCtzO*Ov5;hb@`9>rNV}B!<)|Rl z`QmULFrIL4*uu<97@nT)Ka_(a6x+O%p@+}L+M!UeMyBfO`EN)N}WKCMfZq4cwTUsh7;*Qn36 zWA+ElRR}#|ALBR7=NRz$R!l=UQqLk>rk{`SHsdOU3%q|sxY>IT!lyX=%KHT3)h3nu z)`S67CS)i}e;B1avFt^vNzH2rsm`X@cgPOJZ$R&3VH^Jr;s+WZBK#upDZ+`~A1O5B zRn(%N!TE8IQA6?4ni#Zu1mW*Q9m0vCAHvJ^K{ckx#Et~Fdm%S!*LR3duY3|A$shL+ z7LNjr#7oSm-cKWS!L0GXU!9!7sWL7(Q2gsL(-A(kFUjiRB~oI9pPt@cN%fh9(i5Kf zHS-#=)QR=}{VPYKeoGXze!+f_`T-KEyn8ae?s6hSPl)WS{Y_mwq@aISZq*I(je>@y zZ-=jMLob294?K4)SW#n$vfc!(6F*Hos>UxyFti>#J-A~tt{b#MLjD0`SJwo@!3>?| zpFXw?&@l|H_5U#b)EY~i$j}F#8yB1bDAh-ncjJP~Yf8j61wB51EV1_(TF2#;iIe-v zx=b5#V@;WOO+hz~`BP0qe6OH)M?X*#6@%kMxmMh;>~E0NLIus<_vxAnv6CU$hAJ_v zi6}4ie>U^wnkq4yp$q(;S#JPZq|%1Xe7mMv9Iet8%zPivYKGSPmrfl3A4)qzYyHPg zZO2cytygJU)d2i<=0=rPQPu9P6_=^BRW-Nc7SZoj+L>riow!M*UF{!$-`KiCrET%I zd+WvhDlI&H0N#;*M5Rrd-tKJ>PpP!fyiaNx#S1E}-@I=Cy{Xc)#$7eN#Jei3rZG_4 zOMI%*ZX7xQr^4T;w7(5)_x2V)skEA9TlGG|3#U2c=}#{6;*I+~$IVimErL{xF4`{rk6n89msCKeAhoMLHJ1d{7oi0w~9r`*kamMSl zvs4L^=X~t`bZd1^`O9^^RK_y9o z-cV2rLtiLpYd=aeTV&1pEhY#Z%JqDjOBk%6vjUVhT|wdA1nsAwS}t#uf_e?2w6olN zTbNOCDqq%*h>;b>Xe+j4cRZu;rjZ{$oKE!37 zg6`vb9-^R+7Es#B3K}+vpbHhWv4WtR6!a!T4=U)@o|N{If>tumj}>$`m&ZQ_g}!}( zB@r7bCFl&Md?^JrE+S~6f);Sv5(OEYc8r2Xa@uJM`fMTP+oYiB^9i~`LAM`3&=U$8 z!F{w{L7hD6zEaQ^Ekx-bC2N*ss9r&9hf~^61$kMXGZeIfrF4LTo@EIhub}D}PW}_AKJI=R2 zLDf8Z4pY#MD$3WvkX)x1h;t?6?~Ao+fw+XBwf+fMs}_i>8KU**yV||Q7Yxywv#WNY zICc!xg;p7F-C|+EV+d;oIvHLb5n)J{utfBhY5s5KZq@OdvI-LOyzsIOQP95{&Im0P zqZIUgLrL9IFX zIjFhrAaS9D{F{f2tUFX}VrZ>@%aCz^u2pG08m818CT>w_H4QTW-7V9&eTR#ObI`oH zBgFeE-%S;_OpCj!!oMyPKT~e13D;fGAa2@QPbYA$BT?gn_71}Jcnyk z+LF35K#st- zHR2wX*3UOUw222*+7Ms6w@qwiXr2G}OSkGLi{}+|%Tlj6S-hs8pNAb#*Dl^xP|x9q z0QyKlUCWNH>kwZm=wHjSfPPdE*@~wKZ9K_k9ovehh@gUoPgzsfDIyA*G^GI}d)n$NS8sKlepT^l)!q3n;KaI1q zL|CQ0<-5suwy08RpZj{1oGp5*v^hvSMp%}jEO7jt`K7+&0sl5?Az{7`Q=%rjlGP@^6_rQM-YD6`CON{=C=gZV-Db=!_W) zwHw9x3|)XrcJI~Q)NO9wB5HBsP5EXF`nK*C;hQd@Y=c(+M=_b9Cp>)v!TQ_8eK{yr zf2Vj-LHgiW{oUdzNy!N^-qZD3R*q= zsQM?x7KYY|p8ZzU|6RPJpk)i&>z@+!vnby>v25XK^-qiO3c7Lm+4aweKQZ*E-nsm@ z_0Ng76tr^2Z|k>-PZhLj{tfjnh|1Zr^uN!)z5YdkgCYDqs@LrIm-?5)#R@vEYHR(= z;zb4BKL5G;S8yIjl_Tf{s`;py55SPC*l@TN>UMe^$^}L&i0HAYNC{3oX+cJ`^Q;OD-?8?9=dx zn5>}D6^Ar@F78m!*}XFjUx|M!=&U}OhOb4{LYZ%WK;MYb3YygWq=s+BDg_0WWg5N{ z4=ZS1uS~=D;%fyRQ@gg|2VpOgT;6Hk(D0*JrJyN`FKqZp_!d*zIzMU5pG6M^k;eR4 zR4RxxrtmZ>h%~0~^j8pROpj-ff=FX}JR=qK{EYKV%`;I!+h+_Y(>(tlbMFElXH~6@ z@BPk9GPyKOruQ~&leP$jHZ`y6Cg?+Rm6x2_wVeC=$N8Gy&>GvddRrs6>??J5O z0^tm^W+6S?j*5^~j_hp^#p4p`??UvPf?>vG7$ZzcRi^rzMsR zU%&D`#4eZE%Q`!0TCiAO>q{5bciEg=wTAV*c8sgmuzuK%{RM0068)$h3&EO}=qDw1 zmHN`kL*q;Jq_t8P#GW2sq5mQ=jLnrVjgRQ-*OB%}prYY#|dN^F-pdft18-H0nx z^l+{DgKNgzO#L@Q3s()jx#moL zdV;xJ6<#&$N0FI&uEchQlf!PVnW=Z!v_E35nx(I_Y2~FmLbLRBHti>8jJIa%&)Brr z&saEUw*I0`yI|-vHAg>SV(O=-e4%EJuHG!=sj0K?!HIKuCu6MVfts^)Tw+&+XH0&e zX1?x{ST?+9^7jziX4Af3`?hY>AGK*etvyLK>W|yBmzsW1)1*IT)820S31XkMX>Y9m zMa=@e&!&~co<;0VoA&PczpGiOzhTott6xIwJ2q`HWVT5Er^I%J8;9Invq-;Z)9!&> z7VBV_v?2UcXx(BxNMcuocS9~wJF4SPZJLE1TcQuyw2|nsCHfyW?V^)kt68c8-K-h*kWT&^V&xLM zDttR=%k)s2_6TUpbd8~@@1T#C>r0YMca<88K3bs{Z;_ac;uU(8#Monj+7;SAZ=R>y z4Gn9)xuW98tmBpqZwgW^=Oza*rFS6#1%*s&sbqu1*iJNB8G zKZ;zhPqJgNl`AG(uRkm?c=s4N*XuJSM!)>#n(K9gO?&tJRTK8;s7(v4UW?dDo7TO2 z!-P-k3vJpJ%R3Njli168#W`IQZqS$5v0KmSnQ)_iO=6Gfw@2@oaFc%G6RhT zbf3OdV#bgBw%+N+{#E>dbYAC)}^U^%<7FOU*pzg$WPpCvP^fOP9Pg z;bGnRS;ig-{I&5P6TYiIE3sYbdn-c|zptPF9BEl~-Sp7J|IG28exMiMLYf&zKhT>b zX6)b(^d%BQp2J2@d`!38N>0*Fp7^-VO6-xquP4o#_%r=gLqmDzPW-uE{CVM2i-xY9 z_@ut)3r@N~?Nj=o#2yK3I`1PBpVqH^(Qy7|VoA|2^^^M;yFuMOb^FBs%BknGI=tU- zJ{I_M)w6oM#7wQ9%i(-ZPq8_>)t{@L(;I!9zslkKl}_25b=Kt*b7{ZUm)f*nS?>jY zos;f)eS=Lq+uAkpd3~3}*qb5s8~r1R9o1i-q!peSzm2s%s(UY-hS+No%c@k6wD9dh zE4gF!Cno+@SDKjKk4F$ZTE&_M#75e*aMShR?66~*rq!S&C1xb?+njp-)@|Rv)a6Kb znQ-n>O@Uh`{!Z_o@S*5>?~-Zk-lMu?IoLbqvZK_i5cnkuUYUvj3lP(&?G)3fV*ZR z`CRTHtXMT}C=m8yf5TGgwRp5oy*d{UfvDT+9K6HxL-1R;b3vY!V;pKO<_hFsAqNXQ zmo<{-{&9qV#cIy7!{oufrOnB(sl)#bj4pBV#N8a!ANRTHS>n~z49}S3Kz!p-I1SZ= zUl(Z{zz&GhuG<^P|4Beg^+-51oZ-6>4yXsBq?+3P-=y6s686iVH4lj7gVGncktB5+ z2#@RGIs75J?S4rbY3EBLHri{2pa1spY$-0kqm5oTpeknc$DE5(%6y)nGI)QUPmUlb zA)W?Cs{?Y@6jUMU7eA*z{3tZXQXd&h{!b$uRA(16A3x8(7dCAtwA8jUndeid<+kPj zMJXSoZeN5nl0iLiDO*UiU2I*x})_XI_ zQ(8-&vsW?gKM^j3`Am(+V^aAsk4ZkJ<~wA(bRZwC3@7t+@;4Y$7CG@CpOk3ACN253 z+9ewDg>?*@oK5&J@RrompTAaqe5a&6@nWX^yo6f>-hLJ_{yLcUn);Yj_Y0?=XPQ{8 zA!0KxhV-;r7Gxb}h8X7AcYkPsdi!`^fTkYZ*3phK(h0H1knd4=4P#gfE^& ze(G&Nt%e>3)gj0#q`nMlk$PTuOt~w-ncE7Z?Zg|)fUm+x*l&eQOO0f_a6tT!p!&3U zKE?+iv}_5O5^s}P{)N%R8?E@VFKl?&j{)^LXvM&qV62LPmy2xu(CAgs`OLwuX`dL& zoJT>n7?sd=JccSfjl&o=*2a(bhYhDG(xM< zMq)GZth^%`+GJQl)Ha|F!;^H{V)UPQ+ztk`)PZwp4~;xuM!C5dqk*QUnAYJm`B29K z(nmquU#6aXr;!i1nA{9BbH^Ce$4P7QG&vX^hGAWs3IF?4LNi`yb0F>6gwMfr@Ln^a z!Os)?(~ujU9uW8mfwzhD3^W)6O+F@Ua-+6ubwJ=`=y|S%|EJ);KP!M6*Fkk9Zr@hp z9hPt7x#*kp3Apc2ho^aF<5do`)qXu2qhq$(i{G1c3C>ATQ^1fKCE;4YQoLD~HwR`4 zY!Da~c%Hxu1jYm=1a1}BD=;f?x4=DsxJeH<49}4<{Gi|u2|O$qtyxyRg?le*CLk;> zAfAm0e5>gsH95eOnfd_N)#YmHnmGs`#LBroFcmB2q3VXFrK%xt16Ifh@N2bKPJpWA zxtnTv?q;u)GD$62g_{t#;rvN8MZ!}gJW2g^~at^>C0U*9rafq{Y_J;FM7nmOrF zYpeB>Nk6tSg4t?W=ltG^1&^HiDtJ!8iG4<3Rp@7v{%(y5{kr8}R&D62^NRvo^c@gn={3SH1oxu0)IHW`4|t{p_gK7pv&Z7?l|2^k)9kT$ zb7qegHNDE-?R2x3xSVXlh8*` zORMh$Peo|A{^iu+p>Ig|PHXPUF`?&$e-FabLN7|V3iVkYs?w}Ur~2#3bJYIe73al5 z`$LJ*9ihjOR;$OYWh-|e{O<4_q1QxW3EguJHR@-Rr>Q%oU9sSE!%wx|Qg4rbIF!)e zI4J}w`#qt%r589-j#tDEI~wq}Yo`{y zVR2{un3Y~qQuGZSJ7<=_g+)iL@xbqu=NigIl0!B7y;{?flmvDy{!~%9PK^F6;BVL7 zCaJ!RJg;2!AmC%`egOEf=Klh`>*7BZJt&fVCwSV_e-%9#(ii_Qa46IY%kX%pY~DTU za40f=bMYk25q-?M5xe;@q}>S&wdinY(W*}%O!+(~QaY+1!X2Tb`u0V55-Biv{H?{& z!1qtbsaxP8oLWZ%V;Tv0N*xXGHc>RdJ5134Z(~IRyzdhY@Mcdm!243s0B=S`1H1zj zLv7K&dMeUh5O^(eZ}A0zyT*T~xFmFN{K4Ww!FN~u1aLHN=^P6FH%5Idkb;yB1;5-( zOmGO!qJzBQ_D(2X^S0g-nBDMv@z%iiR%tawbL39ZYgWyHwzDQPq(!t^rQsQxy>?iC zdwiuTDPphbqMf6Lg`d;+o>C1sJzO2eesaS^d@A&XQ$A6wi*5k*u$;Z`(Nh{92t0>y zb$E{C*#!RYS$p-5*DVO|)o0GuYKh>NNPjiyD}l)df4TOSa0~FSt98<|?b5TInoqfO zYCie0#~M8T)RJuA_mMM8_E;I*>#5SOL$CH&yq~tm;!U({VBf06C42RQ7u};q6-}-F zLdmG2C&u4i@}Rz=_D;ag>3GgfO34PxCOlNKUtbpeMakuw7UK%RUt?1bud67{$hf%C z#$36owe(gA-vRj9qOSsCLmHWYWdo0`nHJn@-Ly7X_Nd^W5d72n<+Yd}^`hc?)YBME7YDI} z4Q+o>sILk2HNjsl(z_Mb>1$r5>C?9G@ij;da@WdL96iN@HWBkxTz1FFv zV+KV7ydjv?PZiY-IvT+7y*e7$Uc!+=J2}*%79ACz;i&%n+O}ZAT6OXqqR+KQpptM%6*%$80O z&MDHyXn?m8qXFJOoMBoQe7A1Bo`difK+X$I2-AxwzTmk*GX%3lFmo(gk2$C_t=~(v zqbo)QUaGCFs1FV~Z*4`3@T>!b{}cS$f}IuZQqN8)y*_v;M(cyYFSg!UaX9cNjA+j6 z_g2i1JVym+k!DEF>nx7bbrvmZx%KChzh@l^Y&;<}_`%@e1tSJ$q?A2Hv2&IUzFhLZ zLh_#(V6V*#&`KZGU8igxd{no#j)7(VR?}w&$AX84e`oMD!hfUiKP~gct%A8jFb_-3 zAC?|@SY#Lt@D31q>O#Vka91cA;9be1`USCUysLPpe)6JoD`VD|U}Ws-BiMQa)QWE%3d?(DMuaT-6|6Wv@OX{ALyUWo$TdD0tRs)6|QS z=W8~k-m(Y(T(w)*)Gd$f)lV&17pV`Dn6zPkLW$f%;1PW?hj zEEt&ZY@}BoSo()Z6)Y;}we*rp;qPrJzSkNWpv~!o3@_8w623#faPo;m?$8G=W_=!j z9#&vA^4yRLRij=8oTUB+*rFFc66X2ujGQc0HPXIolZU=l)eGBku^%UT< z>Mg+MRoSo#bwo`9d{Hd|d_{c(@HO=*z`v+(0luYv4fuBz8D62@Q%eDr-U%4g4*`bt zD}d#C@Q4aksZR$Ss$+m7^-jQQ{e8f7`sEQ}^?)uO8CDPLa=?SS3h+@q9Pmea4B!*G z2JlIZ7nj4m10%HQR0{06%B=D#}UCy+%0sfnI8R`oz8R3{NrBXFL;^#c0@?h|-W;1PjpvhWL> zCvd&MK7soL9u#;)pgLLVDR7>^^#c0@?h|-W;1PlIrjUQVz=Hyh2vk!g9|J$k@H~O* z1@;N7sTaJ!^#c0@?h|-W;1Pl9RLM=?Jc0WJ9u#;)pqfq|HA6TB&J(y^pgN6GJ#so> z%}hcyOE?Xj&G0;d>jm}++$Zp$!OSI3-(1d^`y{+i!UrXMP{Kzfd_=9tca`rL^!Y*W4Eoogii(peK40-r#Y+{hR=iVDF?jmmd4snM{^;P_2Ok{#o5BAY zJh5_S<;u#|%4FqDl@C@vUiquaH!I(%)Kw)_RaGCVT3dBj)uE~k};@#4Lg*heqIPJ1!l)li~FV*j~TmEm0i1n@+X4T# z{7XmfK&mUGCO>P~iSYQj9|vrjbS>b|$KC+A_+rA}%p#n45#bdjTZG}eB)lig@P7(*p5(t* z!V@Gsbt0(`OFn;E$?(iZ!cUJN{GGsG4`VnkJP!!}FQvrvsl-oOMR>l1!xEk=;Wt`{ zUveJdz3T~QOP#L}X}onNG1CNIc{;--QlFTVepqTUZn)qV5I!e4|8_pZ*9p&k5`J51 zb>#};W0J!c1wT$&eRLG@3q&7gt)M=fRdX|7VjVT)@6$gIc+2?P01u9!MwQeNes4B8 z-xT=$am1_}OSo9V2df#rQo?5xGoSgQX;V-C62cSLehtv*YWsqF5q?k7no>?2&9tVh zH;W%cxJ}^QYgl4(#`giU7m#OABjE(8)&DGFIKOV+UCUH2M}Gj=G5lwM$r9Gb)N1QR zPa*uP^PUAfM#nCh_P zcDJN@UUD;Oe=O8`$@z+t>%jR#fqz&q6X9VC8<}=A;oi~2+}Oer(=%CfHHP7n&shrm zIw}2f>5Ecn`$IEXZfYgpAJZ|M;gZ!C0A9Vk6>!ArcEBC0KXL*sVE|{97A&C!`&W#3 zIiLj_SOPc_IE~Y{GK5D1r?Ea9gm5+NBi;fAXsL0qks5Dy!CS?#iXMV+EuaMpISk>6 zfEFy}2!u}nv|ueqA$%gB1&cWb;mLsfs^?gQPXXjR+{Yt470|*PCh>kLbp~>>)S1Ww z=dnm_saZ&eJ0nP8sX5@a)LCj8U=vOVEwunERtxVUXQd@W*!I8Z^9|7g<11nz?;>5 zfS*It2IyyvNf*c|QQ$r+x^yUp)?ZoB9dh9qOm( z5j-c0@LlTX2!9pOLaB!lz8la&*-s(-bwCTHK7;VL0dZ$j{TIRy09q*fIfNeuv`_=Q z9aMb}&_X?agYZE>+$vSSL-;=dEzIjj5&i)nZh5E|5dI+`?v<#Q5Plrc!n-d2fbdTM zE$kT`L-?nFmin3cBf>uiNTX98}}vq5bG#HiP2A>09oQLoQNI01;! zsv7`z;Hf&TJ_?ADs23pI2Z)iV7a_b85F=4X5xxQtBT=6VxLYp;<`aMzcX~O(*8pPN z>GKf24iMu`HzRyKAjX|uh47~VG4Awggl`1IxYK+$>}LQm?(|xOKMRO)r!PYIbAT9k zx)tzN9Rud`fEahW4dE{WV%+IC!utU+?sNyjw*y-0n>qn_uigy!E!_oppH2e)TyF(@ zQm4Ur7!bOxdjOx(+X0`}y@1c?%K(3=cL4sE{uto1It%!m-i1`Z0<_ex^_2)e4~V;L z`r`=y77*Vsv~~lIw?3&Ssc&1f=re*d0Z$Lk2AmZ<3vf>GY{0p}2Ecj2M!@+&&It=( zfqP+>z6v|^ikhf5>L>L-^!?UzR!v}HU~l02fwuxW7!Fnj=LgRZ{xet{`cP?C2y7J(iNqt(yL2vDt)u` zAEk54mXxh6iY#YVr4`py+*on) z;MTz%gP$1u^x$KI-x&Pv;1QK$D!*RYT(zxgch!(cedIvo?#QEVCuwwxwv<6L#jXSlep!hFu!~M)eSk}!;IyoU5mS5Ua1V% z4f#6mYxd{+8txbM$6eHrkGmJQzWV2P1#aT?Py1=yU(3VcMpyr|pIeyEXWo9D+m3Yw z^1E<$e%gh&LDs*FlBM~4uNTN~VFAABQ}WYZw~RRc$6lO@`(>xY8#@DkXF~cj(JQmy z8O_Gu9C%G<;cqVf&c@$7{58PynGa71?;eBCGXWjjeHB#aS?|>Vt&;ZdR{Qr*;Nvwh%vLeXKrzgQn_-z_u)jeWBpV;WyRF)z`6S6;JNxW{1wB7tqGm0*WoV}I^DV@v|0TzbhAFOXfOV5 z)_)A`mA~Z(-&=Ga{_aQoe!aZtLHs_1-}~@8#(FI{#=?wXtqC<+O(^%5;fF9AB&@Oe zLH%k;+Nv*oNS{^OXhlnVt+PtEs*jc)44gFRVBn9TgvIif4%&;q`}Oug3G1mrQv*-o z_f7o1i4)rHiY->AqTBjc#a=yWaKf52xEFsbtXYHa*KZ=tQ-ikR&7%+M^Krg)ek24t zUWC75{83(N&fJ-;t@R&n{ji$T5zn+XcE-}_X!pkCl0-VQI+5A5;F5S-PbRjZGv3%4 zk9GHKSsKr5O17uxZg7$@gH!97L1QW&%Ye_$f-Ht0WssvG6+b`LnP_iL_N3b4CKKZ4 zwzal4CDL0uW4)4GvXfM&IyGxZr{i54I(t8GxyruKs9&t4FDn&i>Hou?PV7DU#cQHXWMnSw>tB(Soln@ur&MEM(X zzfub#Pn}sP|LF#c{3T%LFQO7eG~JNF*Hbq1Wa3Tnjfw7fJ4-b}GPPiTElj3ztJP2P z(Qcyh+lg$9rA=RX zg*xe};4O)+c(NyBClc+15;t_WL*Wt~BF+`5tH$O@bLO7e+S-|Hi*=?+>S}FWm_YA!_SP%0Imw>R_GQUTv^%{8 zg>q~)_3(>4(1W(*ws;DB=&|XiA}yo>`5@#Uxcy{GzI>Sy3wiKoV{2ECzSEA&2dZ7a(~rvss?B%CarrI` zW9gOgjdAE_Tf8N?s%4>S?oDUnU3JmrxZJRfJ=2OUjd*5RY+ItkWE0E8h-u<4ltA)| zrk6p!@%9xx8#)sX%8uAMdg`98TNLk(r(8aah>RO)NcVQPsWhfZm^}$6>|d&Jv|Wl@ zff3T3VOIe`-W&uO8_l3w8taaA#M@goVb*L1@0_`vt*wdfL?#jIbdin$16{PFGuDmZ z{GLQ-JBIJZL`P3bT5i+(<5-;08VDIYtdBp=JYmzF+>?p!48ki>A!*C1mWI~VsbqJD zsgGKc1fik5U9tUUI(ECrq~LIBNzRWixTLMKr#;@TGMp)MFd~8&I<*sIR;ba5kiraD z%tGh`=tM1zZHacb!B}4U>~!04vrU z&t&)&Jor!rIF`k_3SgywIbsWw7sB%pZ7fW-9sa^ZN3Mmb%Z;Ov-;(AwxN7-mXdL{F zcxU2Lv6cgHNnP2T{0xNTy1M!F`EW8RMQ_xYj!uhfH86kfqG|x&4qKQN*{<1t?G* zvyimSoaA#HZbxC<9(cb5kSV6VZq^nPUb;{XM664&s#(_4wE+u@yiqF*5L-`I_dqPv z3fH8WIln+gOPk5(IJ||5BHieey~@d}40^e{J(g;hO6AuTzCk*Z>S=?^o=-G2EJSIH zZOQbcu)1^XQ#wC2>xS$z@k>xeu`vah7Ko@hP|P@U+ml|HN_H*JY>KDsK7nfa~!a|@C zUkD*O9+vI*n<2(U1dKxldjmFt-jnF9YhN6SxUe~<%At7P*78*0v~2~`u`JfGU{M7L z_P$JBf=r=Yn7z{%c`4YM0f{kp56&CIa)h0WW%jIBF4h)vE|N0N#rOrBOYuuLm*R*v z7t5TQo&6sbWsQ9D^+lcf`lwvI$y8u#wvRiSmVGWC23956iM3U30nB14tZo8p^}Go? zz1+9gsBF=A`d~tNyMHR<711SI$!ck$EtO0sH)iV2Po%Na)ST&QPbBMDmld6{3>}s_ zGe0)8V={`T>Kt@)Jhd%>edIdX(Ax;-8EaQ;BI6gUet4hDQ>!;&_po^jQ4}WK$+W~M zF|z~^7K0>Rl^rGw!`erJ6n9pagkUB98}nu z$;jxJu^nZmc92TWa|c>?*rrX5SSm?9`mdj)&3Q;}i?k$HCX<*tkdV>lo(-8)++<>R zy5hdG6K4C3k~tU@or{RIx3@0uUXtu^I8yO0YjD2pIrn{e9Kkt^R*vI@ZCDIv8<^HU}%uZfo|f zxJBdgkZWkJT)QPaf=R`<_9U>U1KAMFan=N@5+bqFu zXuAZ^6#Cy1cBJYeOqXE4hpiPBDo)N00moe~BID!b?t`RbPOPLGX^Nx!c_1K4;gXpD z0HpT9DcDBam34Emao$#{6zg+aoo*65xuFCkLqb>-xRqpvQa{14Zn>C^IdryBN~QxS zDMZ611Sz?>QulBu>gMT>gU=sjmQV-`Ev|M@>;6QV)+X$}$GgoC?N4`9#w{!d!R%dW z=TLI`A&262Lk@NowjSAbcjV+yW44bewXi#f3rokr7yK6cL{1{z93+@|+BQp$GE6Y( zaY3VCi{+PfY{pV0V`6T|J^--CwG1_TZ%MLo!Vq;sM@I@9Y?-)&gM^(R$V;)ui!%-E z*~YqEylV^C4u`oVnHzJ&;m~_*@i_6M+3T{GFWik#awIAt_6l}nC5+>_4WuU0-lDfD z34|~?0onVK#+eX_p0>-TiN{iq;O=G^KJM0Y%-hAZi*;0Mx;i;ax&#P66JHADL=9b} z?3yuYi)+b*wgH<2xtI(D==m$Tw1m5ror`B0+mp&Aw3!7)E;8oKK~jU|8{JB}O7CJ; z#<3&PEm1jo_Ql~@W0QP&swI}*>_ex#6pp;bd`KR~r*d2@xE+Fxrj0c=#mC#>>p;() zp@Ks~N91C3Bt|9oVq#DPzsO8M(m~EJ5<-S~*r&Q`H8x;OCsIG1g4}5q*1{ad+Rm=p zXq;Z2(={e>jEs|8q%)OnPIPp~xNRh5x+@VL;|$2@WA88+CIw&J@j%k=6`C-cCsdgUr8>g3dF+?S# zLX7xtX(;z1hwvFgDZvcuFYNXaFy}7glhv6ZY)GmX<_cMw@ucj#4w<-;C0s{5H6J@w z;>U?GQVZG>*bD84oHMt+wKYv+CH0J^?el7hVLwYuuZ$UZLMd5VgV*!K=;Jiu0C`(K z92;x|->=Fri_uPynpx^E#ac5o+CAyl+ z)s`D|>Vqk{9mg_WQs|!-akv_jTY6K8j!ixieOY*i986?p(e@~E#=p3@9u+gH7wN}ppZ*xS*%mQj zj7UGyk(W!%MQpK`Hio=SYU#iJf_*3M4{ULDPASPl#YXaOvAYEA>Gp7 zlu1YAA){$*aEaC~--s)CIOD;uy<{?1g0Lt*-u`V%GTE7~b5=NDuER!G$NMC5c6aNR zZ}mOdU>;DO|VKL1ON= zH+Y+Iu@(9H%(sncN!kHuj~!|kf8>1{mM0B`PENGLe`rW`IC5=D#4stQVc^qsVzzNB zGr46uuegfaftx<2Oz7e!wW0?=tPi9_bIl6?)M{=%xN+`1xDmEmHuzi&)8}F~`f_qq zN^)l6CGqYK6ap6?YhE!g+zGLq!aQaI zvWH72&+U@tME7O|$(nVC#6HMb0nLp&dqQow+1HS6#@5s(+-2jPPb|(vU2Naft|E@3 zP&Et^qe`(2_}rL%hiQpK&{p?qpTW3G;b^--xK^J#69(0PRN2_vb7_OjJK*(Y3N7LB zsKGdv*u=~Qy5o&QcSwEEa}@vB`#>4{#_9*+Hx-dX9_LiYpGAR-nFYz%ap^{%h>eh0 z-`;m#65od2TaA0P4V|6;ZiU*BlnO7MYOXh!V@lG=e5Ob=o z=3~ABWgPM^Ji%*VSH3YHU=0*e*St4x6s@^G-BxlHEF8@CX|n~_~Wb1=08SL5kzG8;A+ z=UP!5#~PfdkUJ;&oNnnzEUWC<%1<#X;KDTHnG~jZbDuvq)?lEkVfNf3+G`rqKc#b3 zOgP<$e@Nxr1b2qiqR!+7x+|U#&|O@>I-Z$B;^Z{|sX^}RtC;z5Jcsy3`_Tr@zCCeo z=wSx|_QDs(0|34l#&HvN(6ONDhF8MwqF|!woQorJ@fWMJ{#0(a`DnN`ZC8Q>?x4B{ zbE5J_wSBka6vs)*zObCjYfkq(T!z!1+@AJu#&+5Y?<tK1MVJO5wk=r#M)|`GB@883+1~g%&#&SkU-RRFoYwKP$&rMBsruHAeOA`tb9O>k6 z8{zuBY_Et0Y^rzkz-w4a7tF&i!VRH#tkXlJa$@l4dUy`QihDd}X-}8LjChYiIpq5D zqWK;J_58RD%)zmyuKQmgllSAHM%s_!K#jc$I6al81@7#Dp^=swhI#37uOFxcFS2<# z+YSH*n9PhGVLqnPu2@GLd*WR&@9bKJh%+*eS*Lhj6S5wqQ+#+}3P zf7fGh{Xww}7z3EQd^b!*E%UL)pEvvP30y>##AXE0nmW^h4?`{XMZ4r8jms+?h;;VG ztl+Wik>90wh%%m%V3!wky?7zG{g^b2W;(Hz&(z0@aFls5R?LgFal=EhG;<$zDB&o` z`oQ?oLR-XBVejEi>D?RzGI1aMRL*KylJWo}K@mmMxl2D0Atc(B?8XhIbY^~h5ymIx z{T=cZqGgRsQw0gJOH-kuhi9f|pl^)3~ip zT*A(?5+7-8Z9&7GMi+29i`TapXI~R9`wg`7D$2_%)Om#EIY4n zU8S-|9>nW>|^ zdBn7B;oO{~#(KH&jbiBB=$yIJTU)7Oz(^Zhis>bJ4vbyFQeE3)ZoC4`l=;{VJsa^< zoui)^l5!_1UFU@CJL)om3gL3fa+uLFSthx~IfSU(HRJQ4e6G&HV#pW7XZQe2f99w? zKbREQKSJ%z*{9Oj(0)`dvg#dPLvGWY<4^bh6lLXaUW6;@aeWCuw3(@*bhFRRyxxk zclv2r(mt{E6Wg3c4a!`a#8njhGJ&zNh;Zt2BfgoK{PI+nOO)w)VP|X`Nbo$R#?2W% zucgq{vi9M&aYJV!mUeo?cN`$aI@f`WI;63b!ln(bX*+R<8umPc{WAw6t#=&p_j|32 zl;OynF82E-KxyLe+a7UFsdkSU1WVip8W#i65ESYrl<2-vg!ICAz!SGa3l+8R+Z6X>9(U{)|aBAb)FMFK7(R?h33D&WmLAa(_NMc!nE9nV@du~hqRK(b9r|z5=HnDu|SBzmW+2R z!BkfkcP3~b$ajZYhp8sl#OH3b+ zm>MWm6#2PX*!jD0q;kVJdv+=-Y_b-2QLg&C7>LacGl6|)&&8z+;Bd=`2c0gDF|%%z z-QY|SE)x031cuj`%)pv;Q^K{M#yN(CtK*6)trqZYLZTQs``-2|U>u|EnYMJDoSWOT zU(VCKqU+veXP#yrTs_@q-w%e3#gt z1N%+fIx{o*YVE96?Dd$B!n*P>-G}No4t*3`9^R>hkA_2WJe|jlf7#Ww56{qz&R(gH z*G&F&8+=IC#2BD{NPFt>VQo2b@q<~j17p*7$d<+$PTrNX97{sk*S6=5{>V&!M3jcH zU#fm6IOBefs3(ek=?W6O1+b6XZj8^RcBeWcC;NGGQDO=y7n=bF_7?BjbND!XoF#;V zqiS#%`L@&33Y!*fn{&6^ji?$oVHqp6urDh~*-n^wIkwI|U2{kn-2;*SP4za*eN!1( z<+%cIb`9JK2bNs6sN_uFhn0u9>@!;*8gF~!nXC`9$V?s3@?4}Zw#AvbVEb%fdX0c~;)VJJYinftYENj?Hi|J@)e^PMnJ8gi~h29v6>f znUP7GJw@~8E>m+%(e@)pruz0pZ*09|3b9%2voP3SOzCa}*Iau%CW^)ufQ0;eSloFx zbZ1+}#B3RvTA8xg31%QQCF8sRw%`)%zw$@s+5M^fc{Qk%07 z^s)Oh^P!i*R&0uO&hLfEvopp!{5IP`w#f-@Ot-{ibZvQE4}Hv|ZD@S|i%;l$V{agEIEqWUJmtgWnq-f(Fp+{VT~5ki zu^EBb7~|V3oCufNvgKqWP>LOb{lajwBg}veS|)c)Y@~Ub!j9zH0N(4t@`1L2+pWCU zD$jbTH4Ds0H{FtVzucjEHpRhkyR#+9i^vY9d2?b*E{3(lor10{nO=tp*9CdS!c!7x zQM4PE+!l0iOW^Jvt%aiz+*MuElx!0dVsG!dcj~0VR8h|plu_Y}vUp4Y%n>@{1dSY> zGJJEl^Ikx|_WirtVYUxms1#=-jJkasHv7)W|BK2{4#z3UUm-v1oVlmAw%QAYLJgs1 zGs_6+3wd3Qgxn>ahl1t6g|;+LCE=Lc%7$|cqpaptH_}NmfO4>HlERDuVa0m32$}M8_L$+ZOOyO@XHO7oRh)5=gDGrdDBMn%cw^k*>B#<$%SMuG z%{Y{C!`Mk?&j-#uSKsSz{ZH}1km4-DZN8J3ql8U!;){$|Q*-M+={!F%~fVZW3ckmrvWu%;rN858yxS)bp+q$SiZ_Rayl7)Xm&zI1( zv_2g9VS)N#R+u;Fy1C-5CvG^e1a7>M6hXk&!onQj;oTt>>FQsL~L;56fw)o*HW@fj3v+jkcy>FqJ>B6G*5i*`nhi@-M* z&b|!axT?W7wvzY)Rtn$FiX(Ow{w~8;E_UE67&UmoHJ-`FH?z_%r5=u`E`H&xSxQ?VaH-_57-^dj zUx>Vx<2z={k;7t8m@~N-0LPr72sJBJyAT}wKH37LV*ZQ3*NAVMF=Z3tY8tKndwf-rGvY7;_fU^YmOh4S}tpApB`+Tzfx9^^pnnT0R2 zOhX$y9cVyb$M6j}qaV|tfzXMw{2Zo4Pdlj@b&!S8yGGQ5dX|PXjh?C@1#tE6pJNnx zG~lln?QFxC=@*~<{yBJcq73ldq_nvgeLf&%`upd)0_~;r2{Wjjs>;JOynilDsLvM2 zDv2C8n!Ax#RBDL_d@#=6hu-)>N=Tv)lE|}=RzT}&n?OA-$A|?!eK8srg?^|}CP!0i zhes$Aqi9Jt+LOWX?G$ zx?LTSR5Sgl=0mQu=(s(2Ii_jp+t5GM>|WCgIg<0rSt$LmO*o}K1Mn?F z&AMQjs13q*O5xH?zhvEszMk3=Rj)3FrmZLjaUY*MI3xIQk|Hp zaq$*hocv(cXXd6_3NAWUOtA=@R2T{ucS=zY=6IpRlK2`jQ!-C{Y(YxlpiU!SqgE}* zo#7_%I4aS9QbqarlFI*mF7@~>Uz5}{hVob%UCQnp<2-=WYB>dMKpi{KLOLCEbLUG- zje+L`(qD~p)n3h}5u*{HoG332@FjpT$i|Vw0^q3nDY#z70FYBnbtV=%D`xm|+A!+O zP(t#hjKDpeGTw%K=~UsH90;*Q$I)t*!A7Z{FW4T0)EUQ5vs!AiS?ZoXPP+bX+ZxoX z6Rr!jloF>5sVV*ISUBARq>W3WRb92Z+)7wPhELMu(5rLk0@t>{5dv#-;zxooeRIZ%Go zVLGDzoM@3aqP8QwiaIGhH~inM!}R=|-naC&{4}(){k3V}8gY4>hCZ`BoIJS{?m&pW zVryFBgO%abHG#Cw(#tQk4^YxHe@TUVF-P``{&)Obup8UT8hUn7ol-a-&c4Pe@hr5b zDYU)(C^+8yf{@9VV~l#mInL;`FXd@YDPGB5jpzqBqr@*Yb#8ttme+>0 zDGT(ZtE*lOn3u8HwChd{a_vHaoZOzu&B>b~`pq9_E<7lfYAhUtfIU1g@d7>0;AD z#-W!9(MqpZjr+}68jnZN2Xn`d*Nct@^yh6rEsR&zj+FFWy!=%|emw@tX8>=|wS9iC z1n(>qOUuo;{E?+Pyiza0h%+OBZO`Y;_ZEzXb2dyt#@-SpKdoBel;fX)TF^ha8-V_? zS0IQAf%BhW~<@D?E3NTo( zbm3!xK45x!PDLha7F3==6{yhXU;$@9=njgfnuv5;1maA-uK1BPf5gus!sU zjhCtFxzTI3i5sCM&4_V}oZHmgRyLc~+?eK;F*l{vYHEqMJ>mDy*(c6ci06CO*sB|^ zTxw*c!=N$6s0U52L&}g8luY2AkaK94^-zH=A?? z`)f!(R+YGAm-$v*!`RQxwvf|SHHIzCT`xKPsU~vkg>A~Wk}gj+#zDDJl$OSFF=Cx! zD7ZUqR5m|3O@Ol~Zii6K4h#kAR|M{&B!T0CB7@)js@7n@nGK0JN~=L9(?z8LN#K|J zKZVkew#lx6XGF1*#o!2 zl*toK)pxCb1CsWT*|In`YnD4RdX|XFO98MN91`AqMqA_A&RMpV;Q^V)(~O+^uWZP9 zDk@VadvmNdJB|6*peAM&JXJ94Rtl6@ql`|y^iqG_O<;@O|HK%piA| z>4C*%*s_mu*W9#G+}|<#7u4VF;5MU$QwdY@sKL<#Qccfux+-LjIIL+}NOQE0nqa&E zmdA9QlDLD7PPVJx!lF3Q;YH&&h%#T;Qk!vFz?`pcn%E5gEhT9OQ~Wr5LDmI{zmrS zf+hR^M-A=U&x)-;{n>u5i;Wik|EP*v|Gl%U7PN@dEA1`!X1Ukuw9cp{MPAS#9Gy4h ztEVjNYx-*Ab=&${HvB^cV6B2RT8BdbRl^vpkl=Zt8cSDH6cL@B%%4cM2i#V8SR`A5 z$VI^#HH7J_i-$$Jh$yL1LK~t&H7b(b3(l}LL=Dk_A}|&W(WS-OK_Sh~sd|VifuS{_ z;u?$0%BE=4B0NNu76*wOqK9ZuQCfvHM3<;QMP%ooim}zfVjVd%T&b;bYMiPlE=B%b zx*}MrBRvGY$W&MDJgcH;SY(G)VX;lsBdfq~k#QW#-hrf6pcJhJf8U-m&?FONCz#!6 z#SSadx4U9QrJc&Ao3!I}QK^v2YfRx%gW}>)1^){v71_CM0=xX zIjhEo1&e?W7bB0)NBZ`M&>%!b7L{lzMGE2e?Jf5zJx)o@_M%g&K`A58&Q&65sVobM z)G$M-i!_~?+GQM&-suSmF|63HRXZ;jqymv_FTxdL0g7s@>guu8;1`+L;|uTwGBRuBht!+OVp=J9StfVwfPpMFvGhg|e{* zCr}BHmBh*kM)K7!pg@d{^Khfj{to9Jkoaz|0+R? z^t~PFdk3oVKUPIGg^~@G6hkjDx*!BnlTJSCK4`;^=g&_^;*Y_$Zp0-bvg78DleK-U0M?Y zV?|}SQmg^+qH)ZSeI(5+0IcAD3u|5Ep;D4<}ZbP0*CPo zPpM`ULBD2L6^5kB$`(c>djaKJm2EIT3G=hG& z*|RXn!&Xs6sSKCN5chc)EjuMZX+y{?FOr4*s6h`1Uv>cy7l4mq&R*c9UFD=*RYr~4 zZ4@#rU5*@3mIVVe7Pb@y;IJ9?5OnsUQebU`qOr9~XcMJB(8n}1_u0`B8Z#l37YEH~ zqmhFx5w39x&4gK0uwR3yB_D_?ZA*h7gf0|c28Nz%tH4- z0WtjRG3a4$#GZ{qf9;pF^+b)O&7|cls|k#)j%2rTkic9?n0B-pBW!H-IE5~Sc}A|) z!;6DVQVk(OGSX>CcqL_yIBE_WBPF^z%)WulD@q_55@aeFi)p}=a4j{6BV{-2w3u&J zr4(V?o)@81GQL(1M;Y3m{t=?h!aAYwmBf>;e?ID9=Ddi$I zY;1KH)$jRmak9X1ifR;pOb>peD*K?Mc@U$@!qA5W zwT#uY%506p(5N;u6GNpKE$C|w7ctIfUWd>oD?}C`gTK#7L1ul z8_`JLwJ>)hVC(yCl>P+{G%;zB9;V7N)kNFQ(Ho#fe3z3W%#A-b&Yo_CJkITGsz1ho z9>c%@Nk^3qM2S!za?2TlOiKFUP$z#?%8G-gTVRDmstIGscUNT-BA(qMD-bz*zqPoy zGSc_=NZ)TFeebb6${;c)oHvt6?Twv<1Q>{9ss9jB_VF;L1Ly=@2v~YdQ5Llhx@5-x zZfkg+j*BY;Qv(g-lu`i&MJE|!Q%!Rs^H?>|kemsV$Bk4^s00dY%@Iu6n}b5Nq^dYdA zu-sCFo%v^%PIqmnWFw7~v=o%dglb~MX8#NlZE_flX>${nxFIwdN@r5Cp>8&uC*fIC z%M@}oD6o8^X)VS4fcR4oZ64SYGsXVYonlEfxR~G~;w(JFne}U^@&Wv#T?GQp7K}^@ z=8^2zpi6YS#sUH7+GeFkhk~AizFG7+862WuFo?pm2tRCR&yeC$WLecx5owCdqmyx< zqN2RGsG5V9g;lTz{siUittt-p<3v#o7w7ponEYYIkuw7H%N0h)h~jdZLUdCFGQU1D zkJ+w?tl<#L{-(9q%pj5M0VH|@Kd_GI`L_|FfH6F1pCDa$t_U-6_5eeyiwVAi=sWl) zY-8cz+Kl92T8_K}9LqGkREx7rg1q+4MUxv z9~5BUK4ZTj**j2uj;lLlp6|P(Ql@Vtc7~r#-)HFi#8TZ+QC!5d=*w&me#_7^2rztr zt}zw^Xc~V`Eglrfz7)yAcijg@n@f0&wxV4u0=uRy8P)CG&sEro2aWbn!8JOC$()-XKJusZCzmo~_ z2^L#OQXGVTp?x4!B(z}Es_P1FtJvUZ?@Os3SwtS zRxvw6gY1b6K1U?``AP-z3FE?uI7W7pb~sJi!Nl3hYPj!Mt5nN8`LGcLoQ5}0FDQRx z1(uR1A4Z(cwCz5jb&@xP-*+`e2bQuJE3h1%yo!BAXff+5k z0~O$pICY{cjD^Rk05C`)DCq?bHxz2zGMcHX;^IhlD6kMMhZhuv?m{*s&MMeQaVqpXeTPEc;!4ZOA zRb5&fGHw?U8Y8=ex;zpU5{1F9SzYcN6ecyyY3IYUCDKH@eskK^=DvgH?lx!Ji~F`M}+_m4D}` zQc*8iB84$4NZ{-;ZixKBYFO;Lck3wO*mD7jSgP zjW~9Wh2@3-e`6=0iQPFC14UMzSQJ$Z=VZdw(K@imaAaRtXp=z}Bl+UUI+RF-zsUT9 z4!{sxDh=%)j;?1EZA4VBzWWs%ZbI8EWdJ-l? zfih=yJi>Ht+4vtInvnb4huL~H(qImxPAbG=o=Wf@A1cU1f$(h9$>~FdbL#)_(En-g zJK&mHmd2CNI|N0gNB|K;2qz(-DIir4MFa#D5JM7r@1RIgv3Dsp1Qol2z4r>(us2k& zVi&=N3p4TEP$!&;Yx(iBpiUZz8bOM`#wjo@U}t2MAYLYojBwKE zp)^RrBxzZc$e~0Y5-sseMV1vbSJ9_AN&nNv3@KTvDN>%7!G*FSEGI~wgq<4P_Jn^d ziYx^d8C-X)K>WfUgCZ*rWeUI~LDfZt52EBGN@`JZ4kZmJIf|02D7gsVkH} z!Snn*%EF3~5G}^vYV@)OT8cwl4cUjn6A%vI@kNxJLCGCdJu<1FoBIelzN<&A0i}>E z)f_IsLlzc?c#7YMA=nEtT(gL`kB1O0I!fIAigjW^9E7-yaGiT$O5x(;eP-LY5T~esD zxf0P7Tz*rfN#olHRcbOdoth2X3=r1AJSBrPYGt^*oL?plH_FHyfD0u^d4V)&s)7eV z&*&DEtOBQ~~Lb_FAGN9cB zeudQ8=mN+XcCExixW@A*LrS3{vkA4Qswyx9vK;IPd*X&2q*e#h54;0$kFX0J#5;8q zPfy}$EuNmk(*``fil;Y~QD+*VXHC#E-1PDYXk7_4|0P_Y|4|Ou4YiByBht_jUA$qS zR3=fofsjw8b`xV5@Jmfr1ca+1R8y1H!DvCqrXlE-nhuN%<}I$;EHFl!TNX7Lb&jQ~ ziaN%E9-$F|?jzd@C^?WWAJ=s#2riHUMw)m8@-%9N8{P^xxYP(hml^?bs0FI>^29H$ z*Z{VG0K*U7{kQl{{#$fYz$V_XaX5q2kaEil1{Ks%@IPoppqMAB2qnmt0IDw7k)!QE zs2sY1Ul>CnCqZKY#>n}qLf@pr^%f)-OFfCAeTCXSPVWg0}%IP~s}^5}}Y4dI()6h!?Jj3jzd!EHJ@B7Pvv? zAJm#;its9(BFX@bOU5fC&;Xf$B!DE}DuB6=Itr?;k|V)*!oC$un~)O!BQqAU*~N3C zJg|3#eJ-q<@S_g7)K%4CpDMf$z;BgEVC@@3#rL{U55k8WflQ)Wz!J()kPZ7*z$UWU zO;=ULNAN4aU5q9=VUALP`oa8$)B}Y6ohsll@R(o~R8w`qBLVNAnu5}_Gk1aAEs1JQ zg((8X2(2j48@1plG!*IsZZe(P4ZZHnlPEegS;IUPw2F-{3!l#uUE? z3V^;Hg*^BbFf^!$c!sk>kSU-yu)78%;Mk-Pc1BR2K}V?tjd(*5G2sfRf+kq5@Y&Nu zyl=v99uYUVxuT$jxWTuD`4#vLEOBTPNN64e7{u2@e3r#QN*$=G448tI5jM8@Zz-xc zegrpE$N}?ilnM>$2J!X+jdVwy#`mU3-&6pNMQS|Zu0DUY=&Aze-~w1M5s(he6IeLR z5oBouq~kg@Pn^P%u#t9za72`Qcs{ zS_thz_`~~-R7k*w&=XKzpydwN@Io$Jn~+}xPmoCj)Fb!{m{$NzMgt!am?j~r>d-t; z&A{3UwWb5V0cu4Lpa4>i03>SuS$Lz`jRtBvG@U}wq9iD$hO0c3Pd{y-2z|*Ct}3SAv+S5LVKYKB&|^J zg0Pc;i3b_;k>vm`g$4rX7IbJjusBpBVNb$U)QB_S8VndAA`_YsKzeA(AYOzM9Vn@K zNt?n^8K%Cv;j}A;^|Fk0IG}X=q3YK1qOI(EF}*oZ%mOr0KIa91Qu7gg7p(pSUAx&8|5f) zz*A?`9-K5$0Z&L^k%R;-j_@N;LCMHNF+OTBK5AgXlt-7y0*wG>qZCy5=(-6{)A95X zp0=PAI0#-E=Nby=G9JxL(NzUe=~mPLUA(|*)S#g_git_`t~{B9Hc%umUxJD#fTD#$ zPJw47K|M=%-kp=}t6R4|)NDwz7`-C+yEmI!^Zrkc|TuhHP0&jG`jEDZgzZ1EpE z;ts>CF(&>%@Se?NTd^2c43rapj;_!@8y+Kq!?xkFIDDR61jeyq@@-ih4i>@TNANHn z-;Qq^!L#P@xwa9uHWA^Nm5sGE*Vc-~wX?HhGWg+4t8l)J9fxPfWAnIN29F2VOe<@K z6_bH6?Jz9dhH1r(u(QSN*ftSd7N22b!@z7KxYn4BjSVY;3Gl6$7~hV`=U{9;m(Swc zG8tTq!{$do%?xW6o6F*2Tstc+gA)!_+Om1pOeUAZv1T)&x(E)>+KOkxf~OHo9-ke- zu;H`$oCpl+vV%8FYX;Yr!(g(ktl11(CT7j!Vs=(mEEbOq?X$$JE)OstVZ*RtvKVYO#>Y4|;S4(l!;T#eqi7Qz&Wf;Rg>%Dg`Ai0r zVP%U&@E9n!oW2#g)a;SMv_5V3jD2WVp4WW zbYxT-?bv!6jfpYXa4HpM4n*=MX^=_E3>F=uTVYHF9Rr^ep=6Rd-N!w^7d#lEn9t_m ztP=TjcgSGT+2$~q$X&mK;Frm^gZZi2O%#~{+&3o0ak7yky>18!O$dhOpB@f=-crb< z_&+~QJB6qhc&!Jw(-INv`VRy*eG*RQASjE_{kkJBER4y5LvT1E02eeeNr#_>V$UX~ z*jrk53SeZJ0lu;n$Rufc7AJ{BQY4dP=n(%dOYjgyqbFVi020ZWOtKPqVnl9C(^J5O zE)gk%4x#T7!Pjjz^4N)dN8>MX|8)Emc?KIW4gZly+9o8@`MTGKP}}Cizqp^k3Cj}E z>&$8K;P5mhE;`(tCL9nnZ1A5sO%Q9=A%UL`F3RI1<`*8X-67n@hQsCp&D&YA_?WGo z(a)6;jt+%&g7Z_vSDoP>`tx;mL;r8s*f^(0x!T-)CoJdkr#)B}xJs!!HE8_`i}Y)i z2Nzvg$x?h26yZB>LcC$Z{_b>5#vHy+z&4XhqRvu3-ZK^8@2tT{y#LFwz zT>tAda_C*&2Hst5v%&YS*bRC3h8y|3&G|~3#f;RiQWJK5z0NyL@o{dJdp~)B{QVps z6_*l{YGK6?_2koqTI7xey}Hj?q?0pXQSZr991VPO4w~FO*3mD~WjNi2e8`d;@4|>k zZep%~pvG3OyTg8Vw%B2QOq>g=b%%@T*5j^s=D zy;LEQB0&AO2H_3P>L$QHdnFPHQzVgI!EXlSk%D(;;rT33612mwE39#c;Jqf49WMjU ziQt+8@6N!rHsp5#_-|FA9F$)Uzn1~Njxvd~5Z+ZlnH+fk9r7LojiV#{Rsu{G)X`0i zL>dM8(ceb+7Y}()LS0n=Cl=o4L;eMD-xKNr7C^cSFl`~v34k{RuHVCZS@`D%*S8_h z2)M2Tcy&;(9n_&og?>4MCX@IuR)l`6A6Gk{vCiAq=Nv;`tLdR(S#8Kv&|p-_Awzcb^Zt<`vVeE$$UKA$sjDCx zCak4%w$2|IN;>U10)<4jPvWyNM3Kao)Ysu9QwZ@#!uqu%pbt+B@3n*nz?eS+`&}EV zp;-9O#fF2W?$2ZB_l^i&Lp4!@chjxT> zrX8>-Rc^wnB$qVwQDo;&X(eYl>PzPjo?ihVQz0NBHAohbWQrE*5_mzG ziLb|h=VB-viiv1k685jX43$EW0AaJlli^=?G_)H4izX=|ZzOLcj|hZEv7bi(u`5s5 zrO}V_5cX7S|_bkAd_qs5XGlKWGo{7 zFD*3+MMR-NpbuI&pO%mw7e`A>q47~5FFM(@bKZD}+JbUHq(capkU~p~;v~>=_$i5W zazLkQXb~LH>G5c3i8Nt=92$zfkV=bApy5&LXeQ&aToYPi1dSum;=&UKJPGG>Iq9i< z+IVK}zYi*%21>8g!~_B=6{@D0qIf$rh{i*MYWtCu-T2|@ku(T4$K~6Tb%TlSga(VE z$Akt$sZf-eEDu-q_>~1x6bib+hY+fK9(0<}2!eu>hC+Qn@Fg0AVT(@W(aCOt2u?JJ z!ZkCuADs-bMv?j+P3kxZYDr5&5yNSCrxB*o z&{QDsDI^>J#CT#95mO;Bk8A&3mK4*UGSj~-a-QpO%N!NChjjCP%7Xu zbQ&I8lO{k8-dvbJ5Xdx^n9j8ER=MOcB48*?WHiJ}${|qj156ZeI1}bDm!E`UB-2sn z0i+cSCLV)HNK)cyPA7ZeAtwKJD+OE!Z>A#w>hHFZe3eYZCPg%X<0uN~A`@8fm|3C~ z1@Oe<0frM3Aaq!^IW0PZmYtZ6v#<12ggp)l1Z2U<Nk{^qg3P0VqDx$vq@%#HS8Hlw>mt3k#Y%j5*BTXcXH?JT+)QGTc}i7>Kxh z8e}66hhR=%3q;I3k`Gy8X&I5EuGk2*D605Npt)*m)WNW%G#F0{I98AD%^GLL7ki zKw?rB2ZGY_?FF-@Q{(WEx`E-4Y3P+93DM3_fPje;Kc4FLV@nBph zGA1U#7!hTLvNhN>;LE)s$WDeps>EcW zljCuy&?|g+k&r9eaQ*~a*vifg>#`a66vfvB;UtB#LVP+oPjti!<{AWCO`v5)AwgWQ zOA~Am=rpeg8X=xQ96>(JFsKq13xs)spE`>s1um%o*N4EcG!*R>!h6y(_z64+@+^=< zk1!8ppAzB=g}|(;`xvYXiS04ENo@aF6<|K zyTE9Phfsp9qSNTK;jo|s`eC=1&W#eoB#1gLF%xY@FmW#->LeO84m3hM1|SU};Y!?H zpuCh6cmiYaBdz%)!m^8kvkfD({kMf;{yI?WA43$#~4;suNsY_yRkEEs93 zKv5Nn_++r)3?zCM>IBNXUvdo5q_?LLyunC3vWS9lIT(#nr?D#{YtCONab z;qk-zqb|z6wS1~SoY5h%W!i($FC4KT>B4D}w)?*px_E2^gDEk6Ph6~Kp}phuL4#V@;8q} zCh@{i1OJQuY?~1#h(AAcO%vXA{&kbcMlqB^3H@3^2eZ z^M8N;{TLwQ1Jx6b7isRuP&aWe4g-c6wER$I2j}S(~@SvWgy8PzWfdZ!z+r) zON3ttgI^*n1Il|)`t>*DNCMouL3$1h?8L7VdI^6BB$~gHe{OI?#t$u^uyus%W@OPq z{;bhoAG{QDI*i8lnL&q(H#R7C6$l{Kv{&nG`w5_v^fsO zM-V?4+VDRagc3#4j>FsKNuol#gop9s@ZKkZPYg6#k#H<14RWCo==_XES`W;I27N^R zLuY)=0E#3Wf+~2>S9B0E1sr_~M~*})$8muU3ZOa=RUljlDGc2qLnRuQe+DNWINcCu zB~VOLbbLTOQh%Oa9C3Q-4ChCx`6HUKhXc}Npu^6G6=^UdJ5!z*2BJMQbN=t|zYYWU z;R6zA6p#5|*Rua>(Ek7iFh{6_LLp&=j)t-dW<{PwA5_S4l!`(}O?ae6A(I(On1ZZK ze^n`pwhRdyDy!IEmMl#!w4sotD;%+bSPzLOYM6o)nN%UYl9Ert3?#})cYC^c%2d+g zl+0l#wo{#Al-gZR56Z77>^=)Cl)jA>N*%9|qJUp(O)FTIw>G}q7tq4r69!xc?l2Wm z!^kqwglxP;QX{2hH7O(g8Jd`eEZoRzDh6>7pl!n%zaRIt`>&F#6-V7lsjLfZj`KYD>Nc#jiiu@sRq**VP&8-9v?8i`g)k@DUb# zGByTo?Jygrwcr*@`;RnD&~&L^G#x7>8%pAcEJKniB&)%Yk`*b1WHM=~-=X2=JM{eP z9YT$I@0zq~#gRut?gwo@_R-?njQL?_sppj&DZ4$g+G3a9eNs;|n0v)h)p${geHJ%@ zzB8=pcInq?bJk5O9XV95x8wR~FAGiXr-{d_He5cOcTCRC0E@6LE=^o}cViXx{gjp{ z)9AiSwaa%`zwpmWJbspeO@05tx<58(w5Lb@h;`?b^BW%wDYr-)`Qq_fx16h*huV(y z$yNSpb?&iI*phQs`o&YOGRMT2T&Srf&s$1ypU$tbI70#-p z08Nrt6_UdMBf*#^46~lGv@)hBD-WbB18&-+Fg^58Ra#5Bo15ki%JNLdc_WkCAL{09 z>e20jV=Cs0UTa8uVS`t@W3G&Tm`rXl^1y3+slm z%4n)Enef47JNYez$s!r*)ThXpJJ*+R&}EwDt~NqNtArq73@d z!?9tQcZFBQ;3D^^w6rAn?2VfeM~{!@rX;2&Mx@cXiSd?6vC-(MB`Az|pq@;%gjTsG z@_=xGX2URB3oC{NP$))+OxPGs}h0zvad1HOE^_LxYTsW;YruL?=BR7OiEuXur(OrTH&LUyS1E zOk%CObAda1d29x$eSEb`n%v1R^N%!da?uD5jH4B?J`TbkS8S3GXYx&u1ya!xmo&i&xqzIUSh^oK4dM$K_PQf%v` ze_ih*HoTwZfWe~|*t{w=c-bRjp01@ueC&6n^hX=0ji0MeXzaLez#MZ}=DhnSr`ds9 z&X2fuc1x~wFO1rHc!g)*WvV0<)6G?P-7L;tnfiT^S8>j-u?sDu+0Am4>7WlRu=AB+Z6bB4{v;cp9n!CS` zy%ociZDEDEI9u4b!neG}m=Ve+rK#IxXZ`sp8PQz+@A+nj$*T-r`Q$SZJ!68n%N^u< z^x3lG+ZW5Ei0mZ|tn*fCOKcT}Y~R0mj=IK+oQ?CyE2(48j~&u`(3PpLXRXVtZFZ{H zb$6cmoPQ#QudFapDt%y7xq&P-S2KQX!RHb`>&eFz(uPhn@@d?*MUNfd?|?}J=U}yd z{Diyrx2m;=_3oIp`Q2Ey_Q2zso0e;y89aZj-tY&-)b}b$`&=!)97(RWd`WVRQhPE# zKKa>LnhcXwzFS`LT>w?H$hEOXt7O{=zViLg0Sd$4m5>hV2gnbIT2Q8}_5O}$Kwyrv zlAPimg^q2nzebF`GvP4h`Ld1XsjqbWO-}YYTcc-JCEGFAa;0l}kdSXG0H$OlSY+ua z-KAbRC)`dvF5Pcy+{0i%Yu=7d49$r3@ur_glH$uj9T^?l`_~+2Z&$+t2!;mi3T|!RlYMqe(VXopFE`D3; z(+_IHnyN<8_RGz)|3E)?&G)Fi;WD3o={7x_!q0W1$ILQk&$#*MV`IMG;DqsmR$8y$ zIrHAS+|gx5<>PMO!E^#E_BD-ceE)sb)}qn;^^xozVIG$EJ~Y@K>G^Qns7orfZglsv z%Htm&-?OhSc&SIhH=5?#pzOl!sm2S#ysyk!V0I>aMqr$7m~UFPwp{Ga&@tsbqsG0v zb+z{P)O_79+}*v$bO_Ztnf!;;EUpK4bEvuiSmKcK)Lw zmUXw@6-!&zNH>u~f`>P2tJ&<9{ob*+aYBzFiha8)PujF*!;-CrXWWL>kH}Jc#cbcp zOx`(a*cz-*<^XWG)dYuAqRl3+Hq=;gJ%ZmW@ki7-nk);u(A?%>)Jp zdpcs%_Dhw|XgkTaebTIm0rbu^Tq}6yltFQmloDD--JucV` zv@PF}8B*1we0IIY+`xfHHz|ZkT^6#MvA}A^U}}g}Xp+g_rDZTF_>tf}UCK&ID8HJt zG;AS?FsiJAV29G3EG>frhUGx?jDm!`uMG^J%YA1QH*9Yg`PT}jTJn49XR!f}HFO-dgbYko0nQuHq#{ctrQAnGFl5p%C_t#B@K`t!_9 zMDHm;+FYP)oUsK685uA(Ps{^z6W#-3v;8ZK4NVv{UjXXQ5*md}8g1v8*Vm)^dE%h0 z%$+gMRV@?Nd3|^umi}_+0E_Fco0Y!Rw^%S%8J(TrTb6GSy2-(E=)RTf0+&5V+P`PV z$LyV6DIXl4Ip@_iDffu3uUba4_^jl6BJiBWgCUm=Bt2QDvQnxl@cy0|-a)O!F3aA& zd;RJ`kv?nSp1>t<{EeoVtuEAE*t|$iueI6dWbaK7xc!mBB&vxdj3YWg@#=;ygCrQuy%-O(3GtAZ8;6CJ9{c6S4d#y<>EoBwy1m7>oTGu_V2c&8=GF z-)l|kvv=Bsn0130mP_tDNOrhRnixK~;rz7PJv~3Grp!LN%AuMvDCT?g(voKNb?Q58 zeC4klcfbl|<$!;`7V>YcD5SXui`hTHzcFx&0w)l`F%O1z*WfP)-CAMj_MelCf5*L7 zRK{(+ciVG;*@Renucm{|4^A!~VdT5{d}B|aK5DNT);0{?oQBafp37YgDDLjHNXKQt zma-76?=4d7)A0viOqWyppekMVX8KwEdaFKDm$$Y>>Y9HU|74opvnM{QDvuiZ*UkRy zenH{l*y@WlF48MMt%+M0dENAmhks4c#Yd(dbdya*!$h?zGJOPKm@G`9Tn z#A~J7pBj`-{CG+8o&0Y9c)uO)^HzA0h769-FzFYuuJqw$*@7V}KTTe%F}RyT;fl#G zM`nE^FVXXrpF&c{JYMd;Yvi&2ghjxL>fTw-jLfr3?+uu=u#!XBsi(5_%ZH`g$mb2c z1HONfIev_$B;?*3fqSq0BktX$VAzR!tBaU0aBtw}B&?tead#u>f_YfM?EG$BvENGW zYR-RLyeL%9-mFzQq@rr`(9}_Fa+-Ah|2JH}3zf&uqAcKAy>!O$5Ggn7#+DtMGjE^I z9x;r(m7bOy9Ivdo@%*9jbNA4%P*={158o3+srR92`YvwF8PpuKzk1XX-6lP9(Wd=b ztursa7(jm2d}yws%$eDq&2Rj>HxA#p;Ng?mF<0}CK3>!+YdJ-#WxiP-!=#S)Umj*H zrmK9AYfd`Q(`WgdSjCj$J(YILA}vmiP<<92;-pnJljhVcr_KCymN6uQ;m|)t>CCev zhwoDqHSZl$pM7{k&z$gnuU9VZ$CAy|4zG3S9j{;b zM(MQq{tK?#AANd}yYs>7b!qH9J|~lnsC_e(2KvoP9^>KK?ZEc!HNzs$tZ@0BpKXv| z-W`j0>Ovi>eWu*d;G%0w|Car2o@dRk++gMp?Q7=QCv42Kz}IW;E?!<|pLnpqBu!T1 zRffUgrG-aL0(NbUahP72!P${esk!FxhQV*BiCd|xeJT!Q;v!;%_BP&4WiZk7J)1sQHtc}|%O47A&E|{vBZfMC|C!bIeJj?iS#p}s+ z2G^eV9$vfTmDl|bWPajwrQ9>oXC5a!TU&ab(eJzJ$>5M1!*nWde6}oiqL0*yt<_xh zl~HJ_hZUOk0ZH0#p=St`NR8utFaD!;2B?6<{1$HsssrT;9v`5R&>j!{%rZH)XwkuD`8A> z{REw?bRn4()N0t;G;{1Q|CjZX-kmE;?NL6p;i2P6lNHluZn}|OJNl!p>e*w~k+<~0+H*YqzwoUr?f(b_lI+K&D6>@U~Oezah4 zp|RWbit!tpk8U;ITYF~QI4583_ffiRRjrMcFUL*jpAf#Re9p7J^cS@gDG7T0uRfZ8 zt+vmsobs$AgJU>W-d5giekr^aDZy`IK6KMIQ%E?eez$nug13X)woqN!We1*TJ>Pca z@b~HSmoru`{CKM-X8DP%-Mc1L78=7|k7Zz774VW=S+0qD&b$WDN<$NWTZPhTZ@EXeDi&(cAC7VR9$hkE z*K<~(q2t0G6`7A6pYi>|3>9}TzNyO3n7P7gkk6uZ7hFQu-y8GhptR|u!HoQ~kG9U4 zbU1DXOR0SI<2AN5V+|B6#x$Q&s9q4^KAOK~eyZ%)OGl3_-@a|Zl!U#5>U1YE7uHy6 zke`}N*2zk@TUtH!_LcTA2TrW}T~2^$IIVGC$mMwdlIM-4J3B(x&-HMsb5VVI z?(xm=`Xi+Ccl!Go(e#uj40&`FD>RxXo`lk5MxjwYJewfGHL_9}#lxd$pdE%9LgBa~ zPcmOhngY`e3lSFvOBGUe|I$*0t12YQO4ABC$Dd7pHEovefXRxbuQePDuXWcvg9UwT zT6eow?3SXKib9nFP<(s`!TE_;wM&*7YplCie^u{2NPs3wNsg)#G-=|0M1g9G^(C|< z`eH2!sQ)`zu8`M2hNSrlvt`*zn6L2L|5Ec+!=eo9$3+{hzeRuYm@spiZ~eTayqb~g z`{+%ydm^(!ZPWPDZRb-JJFYD46QZ@#u2E;ARh-6`0e#<TJGU-&*dK*C!hf8h`t0+Qur%-eh()44XgTVYis)TkE8agwpjykgjtGRfI7z9Es?A zs61Jy9Oz`q8hq$TebXAJul#Gatx}=8t1~|g`u^`RWm$oJfQg&3tl6EEBc2JoN4_$b z3pezzu`%2kzpgHwQv7SpZ4MT|qW@CZb;tCRuu+N|%8HxF0 zBZT*$AQ9TieqF&&wydA4NCUY+sE4A!2`~vWG)!ixLJ*i&wAcEpIH~k~vC{2^O2Z0n ziLAF%?~s#Lt5zS6tJXh4-uImUqTEVdZSAJuD+lLsdOTq~Io@~2rgoFdo(qeneWSAH z^9&neEe5PJ@4l$tC7Y7R?C;9w&&X9w_jpI(WC)3(S ztXopo((s%$*dhJ1;fs+@F}>_!)mz3m&1o~r!nU=pv8`v%-cUBW&!9c_k*npxD!$zq z;HBB2-1Jf@ev+dIK{l8X_ix&ZqO)zl$%eEu5EZ}z- zZW$Q5{l^!nLdwsl87Sy90|ibqz?|Fo=5va=E`9Tjgbju2!&v)Tca1Vw;i6*}+cL&? z!yZ{%ZE3H4dB>G|H`>IWqTWz?V|#3|Y|Ri0zDP=#jZp+yd_J0A2O zqpm+J&~#-^%6+Q+Zm+R7UcPjlKk4T9ZR3k{ZaQwA75a4g@X6Y(m6oF)&KqE{#cI^a z-HzXwm$yqfY~5D9z;@!L<@x6AK7sQM*v7~05_oz3`B zp0#M|fg=WK#$i28cbzpcwKXoY8)AK7!qx>_bdA=ok9fh+k7+XXS{^p7**NsFfw!aI ziJd`CeWczra79+0%J@>dx zaDRC8cuLOwlqY@e9rjp!^7S#@pxcvXzZm9)t=%~1-izQB)n6KGBASnu7L0#+?WOk< zuYPMaP1mf=jm&>MBRnf?o8{!|LCZo8XPTP6eHnk;bguc_K{msWHcfGxenMgB$tzW^ zmTAQw5j8D_EwWk>kM$=hvvI15MeQ8*Uu;CTM zD!hxl{=5wUrZ3D}P}74oOSBS&VOC*GCcfB>6)tYD*!f|;n2+!t7CV<;Z9s{GA;OjJ z58$U^1uIbFY0?FySivH!V7^ETN0-71CSgv(>L_F_t3Rp^E#ACDZYrEbiH5JGv$;vB z^r*CWY>)^51!MJQ()1*b_J+YB-b6TPiw@PIAZCQiDRdke9k)dXlj$_Qu2$d3)}pGi z`vKY7^vgHWA`O=+m1s0^7c6!u$-R`VJntw!jBf7u@pwu@{G@M(oSrJy4LCe_{i=7- zx4DN6*;S>X{K@ljXL|UKyrH~c!X<5Q-FE|BX8K*M`5ODcQI6hk>0<|-sw+G7G8fr3 zxA1D+9I|qZ-f8BpnU^+cc3XX4iig>;8S492ua{9?`ZDTs6ur2@%*iZvlowZDAv$49 zS;@mmZAa$5^XPx~%Ycgq*{>6fw>+vgd3mw%ooe-B)6%kGst!u6^3$*BA7}P#esj{| zd~o>=FFVCkipNfE-tuVM&D-6ljc^}j%S<-W&fD5%^6{>@JuSLy+vw?035jcWryU<8 zBfExdX6jhzq&X}?>B#nB?M-v@bQ8Phy06W6G{}s<>UgMMc+qh^u61eAy<6`-wrW)_ zF=;wiReJGNDA)Nxu-vk#j2YxMyV5EJZ%_5b`T7@0{Z4LOTIJ-P*_(ap(#n-9a&inmdlu_&>=HYoMcB82D$JL*|%zUnt|15ey^%v}=^w2r??xn|b=Q}hk z5A+#+I6ug+GE0MLkn`GEajR3uy0fc8k5*1w8k8L9;NS;mK6m@;k2TnQ2o?PngJ?q^50iw zS&BBp3epTiY1+jht*2aW-)aa`*?D#Q7aMDbT~xc-E-O0{G>iN`wDlPEA5v>gp2N83 zWTUj@S>DpuiG31R>>j@9sqMtM?Jv#lnzcV}@qX1OvUpefvs*8AYwph4bN^5yC(@|f z%eQxn9?Rc(t-F8m@jmNpK7M(f{4DUvo#q1XRk_AW*LscopdTu?$7hkI2__XcaqELq zrxQ{KUC`=d+wT#f8niZt5A4*^XFso!$)!TPG*$% z3p#Mkyq01a{B&io3G=?Kp^o$=4Yf08oz=}t-lXf!mfC#z-iIU0Z$zmyD46JA)hm1h zhR5hseb+vBKP>F>Tf^t{uk=aO$GJO)k2^4A))1|Z1qt8Z-68Fn=qCMOquuq=^zMef z-Rc{#Glwe+sgJNiYLjS3CM5;x3Tgv9J0}_;q^_VIf=Bx(WT~Ik6@}yxvPwe2PzQ}g zA$bs}fd;}VXA3kU06lrMq7)g9@^#jANYf^*&ny3F)4y<* zN?wx^9?SzxhdAtknXadA5sW7@d7y)2k+@WEG^iC&ItH7oi7&jOiEKv zEUI@tfQQ6$OrWD7PT|>LnB*xubo;+*e1Nupmh~l1E;nXpMu*EU+_>*qyvd$Eo*f=j z&sywQFgvZm=H?bTC*FLL#@Q&$s zS@GKV6z_A#sCnsMTVrfLcMrLA(QwN3xNT8G7GR&e$Gy6I$a@Nn?-TN^Po&-Ex~GjD z2X;^*%(lFGqS7e8ZM@vEjMlu+^5`iK7slmnH@V$n>#Q{3e#NerY1*?tr+d+ZW6X0S z;wIl*Mc!rToc2bc*PBHbZYieB3mMVm^f7hm^1l0bBxUK@Un@vc+_kB=;Y|;p>dmTg z(UYxqss_&dv=5?Q9!Nd+!cEPvV}GQImQF>+#=DOSxbx?34yv;ls~}YU=m4gANSuN> zJ+!8vXWj}!MVkK7cXt@f#Fx*ubkf6I<=ThLV9a~xI(~wO&Pl7NF;n74{;Nldfm-3{ z9Xe8s2o=}FFmU1Y-*BY(7qEX+!TipUiR)$H)UiTEt?DFq$A$zs)dK@8qMr6~=9E3z zSK<-xDN{On?&@YL_eAg6 zm7cjr`sf7U@}nSFb=r9oIhuT67% zS2W+&(D`20?yCzolT06Lj$A$d!<5>6vJs~ycHg_x&v=!ZTj;R; zkM?CwH02J8wV;M*cGqm(i+n{J~(z}U83~m!!w=UbUa`3 zdU@XWVdj1xM;%-d;7zsLWh2$?wg1=edPTEW+0@Urnp&xEwHwZKBm?6cE!0aW6qw<> zj`Aa~`>)YU5R4C8Hi2T10da}g==2AhxMiW+f0!-*j#I7IQ#p{SF~gqr;)`Z!`{%sq zMX_lC>Q}22Nrh87UQUSeHV->_{1N9^#%{-m{=sj$`IPXRr&g`J+|`OT^bi|x|WIs^(|cGu5$5N`{06ehx?3UjvD9DI%;qcb8_!A zPUQTsf`F|T77kr-^u(Ib299Qe=_&0`Mfv;halUvQHPP!6Nlno$=t)GeyRmTRyV$cTJOL zKh4suX<2-3;1f%?eQVq9@D8pfAEhZQ%sThwz>!+F(6L&}$TGtXhY2~=W8hTHf4D2} zk~RHXcI8*!2iDJhx-uj@s=;B=yx{BSm-IaGuQEN+u35nJtSy*U|1PHY3)rw5ufTWX z=m2CvF;=huE1279LtcP6i1yQDEygc5^Y80&NQvHu@+JE2=&U*TBo#)06cT*;EViPmh7u2s+ z*krf=#i{xmg*#Ht>9y^dLhha4p)=hqz;0Xcturbk7w1e(9U%X>%;MSX`&M*nzxE@R z0VW0?&TR6zWx8kU`r9Sj*1D{$z0k{f*!`kUW=mFSL|~Wqr!l?namTkWo?)qT+Ms&$ z&MkM`2A29JU$4A$a^!>PyFo`A?qWy2o_##5L*;Pj@RsGhd)ZnZxG+kF{#vENmwoHC zf{E_c?GxF(<@epPzI{1t?%lL$UewA$%6ZVz!iRxydgNo}|Gw?SN+U(+nw;QcNU83m z;14AV$?wxHDeIgW?$T^Eyu1FPvlXB&E686x@gH8VB#c#Xo`51ly0^kl9y9EzCfxr) zC^|bfbByQ#Q}6)G1m;2YJ_ zzc%80vhl6*6U(mc+iLvP1kOWAsleV*0jKDN|Llko2UNP)x=N~-3dut-ZIQ+S&PAzo z(kWm+>Wh4)J&j0ISDRsar#4~8l?k`bxob>0b^4rC+p6f7Di7oPUyYY+_=gnPT*VmITXHQnb%G`8i=au^Pig`F^xwV_^)eT2x zwAhZTni%_X@&mhVY0K>yy@Oir*zJg#{vlLrgNg3Red8y^l z8cv^EBzNNWfSp6vS861>>fBV?J#^;RMXN$@oM{?3=F^b1kJf*8D7dfdthsv9hn2U_ z`kh>{rTpr?yg1s}gZ7%sBW6ZTI`{Nh4Xt@~-~DRewU$YplC|B#ljg@@!}9I->`lRwZi~$1hnoZOKjdO)k7-#`ERHJNEfoy)yAp+UlMO H-jx0yL|jAt diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll deleted file mode 100644 index 85806bb1847f6ac3e709eb23891c312e0cff9027..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 24832 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 aO5D1`XLX?CGrl!lOD>*xA$J1t{ro>i2z{ym diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll deleted file mode 100644 index a68484e4d8d1e152b366bfde6714278baa11005d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 31984 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 diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.deps.json b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.deps.json deleted file mode 100644 index 7893a10e..00000000 --- a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.deps.json +++ /dev/null @@ -1,3394 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v2.2", - "signature": "fe1a309370df8d4688ac7393a6836732d5a1f0c2" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v2.2": { - "R2/1.0.0": { - "dependencies": { - "MSTest.TestAdapter": "1.4.0", - "MSTest.TestFramework": "1.4.0", - "Microsoft.AspNetCore.Mvc.Core": "2.2.5", - "Microsoft.NET.Test.Sdk": "16.0.1", - "RestaurantReview": "1.0.0", - "System.Data.SqlClient": "4.8.0-preview1.19504.10" - }, - "runtime": { - "R2.dll": {} - } - }, - "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Authentication.Core/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Authorization/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Authorization": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Features": "2.2.0", - "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Http/2.2.0": { - "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" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Features": "2.2.0", - "System.Text.Encodings.Web": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Http.Extensions/2.2.0": { - "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" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Http.Features/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", - "Microsoft.Net.Http.Headers": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.0" - } - } - }, - "Microsoft.AspNetCore.Mvc.Core/2.2.5": { - "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.7.0-preview1.19504.10", - "System.Threading.Tasks.Extensions": "4.5.1" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": { - "assemblyVersion": "2.2.5.0", - "fileVersion": "2.2.5.19109" - } - } - }, - "Microsoft.AspNetCore.Razor.Language/2.2.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Routing/2.2.0": { - "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" - }, - "runtime": { - "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.WebUtilities/2.2.0": { - "dependencies": { - "Microsoft.Net.Http.Headers": "2.2.0", - "System.Text.Encodings.Web": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/1.1.0": {}, - "Microsoft.CodeAnalysis.Common/2.8.0": { - "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.7.0-preview1.19504.10", - "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" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "2.8.0.0", - "fileVersion": "2.8.0.62830" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/2.8.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "2.8.0" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "2.8.0.0", - "fileVersion": "2.8.0.62830" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/2.8.0": { - "dependencies": { - "Microsoft.CodeAnalysis.CSharp": "2.8.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "2.8.0" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "assemblyVersion": "2.8.0.0", - "fileVersion": "2.8.0.62830" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "2.8.0", - "System.Composition": "1.0.31", - "System.Diagnostics.Contracts": "4.3.0", - "System.Linq.Parallel": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks.Parallel": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": { - "assemblyVersion": "2.8.0.0", - "fileVersion": "2.8.0.62830" - } - } - }, - "Microsoft.CodeCoverage/16.0.1": { - "runtime": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "16.0.28223.3002" - } - } - }, - "Microsoft.DotNet.PlatformAbstractions/2.1.0": { - "dependencies": { - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "2.1.0.0" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.DependencyInjection/2.2.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0" - }, - "runtime": { - "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.DependencyModel/2.1.0": { - "dependencies": { - "Microsoft.DotNet.PlatformAbstractions": "2.1.0", - "Newtonsoft.Json": "11.0.2", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Linq": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "2.1.0.0" - } - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { - "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" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/2.2.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.ObjectPool/2.2.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.Options/2.2.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Primitives": "2.2.0", - "System.ComponentModel.Annotations": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.Primitives/2.2.0": { - "dependencies": { - "System.Memory": "4.5.1", - "System.Runtime.CompilerServices.Unsafe": "4.7.0-preview1.19504.10" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Net.Http.Headers/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0", - "System.Buffers": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.NET.Test.Sdk/16.0.1": { - "dependencies": { - "Microsoft.CodeCoverage": "16.0.1", - "Microsoft.TestPlatform.TestHost": "16.0.1" - } - }, - "Microsoft.NETCore.Platforms/3.1.0-preview1.19504.10": {}, - "Microsoft.TestPlatform.ObjectModel/16.0.1": { - "dependencies": { - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.ComponentModel.TypeConverter": "4.1.0", - "System.Diagnostics.Process": "4.1.0", - "System.Diagnostics.TextWriterTraceListener": "4.3.0", - "System.Diagnostics.TraceSource": "4.3.0", - "System.Reflection.Metadata": "1.4.2", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", - "System.Runtime.Loader": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.2", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Thread": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.0.1" - }, - "runtime": { - "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - } - }, - "resources": { - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/16.0.1": { - "dependencies": { - "Microsoft.Extensions.DependencyModel": "2.1.0", - "Microsoft.TestPlatform.ObjectModel": "16.0.1", - "Newtonsoft.Json": "11.0.2" - }, - "runtime": { - "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netstandard1.5/testhost.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - } - }, - "resources": { - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.3" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { - "dependencies": { - "Newtonsoft.Json": "11.0.2" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.3", - "Newtonsoft.Json": "11.0.2" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.3" - }, - "runtime": { - "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.3" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "2.2.0", - "Microsoft.CodeAnalysis.CSharp": "2.8.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.3" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { - "dependencies": { - "Microsoft.CodeAnalysis.CSharp.Workspaces": "2.8.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.3", - "Newtonsoft.Json": "11.0.2", - "NuGet.Frameworks": "4.7.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration": "2.2.3" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" - } - } - }, - "Microsoft.Win32.Primitives/4.0.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { - "dependencies": { - "System.Security.AccessControl": "4.7.0-preview1.19504.10", - "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - }, - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - } - } - }, - "MSTest.TestAdapter/1.4.0": { - "dependencies": { - "System.Diagnostics.TextWriterTraceListener": "4.3.0" - } - }, - "MSTest.TestFramework/1.4.0": { - "runtime": { - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": { - "assemblyVersion": "14.0.0.0", - "fileVersion": "14.0.3021.1" - }, - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": { - "assemblyVersion": "14.0.0.0", - "fileVersion": "14.0.3021.1" - } - } - }, - "Newtonsoft.Json/11.0.2": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.0.2.21924" - } - } - }, - "NuGet.Frameworks/4.7.0": { - "runtime": { - "lib/netstandard1.6/NuGet.Frameworks.dll": { - "assemblyVersion": "4.7.0.5", - "fileVersion": "4.7.0.5148" - } - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/debian.8-x64/native/_._": { - "rid": "debian.8-x64", - "assetType": "native" - } - } - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/fedora.23-x64/native/_._": { - "rid": "fedora.23-x64", - "assetType": "native" - } - } - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/fedora.24-x64/native/_._": { - "rid": "fedora.24-x64", - "assetType": "native" - } - } - }, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" - } - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0-preview1.19504.10": { - "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": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "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" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/opensuse.13.2-x64/native/_._": { - "rid": "opensuse.13.2-x64", - "assetType": "native" - } - } - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/opensuse.42.1-x64/native/_._": { - "rid": "opensuse.42.1-x64", - "assetType": "native" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "runtimeTargets": { - "runtime/osx.10.10-x64/native/_._": { - "rid": "osx.10.10-x64", - "assetType": "native" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/osx.10.10-x64/native/_._": { - "rid": "osx.10.10-x64", - "assetType": "native" - } - } - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/rhel.7-x64/native/_._": { - "rid": "rhel.7-x64", - "assetType": "native" - } - } - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/ubuntu.14.04-x64/native/_._": { - "rid": "ubuntu.14.04-x64", - "assetType": "native" - } - } - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/ubuntu.16.04-x64/native/_._": { - "rid": "ubuntu.16.04-x64", - "assetType": "native" - } - } - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/ubuntu.16.10-x64/native/_._": { - "rid": "ubuntu.16.10-x64", - "assetType": "native" - } - } - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-arm64/native/sni.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x64/native/sni.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x86/native/sni.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Buffers/4.5.0": {}, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "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" - } - }, - "System.Collections.Immutable/1.3.1": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Collections.NonGeneric/4.0.1": { - "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" - } - }, - "System.Collections.Specialized/4.0.1": { - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.ComponentModel/4.0.1": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.Annotations/4.5.0": {}, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.ComponentModel.Primitives/4.1.0": { - "dependencies": { - "System.ComponentModel": "4.0.1", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.TypeConverter/4.1.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Primitives": "4.1.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Composition/1.0.31": { - "dependencies": { - "System.Composition.AttributedModel": "1.0.31", - "System.Composition.Convention": "1.0.31", - "System.Composition.Hosting": "1.0.31", - "System.Composition.Runtime": "1.0.31", - "System.Composition.TypedParts": "1.0.31" - } - }, - "System.Composition.AttributedModel/1.0.31": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Composition.AttributedModel.dll": { - "assemblyVersion": "1.0.31.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Composition.Convention/1.0.31": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Composition.AttributedModel": "1.0.31", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Composition.Convention.dll": { - "assemblyVersion": "1.0.31.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Composition.Hosting/1.0.31": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Composition.Runtime": "1.0.31", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Composition.Hosting.dll": { - "assemblyVersion": "1.0.31.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Composition.Runtime/1.0.31": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Composition.Runtime.dll": { - "assemblyVersion": "1.0.31.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Composition.TypedParts/1.0.31": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Composition.AttributedModel": "1.0.31", - "System.Composition.Hosting": "1.0.31", - "System.Composition.Runtime": "1.0.31", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Composition.TypedParts.dll": { - "assemblyVersion": "1.0.31.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Data.SqlClient/4.8.0-preview1.19504.10": { - "dependencies": { - "Microsoft.Win32.Registry": "4.7.0-preview1.19504.10", - "System.Diagnostics.DiagnosticSource": "4.7.0-preview1.19504.10", - "System.Security.Principal.Windows": "4.7.0-preview1.19504.10", - "System.Text.Encoding.CodePages": "4.7.0-preview1.19504.10", - "runtime.native.System.Data.SqlClient.sni": "4.7.0-preview1.19504.10" - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assemblyVersion": "4.6.1.0", - "fileVersion": "4.700.19.50410" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.6.1.0", - "fileVersion": "4.700.19.50410" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.6.1.0", - "fileVersion": "4.700.19.50410" - } - } - }, - "System.Diagnostics.Contracts/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/4.7.0-preview1.19504.10": { - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "4.0.5.0", - "fileVersion": "4.700.19.50410" - } - } - }, - "System.Diagnostics.FileVersionInfo/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "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.2", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Diagnostics.Process/4.1.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "Microsoft.Win32.Primitives": "4.0.1", - "Microsoft.Win32.Registry": "4.7.0-preview1.19504.10", - "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.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.Threading.ThreadPool": "4.0.10", - "runtime.native.System": "4.3.0" - }, - "runtimeTargets": { - "runtime/linux/lib/_._": { - "rid": "linux", - "assetType": "runtime" - }, - "runtime/osx/lib/_._": { - "rid": "osx", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Diagnostics.StackTrace/4.3.0": { - "dependencies": { - "System.IO.FileSystem": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Metadata": "1.4.2", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.TextWriterTraceListener/4.3.0": { - "dependencies": { - "System.Diagnostics.TraceSource": "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.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.TraceSource/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Collections": "4.3.0", - "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", - "runtime.native.System": "4.3.0" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Dynamic.Runtime/4.3.0": { - "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" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.0.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "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" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Buffers": "4.5.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" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "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" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Linq/4.3.0": { - "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" - } - }, - "System.Linq.Expressions/4.3.0": { - "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" - } - }, - "System.Linq.Parallel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "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.Threading.Tasks": "4.3.0" - } - }, - "System.Memory/4.5.1": {}, - "System.ObjectModel/4.3.0": { - "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" - } - }, - "System.Private.DataContractSerialization/4.1.1": { - "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.1.1", - "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.XmlDocument": "4.3.0", - "System.Xml.XmlSerializer": "4.0.11" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "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" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Metadata/1.4.2": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.Immutable": "1.3.1", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" - } - }, - "System.Runtime.CompilerServices.Unsafe/4.7.0-preview1.19504.10": { - "runtime": { - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "4.0.6.0", - "fileVersion": "4.700.19.50410" - } - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Reflection": "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" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Runtime.Loader/4.0.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Runtime.Serialization.Json/4.0.2": { - "dependencies": { - "System.IO": "4.3.0", - "System.Private.DataContractSerialization": "4.1.1", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Security.AccessControl/4.7.0-preview1.19504.10": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" - }, - "runtime": { - "lib/netstandard2.0/System.Security.AccessControl.dll": { - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - } - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "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" - }, - "runtimeTargets": { - "runtime/osx/lib/_._": { - "rid": "osx", - "assetType": "runtime" - }, - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "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" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "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" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "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" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "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" - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "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" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Security.Principal.Windows/4.7.0-preview1.19504.10": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": { - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - }, - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - } - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/4.7.0-preview1.19504.10": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime.CompilerServices.Unsafe": "4.7.0-preview1.19504.10" - }, - "runtime": { - "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - } - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.Encodings.Web/4.5.0": { - "runtime": { - "lib/netstandard2.0/System.Text.Encodings.Web.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.5.1": {}, - "System.Threading.Tasks.Parallel/4.3.0": { - "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" - } - }, - "System.Threading.Thread/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading.ThreadPool/4.0.10": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.ValueTuple/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "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.5.1" - } - }, - "System.Xml.XDocument/4.3.0": { - "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" - } - }, - "System.Xml.XmlDocument/4.3.0": { - "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" - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "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" - } - }, - "System.Xml.XPath/4.3.0": { - "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" - } - }, - "System.Xml.XPath.XDocument/4.3.0": { - "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" - } - }, - "System.Xml.XPath.XmlDocument/4.0.1": { - "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.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XPath": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "1.0.24212.1" - } - } - }, - "RestaurantReview/1.0.0": { - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.Design": "2.2.3" - }, - "runtime": { - "RestaurantReview.dll": {} - } - } - } - }, - "libraries": { - "R2/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", - "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Core/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", - "path": "microsoft.aspnetcore.authentication.core/2.2.0", - "hashPath": "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authorization/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", - "path": "microsoft.aspnetcore.authorization/2.2.0", - "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", - "path": "microsoft.aspnetcore.authorization.policy/2.2.0", - "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", - "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", - "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Http/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", - "path": "microsoft.aspnetcore.http/2.2.0", - "hashPath": "microsoft.aspnetcore.http.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", - "path": "microsoft.aspnetcore.http.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Http.Extensions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", - "path": "microsoft.aspnetcore.http.extensions/2.2.0", - "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Http.Features/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", - "path": "microsoft.aspnetcore.http.features/2.2.0", - "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", - "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.Core/2.2.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", - "path": "microsoft.aspnetcore.mvc.core/2.2.5", - "hashPath": "microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512" - }, - "Microsoft.AspNetCore.Razor.Language/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IeyzVFXZdpUAnWKWoNYE0SsP1Eu7JLjZaC94jaI1VfGtK57QykROz/iGMc8D0VcqC8i02qYTPQN/wPKm6PfidA==", - "path": "microsoft.aspnetcore.razor.language/2.2.0", - "hashPath": "microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", - "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Routing/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", - "path": "microsoft.aspnetcore.routing/2.2.0", - "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", - "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.WebUtilities/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", - "path": "microsoft.aspnetcore.webutilities/2.2.0", - "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", - "path": "microsoft.codeanalysis.analyzers/1.1.0", - "hashPath": "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/2.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-06AzG7oOLKTCN1EnoVYL1bQz+Zwa10LMpUn7Kc+PdpN8CQXRqXTyhfxuKIz6t0qWfoatBNXdHD0OLcEYp5pOvQ==", - "path": "microsoft.codeanalysis.common/2.8.0", - "hashPath": "microsoft.codeanalysis.common.2.8.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/2.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RizcFXuHgGmeuZhxxE1qQdhFA9lGOHlk0MJlCUt6LOnYsevo72gNikPcbANFHY02YK8L/buNrihchY0TroGvXQ==", - "path": "microsoft.codeanalysis.csharp/2.8.0", - "hashPath": "microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/2.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EJWaxi2bI47iEZen/nZkJEDZCrP9Oj3PJtMwBv34Z0ZvvdSkpgsdqlHSud8d5vC53LnCXLfBLewfqHcILDVSDw==", - "path": "microsoft.codeanalysis.csharp.workspaces/2.8.0", - "hashPath": "microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tJlJ99SD8bHBAXShOG/pXQ1K118cnsF01obEf9aAtdgLbw3yEPahZ7qvWeGMjrheUhvOsSkv/wTKYg9euKa8MQ==", - "path": "microsoft.codeanalysis.workspaces.common/2.8.0", - "hashPath": "microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512" - }, - "Microsoft.CodeCoverage/16.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W7WI3iH6At2I/9x2ODgCIIMO0QfpA7ZCoHkeygMLAaz3Nms/GsugKz9N4hkTve2Lj66g2K4CAmbwe6utEH66lw==", - "path": "microsoft.codecoverage/16.0.1", - "hashPath": "microsoft.codecoverage.16.0.1.nupkg.sha512" - }, - "Microsoft.DotNet.PlatformAbstractions/2.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==", - "path": "microsoft.dotnet.platformabstractions/2.1.0", - "hashPath": "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==", - "path": "microsoft.extensions.configuration.abstractions/2.2.0", - "hashPath": "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==", - "path": "microsoft.extensions.dependencyinjection/2.2.0", - "hashPath": "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==", - "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyModel/2.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==", - "path": "microsoft.extensions.dependencymodel/2.1.0", - "hashPath": "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==", - "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==", - "path": "microsoft.extensions.hosting.abstractions/2.2.0", - "hashPath": "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", - "path": "microsoft.extensions.logging.abstractions/2.2.0", - "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.ObjectPool/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", - "path": "microsoft.extensions.objectpool/2.2.0", - "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==", - "path": "microsoft.extensions.options/2.2.0", - "hashPath": "microsoft.extensions.options.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==", - "path": "microsoft.extensions.primitives/2.2.0", - "hashPath": "microsoft.extensions.primitives.2.2.0.nupkg.sha512" - }, - "Microsoft.Net.Http.Headers/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", - "path": "microsoft.net.http.headers/2.2.0", - "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512" - }, - "Microsoft.NET.Test.Sdk/16.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ON7UIMIhAwrYb0ep+3ztoWVGvtfo88IhiHVnbyOiuVsi8bOMCdMPVcR+EX1WYGgKAd030pHRaxazMlkQ6uDyJQ==", - "path": "microsoft.net.test.sdk/16.0.1", - "hashPath": "microsoft.net.test.sdk.16.0.1.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/3.1.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bS52lVUR5Mb/yuorV8cLSvsPDEOms1LTQ+bN8s3/rrdaU3VSpfvWGorRk5xftj1kyrJ7Dxlw/GADyyekoOfDnQ==", - "path": "microsoft.netcore.platforms/3.1.0-preview1.19504.10", - "hashPath": "microsoft.netcore.platforms.3.1.0-preview1.19504.10.nupkg.sha512" - }, - "Microsoft.TestPlatform.ObjectModel/16.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AIQ9azu2b31R8nOuFnR32d7cdWidjjLl1dFyLC3LNifzAJoEdCUgkHWUpTTHKWcHhwa9E/NRcdzVple8pbKJ9Q==", - "path": "microsoft.testplatform.objectmodel/16.0.1", - "hashPath": "microsoft.testplatform.objectmodel.16.0.1.nupkg.sha512" - }, - "Microsoft.TestPlatform.TestHost/16.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H4bYjOjkK4FYQ23RnsHm8FcqR0te8Eky9i9sS1IjVFBlDh1MU7aIwmBUpKpaSAy5xNu7UTHku4RZTWzWHDzS7g==", - "path": "microsoft.testplatform.testhost/16.0.1", - "hashPath": "microsoft.testplatform.testhost.16.0.1.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wc71c9HWTeXy9/w9O4Yr2LKmdJjVyIoJ/XQX8/6uma4EAVU25RLtUWlvhA0gpgFw9Kf1TkCv70x+CbKnRw/d8Q==", - "path": "microsoft.visualstudio.web.codegeneration/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.2.2.3.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wXlpxDfRD5aPypa0p0UE97tkRQvAz9D9FfA2GITzr+LlGIpybyGnxkwGVp0Vha1Ibr0kJG0HdnqfeHME/WuAcQ==", - "path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.contracts.2.2.3.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-APdPavBUYcGPBaW4rjxBVRePWmg0ZzhIRymOzvLFWUtzfvJKw1+8PaCzsH7Uvl+felm0L1UVQwBx1Do0R7j7Xg==", - "path": "microsoft.visualstudio.web.codegeneration.core/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.core.2.2.3.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xH50cYOU+infRq4KikBuu2qeXcwW4tE0D5TDfKLuLrEtDm90aXI+0qygPsqyISf+lOW7L7rQ64BH/dRYkK3c3Q==", - "path": "microsoft.visualstudio.web.codegeneration.design/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.design.2.2.3.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N9S7TeFZjXzNY9OVbz4OFw9cM9oEeMaCnuLFhetNioy/wPwZbgglrctAEYxfDbvocQ17YCAVR2EMRbYHNDHyVg==", - "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.3.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sW2lHnOoL1xFnSm/2zSedeUoQPlbhPfWjSuUYsxYUj/N5QmLmH98ZLaqP26k6Om/heR6Gux/veXI96yM1Parow==", - "path": "microsoft.visualstudio.web.codegeneration.templating/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.templating.2.2.3.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/r/y+XpOpbCwN/M/HopjfGTDRlmixTd4G6HG6FaBkD/YF3T1u+4WMRVtuB6zz7aw571HmX+6UokEa6HJSwkPDA==", - "path": "microsoft.visualstudio.web.codegeneration.utils/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.utils.2.2.3.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0gVuA4KUCHFM4M/9SjG+7j7BzZ7SW/BufF97Q78i2VV8JBbQXc/5Rf6YUG1VGW2fwSEOl9+S26utEGS+86GGGw==", - "path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.2.2.3.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", - "path": "microsoft.win32.primitives/4.0.1", - "hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CXsd7k96HdyP0vV9T5mQQ0O1Lj00xJBHTQ+d8Y99mxu/GuTB9MYKeGE1b58AIaxF88maJOFMtt6WhiqEPC9ONw==", - "path": "microsoft.win32.registry/4.7.0-preview1.19504.10", - "hashPath": "microsoft.win32.registry.4.7.0-preview1.19504.10.nupkg.sha512" - }, - "MSTest.TestAdapter/1.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2/rL9DG+cVAgPs98OGm2sbZ4FTgn+MGEan5P9NRAgqMV3+nYRKG7/5R0jY7lBMq9ISms+84MSqTHWs6QnPt4A==", - "path": "mstest.testadapter/1.4.0", - "hashPath": "mstest.testadapter.1.4.0.nupkg.sha512" - }, - "MSTest.TestFramework/1.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kV/yZ0XLiOElsVeLT0GnNrsoKcPvVNOP6Cv2zkAiceJY0rpro0L+3t54bRApLwTg1mxlo4rLziBG7X6X69KcrQ==", - "path": "mstest.testframework/1.4.0", - "hashPath": "mstest.testframework.1.4.0.nupkg.sha512" - }, - "Newtonsoft.Json/11.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", - "path": "newtonsoft.json/11.0.2", - "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512" - }, - "NuGet.Frameworks/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qbXaB76XYUVLocLBs8Z9TS/ERGK2wm797feO+0JEPFvT7o7MRadOR77mqaSD4J1k8G+DlZQyq+MlkCuxrkr3ag==", - "path": "nuget.frameworks/4.7.0", - "hashPath": "nuget.frameworks.4.7.0.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ITo7gZ7yGHMkNj1O6PRmK+i917jbWNs5CZN/jwVSh8hO+3+8C5roDkXJYbM1hA5LZAUagtm9ph5whvnDOTilDg==", - "path": "runtime.native.system.data.sqlclient.sni/4.7.0-preview1.19504.10", - "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0-preview1.19504.10.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b+V9JC/Ii3sR659flBeaBJww111425tgjcDS1k+hqV4sGh9FALRDBvJnDtQ895gAzpPTUOFDHdqaZ2Et7BpZMg==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "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.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", - "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", - "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", - "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", - "path": "system.buffers/4.5.0", - "hashPath": "system.buffers.4.5.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/1.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", - "path": "system.collections.immutable/1.3.1", - "hashPath": "system.collections.immutable.1.3.1.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==", - "path": "system.collections.nongeneric/4.0.1", - "hashPath": "system.collections.nongeneric.4.0.1.nupkg.sha512" - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==", - "path": "system.collections.specialized/4.0.1", - "hashPath": "system.collections.specialized.4.0.1.nupkg.sha512" - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", - "path": "system.componentmodel/4.0.1", - "hashPath": "system.componentmodel.4.0.1.nupkg.sha512" - }, - "System.ComponentModel.Annotations/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", - "path": "system.componentmodel.annotations/4.5.0", - "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512" - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==", - "path": "system.componentmodel.eventbasedasync/4.0.11", - "hashPath": "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==", - "path": "system.componentmodel.primitives/4.1.0", - "hashPath": "system.componentmodel.primitives.4.1.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==", - "path": "system.componentmodel.typeconverter/4.1.0", - "hashPath": "system.componentmodel.typeconverter.4.1.0.nupkg.sha512" - }, - "System.Composition/1.0.31": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==", - "path": "system.composition/1.0.31", - "hashPath": "system.composition.1.0.31.nupkg.sha512" - }, - "System.Composition.AttributedModel/1.0.31": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==", - "path": "system.composition.attributedmodel/1.0.31", - "hashPath": "system.composition.attributedmodel.1.0.31.nupkg.sha512" - }, - "System.Composition.Convention/1.0.31": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==", - "path": "system.composition.convention/1.0.31", - "hashPath": "system.composition.convention.1.0.31.nupkg.sha512" - }, - "System.Composition.Hosting/1.0.31": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==", - "path": "system.composition.hosting/1.0.31", - "hashPath": "system.composition.hosting.1.0.31.nupkg.sha512" - }, - "System.Composition.Runtime/1.0.31": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==", - "path": "system.composition.runtime/1.0.31", - "hashPath": "system.composition.runtime.1.0.31.nupkg.sha512" - }, - "System.Composition.TypedParts/1.0.31": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==", - "path": "system.composition.typedparts/1.0.31", - "hashPath": "system.composition.typedparts.1.0.31.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Data.SqlClient/4.8.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6isAINOX/v56q7JLaC9XDXzc7T/yh62QR+pa+Jt0ayjmYmLRCmzyt4rTy5jWe15ZcQfS9yQNxIzwyO7yGs6Zbg==", - "path": "system.data.sqlclient/4.8.0-preview1.19504.10", - "hashPath": "system.data.sqlclient.4.8.0-preview1.19504.10.nupkg.sha512" - }, - "System.Diagnostics.Contracts/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==", - "path": "system.diagnostics.contracts/4.3.0", - "hashPath": "system.diagnostics.contracts.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/4.7.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CxeUzuw9Lz1+6gkPpQI83BeoUNxn6VnDF28qazxSRyRzWSzLzoeh9ObYG7LYqcPckgm0UaE9nQdd7oDq5ncMKg==", - "path": "system.diagnostics.diagnosticsource/4.7.0-preview1.19504.10", - "hashPath": "system.diagnostics.diagnosticsource.4.7.0-preview1.19504.10.nupkg.sha512" - }, - "System.Diagnostics.FileVersionInfo/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==", - "path": "system.diagnostics.fileversioninfo/4.3.0", - "hashPath": "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Process/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", - "path": "system.diagnostics.process/4.1.0", - "hashPath": "system.diagnostics.process.4.1.0.nupkg.sha512" - }, - "System.Diagnostics.StackTrace/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", - "path": "system.diagnostics.stacktrace/4.3.0", - "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.TextWriterTraceListener/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==", - "path": "system.diagnostics.textwritertracelistener/4.3.0", - "hashPath": "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.TraceSource/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", - "path": "system.diagnostics.tracesource/4.3.0", - "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "path": "system.dynamic.runtime/4.3.0", - "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", - "path": "system.globalization.extensions/4.0.1", - "hashPath": "system.globalization.extensions.4.0.1.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Linq.Parallel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==", - "path": "system.linq.parallel/4.3.0", - "hashPath": "system.linq.parallel.4.3.0.nupkg.sha512" - }, - "System.Memory/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==", - "path": "system.memory/4.5.1", - "hashPath": "system.memory.4.5.1.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Private.DataContractSerialization/4.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==", - "path": "system.private.datacontractserialization/4.1.1", - "hashPath": "system.private.datacontractserialization.4.1.1.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/1.4.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KYPNMDrLB2R+G5JJiJ2fjBpihtktKVIjsirmyyv+VDo5rQkIR9BWeCYM1wDSzbQatWNZ/NQfPsQyTB1Ui3qBfQ==", - "path": "system.reflection.metadata/1.4.2", - "hashPath": "system.reflection.metadata.1.4.2.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/4.7.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Zw6YIPYZNJdb5fVVlLLG0i9NO/p+10u8LM8ApWat+9oLo15xaCGC6XyYALrvc+DzmxkwWLxU6n8SNf71V+x3+Q==", - "path": "system.runtime.compilerservices.unsafe/4.7.0-preview1.19504.10", - "hashPath": "system.runtime.compilerservices.unsafe.4.7.0-preview1.19504.10.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", - "path": "system.runtime.interopservices.runtimeinformation/4.0.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512" - }, - "System.Runtime.Loader/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", - "path": "system.runtime.loader/4.0.0", - "hashPath": "system.runtime.loader.4.0.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Runtime.Serialization.Json/4.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==", - "path": "system.runtime.serialization.json/4.0.2", - "hashPath": "system.runtime.serialization.json.4.0.2.nupkg.sha512" - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", - "path": "system.runtime.serialization.primitives/4.1.1", - "hashPath": "system.runtime.serialization.primitives.4.1.1.nupkg.sha512" - }, - "System.Security.AccessControl/4.7.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGk/B6+DoaHlC4PAc7OWPmxI91JtH4zXHHmwlSQAOnL5sll3hgX8kVR9loCnVHfshSo1vP8vt15Xy84xyKiqKw==", - "path": "system.security.accesscontrol/4.7.0-preview1.19504.10", - "hashPath": "system.security.accesscontrol.4.7.0-preview1.19504.10.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "path": "system.security.cryptography.cng/4.3.0", - "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/4.7.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Df++ZTMSEaRRyov1jZ7VSm8GemEu9cJJ+QY1y6wvF631OvS5dts98RhuoqcZxACVkNRIzl5ThIqd46qd7b+Vg==", - "path": "system.security.principal.windows/4.7.0-preview1.19504.10", - "hashPath": "system.security.principal.windows.4.7.0-preview1.19504.10.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/4.7.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aYpmMGgjDYpDYtDpUHwnSqSKgatkoZ4aSteVs6WKxo3/dRbHnL5rQ3QX9g7teACCIw8T2KW9OUxIg0b1kZEABg==", - "path": "system.text.encoding.codepages/4.7.0-preview1.19504.10", - "hashPath": "system.text.encoding.codepages.4.7.0-preview1.19504.10.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==", - "path": "system.text.encodings.web/4.5.0", - "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", - "path": "system.threading.tasks.extensions/4.5.1", - "hashPath": "system.threading.tasks.extensions.4.5.1.nupkg.sha512" - }, - "System.Threading.Tasks.Parallel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==", - "path": "system.threading.tasks.parallel/4.3.0", - "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "path": "system.threading.thread/4.3.0", - "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" - }, - "System.Threading.ThreadPool/4.0.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", - "path": "system.threading.threadpool/4.0.10", - "hashPath": "system.threading.threadpool.4.0.10.nupkg.sha512" - }, - "System.ValueTuple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==", - "path": "system.valuetuple/4.3.0", - "hashPath": "system.valuetuple.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", - "path": "system.xml.xmlserializer/4.0.11", - "hashPath": "system.xml.xmlserializer.4.0.11.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==", - "path": "system.xml.xpath.xdocument/4.3.0", - "hashPath": "system.xml.xpath.xdocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XmlDocument/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==", - "path": "system.xml.xpath.xmldocument/4.0.1", - "hashPath": "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512" - }, - "RestaurantReview/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.dll b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.dll deleted file mode 100644 index 57325a97c23bfa330d15fd274cb72cdaea8326fa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5632 zcmeHLU2Ggz6+W}OcAQP^#Lf?)O<}SwZ4$`Dc9N2WIPu1I5>v13de@FhjN;kZ>-99V zGn=`yP7DH)Dg`Pc2#`t$Bq~uqq)?y_eMl)NCy6$wzeXFOp$O%m zcbxkJM4MV7VskSanlZ7HsL)LRu)bb5T}ie9KiM?K2*iZ|`1LdZc*@tvZeXhDM6-r3 zeG8bfZ2+BC)DG09G63rhUpO8FIb<}8%DOh8HkARQV@;^)UgEf-ux$xyq33m?CB$3< zj>@zBPbE#eGKn295S@)Z3EGX((9=nYucArG_28siee|myRwlh}%{^^@0(ReyPGCE_ z)WETX+=$NCctorWdXDA4cuZ54g?=vVGkT1@J$ri(vWYF^04~Ar?yqBwv8hYg)ZO{O zx81U2iC|5*_T5u?x*YdUOpOeIca3q(*L}?KiY$x*Robb|iMF+jyrb=gJw2Jc3KaSr7bt(t75w-kJn29xXQD%7-6r?x)PN`KMP;8qmerQit# zZz}i>rITqoMSq3lw$y8h4tieOndqWaayr>TeAq63uZn-_hQ#~6DX-A==?Rk zhEY|(4(dy>WD7>IP4_au2)1wo-GsyY6{Z2(koseiu_P?qmaNc(&a&U9JBf3k<`wqM zt^LrSpqUV(gDJ+IUdChn&m`AUe^SFXVEIo1rfDbO2I^Jtpn_QiM-+Ti!N(Ld0bA*u zf|nGu6?_WNpr@!iwU3^oCn!fR(X%+EzgJv?*3o$~Xd|u!gYKhe0K4fr;AiO#z`gV) z;1}pEz(IN!@DWAN0}j$@TC2^{SwM>{z|A;1sf*#dQoVcvy%anSSC}yBn&M%X*UM@8 zHsZSc(4MAgMT^IU!g=0I(8lL5EG2qTbyAoimOV|sRci-E)(ULTofNX>1hc&~YD;b= z`{;1aE7crvgz}3r5EWz4a~z?BrEx;I!nZBT*_Q7~Z!R#hvN|S$LC+UPZo#60kU@Uv zk!&sSl&l$u(jcyFnyk5jT@i)FsyJ!7B}dQ+5ioY#_bL%3nlKWj5jo<@z;rD!KF5;p zJ1b1|g_=4if_bl$4RCIYwLs92DAvklv*?HhEi0v{6rII_9W;{*re7ApaXdcayyu@? zDSzB{#I*1wqPCJb;?8+~#pIBh&ihIYdhVQEuK7x?p=8jjRBcBQCxv5PP(9h;b5I8z zQ#O%eCnkI>mK8K)V+QLq-NgnYimIXqcF}h1pozOY^hV?XF2AOrPusF)I{BbhvOR-s zDtMkFjVad-82b?62{_0xQX}hO{vh@B5#zr9yg@X-hlpKeaZ7>9ZlZI%+-i=Di znYK$KSPwVe=96MB+U8_|9PW6+`3Oubm>Wn42R@$#pA0MT{CMDyZI)dR{#&w1d{Qjf z;=GX;{(@}@84E|NfE~+AF8n$_+^L8myD15qaTRSU1a)0a2Xn>5xjZk4#5}RltEgL@ zDJhIMAJ8Vf#5>DxrZh!_Cu@=ooyVhgj69MQ0J^wxUjNRmsb?>Ke&7c?{`0M$zOn9y zl+rb=Evb{%f=*{Aqa9n^Gq0i`pf{sn~?L1`5s$(vW;S%Ao z30$X?)~H3TE)oxD>_y&zUr1L7o`Lv&Cc5WE2z8t*k|!7H zeu&21`3&g;D|LKK`9DM;q4u7RuPDxOC&I6(rg_3F-R055^sEBr`40jZ=WhKcTRAD(}+tCzC<+a%4WIudfV`o z=zxk#7O{}9y@FM6V6~1NuslMIF&roCgF&KyVh!VR`{kR5k6x%a`a+mG_GfVCXLR9O zUJ0*#e`cz1eD{Hj&WUcxbUat|XBLIb96i#WZciUZ(x;MD9V%SepQ-uoA!*HviYa$j z;v{^xY8cBAz+N zwp1c&;5yIj2{i5%@1NHo;8* diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.pdb b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.pdb deleted file mode 100644 index 4498fae816e01f08ad6e3e3e01aea73a4c9e8845..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1112 zcmZWpU1(HC6rLG3*M$6S%ui!&b;II=LC0)MgIGbb8!JkF_wJe(QE%>!+soeEySX!) z7>Ok}wnUq16%`FaiwF{bP{9cC!Jij@P#*+AC>8ot5QOF_r9p~4XR~P_88~;&_nn#V z%$%9IQGIum5=yX@fpxV;Ljw`slqZNrhLHmcccprfdkJ&%3T7pZ? z0vA9osgn!fqfmHfa#t(#&j6odfTOmHVxh@Z7prGj%THH7);|4v?xcV1;dL0I_0+QB z5{QGJ*I!ZaQ5U&tu=0YB7)=Ai2J#4@-J0*n_sHefggR(NU^r+DzGooH8712p12hFJ zY8(JG1}t*(a;UKaW-j1OfCGR7g*dJW8;+)=622^-6HzhPbBdX92M0iB1my^c$A~9n z&Q^(`tSGqo03nsHHXNI-s*aA04_5qe{zlzDz1`cNtbAQ{N+*vxFSARN@%_2SryuN? znhu@o|1*A{X!?*;qK{F^Vq1%nQh2f=Zdiwf9nyturG=+)CzlqgIBS?0BQ0cIpJjTk zbPp=-2*s6J;D#N=xH|-gH z+?1tzODk%^jbHBW?h&Ck?y9-imb%HOZ`U-w_$3&eZTWfM`|fv@pU)n?^!ECRA4_4c zG_Vaz%IX)TTV%FFs2F7B?E~h<#lRj*<_ud`xs>JRlP6r)mOSZL3YP*`@UuAdM$R)F z6&C}R800b6QJ!ntP>xTQ1>4<}u;uDyye_-}%M|j{`I>?V2$;%p9m#hJM|hT5S_mb? zA+_MQSx$f50{<-(Ed@*B2}5RN&9WS=Ep4@hv8{$OxZZEaY)d#QOh+Ekk>9AVQ9n%m zuPLQ|lKNTd4^#gb^?#-QlqTJrXNn?EWL;UcR9gm@GA#Z@*+Q8ja7;lwCjT#g*8ebC zKDu_aAvDq1aP7v?Z^r+xmr$~q6_=5< e41N|{8Qk$UMyd#9LmI82-Sh}P!}T@rc>e>SC?U@P diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.runtimeconfig.dev.json b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.runtimeconfig.dev.json deleted file mode 100644 index 48c7390d..00000000 --- a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.runtimeconfig.dev.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Raizel Seliger\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Raizel Seliger\\.nuget\\packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ] - } -} \ No newline at end of file diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.runtimeconfig.json b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.runtimeconfig.json deleted file mode 100644 index 49dbda4c..00000000 --- a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "netcoreapp2.2", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "2.2.0" - } - } -} \ No newline at end of file diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/RestaurantReview.dll b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/RestaurantReview.dll deleted file mode 100644 index 57d3980d48cfce4686584d523df8b4301166ddba..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14848 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 diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.AssemblyInfo.cs b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.AssemblyInfo.cs deleted file mode 100644 index 3d0b242b..00000000 --- a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.AssemblyInfo.cs +++ /dev/null @@ -1,23 +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: System.Reflection.AssemblyCompanyAttribute("R2")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("R2")] -[assembly: System.Reflection.AssemblyTitleAttribute("R2")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.AssemblyInfoInputs.cache b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.AssemblyInfoInputs.cache deleted file mode 100644 index 8c9b3759..00000000 --- a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -4fca5ae81b87f96b37c5787a6f6892d1522c2062 diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.assets.cache b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.assets.cache deleted file mode 100644 index eed156342135d30babf9b1f0d508a4a45d84aec0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 87003 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�H|X$hN7S-KI^a#TMi lN4;XQRZPtZ(tx%T`&y$g>?2KRX$dzJjvR=e7;!_~|9>9jo(cc} diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.CopyComplete b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.CopyComplete deleted file mode 100644 index e69de29b..00000000 diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.CoreCompileInputs.cache b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.CoreCompileInputs.cache deleted file mode 100644 index bfaa1d4a..00000000 --- a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -8c31b0a80a8f0c08070e7f4a8ab4509bc917ec52 diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.FileListAbsolute.txt b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.FileListAbsolute.txt deleted file mode 100644 index 35edb6b4..00000000 --- a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,17 +0,0 @@ -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\R2.deps.json -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\R2.runtimeconfig.json -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\R2.runtimeconfig.dev.json -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\R2.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\RestaurantReview.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\RestaurantReview.pdb -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\obj\Debug\netcoreapp2.2\R2.csprojAssemblyReference.cache -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\obj\Debug\netcoreapp2.2\R2.csproj.CoreCompileInputs.cache -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\obj\Debug\netcoreapp2.2\R2.AssemblyInfoInputs.cache -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\obj\Debug\netcoreapp2.2\R2.AssemblyInfo.cs -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\obj\Debug\netcoreapp2.2\R2.csproj.CopyComplete -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\R2.pdb -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\obj\Debug\netcoreapp2.2\R2.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\obj\Debug\netcoreapp2.2\R2.pdb diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csprojAssemblyReference.cache b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csprojAssemblyReference.cache deleted file mode 100644 index 17fdd8a4e632c637d3b8c43c40bf410de239c7ac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 154331 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 diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.dll b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.dll deleted file mode 100644 index 57325a97c23bfa330d15fd274cb72cdaea8326fa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5632 zcmeHLU2Ggz6+W}OcAQP^#Lf?)O<}SwZ4$`Dc9N2WIPu1I5>v13de@FhjN;kZ>-99V zGn=`yP7DH)Dg`Pc2#`t$Bq~uqq)?y_eMl)NCy6$wzeXFOp$O%m zcbxkJM4MV7VskSanlZ7HsL)LRu)bb5T}ie9KiM?K2*iZ|`1LdZc*@tvZeXhDM6-r3 zeG8bfZ2+BC)DG09G63rhUpO8FIb<}8%DOh8HkARQV@;^)UgEf-ux$xyq33m?CB$3< zj>@zBPbE#eGKn295S@)Z3EGX((9=nYucArG_28siee|myRwlh}%{^^@0(ReyPGCE_ z)WETX+=$NCctorWdXDA4cuZ54g?=vVGkT1@J$ri(vWYF^04~Ar?yqBwv8hYg)ZO{O zx81U2iC|5*_T5u?x*YdUOpOeIca3q(*L}?KiY$x*Robb|iMF+jyrb=gJw2Jc3KaSr7bt(t75w-kJn29xXQD%7-6r?x)PN`KMP;8qmerQit# zZz}i>rITqoMSq3lw$y8h4tieOndqWaayr>TeAq63uZn-_hQ#~6DX-A==?Rk zhEY|(4(dy>WD7>IP4_au2)1wo-GsyY6{Z2(koseiu_P?qmaNc(&a&U9JBf3k<`wqM zt^LrSpqUV(gDJ+IUdChn&m`AUe^SFXVEIo1rfDbO2I^Jtpn_QiM-+Ti!N(Ld0bA*u zf|nGu6?_WNpr@!iwU3^oCn!fR(X%+EzgJv?*3o$~Xd|u!gYKhe0K4fr;AiO#z`gV) z;1}pEz(IN!@DWAN0}j$@TC2^{SwM>{z|A;1sf*#dQoVcvy%anSSC}yBn&M%X*UM@8 zHsZSc(4MAgMT^IU!g=0I(8lL5EG2qTbyAoimOV|sRci-E)(ULTofNX>1hc&~YD;b= z`{;1aE7crvgz}3r5EWz4a~z?BrEx;I!nZBT*_Q7~Z!R#hvN|S$LC+UPZo#60kU@Uv zk!&sSl&l$u(jcyFnyk5jT@i)FsyJ!7B}dQ+5ioY#_bL%3nlKWj5jo<@z;rD!KF5;p zJ1b1|g_=4if_bl$4RCIYwLs92DAvklv*?HhEi0v{6rII_9W;{*re7ApaXdcayyu@? zDSzB{#I*1wqPCJb;?8+~#pIBh&ihIYdhVQEuK7x?p=8jjRBcBQCxv5PP(9h;b5I8z zQ#O%eCnkI>mK8K)V+QLq-NgnYimIXqcF}h1pozOY^hV?XF2AOrPusF)I{BbhvOR-s zDtMkFjVad-82b?62{_0xQX}hO{vh@B5#zr9yg@X-hlpKeaZ7>9ZlZI%+-i=Di znYK$KSPwVe=96MB+U8_|9PW6+`3Oubm>Wn42R@$#pA0MT{CMDyZI)dR{#&w1d{Qjf z;=GX;{(@}@84E|NfE~+AF8n$_+^L8myD15qaTRSU1a)0a2Xn>5xjZk4#5}RltEgL@ zDJhIMAJ8Vf#5>DxrZh!_Cu@=ooyVhgj69MQ0J^wxUjNRmsb?>Ke&7c?{`0M$zOn9y zl+rb=Evb{%f=*{Aqa9n^Gq0i`pf{sn~?L1`5s$(vW;S%Ao z30$X?)~H3TE)oxD>_y&zUr1L7o`Lv&Cc5WE2z8t*k|!7H zeu&21`3&g;D|LKK`9DM;q4u7RuPDxOC&I6(rg_3F-R055^sEBr`40jZ=WhKcTRAD(}+tCzC<+a%4WIudfV`o z=zxk#7O{}9y@FM6V6~1NuslMIF&roCgF&KyVh!VR`{kR5k6x%a`a+mG_GfVCXLR9O zUJ0*#e`cz1eD{Hj&WUcxbUat|XBLIb96i#WZciUZ(x;MD9V%SepQ-uoA!*HviYa$j z;v{^xY8cBAz+N zwp1c&;5yIj2{i5%@1NHo;8* diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.pdb b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.pdb deleted file mode 100644 index 4498fae816e01f08ad6e3e3e01aea73a4c9e8845..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1112 zcmZWpU1(HC6rLG3*M$6S%ui!&b;II=LC0)MgIGbb8!JkF_wJe(QE%>!+soeEySX!) z7>Ok}wnUq16%`FaiwF{bP{9cC!Jij@P#*+AC>8ot5QOF_r9p~4XR~P_88~;&_nn#V z%$%9IQGIum5=yX@fpxV;Ljw`slqZNrhLHmcccprfdkJ&%3T7pZ? z0vA9osgn!fqfmHfa#t(#&j6odfTOmHVxh@Z7prGj%THH7);|4v?xcV1;dL0I_0+QB z5{QGJ*I!ZaQ5U&tu=0YB7)=Ai2J#4@-J0*n_sHefggR(NU^r+DzGooH8712p12hFJ zY8(JG1}t*(a;UKaW-j1OfCGR7g*dJW8;+)=622^-6HzhPbBdX92M0iB1my^c$A~9n z&Q^(`tSGqo03nsHHXNI-s*aA04_5qe{zlzDz1`cNtbAQ{N+*vxFSARN@%_2SryuN? znhu@o|1*A{X!?*;qK{F^Vq1%nQh2f=Zdiwf9nyturG=+)CzlqgIBS?0BQ0cIpJjTk zbPp=-2*s6J;D#N=xH|-gH z+?1tzODk%^jbHBW?h&Ck?y9-imb%HOZ`U-w_$3&eZTWfM`|fv@pU)n?^!ECRA4_4c zG_Vaz%IX)TTV%FFs2F7B?E~h<#lRj*<_ud`xs>JRlP6r)mOSZL3YP*`@UuAdM$R)F z6&C}R800b6QJ!ntP>xTQ1>4<}u;uDyye_-}%M|j{`I>?V2$;%p9m#hJM|hT5S_mb? zA+_MQSx$f50{<-(Ed@*B2}5RN&9WS=Ep4@hv8{$OxZZEaY)d#QOh+Ekk>9AVQ9n%m zuPLQ|lKNTd4^#gb^?#-QlqTJrXNn?EWL;UcR9gm@GA#Z@*+Q8ja7;lwCjT#g*8ebC zKDu_aAvDq1aP7v?Z^r+xmr$~q6_=5< e41N|{8Qk$UMyd#9LmI82-Sh}P!}T@rc>e>SC?U@P diff --git a/RestaurantReview/R2/obj/R2.csproj.nuget.cache b/RestaurantReview/R2/obj/R2.csproj.nuget.cache deleted file mode 100644 index f32d449f..00000000 --- a/RestaurantReview/R2/obj/R2.csproj.nuget.cache +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 1, - "dgSpecHash": "pFMwNsfquGsIR5dqoIfRg4n4osu+kqczmXfSlp9kSI/x2hUIKoCPg0PiFpHOXutSfyXqyd/i0CbqRfalqNgpOA==", - "success": true -} \ No newline at end of file diff --git a/RestaurantReview/R2/obj/R2.csproj.nuget.dgspec.json b/RestaurantReview/R2/obj/R2.csproj.nuget.dgspec.json deleted file mode 100644 index aff44e91..00000000 --- a/RestaurantReview/R2/obj/R2.csproj.nuget.dgspec.json +++ /dev/null @@ -1,151 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\R2\\R2.csproj": {} - }, - "projects": { - "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\R2\\R2.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\R2\\R2.csproj", - "projectName": "R2", - "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\R2\\R2.csproj", - "packagesPath": "C:\\Users\\Raizel Seliger\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\R2\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\Raizel Seliger\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp2.2" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp2.2": { - "projectReferences": { - "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj": { - "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp2.2": { - "dependencies": { - "MSTest.TestAdapter": { - "target": "Package", - "version": "[1.4.0, )" - }, - "MSTest.TestFramework": { - "target": "Package", - "version": "[1.4.0, )" - }, - "Microsoft.AspNetCore.Mvc.Core": { - "target": "Package", - "version": "[2.2.5, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[16.0.1, )" - }, - "Microsoft.NETCore.App": { - "suppressParent": "All", - "target": "Package", - "version": "[2.2.0, )", - "autoReferenced": true - }, - "System.Data.SqlClient": { - "target": "Package", - "version": "[4.8.0-preview1.19504.10, )" - } - }, - "imports": [ - "net461" - ], - "assetTargetFallback": true, - "warn": true - } - } - }, - "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj", - "projectName": "RestaurantReview", - "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj", - "packagesPath": "C:\\Users\\Raizel Seliger\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\Raizel Seliger\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp2.2" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "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 - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design": { - "target": "Package", - "version": "[2.2.3, )" - } - }, - "imports": [ - "net461" - ], - "assetTargetFallback": true, - "warn": true - } - } - } - } -} \ No newline at end of file diff --git a/RestaurantReview/R2/obj/R2.csproj.nuget.g.props b/RestaurantReview/R2/obj/R2.csproj.nuget.g.props deleted file mode 100644 index a26bb4b5..00000000 --- a/RestaurantReview/R2/obj/R2.csproj.nuget.g.props +++ /dev/null @@ -1,24 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Raizel Seliger\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder - PackageReference - 5.1.0 - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - - - - C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.codeanalysis.analyzers\1.1.0 - - \ No newline at end of file diff --git a/RestaurantReview/R2/obj/R2.csproj.nuget.g.targets b/RestaurantReview/R2/obj/R2.csproj.nuget.g.targets deleted file mode 100644 index d48dc196..00000000 --- a/RestaurantReview/R2/obj/R2.csproj.nuget.g.targets +++ /dev/null @@ -1,12 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - - - \ No newline at end of file diff --git a/RestaurantReview/R2/obj/project.assets.json b/RestaurantReview/R2/obj/project.assets.json deleted file mode 100644 index 3f3ef9bf..00000000 --- a/RestaurantReview/R2/obj/project.assets.json +++ /dev/null @@ -1,9677 +0,0 @@ -{ - "version": 3, - "targets": { - ".NETCoreApp,Version=v2.2": { - "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.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.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.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.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.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.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.Core/2.2.5": { - "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.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.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.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.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.CSharp.Workspaces/2.8.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.CSharp": "[2.8.0]", - "Microsoft.CodeAnalysis.Workspaces.Common": "[2.8.0]" - }, - "compile": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Common": "[2.8.0]", - "System.Composition": "1.0.31", - "System.Diagnostics.Contracts": "4.3.0", - "System.Linq.Parallel": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks.Parallel": "4.3.0" - }, - "compile": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} - } - }, - "Microsoft.CodeCoverage/16.0.1": { - "type": "package", - "compile": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "runtime": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "build": { - "build/netstandard1.0/Microsoft.CodeCoverage.props": {}, - "build/netstandard1.0/Microsoft.CodeCoverage.targets": {} - } - }, - "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.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.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.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.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.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.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.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.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.NET.Test.Sdk/16.0.1": { - "type": "package", - "dependencies": { - "Microsoft.CodeCoverage": "16.0.1", - "Microsoft.TestPlatform.TestHost": "16.0.1" - }, - "build": { - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props": {}, - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} - } - }, - "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/3.1.0-preview1.19504.10": { - "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.TestPlatform.ObjectModel/16.0.1": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.0", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.ComponentModel.TypeConverter": "4.1.0", - "System.Diagnostics.Process": "4.1.0", - "System.Diagnostics.TextWriterTraceListener": "4.0.0", - "System.Diagnostics.TraceSource": "4.0.0", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", - "System.Runtime.Loader": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.2", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Thread": "4.0.0", - "System.Xml.XPath.XmlDocument": "4.0.1" - }, - "compile": { - "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "runtime": { - "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "resource": { - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/16.0.1": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyModel": "1.0.3", - "Microsoft.TestPlatform.ObjectModel": "16.0.1", - "Newtonsoft.Json": "9.0.1" - }, - "compile": { - "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netstandard1.5/testhost.dll": {} - }, - "runtime": { - "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netstandard1.5/testhost.dll": {} - }, - "resource": { - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.3" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { - "type": "package", - "dependencies": { - "Newtonsoft.Json": "11.0.2" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.3", - "Newtonsoft.Json": "11.0.2" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.3" - }, - "compile": { - "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} - }, - "runtime": { - "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.3" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "2.2.0", - "Microsoft.CodeAnalysis.CSharp": "2.8.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.3" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.CSharp.Workspaces": "2.8.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.3", - "Newtonsoft.Json": "11.0.2", - "NuGet.Frameworks": "4.7.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration": "2.2.3" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "4.7.0-preview1.19504.10", - "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "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" - } - } - }, - "MSTest.TestAdapter/1.4.0": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "System.Diagnostics.TextWriterTraceListener": "4.3.0" - }, - "build": { - "build/netcoreapp1.0/MSTest.TestAdapter.props": {} - } - }, - "MSTest.TestFramework/1.4.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {}, - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {} - }, - "runtime": { - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {}, - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {} - } - }, - "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": {} - } - }, - "NuGet.Frameworks/4.7.0": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "compile": { - "lib/netstandard1.6/NuGet.Frameworks.dll": {} - }, - "runtime": { - "lib/netstandard1.6/NuGet.Frameworks.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.7.0-preview1.19504.10": { - "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.3.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.ComponentModel.Primitives/4.1.0": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Primitives": "4.1.0", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Composition/1.0.31": { - "type": "package", - "dependencies": { - "System.Composition.AttributedModel": "1.0.31", - "System.Composition.Convention": "1.0.31", - "System.Composition.Hosting": "1.0.31", - "System.Composition.Runtime": "1.0.31", - "System.Composition.TypedParts": "1.0.31" - } - }, - "System.Composition.AttributedModel/1.0.31": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Composition.AttributedModel.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Composition.AttributedModel.dll": {} - } - }, - "System.Composition.Convention/1.0.31": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Composition.AttributedModel": "1.0.31", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Composition.Convention.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Composition.Convention.dll": {} - } - }, - "System.Composition.Hosting/1.0.31": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Composition.Runtime": "1.0.31", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Composition.Hosting.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Composition.Hosting.dll": {} - } - }, - "System.Composition.Runtime/1.0.31": { - "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.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Composition.Runtime.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Composition.Runtime.dll": {} - } - }, - "System.Composition.TypedParts/1.0.31": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Composition.AttributedModel": "1.0.31", - "System.Composition.Hosting": "1.0.31", - "System.Composition.Runtime": "1.0.31", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Composition.TypedParts.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Composition.TypedParts.dll": {} - } - }, - "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.8.0-preview1.19504.10": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Registry": "4.7.0-preview1.19504.10", - "System.Diagnostics.DiagnosticSource": "4.7.0-preview1.19504.10", - "System.Security.Principal.Windows": "4.7.0-preview1.19504.10", - "System.Text.Encoding.CodePages": "4.7.0-preview1.19504.10", - "runtime.native.System.Data.SqlClient.sni": "4.7.0-preview1.19504.10" - }, - "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.7.0-preview1.19504.10": { - "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.Process/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "Microsoft.Win32.Registry": "4.0.0", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Thread": "4.0.0", - "System.Threading.ThreadPool": "4.0.10", - "runtime.native.System": "4.0.0" - }, - "compile": { - "ref/netstandard1.4/System.Diagnostics.Process.dll": {} - }, - "runtimeTargets": { - "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": { - "assetType": "runtime", - "rid": "linux" - }, - "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.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.TextWriterTraceListener/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.TraceSource": "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" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.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.TraceSource/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.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "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.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.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "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.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.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.Parallel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "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.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Linq.Parallel.dll": {} - } - }, - "System.Memory/4.5.1": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "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.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "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/_._": {} - }, - "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/_._": {} - }, - "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.4.2": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.Immutable": "1.3.1", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard1.1/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/netstandard1.1/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.7.0-preview1.19504.10": { - "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.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "runtime.native.System": "4.0.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Runtime.Loader/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Loader.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.Loader.dll": {} - } - }, - "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.Json/4.0.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Security.AccessControl/4.7.0-preview1.19504.10": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.AccessControl.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "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.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/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.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.Principal.Windows/4.7.0-preview1.19504.10": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/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.7.0-preview1.19504.10": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime.CompilerServices.Unsafe": "4.7.0-preview1.19504.10" - }, - "compile": { - "lib/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.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.1": { - "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/System.Threading.Thread.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Thread.dll": {} - } - }, - "System.Threading.ThreadPool/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} - } - }, - "System.ValueTuple/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.ValueTuple.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ValueTuple.dll": {} - } - }, - "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.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "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/System.Xml.XPath.dll": {} - }, - "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": {} - } - }, - "System.Xml.XPath.XmlDocument/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XPath": "4.0.1", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} - } - }, - "RestaurantReview/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v2.2", - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.Design": "2.2.3" - }, - "compile": { - "bin/placeholder/RestaurantReview.dll": {} - }, - "runtime": { - "bin/placeholder/RestaurantReview.dll": {} - } - } - } - }, - "libraries": { - "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.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.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.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.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.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.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.Core/2.2.5": { - "sha512": "/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.core/2.2.5", - "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.5.nupkg.sha512", - "microsoft.aspnetcore.mvc.core.nuspec" - ] - }, - "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.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.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.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.CSharp.Workspaces/2.8.0": { - "sha512": "EJWaxi2bI47iEZen/nZkJEDZCrP9Oj3PJtMwBv34Z0ZvvdSkpgsdqlHSud8d5vC53LnCXLfBLewfqHcILDVSDw==", - "type": "package", - "path": "microsoft.codeanalysis.csharp.workspaces/2.8.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", - "microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg.sha512", - "microsoft.codeanalysis.csharp.workspaces.nuspec" - ] - }, - "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { - "sha512": "tJlJ99SD8bHBAXShOG/pXQ1K118cnsF01obEf9aAtdgLbw3yEPahZ7qvWeGMjrheUhvOsSkv/wTKYg9euKa8MQ==", - "type": "package", - "path": "microsoft.codeanalysis.workspaces.common/2.8.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.dll", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.pdb", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.xml", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.dll", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.pdb", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.xml", - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll", - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.pdb", - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.xml", - "microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512", - "microsoft.codeanalysis.workspaces.common.nuspec" - ] - }, - "Microsoft.CodeCoverage/16.0.1": { - "sha512": "W7WI3iH6At2I/9x2ODgCIIMO0QfpA7ZCoHkeygMLAaz3Nms/GsugKz9N4hkTve2Lj66g2K4CAmbwe6utEH66lw==", - "type": "package", - "path": "microsoft.codecoverage/16.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/netstandard1.0/CodeCoverage/CodeCoverage.config", - "build/netstandard1.0/CodeCoverage/CodeCoverage.exe", - "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll", - "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll", - "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll", - "build/netstandard1.0/CodeCoverage/covrun32.dll", - "build/netstandard1.0/CodeCoverage/msdia140.dll", - "build/netstandard1.0/Microsoft.CodeCoverage.props", - "build/netstandard1.0/Microsoft.CodeCoverage.targets", - "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll", - "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "microsoft.codecoverage.16.0.1.nupkg.sha512", - "microsoft.codecoverage.nuspec" - ] - }, - "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.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.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.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.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.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.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.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.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.NET.Test.Sdk/16.0.1": { - "sha512": "ON7UIMIhAwrYb0ep+3ztoWVGvtfo88IhiHVnbyOiuVsi8bOMCdMPVcR+EX1WYGgKAd030pHRaxazMlkQ6uDyJQ==", - "type": "package", - "path": "microsoft.net.test.sdk/16.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/net40/Microsoft.NET.Test.Sdk.props", - "build/net40/Microsoft.NET.Test.Sdk.targets", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets", - "build/uap10.0/Microsoft.NET.Test.Sdk.props", - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", - "microsoft.net.test.sdk.16.0.1.nupkg.sha512", - "microsoft.net.test.sdk.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/3.1.0-preview1.19504.10": { - "sha512": "bS52lVUR5Mb/yuorV8cLSvsPDEOms1LTQ+bN8s3/rrdaU3VSpfvWGorRk5xftj1kyrJ7Dxlw/GADyyekoOfDnQ==", - "type": "package", - "path": "microsoft.netcore.platforms/3.1.0-preview1.19504.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.3.1.0-preview1.19504.10.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.TestPlatform.ObjectModel/16.0.1": { - "sha512": "AIQ9azu2b31R8nOuFnR32d7cdWidjjLl1dFyLC3LNifzAJoEdCUgkHWUpTTHKWcHhwa9E/NRcdzVple8pbKJ9Q==", - "type": "package", - "path": "microsoft.testplatform.objectmodel/16.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.4/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard1.4/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard1.4/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "microsoft.testplatform.objectmodel.16.0.1.nupkg.sha512", - "microsoft.testplatform.objectmodel.nuspec" - ] - }, - "Microsoft.TestPlatform.TestHost/16.0.1": { - "sha512": "H4bYjOjkK4FYQ23RnsHm8FcqR0te8Eky9i9sS1IjVFBlDh1MU7aIwmBUpKpaSAy5xNu7UTHku4RZTWzWHDzS7g==", - "type": "package", - "path": "microsoft.testplatform.testhost/16.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "build/uap10.0/Microsoft.TestPlatform.TestHost.props", - "build/uap10.0/Microsoft.TestPlatform.TestHost.targets", - "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/x64/msdia140.dll", - "build/uap10.0/x86/msdia140.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/_._", - "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll", - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/testhost.deps.json", - "lib/netstandard1.5/testhost.dll", - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/x64/msdia140.dll", - "lib/netstandard1.5/x86/msdia140.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/uap10.0/testhost.dll", - "microsoft.testplatform.testhost.16.0.1.nupkg.sha512", - "microsoft.testplatform.testhost.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { - "sha512": "wc71c9HWTeXy9/w9O4Yr2LKmdJjVyIoJ/XQX8/6uma4EAVU25RLtUWlvhA0gpgFw9Kf1TkCv70x+CbKnRw/d8Q==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.xml", - "microsoft.visualstudio.web.codegeneration.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { - "sha512": "wXlpxDfRD5aPypa0p0UE97tkRQvAz9D9FfA2GITzr+LlGIpybyGnxkwGVp0Vha1Ibr0kJG0HdnqfeHME/WuAcQ==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.xml", - "microsoft.visualstudio.web.codegeneration.contracts.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.contracts.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { - "sha512": "APdPavBUYcGPBaW4rjxBVRePWmg0ZzhIRymOzvLFWUtzfvJKw1+8PaCzsH7Uvl+felm0L1UVQwBx1Do0R7j7Xg==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.core/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml", - "microsoft.visualstudio.web.codegeneration.core.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.core.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { - "sha512": "xH50cYOU+infRq4KikBuu2qeXcwW4tE0D5TDfKLuLrEtDm90aXI+0qygPsqyISf+lOW7L7rQ64BH/dRYkK3c3Q==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.design/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/dotnet-aspnet-codegenerator-design.exe", - "lib/net461/dotnet-aspnet-codegenerator-design.xml", - "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll", - "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.xml", - "microsoft.visualstudio.web.codegeneration.design.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.design.nuspec", - "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.exe", - "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.xml", - "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.exe", - "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.xml", - "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.exe", - "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.xml", - "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.exe", - "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.xml" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { - "sha512": "N9S7TeFZjXzNY9OVbz4OFw9cM9oEeMaCnuLFhetNioy/wPwZbgglrctAEYxfDbvocQ17YCAVR2EMRbYHNDHyVg==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Templates/DbContext/NewLocalDbContext.cshtml", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml", - "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { - "sha512": "sW2lHnOoL1xFnSm/2zSedeUoQPlbhPfWjSuUYsxYUj/N5QmLmH98ZLaqP26k6Om/heR6Gux/veXI96yM1Parow==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.templating/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml", - "microsoft.visualstudio.web.codegeneration.templating.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.templating.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { - "sha512": "/r/y+XpOpbCwN/M/HopjfGTDRlmixTd4G6HG6FaBkD/YF3T1u+4WMRVtuB6zz7aw571HmX+6UokEa6HJSwkPDA==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.utils/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml", - "microsoft.visualstudio.web.codegeneration.utils.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.utils.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { - "sha512": "0gVuA4KUCHFM4M/9SjG+7j7BzZ7SW/BufF97Q78i2VV8JBbQXc/5Rf6YUG1VGW2fwSEOl9+S26utEGS+86GGGw==", - "type": "package", - "path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Generators/ParameterDefinitions/area.json", - "Generators/ParameterDefinitions/controller.json", - "Generators/ParameterDefinitions/identity.json", - "Generators/ParameterDefinitions/razorpage.json", - "Generators/ParameterDefinitions/view.json", - "Templates/ControllerGenerator/ApiControllerWithActions.cshtml", - "Templates/ControllerGenerator/ApiControllerWithContext.cshtml", - "Templates/ControllerGenerator/ApiEmptyController.cshtml", - "Templates/ControllerGenerator/ControllerWithActions.cshtml", - "Templates/ControllerGenerator/EmptyController.cshtml", - "Templates/ControllerGenerator/MvcControllerWithContext.cshtml", - "Templates/Identity/Data/ApplicationDbContext.cshtml", - "Templates/Identity/Data/ApplicationUser.cshtml", - "Templates/Identity/IdentityHostingStartup.cshtml", - "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml", - "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml", - "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml", - "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml", - "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml", - "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", - "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml", - "Templates/Identity/Pages/Account/Account.Lockout.cshtml", - "Templates/Identity/Pages/Account/Account.Login.cs.cshtml", - "Templates/Identity/Pages/Account/Account.Login.cshtml", - "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml", - "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml", - "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", - "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml", - "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml", - "Templates/Identity/Pages/Account/Account.Logout.cshtml", - "Templates/Identity/Pages/Account/Account.Register.cs.cshtml", - "Templates/Identity/Pages/Account/Account.Register.cshtml", - "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml", - "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml", - "Templates/Identity/Pages/Account/Account._ViewImports.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", - "Templates/Identity/Pages/Error.cs.cshtml", - "Templates/Identity/Pages/Error.cshtml", - "Templates/Identity/Pages/_Layout.cshtml", - "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml", - "Templates/Identity/Pages/_ViewImports.cshtml", - "Templates/Identity/Pages/_ViewStart.cshtml", - "Templates/Identity/ScaffoldingReadme.cshtml", - "Templates/Identity/SupportPages._CookieConsentPartial.cshtml", - "Templates/Identity/SupportPages._ViewImports.cshtml", - "Templates/Identity/SupportPages._ViewStart.cshtml", - "Templates/Identity/_LoginPartial.cshtml", - "Templates/Identity/wwwroot/css/site.css", - "Templates/Identity/wwwroot/favicon.ico", - "Templates/Identity/wwwroot/js/site.js", - "Templates/Identity/wwwroot/lib/bootstrap/LICENSE", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map", - "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", - "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", - "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", - "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md", - "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js", - "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", - "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js", - "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", - "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt", - "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js", - "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js", - "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map", - "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml", - "Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml", - "Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml", - "Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml", - "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml", - "Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map", - "Templates/MvcLayout/Error.cshtml", - "Templates/MvcLayout/_Layout.cshtml", - "Templates/RazorPageGenerator/Create.cshtml", - "Templates/RazorPageGenerator/CreatePageModel.cshtml", - "Templates/RazorPageGenerator/Delete.cshtml", - "Templates/RazorPageGenerator/DeletePageModel.cshtml", - "Templates/RazorPageGenerator/Details.cshtml", - "Templates/RazorPageGenerator/DetailsPageModel.cshtml", - "Templates/RazorPageGenerator/Edit.cshtml", - "Templates/RazorPageGenerator/EditPageModel.cshtml", - "Templates/RazorPageGenerator/Empty.cshtml", - "Templates/RazorPageGenerator/EmptyPageModel.cshtml", - "Templates/RazorPageGenerator/List.cshtml", - "Templates/RazorPageGenerator/ListPageModel.cshtml", - "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Empty.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/EmptyPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml", - "Templates/Startup/ReadMe.cshtml", - "Templates/Startup/Startup.cshtml", - "Templates/ViewGenerator/Create.cshtml", - "Templates/ViewGenerator/Delete.cshtml", - "Templates/ViewGenerator/Details.cshtml", - "Templates/ViewGenerator/Edit.cshtml", - "Templates/ViewGenerator/Empty.cshtml", - "Templates/ViewGenerator/List.cshtml", - "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml", - "lib/netstandard2.0/bootstrap3_identitygeneratorfilesconfig.json", - "lib/netstandard2.0/bootstrap4_identitygeneratorfilesconfig.json", - "microsoft.visualstudio.web.codegenerators.mvc.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegenerators.mvc.nuspec" - ] - }, - "Microsoft.Win32.Primitives/4.0.1": { - "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", - "type": "package", - "path": "microsoft.win32.primitives/4.0.1", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.win32.primitives.4.0.1.nupkg.sha512", - "microsoft.win32.primitives.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { - "sha512": "CXsd7k96HdyP0vV9T5mQQ0O1Lj00xJBHTQ+d8Y99mxu/GuTB9MYKeGE1b58AIaxF88maJOFMtt6WhiqEPC9ONw==", - "type": "package", - "path": "microsoft.win32.registry/4.7.0-preview1.19504.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.xml", - "lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "microsoft.win32.registry.4.7.0-preview1.19504.10.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/net472/Microsoft.Win32.Registry.dll", - "ref/net472/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/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "MSTest.TestAdapter/1.4.0": { - "sha512": "t2/rL9DG+cVAgPs98OGm2sbZ4FTgn+MGEan5P9NRAgqMV3+nYRKG7/5R0jY7lBMq9ISms+84MSqTHWs6QnPt4A==", - "type": "package", - "path": "mstest.testadapter/1.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll", - "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll", - "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", - "build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/net45/MSTest.TestAdapter.props", - "build/net45/MSTest.TestAdapter.targets", - "build/netcoreapp1.0/MSTest.TestAdapter.props", - "build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", - "build/uap10.0/MSTest.TestAdapter.props", - "build/uap10.0/MSTest.TestAdapter.targets", - "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", - "mstest.testadapter.1.4.0.nupkg.sha512", - "mstest.testadapter.nuspec" - ] - }, - "MSTest.TestFramework/1.4.0": { - "sha512": "kV/yZ0XLiOElsVeLT0GnNrsoKcPvVNOP6Cv2zkAiceJY0rpro0L+3t54bRApLwTg1mxlo4rLziBG7X6X69KcrQ==", - "type": "package", - "path": "mstest.testframework/1.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML", - "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", - "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.XML", - "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML", - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML", - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "mstest.testframework.1.4.0.nupkg.sha512", - "mstest.testframework.nuspec" - ] - }, - "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" - ] - }, - "NuGet.Frameworks/4.7.0": { - "sha512": "qbXaB76XYUVLocLBs8Z9TS/ERGK2wm797feO+0JEPFvT7o7MRadOR77mqaSD4J1k8G+DlZQyq+MlkCuxrkr3ag==", - "type": "package", - "path": "nuget.frameworks/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net40/NuGet.Frameworks.dll", - "lib/net40/NuGet.Frameworks.xml", - "lib/net46/NuGet.Frameworks.dll", - "lib/net46/NuGet.Frameworks.xml", - "lib/netstandard1.6/NuGet.Frameworks.dll", - "lib/netstandard1.6/NuGet.Frameworks.xml", - "nuget.frameworks.4.7.0.nupkg.sha512", - "nuget.frameworks.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": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "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.7.0-preview1.19504.10": { - "sha512": "ITo7gZ7yGHMkNj1O6PRmK+i917jbWNs5CZN/jwVSh8hO+3+8C5roDkXJYbM1hA5LZAUagtm9ph5whvnDOTilDg==", - "type": "package", - "path": "runtime.native.system.data.sqlclient.sni/4.7.0-preview1.19504.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.native.system.data.sqlclient.sni.4.7.0-preview1.19504.10.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", - ".signature.p7s", - "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", - ".signature.p7s", - "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", - ".signature.p7s", - "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": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "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": "T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", - "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": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "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.3.1": { - "sha512": "n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", - "type": "package", - "path": "system.collections.immutable/1.3.1", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Collections.Immutable.dll", - "lib/netstandard1.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.3.1.nupkg.sha512", - "system.collections.immutable.nuspec" - ] - }, - "System.Collections.NonGeneric/4.0.1": { - "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==", - "type": "package", - "path": "system.collections.nongeneric/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.0.1.nupkg.sha512", - "system.collections.nongeneric.nuspec" - ] - }, - "System.Collections.Specialized/4.0.1": { - "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==", - "type": "package", - "path": "system.collections.specialized/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.0.1.nupkg.sha512", - "system.collections.specialized.nuspec" - ] - }, - "System.ComponentModel/4.0.1": { - "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", - "type": "package", - "path": "system.componentmodel/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.dll", - "lib/netstandard1.3/System.ComponentModel.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.ComponentModel.dll", - "ref/netcore50/System.ComponentModel.xml", - "ref/netcore50/de/System.ComponentModel.xml", - "ref/netcore50/es/System.ComponentModel.xml", - "ref/netcore50/fr/System.ComponentModel.xml", - "ref/netcore50/it/System.ComponentModel.xml", - "ref/netcore50/ja/System.ComponentModel.xml", - "ref/netcore50/ko/System.ComponentModel.xml", - "ref/netcore50/ru/System.ComponentModel.xml", - "ref/netcore50/zh-hans/System.ComponentModel.xml", - "ref/netcore50/zh-hant/System.ComponentModel.xml", - "ref/netstandard1.0/System.ComponentModel.dll", - "ref/netstandard1.0/System.ComponentModel.xml", - "ref/netstandard1.0/de/System.ComponentModel.xml", - "ref/netstandard1.0/es/System.ComponentModel.xml", - "ref/netstandard1.0/fr/System.ComponentModel.xml", - "ref/netstandard1.0/it/System.ComponentModel.xml", - "ref/netstandard1.0/ja/System.ComponentModel.xml", - "ref/netstandard1.0/ko/System.ComponentModel.xml", - "ref/netstandard1.0/ru/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.4.0.1.nupkg.sha512", - "system.componentmodel.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.ComponentModel.EventBasedAsync/4.0.11": { - "sha512": "Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==", - "type": "package", - "path": "system.componentmodel.eventbasedasync/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll", - "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.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.ComponentModel.EventBasedAsync.dll", - "ref/netcore50/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll", - "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512", - "system.componentmodel.eventbasedasync.nuspec" - ] - }, - "System.ComponentModel.Primitives/4.1.0": { - "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==", - "type": "package", - "path": "system.componentmodel.primitives/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.Primitives.dll", - "lib/netstandard1.0/System.ComponentModel.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.Primitives.dll", - "ref/netstandard1.0/System.ComponentModel.Primitives.dll", - "ref/netstandard1.0/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.primitives.4.1.0.nupkg.sha512", - "system.componentmodel.primitives.nuspec" - ] - }, - "System.ComponentModel.TypeConverter/4.1.0": { - "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==", - "type": "package", - "path": "system.componentmodel.typeconverter/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.TypeConverter.dll", - "lib/net462/System.ComponentModel.TypeConverter.dll", - "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.TypeConverter.dll", - "ref/net462/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.typeconverter.4.1.0.nupkg.sha512", - "system.componentmodel.typeconverter.nuspec" - ] - }, - "System.Composition/1.0.31": { - "sha512": "I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==", - "type": "package", - "path": "system.composition/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "system.composition.1.0.31.nupkg.sha512", - "system.composition.nuspec" - ] - }, - "System.Composition.AttributedModel/1.0.31": { - "sha512": "NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==", - "type": "package", - "path": "system.composition.attributedmodel/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Composition.AttributedModel.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll", - "system.composition.attributedmodel.1.0.31.nupkg.sha512", - "system.composition.attributedmodel.nuspec" - ] - }, - "System.Composition.Convention/1.0.31": { - "sha512": "GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==", - "type": "package", - "path": "system.composition.convention/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Composition.Convention.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll", - "system.composition.convention.1.0.31.nupkg.sha512", - "system.composition.convention.nuspec" - ] - }, - "System.Composition.Hosting/1.0.31": { - "sha512": "fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==", - "type": "package", - "path": "system.composition.hosting/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Composition.Hosting.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll", - "system.composition.hosting.1.0.31.nupkg.sha512", - "system.composition.hosting.nuspec" - ] - }, - "System.Composition.Runtime/1.0.31": { - "sha512": "0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==", - "type": "package", - "path": "system.composition.runtime/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Composition.Runtime.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll", - "system.composition.runtime.1.0.31.nupkg.sha512", - "system.composition.runtime.nuspec" - ] - }, - "System.Composition.TypedParts/1.0.31": { - "sha512": "0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==", - "type": "package", - "path": "system.composition.typedparts/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Composition.TypedParts.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll", - "system.composition.typedparts.1.0.31.nupkg.sha512", - "system.composition.typedparts.nuspec" - ] - }, - "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.8.0-preview1.19504.10": { - "sha512": "6isAINOX/v56q7JLaC9XDXzc7T/yh62QR+pa+Jt0ayjmYmLRCmzyt4rTy5jWe15ZcQfS9yQNxIzwyO7yGs6Zbg==", - "type": "package", - "path": "system.data.sqlclient/4.8.0-preview1.19504.10", - "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/net461/System.Data.SqlClient.xml", - "lib/netcoreapp2.1/System.Data.SqlClient.dll", - "lib/netcoreapp2.1/System.Data.SqlClient.xml", - "lib/netstandard1.2/System.Data.SqlClient.dll", - "lib/netstandard1.2/System.Data.SqlClient.xml", - "lib/netstandard1.3/System.Data.SqlClient.dll", - "lib/netstandard1.3/System.Data.SqlClient.xml", - "lib/netstandard2.0/System.Data.SqlClient.dll", - "lib/netstandard2.0/System.Data.SqlClient.xml", - "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/netcoreapp2.1/System.Data.SqlClient.xml", - "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", - "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", - "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", - "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/net461/System.Data.SqlClient.xml", - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", - "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", - "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", - "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", - "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", - "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", - "system.data.sqlclient.4.8.0-preview1.19504.10.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.7.0-preview1.19504.10": { - "sha512": "CxeUzuw9Lz1+6gkPpQI83BeoUNxn6VnDF28qazxSRyRzWSzLzoeh9ObYG7LYqcPckgm0UaE9nQdd7oDq5ncMKg==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/4.7.0-preview1.19504.10", - "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.7.0-preview1.19504.10.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.Process/4.1.0": { - "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", - "type": "package", - "path": "system.diagnostics.process/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.Process.dll", - "lib/net461/System.Diagnostics.Process.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.Process.dll", - "ref/net461/System.Diagnostics.Process.dll", - "ref/netstandard1.3/System.Diagnostics.Process.dll", - "ref/netstandard1.3/System.Diagnostics.Process.xml", - "ref/netstandard1.3/de/System.Diagnostics.Process.xml", - "ref/netstandard1.3/es/System.Diagnostics.Process.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Process.xml", - "ref/netstandard1.3/it/System.Diagnostics.Process.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Process.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Process.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Process.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml", - "ref/netstandard1.4/System.Diagnostics.Process.dll", - "ref/netstandard1.4/System.Diagnostics.Process.xml", - "ref/netstandard1.4/de/System.Diagnostics.Process.xml", - "ref/netstandard1.4/es/System.Diagnostics.Process.xml", - "ref/netstandard1.4/fr/System.Diagnostics.Process.xml", - "ref/netstandard1.4/it/System.Diagnostics.Process.xml", - "ref/netstandard1.4/ja/System.Diagnostics.Process.xml", - "ref/netstandard1.4/ko/System.Diagnostics.Process.xml", - "ref/netstandard1.4/ru/System.Diagnostics.Process.xml", - "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml", - "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", - "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", - "runtimes/win/lib/net46/System.Diagnostics.Process.dll", - "runtimes/win/lib/net461/System.Diagnostics.Process.dll", - "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", - "runtimes/win7/lib/netcore50/_._", - "system.diagnostics.process.4.1.0.nupkg.sha512", - "system.diagnostics.process.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.TextWriterTraceListener/4.3.0": { - "sha512": "F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==", - "type": "package", - "path": "system.diagnostics.textwritertracelistener/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.TextWriterTraceListener.dll", - "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.TextWriterTraceListener.dll", - "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll", - "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/de/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/es/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/fr/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/it/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/ja/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/ko/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/ru/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.TextWriterTraceListener.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512", - "system.diagnostics.textwritertracelistener.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.TraceSource/4.3.0": { - "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", - "type": "package", - "path": "system.diagnostics.tracesource/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.TraceSource.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.TraceSource.dll", - "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", - "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", - "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", - "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", - "system.diagnostics.tracesource.4.3.0.nupkg.sha512", - "system.diagnostics.tracesource.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.0.1": { - "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", - "type": "package", - "path": "system.globalization.extensions/4.0.1", - "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.0.1.nupkg.sha512", - "system.globalization.extensions.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.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.Parallel/4.3.0": { - "sha512": "td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==", - "type": "package", - "path": "system.linq.parallel/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Linq.Parallel.dll", - "lib/netstandard1.3/System.Linq.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.Linq.Parallel.dll", - "ref/netcore50/System.Linq.Parallel.xml", - "ref/netcore50/de/System.Linq.Parallel.xml", - "ref/netcore50/es/System.Linq.Parallel.xml", - "ref/netcore50/fr/System.Linq.Parallel.xml", - "ref/netcore50/it/System.Linq.Parallel.xml", - "ref/netcore50/ja/System.Linq.Parallel.xml", - "ref/netcore50/ko/System.Linq.Parallel.xml", - "ref/netcore50/ru/System.Linq.Parallel.xml", - "ref/netcore50/zh-hans/System.Linq.Parallel.xml", - "ref/netcore50/zh-hant/System.Linq.Parallel.xml", - "ref/netstandard1.1/System.Linq.Parallel.dll", - "ref/netstandard1.1/System.Linq.Parallel.xml", - "ref/netstandard1.1/de/System.Linq.Parallel.xml", - "ref/netstandard1.1/es/System.Linq.Parallel.xml", - "ref/netstandard1.1/fr/System.Linq.Parallel.xml", - "ref/netstandard1.1/it/System.Linq.Parallel.xml", - "ref/netstandard1.1/ja/System.Linq.Parallel.xml", - "ref/netstandard1.1/ko/System.Linq.Parallel.xml", - "ref/netstandard1.1/ru/System.Linq.Parallel.xml", - "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml", - "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.parallel.4.3.0.nupkg.sha512", - "system.linq.parallel.nuspec" - ] - }, - "System.Memory/4.5.1": { - "sha512": "sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==", - "type": "package", - "path": "system.memory/4.5.1", - "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/_._", - "ref/netstandard1.1/System.Memory.dll", - "ref/netstandard1.1/System.Memory.xml", - "ref/netstandard2.0/System.Memory.dll", - "ref/netstandard2.0/System.Memory.xml", - "system.memory.4.5.1.nupkg.sha512", - "system.memory.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.1.1": { - "sha512": "lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==", - "type": "package", - "path": "system.private.datacontractserialization/4.1.1", - "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.1.1.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", - ".signature.p7s", - "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.4.2": { - "sha512": "KYPNMDrLB2R+G5JJiJ2fjBpihtktKVIjsirmyyv+VDo5rQkIR9BWeCYM1wDSzbQatWNZ/NQfPsQyTB1Ui3qBfQ==", - "type": "package", - "path": "system.reflection.metadata/1.4.2", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.1/System.Reflection.Metadata.dll", - "lib/netstandard1.1/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "lib/portable-net45+win8/System.Reflection.Metadata.xml", - "system.reflection.metadata.1.4.2.nupkg.sha512", - "system.reflection.metadata.nuspec" - ] - }, - "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.7.0-preview1.19504.10": { - "sha512": "Zw6YIPYZNJdb5fVVlLLG0i9NO/p+10u8LM8ApWat+9oLo15xaCGC6XyYALrvc+DzmxkwWLxU6n8SNf71V+x3+Q==", - "type": "package", - "path": "system.runtime.compilerservices.unsafe/4.7.0-preview1.19504.10", - "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.7.0-preview1.19504.10.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.0.0": { - "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", - "type": "package", - "path": "system.runtime.interopservices.runtimeinformation/4.0.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "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.0.0.nupkg.sha512", - "system.runtime.interopservices.runtimeinformation.nuspec" - ] - }, - "System.Runtime.Loader/4.0.0": { - "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", - "type": "package", - "path": "system.runtime.loader/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net462/_._", - "lib/netstandard1.5/System.Runtime.Loader.dll", - "ref/netstandard1.5/System.Runtime.Loader.dll", - "ref/netstandard1.5/System.Runtime.Loader.xml", - "ref/netstandard1.5/de/System.Runtime.Loader.xml", - "ref/netstandard1.5/es/System.Runtime.Loader.xml", - "ref/netstandard1.5/fr/System.Runtime.Loader.xml", - "ref/netstandard1.5/it/System.Runtime.Loader.xml", - "ref/netstandard1.5/ja/System.Runtime.Loader.xml", - "ref/netstandard1.5/ko/System.Runtime.Loader.xml", - "ref/netstandard1.5/ru/System.Runtime.Loader.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml", - "system.runtime.loader.4.0.0.nupkg.sha512", - "system.runtime.loader.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.Json/4.0.2": { - "sha512": "+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==", - "type": "package", - "path": "system.runtime.serialization.json/4.0.2", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Serialization.Json.dll", - "lib/netstandard1.3/System.Runtime.Serialization.Json.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.Runtime.Serialization.Json.dll", - "ref/netcore50/System.Runtime.Serialization.Json.xml", - "ref/netcore50/de/System.Runtime.Serialization.Json.xml", - "ref/netcore50/es/System.Runtime.Serialization.Json.xml", - "ref/netcore50/fr/System.Runtime.Serialization.Json.xml", - "ref/netcore50/it/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ja/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ko/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ru/System.Runtime.Serialization.Json.xml", - "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml", - "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/System.Runtime.Serialization.Json.dll", - "ref/netstandard1.0/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.serialization.json.4.0.2.nupkg.sha512", - "system.runtime.serialization.json.nuspec" - ] - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", - "type": "package", - "path": "system.runtime.serialization.primitives/4.1.1", - "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.1.1.nupkg.sha512", - "system.runtime.serialization.primitives.nuspec" - ] - }, - "System.Security.AccessControl/4.7.0-preview1.19504.10": { - "sha512": "PGk/B6+DoaHlC4PAc7OWPmxI91JtH4zXHHmwlSQAOnL5sll3hgX8kVR9loCnVHfshSo1vP8vt15Xy84xyKiqKw==", - "type": "package", - "path": "system.security.accesscontrol/4.7.0-preview1.19504.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.xml", - "lib/netstandard1.3/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.xml", - "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/net461/System.Security.AccessControl.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", - "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.accesscontrol.4.7.0-preview1.19504.10.nupkg.sha512", - "system.security.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "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.3.0": { - "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "type": "package", - "path": "system.security.cryptography.cng/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.dll", - "lib/net463/System.Security.Cryptography.Cng.dll", - "ref/net46/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.dll", - "ref/net463/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "system.security.cryptography.cng.4.3.0.nupkg.sha512", - "system.security.cryptography.cng.nuspec" - ] - }, - "System.Security.Cryptography.Csp/4.3.0": { - "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "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": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "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.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.Principal.Windows/4.7.0-preview1.19504.10": { - "sha512": "3Df++ZTMSEaRRyov1jZ7VSm8GemEu9cJJ+QY1y6wvF631OvS5dts98RhuoqcZxACVkNRIzl5ThIqd46qd7b+Vg==", - "type": "package", - "path": "system.security.principal.windows/4.7.0-preview1.19504.10", - "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/net461/System.Security.Principal.Windows.xml", - "lib/netstandard1.3/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.xml", - "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/netcoreapp3.0/System.Security.Principal.Windows.dll", - "ref/netcoreapp3.0/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/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.principal.windows.4.7.0-preview1.19504.10.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.7.0-preview1.19504.10": { - "sha512": "aYpmMGgjDYpDYtDpUHwnSqSKgatkoZ4aSteVs6WKxo3/dRbHnL5rQ3QX9g7teACCIw8T2KW9OUxIg0b1kZEABg==", - "type": "package", - "path": "system.text.encoding.codepages/4.7.0-preview1.19504.10", - "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/net461/System.Text.Encoding.CodePages.xml", - "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", - "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", - "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", - "system.text.encoding.codepages.4.7.0-preview1.19504.10.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.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.1": { - "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", - "type": "package", - "path": "system.threading.tasks.extensions/4.5.1", - "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/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.extensions.4.5.1.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.Threading.ThreadPool/4.0.10": { - "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", - "type": "package", - "path": "system.threading.threadpool/4.0.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Threading.ThreadPool.dll", - "lib/netcore50/_._", - "lib/netstandard1.3/System.Threading.ThreadPool.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Threading.ThreadPool.dll", - "ref/netstandard1.3/System.Threading.ThreadPool.dll", - "ref/netstandard1.3/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.threadpool.4.0.10.nupkg.sha512", - "system.threading.threadpool.nuspec" - ] - }, - "System.ValueTuple/4.3.0": { - "sha512": "cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==", - "type": "package", - "path": "system.valuetuple/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/.xml", - "lib/netstandard1.0/System.ValueTuple.dll", - "lib/portable-net40+sl4+win8+wp8/.xml", - "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", - "system.valuetuple.4.3.0.nupkg.sha512", - "system.valuetuple.nuspec" - ] - }, - "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.0.11": { - "sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", - "type": "package", - "path": "system.xml.xmlserializer/4.0.11", - "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.0.11.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", - ".signature.p7s", - "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" - ] - }, - "System.Xml.XPath.XmlDocument/4.0.1": { - "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==", - "type": "package", - "path": "system.xml.xpath.xmldocument/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512", - "system.xml.xpath.xmldocument.nuspec" - ] - }, - "RestaurantReview/1.0.0": { - "type": "project", - "path": "../RestaurantReview/RestaurantReview.csproj", - "msbuildProject": "../RestaurantReview/RestaurantReview.csproj" - } - }, - "projectFileDependencyGroups": { - ".NETCoreApp,Version=v2.2": [ - "MSTest.TestAdapter >= 1.4.0", - "MSTest.TestFramework >= 1.4.0", - "Microsoft.AspNetCore.Mvc.Core >= 2.2.5", - "Microsoft.NET.Test.Sdk >= 16.0.1", - "Microsoft.NETCore.App >= 2.2.0", - "RestaurantReview >= 1.0.0", - "System.Data.SqlClient >= 4.8.0-preview1.19504.10" - ] - }, - "packageFolders": { - "C:\\Users\\Raizel Seliger\\.nuget\\packages\\": {}, - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\R2\\R2.csproj", - "projectName": "R2", - "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\R2\\R2.csproj", - "packagesPath": "C:\\Users\\Raizel Seliger\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\R2\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\Raizel Seliger\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp2.2" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp2.2": { - "projectReferences": { - "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj": { - "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp2.2": { - "dependencies": { - "MSTest.TestAdapter": { - "target": "Package", - "version": "[1.4.0, )" - }, - "MSTest.TestFramework": { - "target": "Package", - "version": "[1.4.0, )" - }, - "Microsoft.AspNetCore.Mvc.Core": { - "target": "Package", - "version": "[2.2.5, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[16.0.1, )" - }, - "Microsoft.NETCore.App": { - "suppressParent": "All", - "target": "Package", - "version": "[2.2.0, )", - "autoReferenced": true - }, - "System.Data.SqlClient": { - "target": "Package", - "version": "[4.8.0-preview1.19504.10, )" - } - }, - "imports": [ - "net461" - ], - "assetTargetFallback": true, - "warn": true - } - } - } -} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview.sln b/RestaurantReview/RestaurantReview.sln index 1adcdd89..d468aecb 100644 --- a/RestaurantReview/RestaurantReview.sln +++ b/RestaurantReview/RestaurantReview.sln @@ -5,8 +5,6 @@ VisualStudioVersion = 16.0.29009.5 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RestaurantReview", "RestaurantReview\RestaurantReview.csproj", "{8360EA5F-0352-4385-8CAD-7404D91D7B0A}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RestaurantReviewTests", "RestaurantReviewTests\RestaurantReviewTests.csproj", "{81113AFA-4B8B-43CA-9632-2787FEF30F5A}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -17,10 +15,6 @@ Global {8360EA5F-0352-4385-8CAD-7404D91D7B0A}.Debug|Any CPU.Build.0 = Debug|Any CPU {8360EA5F-0352-4385-8CAD-7404D91D7B0A}.Release|Any CPU.ActiveCfg = Release|Any CPU {8360EA5F-0352-4385-8CAD-7404D91D7B0A}.Release|Any CPU.Build.0 = Release|Any CPU - {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs index e5039c79..7878e03f 100644 --- a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs @@ -24,11 +24,8 @@ public IActionResult Get(string city) { var dal = new RestaurantsDAL(connection.AWSconnstring()).GetRestaurants() .FindAll(restaurant => restaurant.City.ToLower().Equals(city.ToLower())); -<<<<<<< HEAD if (dal.Count >= 1) { return Ok(dal); } else { return StatusCode(404, "There are no results for this city"); } -======= - if (dal.Count >= 1) { return Ok(dal); } else { return StatusCode(404, "There are no results for this city" ); } ->>>>>>> 0e003586d4895633c82957f8d50d4fc4e29eed18 + } // POST api/Restaurants - must send in a restaurant body with it diff --git a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs index 1526c21f..fc618b25 100644 --- a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs @@ -2,10 +2,7 @@ using RestaurantReview.DAL; using RestaurantReview.Models; using RestaurantReview.Services; -<<<<<<< HEAD -======= using System.Collections.Generic; ->>>>>>> 0e003586d4895633c82957f8d50d4fc4e29eed18 namespace RestaurantReview.Controllers { @@ -25,17 +22,12 @@ public ReviewsController(IConn conn) public IActionResult Get(string username) { var usermatch = new UserDAL(connection.AWSconnstring()).GetUser(username); -<<<<<<< HEAD + if (!usermatch.IsSuccessful) return StatusCode(404, "User was not found"); var list = new ReviewsDAL(connection.AWSconnstring()).GetAllReviews() .FindAll(review => review.User.UserName.ToLower().Equals(username.ToLower())); -======= - if(!usermatch.IsSuccessful) return StatusCode(404, "User was not found"); - var list = new ReviewsDAL(connection.AWSconnstring()).GetAllReviews() - .FindAll(review => review.User.UserName.ToLower().Equals(username.ToLower())); - ->>>>>>> 0e003586d4895633c82957f8d50d4fc4e29eed18 + if (list.Count >= 1) { return Ok(list); } else { return StatusCode(404, "There are no results for this user"); } } diff --git a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs index 05741bea..1d276688 100644 --- a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs @@ -3,11 +3,8 @@ using System; using System.Collections.Generic; using System.Data.SqlClient; -<<<<<<< HEAD -======= using System.Net; using System.Web.Http; ->>>>>>> 0e003586d4895633c82957f8d50d4fc4e29eed18 namespace RestaurantReview.DAL { @@ -52,10 +49,7 @@ public List GetAllReviews() } return reviews; } -<<<<<<< HEAD -======= ->>>>>>> 0e003586d4895633c82957f8d50d4fc4e29eed18 //public (bool IsSuccessful, Restaurant toreturn) PostRestaurant(Restaurant restaurant) //{ // bool IsSuccessful; diff --git a/RestaurantReview/RestaurantReview/DAL/UserDAL.cs b/RestaurantReview/RestaurantReview/DAL/UserDAL.cs index c717d103..a67f2f86 100644 --- a/RestaurantReview/RestaurantReview/DAL/UserDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/UserDAL.cs @@ -1,17 +1,11 @@ using RestaurantReview.Models; using RestaurantReview.Services; using System; -<<<<<<< HEAD using System.Collections.Generic; using System.Data.SqlClient; using System.Linq; -======= -using System.Linq; -using System.Collections.Generic; -using System.Data.SqlClient; using System.Net; using System.Web.Http; ->>>>>>> 0e003586d4895633c82957f8d50d4fc4e29eed18 namespace RestaurantReview.DAL { @@ -62,10 +56,7 @@ public List GetUsers() } return (IsSuccessful, usermatch); } -<<<<<<< HEAD -======= ->>>>>>> 0e003586d4895633c82957f8d50d4fc4e29eed18 //public (bool IsSuccessful, Restaurant toreturn) PostRestaurant(Restaurant restaurant) //{ // bool IsSuccessful; @@ -125,11 +116,5 @@ public List GetUsers() // } //} -<<<<<<< HEAD -======= - - - ->>>>>>> 0e003586d4895633c82957f8d50d4fc4e29eed18 } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/Review.cs b/RestaurantReview/RestaurantReview/Models/Review.cs index b9dd8a2a..de9f5c09 100644 --- a/RestaurantReview/RestaurantReview/Models/Review.cs +++ b/RestaurantReview/RestaurantReview/Models/Review.cs @@ -8,26 +8,14 @@ public class Review public Restaurant Restaurant { get; set; } public User User { get; set; } public string ReviewText { get; set; } -<<<<<<< HEAD -======= ->>>>>>> 0e003586d4895633c82957f8d50d4fc4e29eed18 public bool ValidateUserNameFormat() { MatchCollection matches; Regex defaultRegex = new Regex(@"^[A-Za-z]{4, 15}+$"); matches = defaultRegex.Matches(this.User.UserName); -<<<<<<< HEAD -======= - ->>>>>>> 0e003586d4895633c82957f8d50d4fc4e29eed18 return matches.Count == 1; } - - //public bool ValidateName() - //{ - // return this.Name.Length < 40 && this.Name.Length >= 1; - //} } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.dll b/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.dll index 8413e972152aafbfd243c89563c6dcfe82b5cd34..d49cd9d714a3c46cb8d220fa9e58f9a992a58c60 100644 GIT binary patch delta 107 zcmZpez}PT>aY6^nqKh0SH}?j+DkuaK1gcInd&b+;U4HjLdBGq5&AfJ>IRO^~ BF{JaY6^n1LK$l8+%yH1s-o(D!#03z4uys>oap@Tb^!SU>?EBGWFHM3zPrY z1PJJA1Z4EQ$#B_M$E52nAozW9jO|1Ps9;JRR1l>4Np0z?+``o9M`H9iH}l$k<^%xZ CZZ7)( diff --git a/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.pdb b/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.pdb index d37d25b7c812883db632008f08b672638af8732e..98a8503d52949602b9d3daab130732ad873685b0 100644 GIT binary patch delta 621 zcmbQDJ4JUwjfijm+dp#g9!{&o&c)u^EPOBPkMP5Z6RwD|a56FoaWXMfb1^b>axpO! zb2BnDPOfA;8)(eQ&EN^dYdLusR&nt#8~|cwZeE5(K)eHpb$NIh?10#xhXD$h84`Gy z8H&JsZiY%Q&BM?Drg<6KH&16e%PRShLlCH32#6UO+_*%5v?!SEH@TL>oZW!?1`8|0 z@5#G4G_~h)E?{G3;OAPv#=^kB^#I8J4J26@K5{XzvoN@GJFqh|sPZ@f*dBSD|S;3po<$C zCa)B7 z23-a#5ypleOz!FoA{>(+irQNoW6Ba^WNKUtwxcnONdOcxs=yRt$HXDdz{pey7SIL? SxFHJ|O^y&VXOZz^U;qG8Ew4-f delta 621 zcmbQDJ4JUwjfk#BKt|7-43~X%OuFs@g5RgUT6kgNge#)VoQw>DoJ8tjlPej|1{!g4Gk5^;8crUDm0Uaw`+=B=o0nlB5N`)!9Ufi=TOju1VSoZ=hIk%k zhC(o(o1p?s^DxwdXSx!NSV$ zYw~UmP3<|H3)q+$__!9Zu`vASd;nzs;(7pNf8b(ZXJK&Tc3@{_P~mX^vPC!ZbDm*Q z_2sN?MPt7dYV(l-;1O2=F{XS`_=KrlY;wL}17psV|;r;yFQ%Owtu9$ zM)_^yZiUI~MC=vp7+8cE7@4FwNC+&0%I_WNg^Lqyr39M#agzqTY-KlOshn zRYJRC6^a0_7;bkGQ=2}8drhsXbff&07Z;4FoD=Hafkz*Q3)2%1PZtz P3jpmGGiR0d1F8l9_AseN diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csprojAssemblyReference.cache b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csprojAssemblyReference.cache index 7604c16689e22510360e9096980739943e773cbb..a5e87179f0aeaf8f96e7c5b38a77b490dc0a3b6f 100644 GIT binary patch delta 30 gcmcb8pMM4O27gATzZ{bT89n(JfIxr^L;?Xf0E^%S*#H0l literal 258011 zcmd3P2YeJ&*FK@ifDIKD6$L8@EQA08imxGnL^`2}g1Xskk|mqnWp@JvMMXu$jvd8< z9XnRAW5SFPV(ByEYCKD=2rlY;OPK~BBv1DRs;eb$KsBfrm zudXF^@oZf>Iy4cj%cjHeUR@{DmB(X|(b4+J$(m?lXnEhF$^n%JR2CLi4Cos!3b&!c zy1AE8R-eg6Ys<3XY?M$&Wh@>w|Etw*;wNYkk4Ga}sE`Sb3TLXb;qrKtv^H8nv?kFc zv@HPb$0WlQBg2twGQEYYPY0-5lB`XI)6sN0dT&{5ezZ0Im}xsT9IuOJTC`}@qD`9) z?RJ!Uj89j@65+W0%(oK<{pa>AphjyHa0%2f+TdRdDy}vCsgdWXmK~0cRV6@fNjMX2 zQBbfgJvbgew8iUMoL5jXWX6PavML>}?K%>4WM)((vx#VSMy8@>#<;pequG(+c)UCu zsTrA!S47h@YHjO0QC?25uIX&?Aw#m;Y3C@KC|epP;@3QMVo`oTBmjLR3|c^pC}3<}g4lVH>D(j%Rf;=Aa(RL?dcG@zlIgyz-8XY>yZ zz~Cdz!N((Mk234Y68_}jwQ-Z9ZK2eao|SSPCBt>u>SzL^QJ5x}=FnB_e1pwgM<|)j zOADG@jpmHGsmdg0JCu8k4|3R89ZyzO(Q6~gL}je1E^Ts@OKW0d^BDP#68;WT(e0t= z)xj$2V-B(OY%pc)05vc6p(Yy(sY8ZSvFN;19NjXV3zKYMrhZwRij9y@n;dq6a(4!! z9Og0f19VpL|0>~qMCT^cHO&}7O08FoFyA=RdX?Qbc7)pZ1*10iC;V&9J&DGY-wDd6 z^3t(~r^9otZoM-~UFd_d2z)E={Q`o zXoaal7pQPkFy_P@matZlUZ)9WRZL^{YZ@4Lcc@#N7siH%vtg5=J%VG1kEA{r;zMWy zhPp!CMZp*}ovh1ZaCA2y*wlZ-=a*}?XN z0=EZ4hUUilFrVhmHn8AcP}+~z#s;u>5)0TvhFUFk~ zEf3LHKP4NBllw%|&^{`c`ZPr^_@;mM*xeeR>_P%bMec4s{_N<3t0(jA)A=cTobi6v%- z;KHY)85s|Q&3d5tn>`bu*0XHM=2)tQ>JR|LB0P~t3t#SzGY3g3IR|> z)|^ndW&&|Gw0@{FsZiKtlKHoE*N(%Y3Yd^**9ZJBs2jS1vAAF5v4*lMB| zsj%RvX25k&dZ>cVseM8>WseXzdMs{H!xP=rbAZHZ&pu{%MiJ8Xt{g zA?R_14_??jgZ2TpGE@^qfH@k6z4efo?KKp#l@D|JKp4GXw0wcRjO_y*Pw}CnwdAfv zQ;C~#u>ql?%{lMZ;(Dz4kQEZ^3st(e`LtX(;y?IYw%OjY|q)k}StQtZ%#Qt@!Mk~$RIcz}{F zD>COYdw4QSGx-GhcmuDi2vun`lb2~^HPP8v7Y8{oy7FQCa(zQClge{fAO zjDZR?Vj%b01dG*^rcwi-)cHQ_s`ZOdWi(7%pE*sZTF(fLl+T)q4TNI<@>&r?u{F<| zMIL}6^Wzf_uTO+AwuG!1hX(XPD81UN&ybGRCQTPF4!_CSOs%R>-O!taP8;sKY zL~UI{i6QK#B3k0Eh0_^uo9u_1Pn(7q0_AQ9uu;P4vx5@o))dA4B?oT<-2&?i63b}RfkAsws5LSqi1l+?6_ zLV;6*v7QX!d9;=lvm<2=hBAJ_vHJMNnvzp1dsgV@?jtp5LZsb)pk01KqsLTEY<|6SPF}X1jcyUrR=BgQqsgNmy@OALlZ2p*))n#@+u!qgE>4E(Nr{n zeUwOjEHO(2Ev$eqE{kx&~gxu;vh_d`J(jzZt(|gG>oZ&eN)6QnXU06NQGy zu=$XUR3rF3PXum;=T8qbo+*i1Y{^tbE5>5}O4pZRc@nNQ8`22qk)NsB4jz@n!?9X1 z!i_}fe$qcYGz6a9RhEiI%!R3p{vQf8mIlEs@dR(SxO}&glKK3e#}KtW?D=f>{YZvWIqz4 zqoH;{0dFm!nxy~EMP0U#(88(X>Ay{O$3V?I^;yfSFHN8$B~ug~p(I07jj_SCzjSzh zG98MC6IFE>BR%po$$WT>eArZN98~j@7{j`Tj3~uonHV@gUK6cRJZdO|N~NV`#G`zN zspxnp>Lc^d!{|%Vqr-k}2qlj5s)QQDav@->oiaNumMH3n{cnelKM5Ml{&zKyKIAxreN5k(#+ot|dsZ-` zw`!uzZkMJlCPSr!S0>Ehd&o{9qIPgV!?Y0M+BU!eSXYC+S2qYir`*sI2#X3TTA3;Q2p zI~0$at>|#5l_&omel^YFvU_R$dOGy*lQ~LzMJkIbQyosHLMn*~CiIq2RZ?cYK}%vf z0!sRdU8&4?mcdEOV`m$)B4}FdNNeWVFj^j)y63{5dGbM5%i8+jp3<(+`j)GbNWu3@h>z;se_GWEpTC+2Lslq*R4Z zX#pdUD4I87W;3^dC#{poAK#Gr;d%Yrg z!c4yP9wcGu7k1`tHI&RxdJSVo^OR!HAz#y|YhH?#*)R)=JnmyYXBLz5l$8jAWTFJN zveQ}5fps>&${EYb4KWXrneS}S)oM@?Ke?|S91}hqsedms2T!yA#i2`{{BgC$7l(=| z^j{fI&NcO@g&qO5m=LKaHq=Xj+VB%KhJarQcto2NLt8o4te%qx*78^Gs4jr_O> z6re;rrz{z%q4eJpv+0{Am97Dg0?2NQP4vqa)wWC*sPJnT?x4~EH(s<$0KGBI}>VL;GDOmLvw#x1DiC?01~0NnJyJzs8*1d@VUx78n`OIFYZ7NHVl2G1WK+YUC%$cvxL!rFBm3T$Gx>BfgWOvvDJx%z!@+MF(_6 zlrJG?V`&P$xgJ{Nhv!uAA9%Xeu}#1qYNZgXWhJ3tW#(u$3{XbOBWQm!lFY zb4g|oP`MYP-2AmhR2oBpOqsq2MdxR&D<=*VjV(aom0gU&^R!Dr%j{$Vu`O}%Qrj-M z1d8}rgL;VVJM&wnQU1Ez3B43L1Qn0L;dpq>*ePys#fE#-noX+Y*TZiX&zd8|QYe<6 zY<9NUfRoN*gZMI(Zf>M|4Eb*Epg2wD=4j#bWVpTSa5)t9<0rDz%c16JK3shdL$x+#jFei%bQn_jWjCT&Gs!UE zITu%j(-jMrQ{r>xoov6&w9HLV+8n?FRGMOF)~KOY8Q|{m95l{m-fBP^ zQQLN0Y;ZHwo1d3}I^Q2vDH6A!{D88jRhGVaLkq@J*NZ#`vJ=s4lu}1-#fpKtEc zUq0C)gC%O$+Ihg|HfUh>Oe~{(-Z1ZsC;9R7wBS;M5&d>3?Prr7SOr}h36?z(7AWP z22$#H_d*ZP*X3vnn;C_)sOjgHu%$0*sL1JwAkDlX-FO*om%(QK%n>*GWHxI1uj7(wB-d-i<&p z4~&uKhmOP)_6XDqDC|m!FUhpL64#@XLYXf1vu4kE6pHz|WuGnGlPT)QbW1yn5vbpD zQI!qos%b{? z8Ukbu4@UvTC6w}24VH}0K<)hGOv!CYvB<~NV6yfsiVx_DKdr}BA`!eCR}HcfAVL^0eD$ui_m?4N2DV$0#l7#p(TACN4H2S*u=i_mrK0dIL)4C+!b6L{%iQfkzg66Qz3Zbheir z^58?VTo&_dyo?jlBh5Y1TE1oE0)=ZzxaYe+Kfg5CwN>(cCyHF}Wu_SW;>_Fpt zDAsd)RZd^#B_?zTY7UlTluR+BsIe~`%Q@S;vP3?i(l6eJ4&H;E-g=Q#z?v}0r+_Pg z@2SW%c=6?s60?VW0DbZk>(_EqXhiuCg)j5bTUht5ja5{{qjT|XZR@rykNtYA{Q~<8 z2&woHRJCk5P7> zlH;@{L|0%zADqNR>ZjS7KY=cuFOzH*58Ow_$*o9@d0yI7;!`N$r&Y5dmqIII0II?{ zn{q1)Wi!`Yv5{A;A!xIUUSO*D8B{a_+yU>~vJV!xZrX~Emh=|=wl^KqlHWl}rhAKL zP4zy9dJp;Nbd13WkNAe7i8--!5|_UvvU9=+e3s{UOph_@>;NOw3#VEyG^_9hst{1t zgBFf)Z2Nj!u4o~d1{=R$Lh1a3W%M*x8c4oE>E5qqk@IuLy4^ZupNq#)EApb9*IV;s zayd`h%P4iEo;%=QLoGjnHP#rdO%3uzabIncPJCjMBbS+qwLoh#gFMk<^%k?)eFJ6l zGZ8og&SbxDQFcHKz?HPM`++D^66#C4;n+0qE&VAa9aOJktHgxXLLQ9 z>v44s&E?zp)j@wkdq4e{X-_*B>^jhSwO()7rEGe38>p49`WICEm*c$B^TsBdi1Yr9 zA_I>9!32SuUQGK_tN?v z>c|&0=)Nrq^0j4QdBHSS6`<6BHl1kgt8&bm^;HF0^r}~|uPd~Kn*Tx&#B6P@(T}lK zvJ%d)&?liA|8_I6*b3@-AA03-*liynG;1#1AlXO`sO*xZ_ySxOUzHchC2}L-u({$Q zsn$>_KPPQu+6F?_;`>};=x>Aa^R%e5Fa8$OkU8_TMe%v^%g2etc#%w|R#B!JTjb3O zjwu1alRCb(>-hK>kItyxf@ln$z$(Rj!sNh!4gvX^ za>KZplLYnD_E5&pk!)>Fho6yCNT}F(DIg|OVV@3A=U?8^QMM5y88&R?vVKbxo~Lvf zemTFG=*MF32cK{@TgX;WBtMHa*;m;;rCX!y{H&ak%D znb~m>E%7+gl*s4HX2)SrY}K2V+!YGal@uPgpG8Nr@5Cq5Ic~)7KfwBCEhS!48#YVZ z4W)T@h~z@b49cVO@&f+;p@I0wlzs}s{!}h?+z_hDe1R?~JfNA72AAfXCZ{1qohaWO z3gxFKt945zR9ahGm!_O>4`NU;VSnhd)_F+ZUTHZwcJ z>`1*ptjBBTaU?GcGhboy*9~g=xjoc_k7u!Crn9kc@5;Z^A)|Dy8l(4wX8D_@Xh^}$ zt`m|-&ohbH3&rQBakI@k=2%f1+BB0yc}^55))7g`0V7j5P>r{%a7L?G81)hxb$%g^e^x)2~h;K;vbwV3@{_c{RI>f63>rpmSD`b~Y!8c?m0Z>C59Ry>SsZtQN6ZhYf~{tKJ(W6n zPpISBr%=}OFaVP~u5Cp3Lg4`&=&Xo^s}i_BlfILORcvt9Ao-g%%im-f!qR)`om&Tx_;Lr~7oQ6j6Qi`!X5#(pRh#%5fjp>`EL zvl_Z1+Fpi-P2T!IHScb`bX=uJgawYs{wD9;yac^2kqK8u&A4l!<;n86tK0~%=6wqA zII_p5n9rLE_Jx9{_}Gf|&a|qLDf8+FwzpZ_3Xv|(8Nz)WD`(CPTd~9^Q=BYZB5$jN{|6i&Cig_ z#xO0P7rS!hQJh=IX>q^?GcB1HdvwFh*O=X5Ak@u&iXRe#B6aCBb`VV^4uBG~{@uG< zYBLDn-~xZMyg?{0PdPu<=%}xXWa6;(Gj*@Q(8~KDDMxXY)*MaO#>_CgmxN~ZkV()G zsN$!8HQI|z$8Xei3h(-dd5U#Ak<6n8N6@g9Vb4V&DOWF|)W@1bxO_m7p=VHs&UQQnS)7uyf3 zjfMX}v;2&H+78$eu@q(Gn4RqqC=pPupEHyM>S}4bFP6yZ76>-mI}-(fcR5m3~0c|At;H}~0tx@;^i)}ubNs;1D3OjSoh)mwt$ zG?K1QW$9wuRCPUFh=eF_Y>v2-(-DlO8Oc1`*_U13%XoDp593Cp;r4q>jSq#!dAe3Y zbJE>5BS%4-fV^Qp0SHE4lL3fQsO#OikTVq)skGxHQ-amMB7ZZRj3DMl8B9&Bq-nIn zew393Z2v3rHq959_B{+L=4Xhp=Jqj3x~R-7d^8Hr&yg2yCd#k14y2BO1~vcgQbEQw zFk{n@J{AQAQcq zH^+^KD&8YdN)^5!ckE^5n5^EY?_%YuPk@3q_!!8Ug3g?5%Rlw%VmTAC&7l-tu5hp> zLRs$zTos#^LnA_s*7(zmD@Co5M@)v3pjNP5fsQO<^lV;Nply5fRkJIUK{Y=Yu`=I> zHqX5#+OzqE_Rt&b;Y@~l-uEQrykalyaSk~odT=_D4DID^EQB+epnHi>gcoJ-<7 z5=%&&PvQa+7m~P$#Kj~oA#o{*r6evRaXE=)B(5NFC5fv@Tuov*iEBt)OX4~b*ORz` z#Em3wBC&$R%_MFiaVv@2NZd~14ia~gSV`h85_glhhs3=k?jvzOiB%+4lX!r{gCrgz z@i2);NIXj7F%oM?JWk>X5>JwNip0|-o+0rpiM1r2Bk??m7f8HF;w2I@hOSVNPJG>3ld+F z_=?2WB)%c>Es5_)d{5%PBz_>Vk;IQAej@QRiC;+kO5!&X|0A)9#P1~jAn_-OzexN| z;vW(%T0#_%Xi1_KiPj|AkZ4O{3li-}7$n-0=s;pi5?hhjn#49Fwk6S##C9aMC$R&G zP9%0Du@i}%NpvQ$3yEDx>_(ysiQP%;L82>(ZY1_3u@{NGN$f*nUlRL~=uV;siTz3R zB+-jRZxSIAeMs~rQAna6i6RpHNemz{ki-Eb29X#{VhD)?NgPCCD2anf{D;ILB#KE4 zBT+(PIEfJ?Mv^#`#3&M_Bn~4nn#33qV@Zr7F`mQ(5)(;GB2h+SGKnc9rjnRO;&2kv zNgP4qND?zh%p`FXiK9szLn2I~oJ52~1&Jt$N)lBhs!7C1%py@kB2J=~M1n+;M2f_0 z5@`|{5?K;;B<7HqOJW|0dJ^+V982Oj5(`KiPvQg;Cz4o5;v^C$lQ@OMA`+*PIE}>V zBo>o6gT$F6&LVL(iE~JtOX55dOGung;sO#ElDLS(#Uw5vaVd$VBrYRyIf-Q?t{`zG ziK|FlO=3BTYe-y6;yQ>nQ_*{Rs-4$ib+LFwXtH_Fomd%^;WmzFPx9Z)f7=3cSSxs1 zt?|E_mf=Kee48iJHbY)wrcF8vr@dumqD70=En60#xAoHBTvm-Oor+L#CKIhKkJpbw zT-tVKp-zhe5(9s__o5#Lzts+^VSvV8+P80e1O2}_{qfz1qP|6igIg3#!>^?L{?qrl z+y>t$z&GjO!zK96{mK-0g#h2IgQrXIgL}8V#D4QF0(`3uK0<;&+;ZK8HuyFHzFh|& zDZy7B@q_~3A;5R);29Ep+>_5J@Ja!`O9#)C;7_-$yueoDZUMeW2OlNDWfzaT*aqJ# z!1w9kqa}EoaWgNo!S@UBDjj@`1h-nfT*+K<=P=FuO!Q~RXQ%Ooy z@L>UdLM%#W`3V7jQU_N`@EzUy zsaE%t06(pRt0efj7d}^w{}};(RtHy0a7iq*V(QOtik`AofS=RBF$wdor}_*ETTE5VDO-A_^X zngGA9gA)>b^j$T|C~pYxn>sit!RO!ksAA(S0e)KtrzCjoOBG6u^#c5k4xTN+J)hh{ zHKcb1_&pt*mf%6Vbh*mr`F#QYKnG_exbB!|70(|E@JBj0E5Wz@@RHJbg8+Z5gX<*t zr{aT`*=l?uz@O^iITHMI>q!sTt?n}c{#*yomEid|j#6rTA;4ei;CT{!>TShp$o)!y zzt+L^5*!`cUA_4m0sdA8&zIm9(I?XBt7K34PJqAH!N*GQ%z+bB6aB9M|Dc19li(?j zT&j$+QGkEc!3!k#y5IL#I{zfVKkMM*CHR6Kw_j-+ghZPhgKhXDVngHMv+!)qQ^Z2Tp_f9v3rCAhr$QKj=g z0^FjNHqoCV!Poxuf&v#1s(ss*I(U%;8|SxHeXx}Px7NX@N^tRwMT(6!0^C*ypC-Yv z!9CTRw-DfVI{0)6zWBAViaJAp+w0)P61+I`xT;_W0p3yvpCQ3rs#-r}_ra|McxxSe zrUchN%qF011bAB=e3k@_iC}HQe#&E-c1LeFTsl^c2Yw@ z7XjW~2VWq;*Y;y$-5vtmRR>=v!TpzI)NIvFfcMnF7fEp4J6ov=?j^u`>)?wec-Cv3 zR0a1D;C*%QC2rvT1h~5nzEpzG9{#E_N)G|vUk5Lh;J=1VQ;ol;0Qb_tmq~DsEz?Tp z-U1xb!Iw*L?6P8Ils*F7R|hYX-~+c@s&p)>l8_{O=9uCxc4{|N9QI`}#Xj`r=NDp)MQ!*uZV5`5I8lHn>EPQW_~FkU zS2~vo@MIl)y95u9UZlWN1bC_rzC(g%rI_0@O@I&A!FNjV+-U<<1*Z$}5juFK1TT1N zumT?`z%z94T@t)#(L^X`!SP$VE1shQT&aWam*5dUG3u%WxLOCVlHeo8?yJ~{3Ggf(yjp^L z6xFMqQX{}|9sGa^sqqCxJwg9Jf@WT>( zWYLZ4%^3mC>flEtc;4mx6&rN|JVysVD#1?=KS+&8a|L*w4t`96TMYR=dgK(jny44x z`8s%w1ou7o9HsNI0(_hfeq4et?vPeZbb$aLuY;eE;J0hnsx|Bh0(_zleo}%HL;ENT zE)?LCbnsIW{ND2Qs_~yJz^CZorzN=0GcPH}b&&v{s)L`A;8lYzQEZ$hz^CirXC=7h zpg~IK#R7bW4qhw4nWM`U_)GylO9wwE!OxAlT~+XG0X|0uKQFXxdQK_%9IP3w7{I61?ie`Kp2!3Gl@__+<%R@bwW2e2D;G zs)JvV;1~aBryBoK0lrKJuan@;tM5}4yj*~n>EKr-_?4S`s|sErz*p+v*ChC%4&#;1 zR|)XdI{0-7{-A85vfy$7zD5VXA;IrmK1~e;*9!1;I`~ZqzUBI-RC~T&fN#*jZ%Ob+ zZ3ZZvZxrC0bnx2}Jo(PO6&ouA_+}lv-g@&MkE`B&ivZuMgWr+hYj^)xv2mLK->!q- zmEe`rMk_V$5a2s?@Ou*cL)$x*xmODCT{`%E2|nlGwyGiBEx`Ba;148t=k5h2Zb z`*iS!68v#n<}uzcz^iodM-u$Ru?)OgfFIDo8zlIHpQ;oa4+`)@I{0G=K4<3Js%<nzQPb7Hw^Uo=xJSxDC>EKT#_{2S#L$yYLAJ@U3N$~9AQx(ro2=J3S_;U#^tz$0n zQv&?74*o)d7pAUK=6*(ipVh%%N^t*gRx9vY0e(&geiiz_04y?<9Ep<@>4W_%#83T?c3gHqX7S?ga5L0 z?(~~_^G^c&vkv}Sg1;KT%>9c1|Eh!kk>C~|^hw%0|0cly)4?qe3nhSWiTx75MyCHVYfk5$xdCBR$j;0_Xe$9~Kg-9~`7 z)xldz@aoG;l^Pudcsm`ul?0Fe^>JnH?FD!T9lW&!-#F(D#YQIq-cbi{Bf-4Z{bzKB_cOAUF1mCpd zQ1#|L1h}gX-a&%9Pd-Ua6Ws)OPaWJzg6~<&oWQ*VcyArNqXeJ*2W$NM2=Kl-cqa)S zJ8DOz^L_%{T?g+h!Tn!gnISy{cz+$-S%N2T$97A53UDtSyo&^1eG?mzdJAw!2k$Du zCmg&+>D)(v`|9A`Bslq2Kh-u01-PFM?jpfI9K{yAMFQMk2k$Pyb1v?w)EFSZ19k8o z65M{%ya(-Z;{X93q=UOkaOXc6b%O)^d4cZDV@g)@B|&)OM*jR4pHrSq5x0Q!M!E8>a>2!?I{!B$vQYB!B=Iw zD)(}V08iDyeI)qswnr=KrU~%jI=HU{uWG|~9;XZN5jwa~f?vw+px%6>0MF3D{UrE{ z^Li`rOaVSh2Ny~3LoL`mc(ec?ql5cPaEo^{C)*BHSb)oQ@Bj(kWxq1jts(+kp@RoX z@aU2|)ub5};7T2QfCM|jvsD6It%CD09aIc$N+xEW!I<`hjYqH3A&h!9yhY zmH7uLo@)g-p@R>U;He95S8q-Va7qUsB*8_k$Ex-`TY%F#c&G$-?ewf#{$~U@tAh`g z;14Hnso1C!;5j<@KN7s?_$O5Fo-4rfbnqb(e8inSmCp47JYNSFOK^vq*aqma0(_hf z9wxy*4`Ku30s%f=2bV~2?c1Z2&L;@)i8^?=1mC}$1N{urG z_$(cKnDyp^pH<+q1^65tJX(U^-S2eOp3fEF^K|eS2_AK3H}&Qv0(`y>9xK7EraYqF ze1QO8sDsBz@Z^5I)SE97;EQ$ecnQAJV3F-h1o%=NJi&T%-M4B)S}MSo>EMYH+=8#@ zFBjltI(U)Kc)l;qz;45`-nFQZ@;e)C@UnRg->)^=}Jn}L&4=xwrYjp4w2{xuY zsVaD_0AHtrr%LeBXIVqKUVv}V!P6vo-h=z83f?HdH|gNRCHU_9C#&|nLV$19!P6!9 zj%Q~p@GSy-s}4Rwg5&k?se$n}0lr-aA1T3^zu6A&9Rhr(4xS;woj+#zNGk>SE*(5m zf+HE08FIG(-=l+%lHmDgvgQB10(_qiK3akwn7EU2PVN`rRXX?>310Cq+g(~Mzz^u) zumo?h@decf9~9t+ba1%@x0%*PnfqY@enbaHB-k+zJ}SVE>EH?p-txn_%G_%N_;DQ^ zmEd>RAESnXCj|IO9b75FmuAK*ou3lmr*&|Z1YbRGF9m)^fS=XD)e`*MQCX$)S^<7e z2gfA%{W+f~o}U-s7j*C}32rg7-`Zw*>fY9h{QjiECK5 zS}(xw=-}BBe9#lOsoNimGD)@~6f2)J%OYn}}7bx&|0{p!WK30M|oVdFJ|5t#2(80$^ zaA^1)s)8E@_(vVQK!TsyDWSqyKMC;9I{0`AzHiziYEJn@fPdA&CrI$mop)8^#%}`r zKOKCc1UtsMO#=M84qhn1ywOMw5@!6!>_xAE60>i!Yn z7Hzcn^C=R%+a(cYlmbE_{;Y!+N$}Y2>PnF;UUv8yzZX>{Lb?|8tJaFJJ z#l{u_+)f9dF2QgAH>(C2Lx9`s;KdSrP^b5mxjP8(mOA(h2_Ey`o@(UZN`SZ4!DmYF z`&WFec-}^Ux7ERCN${mN?5W<|QGmD8!DmbGyndIdX#Dm9yn_xtM}qGfHCS1&lK}6i zgU^-V=<>r9bvp_0&N}!!30}5}g_JuB@Gd%di3ESQHQUzNRe*QX!RJeG{S)lOTo(b} zT?bzv!7Gm1O;vCY0q&}UFO*=%hEX>G-ctu(B*Fd9Jy^B6y##n~9el9_A2*lLI}U>)@ple9Q4H%c7?M_tL?aN$@ty`YP&r z3vfsWUoOENmmH|TeFV6#4qhg~7u~dn>fMC`+)oEzA;B*m#m=V`32=WMe5C|mb37ZL z2MF*$9ekAp4;^=a()j=Z9;Ab>mSD%e)nEZ0qJx)9@V3{mjf?{Y_#hp8jRepAdtc?o z4;A2pb?~(koV|UpqV7Kee25OdPJ)+wTBpX1VgVkef!kaUu%|<@+u;mso9b|;cwFlQ z4$HPo)wD|0WLx2!ZJWw?xGJ+nBvltqN2&=^Qra>S+XDYmjSrs~fY3cF;cPp)=xKiO*x=lD!mQ8OF%aqai+xGNis;(F>F=E!|DB7i?wYZimTG66li!HD*ibKDx z3R+?_wnfW=mMymyM}tH1UYvIA3fc{je{$ZXC(rrDa9O!^Xj=l7yQ!1L?0S-Ms5xCFL^nJe!vQl!kQfO;bus^U0{*4->fitQ zr+HPNcWf~y9IuNWeRPXC>lVNFQ8QgWJ_= zyVA+*OrMHm78i2$$yC(z8CQ2`G&?dJkC%rdH6xR8+-B8BU6#YHeo25Fx}=H7>0@5X z)(2O{_Q8AD{VIJn%PZZn(!T9s(63^%*j`OC7 z>x8=Ucr1de-psFT4h>h74?bXU(V%{VD=Na#fqg+n`+^%`cK=C2!)EoDS@*!CI0!DQ=;X`r-aVQ$LTUbFZYZ)e+D+;c6@Qr-CxhEw*uvga$h( z4b+Hh%)l?kOcF;yIIXapTj6SMg)p$k6K_EcZn?0nv=+3MLy2i_l?sZ#+idbZXwZ4R1;^iO;0b zBx~P%+OLm`(xOSGp~F;{Uln@l6r$qo3+}dQI~L`1aqY--GhPWUw>6Ff#8^P$cnD|f zTgWLqkyE%3*zB>VI6?zKri8D(~r#&o}75BFXg zrvPOvB5^8&v#Hi|p679%7Xy27vw6prE`#>wswn8c1{&Aq&WkdPzsCHqZJ2AJK#wLBaIDa;1KhZt#0?NmyG-YHIh@;N z1+X{$J9gpM3@w$UDh9{pYQ;L%4nyFG*_jfY7*0^zh@G=sQl)&e^(uWpsp zS8)0qik~Q*D*1zAEB7FQn@jbK&DQfMWJhJV5^Nw8C&F#5Z1pXT!cY<0(%>}^JiZErrn^^B@oBy}mvvTA zVR>cIpaBEJ6-5L4M~eoSF6vsF&(}~G+qiOQGYwyX!Y3|i zr*=KCR|QQieVa;X)m)ZUy#(R!KuxxB)CdPbasRx{{ktf4Uu9_K8JH1F?x7j)0c*TZ z;sXe$0lIMmbma!v0PHmZ7=XDv6p!`1A=FgWgbhB1rm@_(;D+dzTjbGo2k%AO5TBrM zw$a11EsIs5OHaaQp2Zh|GNHpV$%OGK9xy&5@i~Ok8lAZ{cIMXj3fLevdYCmbrhe%V zHhau37G*-SpkE(z`KpgQ;EIhqo2{g<%h%AEZS-vRDPRQ)5M&JcM+AsFa${`Ejj<8fMFDgTFTwR{d}yqKmis95zEnpkJE`V&g*?b_cEl1N0wwuR%nD#p)v#Q258uMo~gZ*ZR5ah^8;duISV zvqq1ogsq|1l`w0-ja5{b zZ<>_ES0u6I*%An2D-v5nIBl|#+vEpsla9ci9qj0m779571{BE0Yy&#nr%+i7LHKr1 z>gc8_8x+6mZGN{$k)35X8%N)8MONLUXeJp4x$swZz|Te}5<5Z=x%7{iBERC~e#y!0 z4D87Pkn3TJY^b}SbQh>HqtW^)KK)IP@7jFsit_rpno!%Haf~aw;VGjFiQOTbZFmEx z`6EtqH(>7zfMzyBYTHmghL$F(D=f1ow9j~DN*T=G0Q0_Wu)UxLi|DgyeoPXnS+V)% zhhIb1XtOuq#y%wWg>YJGJ-5``+)_P&4I-k?EEVV4xeh&i%hr`=w+af|><@ieM1M1+ z1Z9*DZKL!=`8 i;t_CnML%eUu4c2z3`jSn?wl0IV7#)7I=kQpb*#-1L!Lrh9pgK z!E8V1G2Ojpibj8X;Tvoki%^)ARYU`%m4IOM#}CE;5(6Qe9IoXYKFc{A3~YY0in!8( zzah}U$|~Z&a`OD_!G2Tv)M8)* zUfXMfcvk4=^h-87IJj3*7-1N6c3<1OKc$T0Z`A(GHckmN*hO|DN~}-fi>&ZhLZgxy z(@RUxj*H1%I{D=UnO_ zs6GrTSqpp@kYZL8kxSUbHTU2Po7&MRaVJTw`R#h_o~H3xQZpTK41P4mk{Ac!95_~T zUhm|*P6T#gvw5wx^JP2?zPjdu%}G$?h(_wBsO%r==Oc^bE1StOlonDmFH3Pi1feok zRhJgN#T1-mz|fq=;RRzdo-wA7mjf zvxI>?H2|}CX!ow_3#!YZ&CyNOQV~lINKPrHu4Bn}Hn9;DIaFD9YAjP1j+bTYDq_hH zxkt2Pa%eOWl^wxtv$+DVFrp+XA)FmzDQEst&U_5mXF2oK$1;5;g=6!h@vddjc&rLX zi$aOIDx5sRPE}2~3I~bQNHfROG$S;f3r!=?v`T5(*lu%?KE^v^=glBM*lrf;b7Fxn zCY5!m+vH?j*8ux}ZR^%Rsr_VwnpB4bkJ>0)%ydkxnnotmwPA9OkjM_OQA;8L;p{<6 zxE;^qcAO3D5^hKAr!?p2n1>#;xta)rq@mcX9P6%__t&pB+RSHA`W~|M$r!YeUV{co z8w6_PHL?I1btL9MI2m8e89$vfUJq;#yV@QYZ>$D_>G@Eod^2_B4Eyo^f3g`q7NxqU z5u=4;3n?@@n#rc4ahWF%w6TE1@es~IY9XikL{9ZWV6P9LakHoZMmbWhMk?1Zjo6My z7P`kHU1}%Ha1xYt&mwktMA^gN6#a{BkCRdSu4??V(yYc}SdNFx6nX%RMI=szaGIc= zn_wO{!D3*~3cv(b1{uCA41FkjegF-zP0t1mDj}FY13DemL{$~JW*ND-{I0nizuDxT zi4wc25?Q#1@(D5%k~q{_Z=3~`aW;u_Ae;=(<_xDe!%Ki|{vm~0+xKUUoH7YADO0Ij zoKg4c2(HhEc9G51ToLZCHE*&BzW~Lu*n%3gLn9prL`T$?M=L6#6~={lz_^IS#Sl*J zW1RbH&iztggNQ9)hKVN31z?DF1CcWz4~XJJ*rtBDm|?S(6c)J*Iu7q%!CCtro3^&ViV6P5f&=CjcLn*15 z7Obb}f_5g}nLyS=#e^xYfu7Yl5y6c>fruOqr@8u;f7wR37G=B7zu28h;bdf#q9HOa zVO$5aaXpC}Ae?rX&h2nGx5Elx1D=1Okf|I6fuwTIzOlLa*QIvC7&k*%_xac55pEAZ znNI)M_P7PbyH63taQx9Ru%4R~T58({20X9#$GfY{*-Qy^G9Q!LLDaRw%u4jka*d#rH608ln;q|!PCl(3Gg|qP_ zelwmT@iYYSMgNGLfx(=wL7cC(z~*^_PE%ZP_Z;-FHs~~fqS0Tr09{HXI{EV`Y^zDp z+N8O8K{0FN1^mf)k;F?7&em4Q+3U;MTL)~axtUtHFG(m6hXU?Bmz)WQo`S4bQS1cA z-xWtW`^uHkXy3kr3;R|Kj1H(AP*je_(!Rj3IeHCcu+v>GF~ZRBD5bL+uLEhkLE=pa zCv`nIb=^62>wyj8beBs=Foa8rpqM+Q&d6Zn)e=m<11;I< zPK$Kr7TK9wCzA#++r^d(CA@;<}l!jZO16 zDAY=ov(7I~NXKfi^E?NR*thuE_>RQ)5JWNkBeTgl#oKaDGyH=KLcU>LgH5lXR9?hrR_MSn}9th*l|Rjmhd=k z$Z807e}`7?xt$WG2=+HFY;P0%2a05Yj3x$d<4-`1zexNI;bgjiGu?tSU9d$k$F%fS z1RJrPl-sN4MzU!ejMV1+el4LUi(@pwLr^y8WZR$>%C-(^VlF^pZPaLuzZq>vw1sev z6r29Xv&iuuDvKQ0{2tPj`il139>rUSH02M9Er0&-PBvQ|P>7YVRysa3A(p~UZ32Vq zmiWQgip16sPRcfN%6{OKbp-af=6c0)`od0i%2LC;5~rVjB@RW^mSly^yw0h!&E57WX@GJ>Sm1PcG!;!$L=%zv(!?xrLdSVPX9qlLbRw}MgtPa5 z#o7Imv)dWi#{w8;cWjKxP?CA7U~9Uv)ezG^zxb_L=tG=#f24{ zy#|iyEXdsxDokluA;p}(WUDSVb9=QO^}Y3u=Pp0~sstAQYOe<);ai8qGi4EGHo@nG`TqPE2?JYYKKbV;aF|P=#Srw0VD=OIEh`$iG7w6I~dqJN7XdN1)oEphZR-R z0722Xmrdh=C~S8*=9DDkawy1z%2LsYnVf_T)q{XBhLSiK!b#^EPUmBs&SGGLxTe&@ zh}uX61g*oMk6H)2)-))3_p#|ML80vS0q$tn_dpj{gj19gKO9(N1c{LlM6>xn^A66{ zoaR-W=2Bpn2kcqcs)dDW&Y+yVu;3@%o2r@M|1c=ZE+1&>0c8h&zQTUC9Y&+@rmvPP z!STp3KpA66jDv7C^p)HKcXA6%1oon4TOiZa)sm4!mGf#zoBKk`jaDN>x;~Yqgg@Lw z9YSpc>yw~d(>F^3s`&1YOq}M&e|p$_m!a6bl%L3!k#x=26WoiF_Xkm5KdDp=cc%tn<5Ns5Lb*v)lwwl(2~}q z>c?CRqw3_m`q4}nVn3Pzk8XQ4*C9 zPGc?Q#=4XnD+X-9XDh?dhPHDe;(SJu{yP^VvEJiWLD7e1L0|W?m2S@jWt2X)QEE`W zac7wvH%)&B<4UkTl-?p@#&o7dSC;dCDNu|ajBQb zcJ8c{;C()Hbe|=hXhpuiS)#}$|5%jF?#*TWQ6?#umX=Xlheu&vZ*Uy&#sU(@LpW`) zklWxyZi9uu261mLo2fG*Z#x#t#FTm-P2pNaVUd%dF}pW+bG!s)m;tt7PKE+I$R!!F zwL^ywPe$r$F~%CF;1^>NiBln*Lrpz5!8~q)#lQye(G3slFo)KH)ia>PG`C7A{`>{T z53u<=6Gd5jkLpV5lIk$Fw&NM&Ec|SoP2wB~XFHzFNlbAPmjHWOvpr7fsUlJv z>D|j9ZA0(Aq5gu-^P!Hl|JV@2IrWpnG}z|!0+hFla%QK+5=H%RUz@$5dm(-|E+TO; zgtKMFIH}c~)TO|l(ri+d8=p(lY+QN4=w;AlX5%1EshIw$aOPT&e)FASg|y3SI~o|*)?H$%7b%~V^F?aw>-k4^S1D0N%& z6LX=F`21Ydyb#p56@N8uBXK)~lii7&-3grCmB7wvZu2ycorWrH9WY`Z&~RI;Ff>qn z5RYjq=(`Jrm+2Kze3@?x4cL6Z-}P8fvCY@rD283}${J@$GFcOg%5y>Y0A}1v;ywr` zfu)?lQJlclzy|zLz=)|;vknIF3JH!MfPU<5*G4L@NcY!BOKj2~M7iwX16#Yh>}DDd z0c|`?;t>cZ_r;w1Lpb+qfDPi{LsZ2#Ty}1qV}$JoG!|jCw|>A21;S-_8lYkjdk$4)yX^6qx5QDfO)&d)FC%|EKT-}D7lAx8- z0-KHa@d}Af@Er7W?*tqh6zPZBq(6^x*;XS3_2g8{{IeGTGF~L{5(H6B|A>UULQZ*K zPWd`u^S{;TS_8rHt5Aq-HM$}d!~PZ&r8dK_p;R`^IIgZPDXR{rQz3QRwedR8#v3Hw zgmAX*9-Qj#oa*(!2Jx9Bx_d!gke)G>Q zL1%7)ow*6V0ycIk&_XcsG2at*U*&jYc}yfP=*+98{!)j zZtZKb>=w!aSIx)x7AWI865m5ONB@r81lw{GYy|d<02W2Ltj^_()o2w2)jvWbYcsP^ zs3Muhf3)|_`}VHMJQHn_e?qbDZVkT`()bxL;};UYLO2_`!C7v{S>6O}z-|q{?lPA) z&ir*=A;J0Y(9hki;aEkwKi|I0CjAeT>wY<`ytj_7&!PJ}9EZ&R#8bv!B>skQ+Ms~j zpar)!CFBLE1qQ~B^a&o zN23jiwh&HxZ2FC-Z{t5y`Zlonjb~X33r5?cd@G)1{h|n?i;0?lrem5-SO=71#rYlA z`WRc{7h@|DTSGX<>y4bXA2@3rfz5B6-=VdjZaXMp#rYjSbN>7UP^a7cZI7bdH?T^0 zDvY^bi|>mVI{|OXKTCp-K2G2eRCD!;eN661zh<+x7--g^#!ux&fQ# zTQPOb1-W}d5$je=9if=?xAL56Gr1Q^bH7P~-Cbzx4V1ADiG3lQ4SPMO^leUQ4`2hn zNut6|9P}DaVbu{l?+@+VZ<1h8MYzAFd$dh>PZZ0>6t|p1nV zaOw+z4Ps1jTikf{G&Wa7VUB*#n2jl$dnhQwgl)qVK>^FV7>C{PbS#2AZ~W01Kw=<- zll`@v{bxD*gMrPjcVQ_kxEzA=E$_nmMG=;}cj5NMmWWN*fheV8gJqR*5dLfoC2=r> zbNF4uDSM1lRt)U1&E3Ii)&?V6-kFi@VbEZ5gX(bF{A@BtZQ4pu4vY0MKb#U*)g7JU z6J^7JHb#&b3E^yjt2vviIGd%w1`+EEXHwSMnzC2v#w~GysQ5maIVLuJ{;TQgiROA3 zv}LirrXNuT@i!t@*#;Sn;;s9JS)*XF?J+p|Z@lhfe@u0u;_o$-trc;1*v;wT8`0JEIa ze>JB+4D53OMDExCBjXs>WvRI8TdM2T-(cg14B#|PfiPb=YP6vFJSxNb8wyh8#w~9d!Cmv|sPo>7&2HWE3JJ>RLqGQzH^(Z{{areeu}MD`<+6JV)s9Wb z+QA!+423G=IN*#0B#wu0vc8bBej;amA+SN*TNqUvi`Fh?1*w%w#Hz6>3EoeFhV0(L z#=werf1`JuP5j9yn6-9C!RkY1#wmaqi%6Ub;pDxZ^FELBz8KgbTDyaHrIlye)uV#- zGoT-9?Tu7EDAMQJq@Rg$d%Diy+F>4%V1`U>JYbwn;v5Jk{j)j!DNg?qV1u~GnK?gn zrio%L@{E(no%0&va<8N?$@$QkUF6JsB=@I+GETj1oC~0V^^qtm8`)a!(w9Ro#P7yM zBrb+<+9JknQO#|!6j;Y1%j2g-gbhN-(+a0zp-4OiE8w>HexU>0*0s_#aZz8ed>OQv z**Hj%YL<}8#<6Qs=&?4bm!m-UOQk57!1qs$Wq=x2khl`U$#0nRdkp7yIj}+8j?LOS zMG|~$AnO$q%wGdNt6jUkj#ozTH`Xt(jc_f>W)U5?(B-5kt_8<8yRb=g9ni-0ByNCk z+F?4k!{OWxD}W6mqCo~?opXGrC88u?w)PgM1UHExEsETYpiBS9JD1lu6Dp!jWN zH#AQQO$g&a>#g{!aT|%-A&7YTM`S2YxUG^a1E&9Yk#e z7!bo z$>gfOp!RWSV+9#qVL=hQ$R_p)6v4PUDfklg8&@kP;4@@f3-tA)LeRU{3EK zPVZV^gIM9P>8~1UB`vjb8E_k`lA!!KXvkJLje!;M{${?!aEogiPS{&|LEly#sTWfAR zl4sf!zKgQ#EnEz;W5cny@gDwYyiei-2q$^nIC)(;c^iPu^A@gDSkU${%D1<0d5)qmh-m}*dXR|HrZgU<#CFk<&wD{{v)(GvauQ}Lj6rAOKd`aLUGn~Vs2I8 zORw~iW3h-ee#XznFC>12aJEQ;Gun4fzcX|8Er_kg>a4pn||f#$@mYIo($}&V7FJb2xAgj z#wsF0OOHcDQxz7*X%GF`l~*~ErHtlpP`Si5S_kOSUd?aDmiTXDD-v5nIIXdfTjK|A zjgG)(^Xf>^)MXCB+o9;Ossf6k+>^N6=CP$VL))VO%L8DSTN*py??xvQJ3=_ehp#wO zUvj281DjtDfaxq4+XX6E9sv81Gv_Bc{BoPQT~Uzxb!yh32uB|0Zh#wINbC;bYUb!yhR5g%z4ZWR>l?+Ja~uTyh-Mj6Flhrhx$%3dhnJ)OBMix_8QB+f2p zjJ<&}_93w^gwq!5xh>x2w&($D!0F7`NrqB1w0Pa?Vbu}L?+@+V)0r7GD8jF@3Gazw zts^G%#jFs%a1+MWw{fEveldEJ2thbUkae8oS2)Rqz~=Xei9>6_Wj`ok9WinItoX}0 z@5D7LV!6#<5sI=-GFYj)p{ej3lDN9GKYla@kQfNzq;M^#@L5jbU|{onl0ny8&^QE& zSSJ~D1ZNVTY{+FT>&oP{Hj@XUH1+`-$BA+CraR*xAdI0T4u)`c`!$@-$2gtEzy|RF z8^^hM^OnC{+^&Yz5Zn%fR_p^d4PlC4e`D+QHo+w*l6|J!`Mqp}owLbEGM))J{omnu z$QVIlB!rXm)tvKHobys(?+L*Fb$$puW$Wnlem#F2yphTZ%Nz#X(`wzE6HUrk{yrjp zqiw9w(8AizIW(Ru565Hk%}u^gNjQ%0kAyM2i~+_NOJW>^b9hn~Wl!lt(jg*M`6q{5VSYF^wr87N~4iK!6I#=n9Sd=n>lIW=sp74HR5L|s3P3o;B$*j_>m~Kv+7k$!|`)t31bF+HfEAI z3c|_sa?bSCoar#IK{VyCIwp~XHXbRa3J7k?q0fv)D;X52x7nmdP@enkxGF2r{Dfo$ zfJT%=C4`gSrJUYNIlVDpFArc8XY{J1%!Xf%q(n_*A*02yS&B6jXPpG&v!J5;<+x6? z;@)3o<{dWoH7MDgdrCK^8Ag0F$A|-H)RIU*IJsZKxj&C{KO5M9ZzisQUNnUYy*xH@ zXQc%BY3S%qz7ws;_cxlXw8_t)WGgu8I76PHjd>%BpN%>ab0D0QFXoh=&MB`4w)vw; zMtr3qi=505J`R?wKu%nS^3t3axMIaflXnGuC_u)A8dgBiJ0JR35z>YjMQYAV8Q0CE zyKPdBMS0f8^@i0|R?^28j>F%K1tgA#ASUS_k#n<%wjJ`Q^delQl1I2FQ4Sv{w09;a+EunY1Y zqqLM3yqy6Ztgq|wDsl4s#NO_=$vYDzb#a|2EqB{E3lQUM66ZiT`|xZ|V~W$b1laR} zowBSoh{plbs)(TWeCTydlNDAZ`x_)z+azCrGOhEy#iRQT78G6v4XpFM>NiE3zfTT4Xw!B%%5lF$Smk^f%K$R2AaNyxvvr0! ziN|mfmjfH{CBm3sG9nMnWBXK<5%gXI-P|t`R!Bv*zc%`?P4=}Ybz9Xh#ASlUb@;1s zJ&7A2oK18(XZLWbKl4~h3+C>E4t(aZesz-9{B89$HhFiWBr8ixuJb`2*3}u~ z9{gn7OX5BVXP++R^o`>5tp+x~Sz1oD1%VGh3oA>@`MZ#DvW z_c>@|ii@Bl*T0tcdqF)vvXQe+>m&pJQdGmSec7$9NsT8E=qy z6T;b+dvLP5bF$Y1o9EB5YKjX=-+>;}t;M|k0hh^CGex7n$o2C!jqjqcka9An#xix` zcv-ft0-sjLw28dqis+%yL{xl}3IB;R+3(>Q<9!kzKseiSH%@O?PVWX_9d}T9JeoJh zR4pS^n+w$t6p2)`CbiMibMcY81KnWJ< zRylj(`z@d1XX7&xpF=op(V5#~XKstHfNg$ks@DGaI2M4>1m&b>LUfKHm*GUKfMEJ- z=))r28pcU#PCkb#sW024euMJZbPv6PKG;jhPUMmZv-}o z>!ew*yP8zqAsG-cOGH^oIzhFE7C;wKbt-D<*aD;iN7%Z5tFsDa1$89?I~ z62C$?hjfEmp&hrvCSdb?t4UL}5QP5@rL0>`nnEkKa}LS6=0v<^v;7B3W^po?bC|}T zfEa&~_#496+6y?(EjZ5w?SqMv!SmOTqvkZGxST;X^CeqCFBT_rsjwp1pJVcdO>!%g zxx={V+$=`LWM$U8w=Fa*gL6Br@r%)hL|X_ax0`<9$-npymHZ2Avs0iFN{?AkA%y5o z0=JhSr(B;Tk#*C@O>5C++e3+IZa*vj=&d=8%|(5~75yut1Izn`2Zp233hV&1FL=x5 zuLFv5Po$)?2;w7^YJxDf1l-t)#MTf_Qa5r^f8eBc1ooz21G_j|5i;|5LTXmbrSY-> z*R6tr|Lvf!dm^RVGs-Cb8ufbHDBGj_eWXvSEn7#-L9ZQ#go29VOno9^>;S0IiNuZ& z&XM{nZjdjzK{^9_ZU6@Hu#jxJ9)kB>pjLHG^;VqwbIsqiIo}m!Gbcs0d3fRctJ-ao$ZC6C0kh@lq%woLnlc}f?-(nnzRP*w1q-JC?j+@{6 zsCBA`S;6!hhoIO}p}1lt_YD`fW67V`tQ?4!TgQ?SrJN8;;S9n-_@gnD#K90m5B(!D zBi3+w9^>>B1DoGt$(F*Rfel0X*0E&k7fzU;80%*?VI?S~f9`RZ$L>u@}2 zj36-*!rACnb5>VzR!f1skN56?BUM>jL348S8Lv{+6*f5x+RtqcTgq_$Vpm_-h8qo4 zdgrDJ&NqbM${J(vh%uJLI0&c3R&tBo$t^Y!Scf|wpv6ct`1XEHB`YXwGzt2qJP{L= zalW#RQwALxzblL;$dS=-whot07?S}trjVEl;WWw$Zj_t2QKkd?FWeP22bxt%&2n)r z*-S}mC0;RMj3c0D<9CH|yweCdEp}Z4k>A)xI1**=EY}zO@*!~z=M4O6%p`FXgmY3@ z&UwF@^BxBFBtCro`;%q^)djQV(B#O*YNyEbw_y6tCNqNK_Ex=$IiTw6yynKTQ30e8 zB~c0CY|u+Nv6pgUW55Rdl}7bt-dfu6MtepWrD14hp!@PetCk>r7PNH#N}~o>1~5x) z_Flz*Z3EPxXzNZ#b#2+AnYXHv9t&mxPbj5-o?Ae`-cF(>+TPINu64!@_F0|#5x zIFrQv>|QicU16H}(BA#4bWJ>}4CXIb@RMz@W1+?_Y7k6Y6oX;HURS8B{rqmeYx7S6_3JZL|xZ ziFNx4<}Twx{I_utiHjkewuo_CRC8M_1vbC8pU^yOMrAHT(bnxJ_@iRTUu5PFo1x25 z0856kf@D@QqIINsT4rPv@g?*8tg#Hw7*~+E62i%1n6r2cXK^{OcLm_nSW!dMdkm%Q z6U}oom9~nwzZ%U)cPi<`kZP8>R8<(^8feavVsd#<8Oq;r=D%!1T?-|wwA*nwErU!Y z>#n-%@RM;pi5nou9`uh0q)q4cIGo#K1+e)|yLGB9xV;%#SZTM;-xY=a9Ls-f3U5JK z))!8k=cLuT$+#6D<2DkvLpaHt$jO|*$y^C+p1*L?SPcZPcR?ZR3nz^sgJQU#b&D3) zw**;j??$QHXnW?yJ@}(>FNymgoWn&aXLJ;2bTzPb%?*QVIRJeMX{WxQ+jyWUE695Q zWtVBcD6-6#FF`naZXu_wFQ;uCuuGaf(PzXd;0PUykQ%{Pl^U6OJVh>vJoZsw_nL^7_$m~$ z?#Xb+DVAx#D1zwKwWKaiA>pBkXdRqfxL_0N%Hy%f=xF`qWKA?N)HMOkuxWk`h3+b8 zX1UL1lJkUQGH$#Mfbj;2HzAyDvj-=+J12QPu#1{aaaT}) zuvvWj3}?a%ex$|n00lxpqXl8-il_8C9LAC1pQd=BAkww*b-J9Bcs0ye+9x0b@9 zrGAa_t=(Je7e$!A*13&M*f%I;E7>2$Mr)JldgELC$@q@M_Yh9HI&!+U<#cTXc5ZW> zpk{S)p{^k7N0dInQ4J?mIr%`YmjHCMsrm_Juq`=fi#`mgn^@CCe!lbEaOk$jK4_y4dJvv0k=R4Zh?XhfuHE2t9)&>Jno1(swB8?2@Ty(bUDC^ zcz==ePB!taP%umLP|HxJh2-8p%SZs zeIx*{A*v3+B&DKo(v+g=_gsvls0 z9Zb;*GhfTt5&&Z>5?ez!$Ni1mPCsxvbp$rg-kqEFg6{30jOE?Ap%knB=FiSHtJ|Z* zZgS$WZZ^l6?3lX3j|Na<2f&O@BzA;wa{CqM_DjxfXJF3^pbvOh)-_%S!SF6nsbaJB z}~9ZCyg#7c872dKN~pp zA93ot0UN~d!?yHjCSZ!%K2KOEn#=H$d$onN_Czh%@RR%F%7Fgnk1nH=aoEK z`sPz;R5XleJ+67i@5VkP_JweoX+1a7+uTe&fDK~j6+Of}BN?g|>f~Y!y$XWz{h<-t zdDTHd5xa*?Y)=$uT^@=tkH&J@KZmDdbE2h*%B0Z?7^63d5QKC1S;xtJg_BzdY!K&A zK`tHt4PmbNf7P7{oD{|N$3a0Y6-E^B0wM}13WF<$qJTjTB?59s6o||2EUfIs%r1%o zN(3SbL==bz5L6%@Ksr@mO9P@mu^7MNDpw<^$kJdkx}|gCahTuDt0r@J*GxZE;dE zOOjl{wf;^NgDm}GajrgVhp({q+;o7^i}Dt#_PbQ=j_`dY1C71gp-EZpF(x*?Bo^nl zXf~zW0@TUM^@y9ymbCbuo22v_m&;U=Za@s)@B0`KOJL8EM66qO&S;DU=o4`|;cKij zH(g-#L~WpndYdMyD||Ejz7I^}Oh%a_qO9yX5Yn)h2ka#5CdBXkzK`<0o2jHVS4r!J zIOJ~XVjCOhSuXCQS$7;{J-F!!qo-yKP0brLHND_l&AX|mM($|*0|X*>Q&079m9%~` z?)hTj%axM1;%u!{$0tfkLrUkUCteRavbcB*>y2-)KHT($(dB)W%KHkHw?BMWWT1)4 zcDLY7=@jLO0Bu^RiZPvB3_#Syl~Kn{PF32tjU#lAM@WSfHj|4#F`un42Lm zJQe)oJQ9DArs4&filOkW=Iu~Y0(Zo{198ahP*NOR8PmHKU!`Qc6DN~%WOySn3_r8s z+>C(HOYyT*xKStFa3tw%)Ockg4lCI!r?Dxd`Kb7rSQ~>DY zA&z*-gvScLlc}U+siY)uezFS>DF@gQDZxr{n3Zue4n|MHbee>RX%fc6HxqY1q{!ng zsIpu7a{x!=`w$P=g(n3vQ=+z2qTY}5$({djx5b}AqnpaN6C(GRYy!O4L~bU*=-N)E z+CE6NoebX$-L_Za&e9vfQTNA)NbdaSOY4ek-E$l1wc51368RyVR<6mQ%XCoTliO5I z!ErW~n`tmyUjA`92ji){_fmPM!?&8(WOxMc2>S?Pk!vzMoT#MfOcuFTN%|;GC?%y+ zC&b7mn}OqOCO5NS^b$LkN?JlCoekfr55*?TnIdtFO=8oy%1slIqqE5;?2jWPIoRz1 z>MEP&1d)zP+9z;E@7ExxeNOsikHV6~IdEiixtRx}Yn)Ft9!)iV3ceYB4FZ;iI@`XK z@VF}3*U+Jy;`}sX^nMM3?(M3dUeDtOCH^xwv)trGO-}0;A74_+7u}bP9v|&dw_;btj}UhIcb-EXJ5zX;z<^!7+cBQBz=Y;UguKqnzDAzsqktKd6s zQqrpkH>#w(jPqaN-p`ZXrksG3-1KN*aalYk#+JdGE$3zhjGmMJG$;LNPF{uY(hQ7r zkRG_0Ruzr$34)1aa5n8x`FKu7UPH8FY!%5=Lb|GiypGe$cZvKkzbLo(9_+7;-?3HP ztcKBL??q+5h04ALzSa9K5fQJWBYH-zj_v5oiz+r-Ug7+ukhRMG3GqFdlwO*5-Wu#R-U!@2vC-%^n*$BR5i zj&D{Xy@xZ9HC3c7Pg#~rO6FF4hi&6#JB+Sl7S-`;s^k0c&BU52a+OP2zU;QOHtnhn zs*{Be5II>>W%EThQR!XudZ|Qxh#;D{O}swmPRu&o0Ux%Ln_Vz^Vp`I~TtO4_5quxd zz@<)~by(Huh7O7&{GSn7cKOV%(CJMuyj2PP7o3#5EYdCad>LD^hs|dz?1mTH!_8h8 zUFxP(>Px89pTIX0FN<_bI)CR_@&#lF%BIwN<2Z7Eis;D8BE4N*!P6_*eU#vz;k0tf zHh+SUTm`cazhwKlIRK;Udm+{L0;=y9@U7k{+cIEB!7p)sIb~ZOaRsyQKzNNA-KGTl z3TKhK()7Y>p7`2rO!UBGKfb}|K^$d=xH$}?D_4&ycMetVYxq`u9hMm0$S1*M^I+Pv z#fI;mYg@$(6(f8{$A2OkxigL7;tHDl>oz@wj_pR~w7vG~b~(AZc{$f~Xp14VGi&x& zf_{V3T`nS$BP@JC1v4e$;^8fJBTQ~^-;EuCGds%7F&M5d|2QLZjOu#^)%RQYR(+vS zmHK5BkvLNS8-d+z$?htj-u?AJrTlj|yId)p9Kup>mtn_oh@If(B#f?eO{#MZs&mb= zt9zxe9=0RuDTqR@6xNSZ39)L+rto?$+8V4RJQe4<+`UMW-btVQ+}wiLJ=yVC*P`r# z@rnEds|9CPo14>M^v2=aZ|GEP{NPT-hVSAG^bknbtx(05En>5|dX)?3NPi|`z1va_ zHyP<&%YLYmaTd<*Jzm7ykysqF#1f@(ygP|ceN3>k;m+!CQx`^0$JaC+|Dfrp2j5?0 zHXR8kx-lX;{Tgwf^yg3A9nmH$HcR(Z$wDz)TV)Q+eZA&4J(LAmqtIJ4H=L}B#C;eD#| zAE?S%@Xf@flHB3(3A>5p^TSahHk(Ujxo}Pju0gEiQd#ad++?J8smxZ%Xp6I7>TD6+ z+UXdyCa;Vtjl8t3eBT*PxCw!T8 z=B5jbo|6qUCvVf7bcOH6475O`ZsgFFe9@R2>o^%}CF@GX@J`-t0?U0>luu8l)lj!* zGGi*4-4KoUHk2vzf3>}_y5n1{2RA)o^enESS$uX27;ifMPPYeGz0}QXyw7f#o z(jUInJRdkEa7W+)h(pc?PH}K$OmFxgU&%NSCzFrT)YO1}*p4VCza+aLDxRFML2zS( zxfueZEBYc;^aZNuQ20Js<>tz{Vn-9PoH9(i9gof5WK{P!Pe|Lei?+wum{Co3ZnHCb#>u{v&o((73j zss!aA1bM@&Et6xpIKpDwv@goRF4%c}5x!R^zxbIQgK8kaa zt$s+>wYxMn1Ac5KH?v^$qCJ)hTtWq&4c|<>yglabFQeU!+O)}jNRH-@BSNy(kDs$E ze0qg?yb}HioLJ7FCw=%nvC?ebb7FIFoXzEC9*kb1^QqvYso+n+x0)9vcm(fA`!r&a zixNDXTuHOAd5P6E!K5PLu3t@Cw zv#G3iQCXjbZzh&0RbpJ%2f&f`Im9D3Y4CA$e-L#`6_%fu~jANj(n#*ZmC5~m27KW7)RsR5F6R5(i7Vi zJH1wRvJ(4soK@bYY1>}2l{msyakCmmFR{I-!naU`*TA=WZ_~7>9Vy>L5b`!nJM8M0 zUiaW3rQcgPmG{#et$UDs!#7(CXSR-;^)Py&?Mfy6K9zI>d^7wsN9!X*`QD6`EW9S1 zqx^3WtM}6!^BZn5(kskURWjbe*~vXKsY3Fec_Td7CT=#v=o#opGjJWvz!vys;+~l_ z8~Y1bz>vY@IqXsIC6Gz5Uf4yWvTEejeWn4Gr~He1&b} zW;=}DjAT*8ucnH>58t0vdDyc`^BdIYWw|_#^dBI+l1k~|<|4h`#&ng74-o^IG*8ms zyEw<)_)l9JwgcZ`JGt2fqZj{{G#OXWWPAkQOiY?5#lL`tSlRVqHmFXX{*1`UqMsc5N>NzoBm>?r{UP5CBc7a5(K|nZP6cML?1n$v!_8h8y~Z@9NxFn4 z=@a;7qH9x$9=HXJlZHAe`ADZVtofS*u60b`H(j*YM3m zPm5%YFa6GQW4pJIzrWLGI=ZLOCY+O+e2IFI zr{I;S7}Mx9`NKL{Iuo(S-NwjDrc5R4XDV4|Aqu&kTRg*JXXAIQ4mWjScrN(InU(T2 z&BZ@xF6zOzde?KyXKu-7o9E*6ay_>=;Hs70-M~{yt@Cga?>YZ`N|D<7KiaPtui_cc z>cgEi;HDvrUZ}sILViw#yb!(_-Xns~x^kl{Nk&)6E2I~oQ;;u0yxx=ky}sinCB63M z8I_caaek7N3SNQA8o`}4=B5dZo|I2$Qa+|hX$s%};v~~#GCXIOx-CQnU`{eFMVurV z6?{iehSkFl&*_N^R5C8Z`Q^(Dy%sJF8>pafQ$f4Jx0)Y-`T#h(-h_DM15h8wOv$@M z$=eMlm9<_Q9Kvh+60AFpvL4*@gwcgvLxp{V3fl|5)m-b1&>cyCfJkJmH(W9$<}Z|( zx8igcxYt-rBW`;Qe_)ScLcAWWH;%GC-1LRf#e9{D`3e=YKYXjcz`jsz%!Ap(2qrFq z@t;KO7rrCt07P@ApG&3$eNhQI5U2BgIwW@NVuRqp26Hn6hKri~_W=JtFH%uoprQ_i zZ-$=^iCwyEI>O}cOl~}uyz96FQF%Wd5^k=*>2-HsRs!FNQ#N+;b*DBi>Sic@O>-;SN@c7xtz*xgv&?cIEYh#MC7furDS{vCzJ1t zPuWuYrg(8_K|Y%T4>pyXX)wB&9?A+nG*OdCGayiB@vkPsKp{X zHXj~r0XGX_bb+&}z;{uBpM`HG1dh40O~u+l8-Yy>N8slW6%p8U%ap+Dl)%s9l;?{6 z)@>v2#`2WpE4J8T{GKi0W+@Dpm4BSaIYX(ew^LbPgzp6YFzos^ZQ69ZzD*UMtW~1n zB{4f1zJw44n?SB|>2;!ht(1EiCz6BKDHE@w{j%fPSnE^3mcfZF=Vk?rE@OWxV?Qe6 ztMHwkft#vI=;%k_i251=k|WiAo>bvb1rj9%2cQvJVA_1^&BY98%Qjogv;HwZ+IcBgu{O7i(9R_jqb?;tiQ zCEvl>WY<^rv*lBm+2c5qv`JujqLh*y6M7N z?R4V#zMS7GVc)|kz1IZFCv1F>D8{zJk8R^-JB%)G7M1sED)0O7&G4E)`D_vIVvSe! zy{j6MBl!o2(0fgw=IjceUfZxm3I8EZEcZzDp0C}tU=*ekl#VV;upMw_JGt2fqqh|; zsrpw?^*@4dHSdvH5s4%EpAnecBekM$xXSZ|gH~;c=hDIVl=6SU*;}~dbEMZO-)TE= zEPup{UHI5;__96R?1j;beN!s@B~lR*+6qL@hKwB zx6{H+M0!${F3eG<^YVY_=QyQ3#j5>z_)~Sq${~QnbRBL zdw*w_G3uD#quM#kyL_a#m%_otReT%D4C!e)%u^PK{}S2}%#v&c<- zc`q)C@+rn258@Cz#LZzCy6mnBv{kSV(a!(%{2|erl`%1!Za4zo=9^N$`kbPfqoE?D=JIc*5 z7`@~%s^u9}%WvVE;SnC*A&&EqZ0dMQpEil&==*O(<~_orm|daMtJ5DUp})gPWk=1O ziI9l)Dl9B3<(u8Hq8+?)oZm*Q`~rgMDpgFD9;zM1H#ISnbV|4s>x z#>HFtlI2S_r*v~J_u}J+$k1ar z8}6(QH+5lj{lBLA|AXpZ55Ae0j!JtBT6EZg717x=C=~!Y**F*Rk{OT{d?!;$`A8+@ zJe)sETwCOwQu4(H#U;GwmXF!~QStj;Mb4rXY$L2(h%%dboMv_vuw{rT(JwaxvndBOW3d{fhA_3)Tn+Sz~UR!076K zLe>A6s^1j80gQOi$Q_L@MIdy#nTHU31j(F@*N?wMu$qOmjQN^uktQkC5b8cF| z=yHBU<@^(svn711d&DD_C-!k78)!M2UWsVrh18Rh3Y*ST)W0fWufi#15#=*p2gI_` zGKwjvt#FXF<|YcGYx+Lb^bb_iEcjM)5lxNUk@Fe^B8zCM2UXJcv8mTa_Ma#v+v02& zibe-dYI`M$3$RW;cVKC89J5YXI~->1x#<9-Yq^DL`7YJ6BYYpK-p1C9-BI&;gfh&R zkLsCD$^1;|c>~TTOD1`0Fd8>gxvUcovd-Lefzj36K-GMks@WC3)m$=DBX_jC34zFx znd*@#CHE^OyWwm;eYWhJ(b$b%Ul-RM?yLtlJz==E$$!ab`)jDSZ%}P}!8g-=HW6JK zE8^rp4_)}@q~HgL*Qd|sA&Q%n^g7aiQ%SiM=l`DD-FL5KQRks#KTNG=z2U_AaMKq? zPsOV=6|c}#^oMWNSFIGP$-pu4csluTw*)a&veWFsII<5wY~Gt8xt^I4`wJ!ZK%A9q zWJ$zUsK_{v&9I*5$mk&@at_WZM@IQW zNOvPLmWx9y#!Vg!7ngsW2^mjOai65(=EJwjBcpCRQi(e~J#0tHyAg#P8P$)w5~epT zk2DkX^Va%IzUne@aD3P5PV^iSE zrgAe4MsN1VQ~mFy`cH>%)gRaj$CC1mSl@D-vk-RWb^R_wt$<3FnW`pP1V1P zs{br}mt~-|lS^)*BwMvPZZD~lS6**OCo#_<=AueS<0dD)j?f8}oaYgNd_fVv1Qe_H z8%OC2au&mlE#YPGdPOBgplMriTr(Co%tR-RyS6j zE&YF#&M)J{T*L#SN!w}dCl52YAiVg8lLt#&P;B}NDIXG`oXe8z8@_fXYy@c zZi?Y`)N!^FUtz1bSq-D7p%+cVEi?^l;G2nCGSUX|O^`^0*z{#&GD4e#Sb#dIc@uGy zTQZC9WhzOhswBOI7`$Fog3Y1vhO#(c9J&@RY#lf2Vf0q0D^1GxX;L=8H^3K_xbZt$ z{|4d6-8bk|7uV0#HaXk7>K)D6O5AsF(lZJZm`75OKay?4Pizx6n_=|A-I3~e9o2CQ zeB)$F;D2##jf~V$>~}cvt@2m8ICf35*J8!fl{W9;&&!Rg{iX?s7xjt5Y%9LPwsEr^ zMlXn2RKTmLfbYY%nm4Yt<8fsE0O84vtL?t0=c4Mpbf$9gA!4{#+#aZj%>82V!u&*n zzqW|&fCJmf%`O;S`Ic1qE2#1x!MEynLJ8+~G@;&<=*Hu}y-7I`j@*AnOe4zi(#5U% z42ZLoxPQSJNgu?wm1n!*$o6ov7e;R%no^N3p(1|*-%RvDd@p|KUGkDUpL~iKNgu>l z0$2R>`XF_b_@Cj-WQ*b+=ya5h?-|c7jNMZlAJdIb@N;L$?}Ibj&&>fCJpmWe1YAH9 z@CAG`u|+ZOZj_GCld&ZyA69Ofe0gwA>HiY3k}ZnMl_OKhh^SDbf)*v!mP`gVEb>MzuYIYWppGt9fLlA`(aHexo8 z;bRISEbPH9!b%ROx4|_n+BPe74l{l$*M^kCCOrY^rfbehJ@2nbm>|tIf@6FnUq{_8)ZOIDT*^j>ET_?^e9ycN9Jo;mFr2di%NJ z@&?83X2q*Re!kN7ES%H(?IpNJ%F7>B7I*H}k?}%odeb|6>cZ$n{A()q zKd9LC;G5yMm*i+6qWJR=3lO4B?}d(uXn%*GI(a!4k$bwv+4?)OE zz#psQAMea)6U5=d8gSDPMy~{4(7b$3^Kv14tGN<*$M1-J5yFv`z}wH&HoZ-|FIL)K zjB{S%IW#Pvl|~2mVvXR%8gtVGMlbfCP&Beu|aD{9If7Y6tD2!fu z->16%f$EwC-Y~~eGznHHd#?$}Y*eL$; zE9atL#$!vSCe4lKlaNk+u1Cz|r50B5=t;7wJ)WD;U#60D1EL^FB2A?B);Y{A=#Jaf zan8MJCwz%@=B5jbo}>*lNpI66b%pQinXN)O@$n_4#iQccC8Nhj$Hc~C35bYMuSa|| zA-RdLY@xw;9VlU!M;r02@&p4T&1%~h_tA&Tbo#>0JV%2!^~N2lH4%6f3q6GqR_ z8k(UuXoh;h_oo@iP?7x>g2@{wUk*q8A0VvJR@|=U*5eGGb5k!@n%|0Zdq2hVn{UW^ z<14HWH+^Ar?O&zZze2U|58n(w#Y<;mB`M;5piXiIAa3uccz)k=la$_-rlm^KK*S&i zgLqdNn>dKK<+=YC4~|NUbFemH5S-ayZic|{^ze@}rT9gfo)>6(hQhb%!<=GV0`-Dl zUBvtG-2aQ0C?#X7aB^8ia863@K&*0nsG@JU$*`_5o=YCDQpvazXO~@CIXcz5n6J)b z!*GZV=Vk5+xGtg9McH%SMr$Qu4$gIvXz*w) z;_o8EvL}{{<1EHa9*nNzQ&h(%sgC*Zol?E6yGQVjns+0X;r@hF(sV{G+bBuLaJ9q< zd)>wg_>YC$6v5~U&ZY`JMim?j-$eC1j8>sKdc|?(-s*Rmk|#^alfd8ieoDvZ%EjW* zTVr_31GaW7g(EBDW*iI`F8MFH$Zk3n?qMq2c=%@cDIK39hq%T#ap~PXIxW}p4oHV` zB)$(ZdOxMpy2WB7pX5WM~mqw9Qhi%ozZo5;;17`@O=rrJM9 zwVw>%sy~J7?dyL|t4NbuyKpjw(S*m8uWJr=f=b{SV`&^W@XO%B zmUFWLhKtWX&JBEjDt8%#-sziPr=ajD-Qs>mhd%Gn{*h+Y@RotwG(RJ=cb-sn_yavA2{JJ4u1V`aF z5s`e|kgscoM2>Wa$cs=MPpQ$YMvYnzVnYl3a2gf_@Sg_^?3z^rt21iif8Si+ves=c z{_*=;UT=E+6ZQ*Z=a1&XIS1)9%r6xBc>! zSKm%_-d}&{ikExde(IE8FDTvk>EzsBZTs}*|C{~h>C+o6_{o(YycOwzNY6lArz~GH z{<@ZXR@_yqCw?Pea4qgT5NwUpe$*%X?&3K9lV8ODb5mJd;MN2lHO|0? zGxC4(6X_iqDf*;JQL`_8!{sob289M{umLs14{BIwpoSYzBmAIpLjx5vpz{2n3UJ^Y z)G$@icm?I3NTK{Azq)VOkPF*=JiTU-_#@KAafE9r4lKe?6}C~gPTTn2y@Q@<_vY%0 zZn&Vvr#GBj_4>h%HA-tW=wxny@>l@epX#EFQUH4w3OhRqF|GfWfYrUs`&2cGE zrwXdb1Y4-U8{UZ$N;bSTCkZH{wV7fI6?mqmN+^}7X#z?XKiPqZ%&>(DJX13zl*-gB z0cB)rjxE&b@BjOU8&`bvkLROPUW%+ZQRj=#PuzX*r$71b)Nut5^?vH{Ca>M_x2Hea zxqHK&r$6X$Uei+^J1gGl+Xv@9u%Mbef-PX2lsv6^z9{o|NQIR zVZG0OV#CW%T`_!QtCwP}8vlD&=hETDt@nRDX~Zuh8|QUy(ddzLyTvZJr10%0+V#2P zgC`<$CDbc7{^)^vJI}nn<~#w#GbQh3c(sbmw}lEkQwt=N%G5#uWn^k`XrPuDP)q%w zmW2jtxdFAp4{Bv-pjH`BtNozXh6ZY#0kz%_YNIVw;H}>#38h-U%>qhZr$mRMMr5lk z)T-l;{q2+oM*XD8J=gzq@AT{5ZM@@@H)CrqX?)kvF7q}%9&7UO{0%qOZ}8Qs8<*9~ zT5;BgZ8sghtLdoLKfB<|tQS_StF!3zHqHMu@y+5bkrP8_?f7&1eZ4!*=+W);&p*3i zN{jlPS8O>t@1f$Kz5B15`|bbPu-s2C_<4`LN5))v)wwq>e+6Or@6fk>&Fun;w|@L4PktghLIbtafZF8;wc8dd@axnb38k)6dkGZJmi$Eag$8QB z0d+t?(cT0HiyX9t3cR5>B%xG8aaceZ-J~P7P=Ob}qY_FLzheT*=q4S<0q;A_6Y`I! zJI#~gj~Gp8tJdI~66?7k;@kdfY@ zf$C#G^%YROPVsC>xX2(|sKATgUP&g7Ont78Y&k?tIr1C|UIQer-V`$-(7xCyF&xD$AH=^plH!c)~S8AP=VK}{Sr#msRIOx!>BQegQ0;s zWI!DjP;!idgYi$~h%Hp$b?T^uQg!N>fHI2T@z6k>FrZHQLDf3l^7&NYb*eTZO+KGe zb?P+yhCiP&u2W~*LIvKVs3W0NkD@Mta%z)v5suWig$le*HIPuMPBj!z#>KahEmYve zud#$u#jlBglC7V-r;0QS4ODXjss(}K#gD`BPo!07pjsPHQ36Gq^+>zWK(#lZI`~0# z3Jp|e1FDN3RCimbz+1l_5=ymxJq47}`t`Pj3cU5}BcW95*H=LC27(V}s@89iEmYu{ z8Z4nyriKV8BU8gd12x=$8sP_(8ycvX0hQ+mRbUGhc%3SgP^wN92`HmSQECenc%3Sf zP^wOi6HrE-nh+YOi3ZdpKd33TP=Ob}sS-*Rzi9%B7eB3=G{Y7u@cXHm5=z}q%_30X zQlH2iTd2S@HCIBZOwA)uTBhcQ25Nx;wU9vZ#zOTd7TZDv-uf+(P^$G?Dxi$kZ<#Gr z;19BwODOdqdxe1F4F&#h^1~l$M^@TG1)ix@5=v!iwSY1*wKgkO#%eoz}j1GUM3 z+Uy6l)fOu7CViWPQce1H0cBi#ci2J&-can6P^zKWC7^hn(iUOuwuK73q1Yp#R70_s zKyfhniR=pv)P4i%fFIOBTd2V6)FBC_>eOKYCF_*TR^*5+RN%$$sDx6*@0frxu2aWD z19ifHI_U>h3(dwN)UXP7>Il5})kdT#&!_OCd_E-`3I5;6*`a}|V?fmr?{?rRr2e0cF&wMz&Ca7r(|5O0|AX1e9$3)csU5Td2S@)m%cUOtlbDMy6VY2CB6I z74?H^hXdYAP}|EtqL!d`5PyWHn|>mla9|OB^S|GOc9u}840j<=JmsnkcejNKybSk{ zP^t{~6i`MP?rjSdcx%%~La9vk6;MWNGbl7rgAJ%5DNwR*MTXfz1z!AyODI+RMhGaQ z_~qI{1wPChlTd1yH%~yx49WEskpf$&!0S|@gi>{?h(KWims&IuDYbBgwQ}uG@vF4D5FkI2@TX#18SNd)Qr$T%`~89`9aOGg$jI}ZLWk;<81Q; z6d#1=MG$w>$xmdyEmYtQ#R3VX8j6Ji%BWL|Lj$$MfLiJYwagYO@axoa38k)6D+H9$ z_gfhns8t5kYCov8p@CXwK&|(K+GqR5=zyn?E=cE zQ#)|LdrV-b{3B{iU>Er#Tpe}$yc-7=;TIK-2?XBN-y@+^SAQ>o;#WBZwa*qR@O1B& zP%7OA2$YtogSJqCSIk2aN>$9m0?MeEM{J=2FMdZQlq!D51eCnfRK@SOEmYve?}UU> z#qT76(u!X#X4y~#Ui@k!Qc$>WbEtV5e&fA=oh?-0nW`h9RHo_*C|Ue?3&=l_`k{ep zU_dn_P;^`%(#RGn@Z#54LaElTiGVU%zhkwKt$T5GY=!6jUc$sKDz~X9=b1R2Knd)T!>aP=Sx$^pH?$^rokP;-fb*OUWj^ zw=GoQb*hhqQgy1YfHLl12H8RdUi=12C{_H12q>fY4GRs_a06uP_p%N@`Ow+vxN%0Nnb9ZRFl3U1xgjam9|iU zXKIy%Qkhzv0;MvwHZ)M{45;-4N^2-Kh6ZYr0kxSxY1gT(work$e%mCJYW=ngD5Le; zVG9*_o!Tj(RGr!-pp2Wu-L_DHXKIgxQkmK-pk$`xEq!EPXrT5RPzO?=RO@#zG*E{O zsKb6xM{J=2uTw`Ql&Vw51eEMisN#3r7Ao*MbwWa^I(1S&$vUNqU#&AOpHCgl{_Euv z3eM^^apYsytUPDi@2@BtIHC5<&HnYDMGd?4ICfQ++)G;i@rASB=|6k=;A>|5VD}@n z9=`1FkG=By>%N@$${$<)?w_mMzVqh#GhWH6`Q(N(E}XmJv6gE`^?#zY@5>7kJ>FOv zzy09(@1MJU-CM6cH~E%{+rRv7!9y=S5xM4^8`n2(S?{JhHl;1{bBhuvasjHXY zcHp(8D-P8>4Zq>fr)2j?L7i<26?mrVNGO%5x&q3`RDD~h!0S{438m^(Ljh%6ryAKp z1)izK5=v#NiGVUP)hskn%?+p)eo(DK1J&Aqiuysd!vXKPK<(upQFDPhh(98)3#zs0 zgaeE4Q-yPZ0o>?xpR#Z*`D-l2i&V?g!wgBlbX zsKEx*kQ69Yr-s==1zx9yODI*RMhGb5VwY}v%+O=W?EQqxox3MgZm%3@onz?;w| z5=u3pO9hnCgf0sW)N%uAg&)*PTd2TCOIArJHCnP-K%FHo2;#qywYE@!7r%89N)^BL z0?H_U8$$!N$$;8SplE+9vNbeN+YG4f0!nrs)eBs9ga&G-0kum&8O3k6EmYvwsXY=( zU8nX6DC0V{&lW21hGM^jQVqoc0cB+Bpe{Ms(}I3kU;T9g2VAoq>(LD;Ki@8gi>{?iGVWdRI|`PH8-GI_(8R@ zg$le*wU$t-PDKTjQK#D3LIqy@+Dj-^{5l9Iqxf|S4OC|Xs*4{~cU!2ydlWq+l0xy1jB$O(CeFcR5$mQbpp7$TsIhGJM~poSYzBM6i% zddZ7#t}RsH#V;nIRPoCbP)6}92n|%B0afG&RT>(oG6QOyAJhaK@E(w#DF28Wke?*} zh|z>j!GT36%@y9i1m4OIGjkC?Mg$lg2nJb}G zYco$k8LiEHTd2T`-vSAxir+#3WnAnQ+d>7NsU;FhWooH_GBUL+G*HV8s1<%tD{Y|y zFMg{elq!C!1(eaGueF5=d_;7egi<4->j{*6@|^5zZM207{QhN=gi`k}n+X($k)Oy` zTd2Srifs}~H5A(gl+jS^u!RadQ#&P;%G53aWsF_#wuK5jQ+p(o%G6!~Wn^j}4tRGU z_sc(`I*F z8UOfMLh{US(4X=NUgIii(lXsvo<14dH#amct3v$4OATis;(bYeOsu&>r?{? zrRr2e0cEs)jY0#}*nnz6pm^&i?>HmPLIc&@fNDXYIFN#BWeXK}L(y77sVjI?Kp9u? zcA*rJD4<0?Ozn z4GIm^U;}E1AJi~gsK8sl;Sx%p%|)%Tkp8mI*Z)ItHpfq1smt;gcf zKrJz#mJ%rKerlO5RN!@Lxr9=6YK4F@>eNbGsKD#gDhZ|P)M^1`w0>)Cp#sm;ItisR zwO&9Onc5f{s7(gcW3f?X>Q0)z<4t`LbLIc&=fa>B0)jc#&Jq)Oxeo(zb1J%cX>gxwJ z$QCN_>(pQgrLI#$1e9@|8WtL;;Re(QKd4+=sKA@_n1oVIdY*v7I&Gxl}+IP3W@FKrJ_*RuCvO3-05;m9|iU_qA3@DAiD`7Ene*vDOwU@Qd9#38gM} z>je}qe*B}F^o=;+eO=fj|A@LSY)<(j&Y!}hxUD#_2tWPrUl+DXD3$K*0?J7D4qK?e zTbrE{O0_n-1QbsCNT6M$Hq}N8IDbHW<8}H{Yp@FJnK-Kkws&5Mwc=2l>p;Yl}D4=AwL>0eA zworlhwHiw()z@m00;Mj#&1|6p&s1{>r83omKye@i)haYltqrIsf#R*7f@&8UsP+a_ z2Lh#Ks#9p7IvY@3{GhtqLIvKV=pmt0kD{l5GI|ufLj%>vfa>c9H7GPtgAJ%5eo(_~ zp#s147%rjIt;Yxg#XC^)6UnuO3j8`1lThk9l_#Khk3wtx3T&YQZzu{Slxir71eDQG zl!gYX%zzr_2Q|SKD)2frQ9`LYHAz76yI$Fu<@G8u#TF{?IyF^7sX8@HK*?UZ{BLAN zXrN{qP_t5?WVRx6LIX9|fSO03wAOFFEmYvG-vSAxTEB$?%4q!-+d>6ircqnFZ4yc;vpoe$T^DxPLIpk~wNpZ=A*o#{ zP->uKw=GoQt<4?@rCOW40?KG@_Jsy&zX5f?59%Necvs9r@{g#Bd06}rS-VxmJc0w^ zsF+73l&YA=2oz7bD#OP^19ifHIw_zejM^o*R>UvewQ(f*yhEk?H2j7??~v)1|BalD z16Jt{ymr@-P^xy<6;MX)u5Sw!_{F7xgi>X=p@8BU(#minTd2S@)mTEQOf?ZuMy8tC zLIs|w<`PO}s)c}(bxCytTG>Jco~hOnN@Xf4po~nl3k_6z1FAy`l*&}6&_H!Ipt__$ zp}k0cBHeAF0v{afA)(aZSWf{Z>y(1(Z3`86o$4c@RGsQ8po}^-$QCN_`-Q<0O5HCE z5l}{^hS@>|-lPwgP^w8EkpiU}irmmZ#SExC0;TmR3PJ-_Xh0SDL6zD<1>R7UNhsA& zj1y2sLovY?D)2frQ9`LYHAz6phC%o9+!`PCn{&9{XLy!b7UP^$PX6i`O-TO1mwB?i<|Kd5E4P=U98%O#X* Z{ZaY6^nqKh0SH}?j+DkuaK1gcInd&b+;U4HjLdBGq5&AfJ>IRO^~ BF{JaY6^n1LK$l8+%yH1s-o(D!#03z4uys>oap@Tb^!SU>?EBGWFHM3zPrY z1PJJA1Z4EQ$#B_M$E52nAozW9jO|1Ps9;JRR1l>4Np0z?+``o9M`H9iH}l$k<^%xZ CZZ7)( diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.pdb b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.pdb index d37d25b7c812883db632008f08b672638af8732e..98a8503d52949602b9d3daab130732ad873685b0 100644 GIT binary patch delta 621 zcmbQDJ4JUwjfijm+dp#g9!{&o&c)u^EPOBPkMP5Z6RwD|a56FoaWXMfb1^b>axpO! zb2BnDPOfA;8)(eQ&EN^dYdLusR&nt#8~|cwZeE5(K)eHpb$NIh?10#xhXD$h84`Gy z8H&JsZiY%Q&BM?Drg<6KH&16e%PRShLlCH32#6UO+_*%5v?!SEH@TL>oZW!?1`8|0 z@5#G4G_~h)E?{G3;OAPv#=^kB^#I8J4J26@K5{XzvoN@GJFqh|sPZ@f*dBSD|S;3po<$C zCa)B7 z23-a#5ypleOz!FoA{>(+irQNoW6Ba^WNKUtwxcnONdOcxs=yRt$HXDdz{pey7SIL? SxFHJ|O^y&VXOZz^U;qG8Ew4-f delta 621 zcmbQDJ4JUwjfk#BKt|7-43~X%OuFs@g5RgUT6kgNge#)VoQw>DoJ8tjlPej|1{!g4Gk5^;8crUDm0Uaw`+=B=o0nlB5N`)!9Ufi=TOju1VSoZ=hIk%k zhC(o(o1p?s^DxwdXSx!NSV$ zYw~UmP3<|H3)q+$__!9Zu`vASd;nzs;(7pNf8b(ZXJK&Tc3@{_P~mX^vPC!ZbDm*Q z_2sN?MPt7dYV(l-;1O2=F{XS`_=KrlY;wL}17psV|;r;yFQ%Owtu9$ zM)_^yZiUI~MC=vp7+8cE7@4FwNC+&0%I_WNg^Lqyr39M#agzqTY-KlOshn zRYJRC6^a0_7;bkGQ=2}8drhsXbff&07Z;4FoD=Hafkz*Q3)2%1PZtz P3jpmGGiR0d1F8l9_AseN diff --git a/RestaurantReview/RestaurantReviewMSTests/.vs/RestaurantReviewMSTests/DesignTimeBuild/.dtbcache b/RestaurantReview/RestaurantReviewMSTests/.vs/RestaurantReviewMSTests/DesignTimeBuild/.dtbcache deleted file mode 100644 index d01622bc235545de3e779181d0d9ee4efedcb4b8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 797898 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 diff --git a/RestaurantReview/RestaurantReviewMSTests/.vs/RestaurantReviewMSTests/v16/.suo b/RestaurantReview/RestaurantReviewMSTests/.vs/RestaurantReviewMSTests/v16/.suo deleted file mode 100644 index af55fb72cee99645be54d2fe795463c4a7193f35..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5632 zcmca`Uhu)fjZzO8(10BSGsD0CoD6J8;*3aa1_1`J97ycn|Ns9%QXn>vISPhQ2m~?Y z17Qh+0)s0<9*{0#s02kN(LjuW6&~kI1avL9(XSobdzFzBqz;;x0)RH=Gh{J%0&PzN zvRoM|2$+H@EylnEw;vSjsIu63%s^pa@&$unhGZawxT1_9lOcs673d;8hG3vuau`a1 zA(9DXM2xU;fXzwU6xB*)}Il$IXG2S9ojg0mesGZ1z*HqFZk^M%RPU@&0%J#$Z zJ&Z>7%P4#JhX57wKO?C918P5jLW`Ijg`EGRfjzzyU`bN~>{S&p!~#nqA7JkW)XxF+ zNFg#Hv3y{EClTHoL)cj)DlXCbE&%1tBPgn_g_H?g=RwTRt - - - netcoreapp2.2 - - false - - - - - - - - - - - - - - - - diff --git a/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll b/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll deleted file mode 100644 index 515d8781a64b6fdb0b5f6cddb1d13b9f0072d980..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134192 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 H-jx0yL|jAt diff --git a/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll b/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll deleted file mode 100644 index 85806bb1847f6ac3e709eb23891c312e0cff9027..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 24832 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 aO5D1`XLX?CGrl!lOD>*xA$J1t{ro>i2z{ym diff --git a/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll b/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll deleted file mode 100644 index a68484e4d8d1e152b366bfde6714278baa11005d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 31984 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 diff --git a/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReview.dll b/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReview.dll deleted file mode 100644 index 57d3980d48cfce4686584d523df8b4301166ddba..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14848 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 diff --git a/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.deps.json b/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.deps.json deleted file mode 100644 index 2745d821..00000000 --- a/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.deps.json +++ /dev/null @@ -1,3440 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v2.2", - "signature": "9593f0133d64083cfccda0a98f27a4e4565cef2a" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v2.2": { - "RestaurantReviewMSTests/1.0.0": { - "dependencies": { - "MSTest.TestAdapter": "1.4.0", - "MSTest.TestFramework": "1.4.0", - "Microsoft.AspNetCore.Mvc.Core": "2.2.5", - "Microsoft.NET.Test.Sdk": "16.0.1", - "Moq": "4.13.1", - "RestaurantReview": "1.0.0", - "System.Data.SqlClient": "4.8.0-preview1.19504.10" - }, - "runtime": { - "RestaurantReviewMSTests.dll": {} - } - }, - "Castle.Core/4.4.0": { - "dependencies": { - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.TraceSource": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/Castle.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.4.0.0" - } - } - }, - "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Authentication.Core/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Authorization/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Authorization": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Features": "2.2.0", - "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Http/2.2.0": { - "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" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Features": "2.2.0", - "System.Text.Encodings.Web": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Http.Extensions/2.2.0": { - "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" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Http.Features/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", - "Microsoft.Net.Http.Headers": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.0" - } - } - }, - "Microsoft.AspNetCore.Mvc.Core/2.2.5": { - "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.7.0-preview1.19504.10", - "System.Threading.Tasks.Extensions": "4.5.1" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": { - "assemblyVersion": "2.2.5.0", - "fileVersion": "2.2.5.19109" - } - } - }, - "Microsoft.AspNetCore.Razor.Language/2.2.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Routing/2.2.0": { - "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" - }, - "runtime": { - "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.WebUtilities/2.2.0": { - "dependencies": { - "Microsoft.Net.Http.Headers": "2.2.0", - "System.Text.Encodings.Web": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/1.1.0": {}, - "Microsoft.CodeAnalysis.Common/2.8.0": { - "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.7.0-preview1.19504.10", - "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" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "2.8.0.0", - "fileVersion": "2.8.0.62830" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/2.8.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "2.8.0" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "2.8.0.0", - "fileVersion": "2.8.0.62830" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/2.8.0": { - "dependencies": { - "Microsoft.CodeAnalysis.CSharp": "2.8.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "2.8.0" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "assemblyVersion": "2.8.0.0", - "fileVersion": "2.8.0.62830" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "2.8.0", - "System.Composition": "1.0.31", - "System.Diagnostics.Contracts": "4.3.0", - "System.Linq.Parallel": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks.Parallel": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": { - "assemblyVersion": "2.8.0.0", - "fileVersion": "2.8.0.62830" - } - } - }, - "Microsoft.CodeCoverage/16.0.1": { - "runtime": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "16.0.28223.3002" - } - } - }, - "Microsoft.DotNet.PlatformAbstractions/2.1.0": { - "dependencies": { - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "2.1.0.0" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.DependencyInjection/2.2.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0" - }, - "runtime": { - "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.DependencyModel/2.1.0": { - "dependencies": { - "Microsoft.DotNet.PlatformAbstractions": "2.1.0", - "Newtonsoft.Json": "11.0.2", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Linq": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "2.1.0.0" - } - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { - "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" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/2.2.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.ObjectPool/2.2.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.Options/2.2.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Primitives": "2.2.0", - "System.ComponentModel.Annotations": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.Primitives/2.2.0": { - "dependencies": { - "System.Memory": "4.5.1", - "System.Runtime.CompilerServices.Unsafe": "4.7.0-preview1.19504.10" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Net.Http.Headers/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0", - "System.Buffers": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.NET.Test.Sdk/16.0.1": { - "dependencies": { - "Microsoft.CodeCoverage": "16.0.1", - "Microsoft.TestPlatform.TestHost": "16.0.1" - } - }, - "Microsoft.NETCore.Platforms/3.1.0-preview1.19504.10": {}, - "Microsoft.TestPlatform.ObjectModel/16.0.1": { - "dependencies": { - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.1.0", - "System.Diagnostics.TextWriterTraceListener": "4.3.0", - "System.Diagnostics.TraceSource": "4.3.0", - "System.Reflection.Metadata": "1.4.2", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", - "System.Runtime.Loader": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.2", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Thread": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.0.1" - }, - "runtime": { - "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - } - }, - "resources": { - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/16.0.1": { - "dependencies": { - "Microsoft.Extensions.DependencyModel": "2.1.0", - "Microsoft.TestPlatform.ObjectModel": "16.0.1", - "Newtonsoft.Json": "11.0.2" - }, - "runtime": { - "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netstandard1.5/testhost.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - } - }, - "resources": { - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.3" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { - "dependencies": { - "Newtonsoft.Json": "11.0.2" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.3", - "Newtonsoft.Json": "11.0.2" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.3" - }, - "runtime": { - "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.3" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "2.2.0", - "Microsoft.CodeAnalysis.CSharp": "2.8.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.3" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { - "dependencies": { - "Microsoft.CodeAnalysis.CSharp.Workspaces": "2.8.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.3", - "Newtonsoft.Json": "11.0.2", - "NuGet.Frameworks": "4.7.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration": "2.2.3" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" - } - } - }, - "Microsoft.Win32.Primitives/4.0.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { - "dependencies": { - "System.Security.AccessControl": "4.7.0-preview1.19504.10", - "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - }, - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - } - } - }, - "Moq/4.13.1": { - "dependencies": { - "Castle.Core": "4.4.0", - "System.Threading.Tasks.Extensions": "4.5.1" - }, - "runtime": { - "lib/netstandard2.0/Moq.dll": { - "assemblyVersion": "4.13.0.0", - "fileVersion": "4.13.1.0" - } - } - }, - "MSTest.TestAdapter/1.4.0": { - "dependencies": { - "System.Diagnostics.TextWriterTraceListener": "4.3.0" - } - }, - "MSTest.TestFramework/1.4.0": { - "runtime": { - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": { - "assemblyVersion": "14.0.0.0", - "fileVersion": "14.0.3021.1" - }, - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": { - "assemblyVersion": "14.0.0.0", - "fileVersion": "14.0.3021.1" - } - } - }, - "Newtonsoft.Json/11.0.2": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.0.2.21924" - } - } - }, - "NuGet.Frameworks/4.7.0": { - "runtime": { - "lib/netstandard1.6/NuGet.Frameworks.dll": { - "assemblyVersion": "4.7.0.5", - "fileVersion": "4.7.0.5148" - } - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/debian.8-x64/native/_._": { - "rid": "debian.8-x64", - "assetType": "native" - } - } - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/fedora.23-x64/native/_._": { - "rid": "fedora.23-x64", - "assetType": "native" - } - } - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/fedora.24-x64/native/_._": { - "rid": "fedora.24-x64", - "assetType": "native" - } - } - }, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" - } - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0-preview1.19504.10": { - "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": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "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" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/opensuse.13.2-x64/native/_._": { - "rid": "opensuse.13.2-x64", - "assetType": "native" - } - } - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/opensuse.42.1-x64/native/_._": { - "rid": "opensuse.42.1-x64", - "assetType": "native" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "runtimeTargets": { - "runtime/osx.10.10-x64/native/_._": { - "rid": "osx.10.10-x64", - "assetType": "native" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/osx.10.10-x64/native/_._": { - "rid": "osx.10.10-x64", - "assetType": "native" - } - } - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/rhel.7-x64/native/_._": { - "rid": "rhel.7-x64", - "assetType": "native" - } - } - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/ubuntu.14.04-x64/native/_._": { - "rid": "ubuntu.14.04-x64", - "assetType": "native" - } - } - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/ubuntu.16.04-x64/native/_._": { - "rid": "ubuntu.16.04-x64", - "assetType": "native" - } - } - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "runtimeTargets": { - "runtime/ubuntu.16.10-x64/native/_._": { - "rid": "ubuntu.16.10-x64", - "assetType": "native" - } - } - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-arm64/native/sni.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x64/native/sni.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x86/native/sni.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Buffers/4.5.0": {}, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "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" - } - }, - "System.Collections.Immutable/1.3.1": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Collections.NonGeneric/4.3.0": { - "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" - } - }, - "System.Collections.Specialized/4.3.0": { - "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" - } - }, - "System.ComponentModel/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.Annotations/4.5.0": {}, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.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" - } - }, - "System.Composition/1.0.31": { - "dependencies": { - "System.Composition.AttributedModel": "1.0.31", - "System.Composition.Convention": "1.0.31", - "System.Composition.Hosting": "1.0.31", - "System.Composition.Runtime": "1.0.31", - "System.Composition.TypedParts": "1.0.31" - } - }, - "System.Composition.AttributedModel/1.0.31": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Composition.AttributedModel.dll": { - "assemblyVersion": "1.0.31.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Composition.Convention/1.0.31": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Composition.AttributedModel": "1.0.31", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Composition.Convention.dll": { - "assemblyVersion": "1.0.31.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Composition.Hosting/1.0.31": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Composition.Runtime": "1.0.31", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Composition.Hosting.dll": { - "assemblyVersion": "1.0.31.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Composition.Runtime/1.0.31": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Composition.Runtime.dll": { - "assemblyVersion": "1.0.31.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Composition.TypedParts/1.0.31": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Composition.AttributedModel": "1.0.31", - "System.Composition.Hosting": "1.0.31", - "System.Composition.Runtime": "1.0.31", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Composition.TypedParts.dll": { - "assemblyVersion": "1.0.31.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Data.SqlClient/4.8.0-preview1.19504.10": { - "dependencies": { - "Microsoft.Win32.Registry": "4.7.0-preview1.19504.10", - "System.Diagnostics.DiagnosticSource": "4.7.0-preview1.19504.10", - "System.Security.Principal.Windows": "4.7.0-preview1.19504.10", - "System.Text.Encoding.CodePages": "4.7.0-preview1.19504.10", - "runtime.native.System.Data.SqlClient.sni": "4.7.0-preview1.19504.10" - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assemblyVersion": "4.6.1.0", - "fileVersion": "4.700.19.50410" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.6.1.0", - "fileVersion": "4.700.19.50410" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.6.1.0", - "fileVersion": "4.700.19.50410" - } - } - }, - "System.Diagnostics.Contracts/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/4.7.0-preview1.19504.10": { - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "4.0.5.0", - "fileVersion": "4.700.19.50410" - } - } - }, - "System.Diagnostics.FileVersionInfo/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "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.2", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Diagnostics.Process/4.1.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "Microsoft.Win32.Primitives": "4.0.1", - "Microsoft.Win32.Registry": "4.7.0-preview1.19504.10", - "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.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.Threading.ThreadPool": "4.0.10", - "runtime.native.System": "4.3.0" - }, - "runtimeTargets": { - "runtime/linux/lib/_._": { - "rid": "linux", - "assetType": "runtime" - }, - "runtime/osx/lib/_._": { - "rid": "osx", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Diagnostics.StackTrace/4.3.0": { - "dependencies": { - "System.IO.FileSystem": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Metadata": "1.4.2", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.TextWriterTraceListener/4.3.0": { - "dependencies": { - "System.Diagnostics.TraceSource": "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.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.TraceSource/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Collections": "4.3.0", - "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", - "runtime.native.System": "4.3.0" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Dynamic.Runtime/4.3.0": { - "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" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "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" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Buffers": "4.5.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" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "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" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Linq/4.3.0": { - "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" - } - }, - "System.Linq.Expressions/4.3.0": { - "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" - } - }, - "System.Linq.Parallel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "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.Threading.Tasks": "4.3.0" - } - }, - "System.Memory/4.5.1": {}, - "System.ObjectModel/4.3.0": { - "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" - } - }, - "System.Private.DataContractSerialization/4.1.1": { - "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.1.1", - "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.XmlDocument": "4.3.0", - "System.Xml.XmlSerializer": "4.0.11" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "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" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Metadata/1.4.2": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.Immutable": "1.3.1", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" - } - }, - "System.Runtime.CompilerServices.Unsafe/4.7.0-preview1.19504.10": { - "runtime": { - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "4.0.6.0", - "fileVersion": "4.700.19.50410" - } - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Reflection": "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" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Runtime.Loader/4.0.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Runtime.Serialization.Json/4.0.2": { - "dependencies": { - "System.IO": "4.3.0", - "System.Private.DataContractSerialization": "4.1.1", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Security.AccessControl/4.7.0-preview1.19504.10": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" - }, - "runtime": { - "lib/netstandard2.0/System.Security.AccessControl.dll": { - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - } - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "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" - }, - "runtimeTargets": { - "runtime/osx/lib/_._": { - "rid": "osx", - "assetType": "runtime" - }, - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "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" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "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" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "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" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "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" - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "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" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.Security.Principal.Windows/4.7.0-preview1.19504.10": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": { - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - }, - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - } - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/4.7.0-preview1.19504.10": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime.CompilerServices.Unsafe": "4.7.0-preview1.19504.10" - }, - "runtime": { - "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.50410" - } - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.Encodings.Web/4.5.0": { - "runtime": { - "lib/netstandard2.0/System.Text.Encodings.Web.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.5.1": {}, - "System.Threading.Tasks.Parallel/4.3.0": { - "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" - } - }, - "System.Threading.Thread/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading.ThreadPool/4.0.10": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.ValueTuple/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "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.5.1" - } - }, - "System.Xml.XDocument/4.3.0": { - "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" - } - }, - "System.Xml.XmlDocument/4.3.0": { - "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" - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "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" - } - }, - "System.Xml.XPath/4.3.0": { - "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" - } - }, - "System.Xml.XPath.XDocument/4.3.0": { - "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" - } - }, - "System.Xml.XPath.XmlDocument/4.0.1": { - "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.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XPath": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "1.0.24212.1" - } - } - }, - "RestaurantReview/1.0.0": { - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.Design": "2.2.3" - }, - "runtime": { - "RestaurantReview.dll": {} - } - } - } - }, - "libraries": { - "RestaurantReviewMSTests/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Castle.Core/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", - "path": "castle.core/4.4.0", - "hashPath": "castle.core.4.4.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", - "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Core/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", - "path": "microsoft.aspnetcore.authentication.core/2.2.0", - "hashPath": "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authorization/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", - "path": "microsoft.aspnetcore.authorization/2.2.0", - "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", - "path": "microsoft.aspnetcore.authorization.policy/2.2.0", - "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", - "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", - "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Http/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", - "path": "microsoft.aspnetcore.http/2.2.0", - "hashPath": "microsoft.aspnetcore.http.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", - "path": "microsoft.aspnetcore.http.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Http.Extensions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", - "path": "microsoft.aspnetcore.http.extensions/2.2.0", - "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Http.Features/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", - "path": "microsoft.aspnetcore.http.features/2.2.0", - "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", - "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.Core/2.2.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", - "path": "microsoft.aspnetcore.mvc.core/2.2.5", - "hashPath": "microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512" - }, - "Microsoft.AspNetCore.Razor.Language/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IeyzVFXZdpUAnWKWoNYE0SsP1Eu7JLjZaC94jaI1VfGtK57QykROz/iGMc8D0VcqC8i02qYTPQN/wPKm6PfidA==", - "path": "microsoft.aspnetcore.razor.language/2.2.0", - "hashPath": "microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", - "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Routing/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", - "path": "microsoft.aspnetcore.routing/2.2.0", - "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", - "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.WebUtilities/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", - "path": "microsoft.aspnetcore.webutilities/2.2.0", - "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", - "path": "microsoft.codeanalysis.analyzers/1.1.0", - "hashPath": "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/2.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-06AzG7oOLKTCN1EnoVYL1bQz+Zwa10LMpUn7Kc+PdpN8CQXRqXTyhfxuKIz6t0qWfoatBNXdHD0OLcEYp5pOvQ==", - "path": "microsoft.codeanalysis.common/2.8.0", - "hashPath": "microsoft.codeanalysis.common.2.8.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/2.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RizcFXuHgGmeuZhxxE1qQdhFA9lGOHlk0MJlCUt6LOnYsevo72gNikPcbANFHY02YK8L/buNrihchY0TroGvXQ==", - "path": "microsoft.codeanalysis.csharp/2.8.0", - "hashPath": "microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/2.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EJWaxi2bI47iEZen/nZkJEDZCrP9Oj3PJtMwBv34Z0ZvvdSkpgsdqlHSud8d5vC53LnCXLfBLewfqHcILDVSDw==", - "path": "microsoft.codeanalysis.csharp.workspaces/2.8.0", - "hashPath": "microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tJlJ99SD8bHBAXShOG/pXQ1K118cnsF01obEf9aAtdgLbw3yEPahZ7qvWeGMjrheUhvOsSkv/wTKYg9euKa8MQ==", - "path": "microsoft.codeanalysis.workspaces.common/2.8.0", - "hashPath": "microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512" - }, - "Microsoft.CodeCoverage/16.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W7WI3iH6At2I/9x2ODgCIIMO0QfpA7ZCoHkeygMLAaz3Nms/GsugKz9N4hkTve2Lj66g2K4CAmbwe6utEH66lw==", - "path": "microsoft.codecoverage/16.0.1", - "hashPath": "microsoft.codecoverage.16.0.1.nupkg.sha512" - }, - "Microsoft.DotNet.PlatformAbstractions/2.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==", - "path": "microsoft.dotnet.platformabstractions/2.1.0", - "hashPath": "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==", - "path": "microsoft.extensions.configuration.abstractions/2.2.0", - "hashPath": "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==", - "path": "microsoft.extensions.dependencyinjection/2.2.0", - "hashPath": "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==", - "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyModel/2.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==", - "path": "microsoft.extensions.dependencymodel/2.1.0", - "hashPath": "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==", - "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==", - "path": "microsoft.extensions.hosting.abstractions/2.2.0", - "hashPath": "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", - "path": "microsoft.extensions.logging.abstractions/2.2.0", - "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.ObjectPool/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", - "path": "microsoft.extensions.objectpool/2.2.0", - "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==", - "path": "microsoft.extensions.options/2.2.0", - "hashPath": "microsoft.extensions.options.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==", - "path": "microsoft.extensions.primitives/2.2.0", - "hashPath": "microsoft.extensions.primitives.2.2.0.nupkg.sha512" - }, - "Microsoft.Net.Http.Headers/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", - "path": "microsoft.net.http.headers/2.2.0", - "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512" - }, - "Microsoft.NET.Test.Sdk/16.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ON7UIMIhAwrYb0ep+3ztoWVGvtfo88IhiHVnbyOiuVsi8bOMCdMPVcR+EX1WYGgKAd030pHRaxazMlkQ6uDyJQ==", - "path": "microsoft.net.test.sdk/16.0.1", - "hashPath": "microsoft.net.test.sdk.16.0.1.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/3.1.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bS52lVUR5Mb/yuorV8cLSvsPDEOms1LTQ+bN8s3/rrdaU3VSpfvWGorRk5xftj1kyrJ7Dxlw/GADyyekoOfDnQ==", - "path": "microsoft.netcore.platforms/3.1.0-preview1.19504.10", - "hashPath": "microsoft.netcore.platforms.3.1.0-preview1.19504.10.nupkg.sha512" - }, - "Microsoft.TestPlatform.ObjectModel/16.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AIQ9azu2b31R8nOuFnR32d7cdWidjjLl1dFyLC3LNifzAJoEdCUgkHWUpTTHKWcHhwa9E/NRcdzVple8pbKJ9Q==", - "path": "microsoft.testplatform.objectmodel/16.0.1", - "hashPath": "microsoft.testplatform.objectmodel.16.0.1.nupkg.sha512" - }, - "Microsoft.TestPlatform.TestHost/16.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H4bYjOjkK4FYQ23RnsHm8FcqR0te8Eky9i9sS1IjVFBlDh1MU7aIwmBUpKpaSAy5xNu7UTHku4RZTWzWHDzS7g==", - "path": "microsoft.testplatform.testhost/16.0.1", - "hashPath": "microsoft.testplatform.testhost.16.0.1.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wc71c9HWTeXy9/w9O4Yr2LKmdJjVyIoJ/XQX8/6uma4EAVU25RLtUWlvhA0gpgFw9Kf1TkCv70x+CbKnRw/d8Q==", - "path": "microsoft.visualstudio.web.codegeneration/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.2.2.3.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wXlpxDfRD5aPypa0p0UE97tkRQvAz9D9FfA2GITzr+LlGIpybyGnxkwGVp0Vha1Ibr0kJG0HdnqfeHME/WuAcQ==", - "path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.contracts.2.2.3.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-APdPavBUYcGPBaW4rjxBVRePWmg0ZzhIRymOzvLFWUtzfvJKw1+8PaCzsH7Uvl+felm0L1UVQwBx1Do0R7j7Xg==", - "path": "microsoft.visualstudio.web.codegeneration.core/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.core.2.2.3.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xH50cYOU+infRq4KikBuu2qeXcwW4tE0D5TDfKLuLrEtDm90aXI+0qygPsqyISf+lOW7L7rQ64BH/dRYkK3c3Q==", - "path": "microsoft.visualstudio.web.codegeneration.design/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.design.2.2.3.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N9S7TeFZjXzNY9OVbz4OFw9cM9oEeMaCnuLFhetNioy/wPwZbgglrctAEYxfDbvocQ17YCAVR2EMRbYHNDHyVg==", - "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.3.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sW2lHnOoL1xFnSm/2zSedeUoQPlbhPfWjSuUYsxYUj/N5QmLmH98ZLaqP26k6Om/heR6Gux/veXI96yM1Parow==", - "path": "microsoft.visualstudio.web.codegeneration.templating/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.templating.2.2.3.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/r/y+XpOpbCwN/M/HopjfGTDRlmixTd4G6HG6FaBkD/YF3T1u+4WMRVtuB6zz7aw571HmX+6UokEa6HJSwkPDA==", - "path": "microsoft.visualstudio.web.codegeneration.utils/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.utils.2.2.3.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0gVuA4KUCHFM4M/9SjG+7j7BzZ7SW/BufF97Q78i2VV8JBbQXc/5Rf6YUG1VGW2fwSEOl9+S26utEGS+86GGGw==", - "path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.2.2.3.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", - "path": "microsoft.win32.primitives/4.0.1", - "hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CXsd7k96HdyP0vV9T5mQQ0O1Lj00xJBHTQ+d8Y99mxu/GuTB9MYKeGE1b58AIaxF88maJOFMtt6WhiqEPC9ONw==", - "path": "microsoft.win32.registry/4.7.0-preview1.19504.10", - "hashPath": "microsoft.win32.registry.4.7.0-preview1.19504.10.nupkg.sha512" - }, - "Moq/4.13.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ic4m9/b10tz9oRB1Oi5bW7E/FS6Pd2SH5OJFhlmhUJkQhiV5FyrIRxVUEaG5KOpSpcfSPGAVW4rRZt6OzrS5zg==", - "path": "moq/4.13.1", - "hashPath": "moq.4.13.1.nupkg.sha512" - }, - "MSTest.TestAdapter/1.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2/rL9DG+cVAgPs98OGm2sbZ4FTgn+MGEan5P9NRAgqMV3+nYRKG7/5R0jY7lBMq9ISms+84MSqTHWs6QnPt4A==", - "path": "mstest.testadapter/1.4.0", - "hashPath": "mstest.testadapter.1.4.0.nupkg.sha512" - }, - "MSTest.TestFramework/1.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kV/yZ0XLiOElsVeLT0GnNrsoKcPvVNOP6Cv2zkAiceJY0rpro0L+3t54bRApLwTg1mxlo4rLziBG7X6X69KcrQ==", - "path": "mstest.testframework/1.4.0", - "hashPath": "mstest.testframework.1.4.0.nupkg.sha512" - }, - "Newtonsoft.Json/11.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", - "path": "newtonsoft.json/11.0.2", - "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512" - }, - "NuGet.Frameworks/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qbXaB76XYUVLocLBs8Z9TS/ERGK2wm797feO+0JEPFvT7o7MRadOR77mqaSD4J1k8G+DlZQyq+MlkCuxrkr3ag==", - "path": "nuget.frameworks/4.7.0", - "hashPath": "nuget.frameworks.4.7.0.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ITo7gZ7yGHMkNj1O6PRmK+i917jbWNs5CZN/jwVSh8hO+3+8C5roDkXJYbM1hA5LZAUagtm9ph5whvnDOTilDg==", - "path": "runtime.native.system.data.sqlclient.sni/4.7.0-preview1.19504.10", - "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0-preview1.19504.10.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b+V9JC/Ii3sR659flBeaBJww111425tgjcDS1k+hqV4sGh9FALRDBvJnDtQ895gAzpPTUOFDHdqaZ2Et7BpZMg==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "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.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", - "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", - "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", - "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", - "path": "system.buffers/4.5.0", - "hashPath": "system.buffers.4.5.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/1.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", - "path": "system.collections.immutable/1.3.1", - "hashPath": "system.collections.immutable.1.3.1.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "path": "system.componentmodel/4.3.0", - "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Annotations/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", - "path": "system.componentmodel.annotations/4.5.0", - "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512" - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==", - "path": "system.componentmodel.eventbasedasync/4.0.11", - "hashPath": "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HZiP0DwTHJ+C+rdFqP47nBYUh5283kcwXIGY2zOVVhsJmVI/2tYiX2zNRdjRQRHsTox58Ydkec6h0pWSh8wAsw==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Composition/1.0.31": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==", - "path": "system.composition/1.0.31", - "hashPath": "system.composition.1.0.31.nupkg.sha512" - }, - "System.Composition.AttributedModel/1.0.31": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==", - "path": "system.composition.attributedmodel/1.0.31", - "hashPath": "system.composition.attributedmodel.1.0.31.nupkg.sha512" - }, - "System.Composition.Convention/1.0.31": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==", - "path": "system.composition.convention/1.0.31", - "hashPath": "system.composition.convention.1.0.31.nupkg.sha512" - }, - "System.Composition.Hosting/1.0.31": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==", - "path": "system.composition.hosting/1.0.31", - "hashPath": "system.composition.hosting.1.0.31.nupkg.sha512" - }, - "System.Composition.Runtime/1.0.31": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==", - "path": "system.composition.runtime/1.0.31", - "hashPath": "system.composition.runtime.1.0.31.nupkg.sha512" - }, - "System.Composition.TypedParts/1.0.31": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==", - "path": "system.composition.typedparts/1.0.31", - "hashPath": "system.composition.typedparts.1.0.31.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Data.SqlClient/4.8.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6isAINOX/v56q7JLaC9XDXzc7T/yh62QR+pa+Jt0ayjmYmLRCmzyt4rTy5jWe15ZcQfS9yQNxIzwyO7yGs6Zbg==", - "path": "system.data.sqlclient/4.8.0-preview1.19504.10", - "hashPath": "system.data.sqlclient.4.8.0-preview1.19504.10.nupkg.sha512" - }, - "System.Diagnostics.Contracts/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==", - "path": "system.diagnostics.contracts/4.3.0", - "hashPath": "system.diagnostics.contracts.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/4.7.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CxeUzuw9Lz1+6gkPpQI83BeoUNxn6VnDF28qazxSRyRzWSzLzoeh9ObYG7LYqcPckgm0UaE9nQdd7oDq5ncMKg==", - "path": "system.diagnostics.diagnosticsource/4.7.0-preview1.19504.10", - "hashPath": "system.diagnostics.diagnosticsource.4.7.0-preview1.19504.10.nupkg.sha512" - }, - "System.Diagnostics.FileVersionInfo/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==", - "path": "system.diagnostics.fileversioninfo/4.3.0", - "hashPath": "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Process/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", - "path": "system.diagnostics.process/4.1.0", - "hashPath": "system.diagnostics.process.4.1.0.nupkg.sha512" - }, - "System.Diagnostics.StackTrace/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", - "path": "system.diagnostics.stacktrace/4.3.0", - "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.TextWriterTraceListener/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==", - "path": "system.diagnostics.textwritertracelistener/4.3.0", - "hashPath": "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.TraceSource/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", - "path": "system.diagnostics.tracesource/4.3.0", - "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "path": "system.dynamic.runtime/4.3.0", - "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Linq.Parallel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==", - "path": "system.linq.parallel/4.3.0", - "hashPath": "system.linq.parallel.4.3.0.nupkg.sha512" - }, - "System.Memory/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==", - "path": "system.memory/4.5.1", - "hashPath": "system.memory.4.5.1.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Private.DataContractSerialization/4.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==", - "path": "system.private.datacontractserialization/4.1.1", - "hashPath": "system.private.datacontractserialization.4.1.1.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/1.4.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KYPNMDrLB2R+G5JJiJ2fjBpihtktKVIjsirmyyv+VDo5rQkIR9BWeCYM1wDSzbQatWNZ/NQfPsQyTB1Ui3qBfQ==", - "path": "system.reflection.metadata/1.4.2", - "hashPath": "system.reflection.metadata.1.4.2.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/4.7.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Zw6YIPYZNJdb5fVVlLLG0i9NO/p+10u8LM8ApWat+9oLo15xaCGC6XyYALrvc+DzmxkwWLxU6n8SNf71V+x3+Q==", - "path": "system.runtime.compilerservices.unsafe/4.7.0-preview1.19504.10", - "hashPath": "system.runtime.compilerservices.unsafe.4.7.0-preview1.19504.10.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", - "path": "system.runtime.interopservices.runtimeinformation/4.0.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512" - }, - "System.Runtime.Loader/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", - "path": "system.runtime.loader/4.0.0", - "hashPath": "system.runtime.loader.4.0.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Runtime.Serialization.Json/4.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==", - "path": "system.runtime.serialization.json/4.0.2", - "hashPath": "system.runtime.serialization.json.4.0.2.nupkg.sha512" - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", - "path": "system.runtime.serialization.primitives/4.1.1", - "hashPath": "system.runtime.serialization.primitives.4.1.1.nupkg.sha512" - }, - "System.Security.AccessControl/4.7.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGk/B6+DoaHlC4PAc7OWPmxI91JtH4zXHHmwlSQAOnL5sll3hgX8kVR9loCnVHfshSo1vP8vt15Xy84xyKiqKw==", - "path": "system.security.accesscontrol/4.7.0-preview1.19504.10", - "hashPath": "system.security.accesscontrol.4.7.0-preview1.19504.10.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "path": "system.security.cryptography.cng/4.3.0", - "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/4.7.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Df++ZTMSEaRRyov1jZ7VSm8GemEu9cJJ+QY1y6wvF631OvS5dts98RhuoqcZxACVkNRIzl5ThIqd46qd7b+Vg==", - "path": "system.security.principal.windows/4.7.0-preview1.19504.10", - "hashPath": "system.security.principal.windows.4.7.0-preview1.19504.10.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/4.7.0-preview1.19504.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aYpmMGgjDYpDYtDpUHwnSqSKgatkoZ4aSteVs6WKxo3/dRbHnL5rQ3QX9g7teACCIw8T2KW9OUxIg0b1kZEABg==", - "path": "system.text.encoding.codepages/4.7.0-preview1.19504.10", - "hashPath": "system.text.encoding.codepages.4.7.0-preview1.19504.10.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==", - "path": "system.text.encodings.web/4.5.0", - "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", - "path": "system.threading.tasks.extensions/4.5.1", - "hashPath": "system.threading.tasks.extensions.4.5.1.nupkg.sha512" - }, - "System.Threading.Tasks.Parallel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==", - "path": "system.threading.tasks.parallel/4.3.0", - "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "path": "system.threading.thread/4.3.0", - "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" - }, - "System.Threading.ThreadPool/4.0.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", - "path": "system.threading.threadpool/4.0.10", - "hashPath": "system.threading.threadpool.4.0.10.nupkg.sha512" - }, - "System.ValueTuple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==", - "path": "system.valuetuple/4.3.0", - "hashPath": "system.valuetuple.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", - "path": "system.xml.xmlserializer/4.0.11", - "hashPath": "system.xml.xmlserializer.4.0.11.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==", - "path": "system.xml.xpath.xdocument/4.3.0", - "hashPath": "system.xml.xpath.xdocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XmlDocument/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==", - "path": "system.xml.xpath.xmldocument/4.0.1", - "hashPath": "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512" - }, - "RestaurantReview/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.dll b/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.dll deleted file mode 100644 index f54f16652c887049b9f3471c68f2c30b197e6c92..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6144 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 a89IQ;f7qh>|D$@N`(Zo$U+#Y?0{;f?Ubw^n diff --git a/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.pdb b/RestaurantReview/RestaurantReviewMSTests/bin/Debug/netcoreapp2.2/RestaurantReviewMSTests.pdb deleted file mode 100644 index 86376e3d982a9473927a893008622811b1167d95..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1344 zcmZWpZ)j6j6uRb<2!nD(-37CZa=W(&AREYx5EX(P{c}4UfL&W$)hC z+TtWh{WCI#8~cZ-V`X2I3Ci$88Ep7v^Mj661nrm~#@KL7`b8=z=-4?g(MWqA=bn3h zzjMw#_q=ysT(34%b{%9jxW|qVG6#A&a+;yeN<6T_SoA@`HRe14uAf50 zSxU(z%E&23$pyv$y$meox&i3FAnsO>=NIN7bKr$O)ori_5Ai*-SA*>Z8$EEK?Ssej zoZSEwcx(2n!2988sM)O;1S7Iw#(b1C!OYz1(ei_=qjWm}+T_pZIVzc?4?@BH-1k3E;CqMyI_ck&0KXk$Y1VMZxSZ1$xEw?#0SF~+$W)wpToxUHyp zC~kkN-SIW8i@hHhKJIw;jVm#XAKsvTRwf}R$i#vd7j&b9;i_%en_sXSFpW^yC>vum>=Nxy ziJltaqATa4?e%tbiNa1U6Ywt8z7c(Sy~tW?5>{T?*nC?oT|jEw9x-$-+Gsg~O)Ia5 zzR~iIr;Q9e7agoei-l(|A1PO&ld1h3UrfzROrD&%7dm}D+I4-+*3;8He|cYdV{v>{ rpztF8L0TIrS -// 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: System.Reflection.AssemblyCompanyAttribute("RestaurantReviewMSTests")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("RestaurantReviewMSTests")] -[assembly: System.Reflection.AssemblyTitleAttribute("RestaurantReviewMSTests")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.AssemblyInfoInputs.cache b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.AssemblyInfoInputs.cache deleted file mode 100644 index 66b8ddd2..00000000 --- a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -e31c2abb3a7544579cf36371a2ba4cf8b6f3f0b9 diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.assets.cache b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.assets.cache deleted file mode 100644 index 6f9a24e3458d6e5c7ba12b08d725eafcdf2891fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 87993 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 diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.CopyComplete b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.CopyComplete deleted file mode 100644 index e69de29b..00000000 diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.CoreCompileInputs.cache b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.CoreCompileInputs.cache deleted file mode 100644 index 47ebb8fe..00000000 --- a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -48b1c3df7716fab82064c1dc819e9b92ed6a2ceb diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.FileListAbsolute.txt b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.FileListAbsolute.txt deleted file mode 100644 index 55d562ca..00000000 --- a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,17 +0,0 @@ -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\RestaurantReviewMSTests.deps.json -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\RestaurantReviewMSTests.runtimeconfig.json -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\RestaurantReviewMSTests.runtimeconfig.dev.json -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\RestaurantReviewMSTests.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\RestaurantReviewMSTests.pdb -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\RestaurantReview.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\bin\Debug\netcoreapp2.2\RestaurantReview.pdb -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\obj\Debug\netcoreapp2.2\RestaurantReviewMSTests.csprojAssemblyReference.cache -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\obj\Debug\netcoreapp2.2\RestaurantReviewMSTests.csproj.CoreCompileInputs.cache -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\obj\Debug\netcoreapp2.2\RestaurantReviewMSTests.AssemblyInfoInputs.cache -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\obj\Debug\netcoreapp2.2\RestaurantReviewMSTests.AssemblyInfo.cs -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\obj\Debug\netcoreapp2.2\RestaurantReviewMSTests.csproj.CopyComplete -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\obj\Debug\netcoreapp2.2\RestaurantReviewMSTests.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewMSTests\obj\Debug\netcoreapp2.2\RestaurantReviewMSTests.pdb diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csprojAssemblyReference.cache b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.csprojAssemblyReference.cache deleted file mode 100644 index 7ff2055ea2776c0ead3647bf60ebdd19988c8548..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3978 zcmd5;d2AGA6rb69w!m^$K#mrl6xdRYE|l4sZ`+}>JIl;$p{P*Q zgn&_yD-;qXA*dVyHAX?Ba>byQfXJPah=LR(L5QGo`rd4hZAEFpKbXzD`DXTg?|bj} z-urzYMN<@Y4=#M-)y4o~X1>TPvMPr(_L-O{32Y&!mZ_{yR!CY(5m8i8j^wz#tebVQ zuCx?iOwwWs$%&Adrf^bP%9L1868VXwqEId)k({6_BjgPY54qif*TrRUW?U@w{%iOv zRE>oF8mAG|VnU)s^fzOV_+Q|KBoST%7gTmUr*|P_R#uIbj^f zYqDakizf-(^~vEVrx3-4cKzafVuFvVrHGSaM5QPrWi}_-lI#2^Py{i;Ney!@Pt6>~ zJHQPSEU*KdXUs5Qa5)ox`j>eaWm2(N5&>|1oJuH~ZjTdjip2`zb=sF5n63iqfoUB0 zB&GO?B$f~*z(!&vL<>YYzKkm&Y9I{IsTzwSq;O#}S60dbZq~!P0+JXEM2MzpTtwg$ z0TLHz#J@;XW1QsIVuC2Mg)n=H#AzW}3F|N8>P@kNBw1|W(VEA`qp|Ze62WRzb>|px zF3?i6cuv(M!t#K7z;l0)yaC7vDq-d8E7)O${Fbf|mgj(FcLwWjj(NZ~vhRtX z3s1z|=n_{>Zl-KT_gWPt`erWW)ZEFY2t;p)mKmdEnh}6Aha|2UsJ52>PJBBI5Qf{1tW|Y4##xo#3pgqO26$9x4gwq%oOMS9yJZ;I&V#qapkY#rns-=M$dl#fGqOA$FUd;B;Oq|M zADWBvx!JN}Db5$+Ol>LF&rD45G*T|& zNf9PdHn{K@k$5>$;B5okk3STt;AImiXk<$r4tOSB4s7QQa6d4pxz}r>uG2NuzbsFi zefrbQi@y-Rd#+nm7x(p9^JZ?lz2uYIXKs8xn9{Q6tU6b?dw?hJcI5J~yov9h-}s6< z??~rCZx*cMpX`43?55s#w~tefuDv>uYL}DV*?;ilHcS46vxoBg3|X+~dVaytl77S6 zMhBZeUYuDy=B}bfC&LX7ai{Q~UlPK0V5?wrg#!BU!CF zzH4>*M1JOK?}*JW-rQNV^|N2skN)PvS=Kguzn_NIIFLN_pv2$b+P7-##S|Kuq&_G- J_SRoXe*;rw=>q@& diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.dll b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.dll deleted file mode 100644 index f54f16652c887049b9f3471c68f2c30b197e6c92..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6144 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 a89IQ;f7qh>|D$@N`(Zo$U+#Y?0{;f?Ubw^n diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.pdb b/RestaurantReview/RestaurantReviewMSTests/obj/Debug/netcoreapp2.2/RestaurantReviewMSTests.pdb deleted file mode 100644 index 86376e3d982a9473927a893008622811b1167d95..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1344 zcmZWpZ)j6j6uRb<2!nD(-37CZa=W(&AREYx5EX(P{c}4UfL&W$)hC z+TtWh{WCI#8~cZ-V`X2I3Ci$88Ep7v^Mj661nrm~#@KL7`b8=z=-4?g(MWqA=bn3h zzjMw#_q=ysT(34%b{%9jxW|qVG6#A&a+;yeN<6T_SoA@`HRe14uAf50 zSxU(z%E&23$pyv$y$meox&i3FAnsO>=NIN7bKr$O)ori_5Ai*-SA*>Z8$EEK?Ssej zoZSEwcx(2n!2988sM)O;1S7Iw#(b1C!OYz1(ei_=qjWm}+T_pZIVzc?4?@BH-1k3E;CqMyI_ck&0KXk$Y1VMZxSZ1$xEw?#0SF~+$W)wpToxUHyp zC~kkN-SIW8i@hHhKJIw;jVm#XAKsvTRwf}R$i#vd7j&b9;i_%en_sXSFpW^yC>vum>=Nxy ziJltaqATa4?e%tbiNa1U6Ywt8z7c(Sy~tW?5>{T?*nC?oT|jEw9x-$-+Gsg~O)Ia5 zzR~iIr;Q9e7agoei-l(|A1PO&ld1h3UrfzROrD&%7dm}D+I4-+*3;8He|cYdV{v>{ rpztF8L0TIrS - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Raizel Seliger\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder - PackageReference - 5.1.0 - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - - - - C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.codeanalysis.analyzers\1.1.0 - - \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/RestaurantReviewMSTests.csproj.nuget.g.targets b/RestaurantReview/RestaurantReviewMSTests/obj/RestaurantReviewMSTests.csproj.nuget.g.targets deleted file mode 100644 index d48dc196..00000000 --- a/RestaurantReview/RestaurantReviewMSTests/obj/RestaurantReviewMSTests.csproj.nuget.g.targets +++ /dev/null @@ -1,12 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - - - \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewMSTests/obj/project.assets.json b/RestaurantReview/RestaurantReviewMSTests/obj/project.assets.json deleted file mode 100644 index 8277dd54..00000000 --- a/RestaurantReview/RestaurantReviewMSTests/obj/project.assets.json +++ /dev/null @@ -1,9751 +0,0 @@ -{ - "version": 3, - "targets": { - ".NETCoreApp,Version=v2.2": { - "Castle.Core/4.4.0": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.TraceSource": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "compile": { - "lib/netstandard1.5/Castle.Core.dll": {} - }, - "runtime": { - "lib/netstandard1.5/Castle.Core.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.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.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.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.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.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.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.Core/2.2.5": { - "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.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.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.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.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.CSharp.Workspaces/2.8.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.CSharp": "[2.8.0]", - "Microsoft.CodeAnalysis.Workspaces.Common": "[2.8.0]" - }, - "compile": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Common": "[2.8.0]", - "System.Composition": "1.0.31", - "System.Diagnostics.Contracts": "4.3.0", - "System.Linq.Parallel": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks.Parallel": "4.3.0" - }, - "compile": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} - } - }, - "Microsoft.CodeCoverage/16.0.1": { - "type": "package", - "compile": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "runtime": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "build": { - "build/netstandard1.0/Microsoft.CodeCoverage.props": {}, - "build/netstandard1.0/Microsoft.CodeCoverage.targets": {} - } - }, - "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.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.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.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.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.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.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.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.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.NET.Test.Sdk/16.0.1": { - "type": "package", - "dependencies": { - "Microsoft.CodeCoverage": "16.0.1", - "Microsoft.TestPlatform.TestHost": "16.0.1" - }, - "build": { - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props": {}, - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} - } - }, - "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/3.1.0-preview1.19504.10": { - "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.TestPlatform.ObjectModel/16.0.1": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.0", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.ComponentModel.TypeConverter": "4.1.0", - "System.Diagnostics.Process": "4.1.0", - "System.Diagnostics.TextWriterTraceListener": "4.0.0", - "System.Diagnostics.TraceSource": "4.0.0", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", - "System.Runtime.Loader": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.2", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Thread": "4.0.0", - "System.Xml.XPath.XmlDocument": "4.0.1" - }, - "compile": { - "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "runtime": { - "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "resource": { - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/16.0.1": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyModel": "1.0.3", - "Microsoft.TestPlatform.ObjectModel": "16.0.1", - "Newtonsoft.Json": "9.0.1" - }, - "compile": { - "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netstandard1.5/testhost.dll": {} - }, - "runtime": { - "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netstandard1.5/testhost.dll": {} - }, - "resource": { - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.3" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { - "type": "package", - "dependencies": { - "Newtonsoft.Json": "11.0.2" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.3", - "Newtonsoft.Json": "11.0.2" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.3" - }, - "compile": { - "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} - }, - "runtime": { - "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.3" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "2.2.0", - "Microsoft.CodeAnalysis.CSharp": "2.8.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.3" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.CSharp.Workspaces": "2.8.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.3", - "Newtonsoft.Json": "11.0.2", - "NuGet.Frameworks": "4.7.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration": "2.2.3" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "4.7.0-preview1.19504.10", - "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "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" - } - } - }, - "Moq/4.13.1": { - "type": "package", - "dependencies": { - "Castle.Core": "4.4.0", - "System.Threading.Tasks.Extensions": "4.5.1" - }, - "compile": { - "lib/netstandard2.0/Moq.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Moq.dll": {} - } - }, - "MSTest.TestAdapter/1.4.0": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "System.Diagnostics.TextWriterTraceListener": "4.3.0" - }, - "build": { - "build/netcoreapp1.0/MSTest.TestAdapter.props": {} - } - }, - "MSTest.TestFramework/1.4.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {}, - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {} - }, - "runtime": { - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {}, - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {} - } - }, - "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": {} - } - }, - "NuGet.Frameworks/4.7.0": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "compile": { - "lib/netstandard1.6/NuGet.Frameworks.dll": {} - }, - "runtime": { - "lib/netstandard1.6/NuGet.Frameworks.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.7.0-preview1.19504.10": { - "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.3.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/netstandard1.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/System.Collections.NonGeneric.dll": {} - }, - "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/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.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.5/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Composition/1.0.31": { - "type": "package", - "dependencies": { - "System.Composition.AttributedModel": "1.0.31", - "System.Composition.Convention": "1.0.31", - "System.Composition.Hosting": "1.0.31", - "System.Composition.Runtime": "1.0.31", - "System.Composition.TypedParts": "1.0.31" - } - }, - "System.Composition.AttributedModel/1.0.31": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Composition.AttributedModel.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Composition.AttributedModel.dll": {} - } - }, - "System.Composition.Convention/1.0.31": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Composition.AttributedModel": "1.0.31", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Composition.Convention.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Composition.Convention.dll": {} - } - }, - "System.Composition.Hosting/1.0.31": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Composition.Runtime": "1.0.31", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Composition.Hosting.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Composition.Hosting.dll": {} - } - }, - "System.Composition.Runtime/1.0.31": { - "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.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Composition.Runtime.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Composition.Runtime.dll": {} - } - }, - "System.Composition.TypedParts/1.0.31": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Composition.AttributedModel": "1.0.31", - "System.Composition.Hosting": "1.0.31", - "System.Composition.Runtime": "1.0.31", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Composition.TypedParts.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Composition.TypedParts.dll": {} - } - }, - "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.8.0-preview1.19504.10": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Registry": "4.7.0-preview1.19504.10", - "System.Diagnostics.DiagnosticSource": "4.7.0-preview1.19504.10", - "System.Security.Principal.Windows": "4.7.0-preview1.19504.10", - "System.Text.Encoding.CodePages": "4.7.0-preview1.19504.10", - "runtime.native.System.Data.SqlClient.sni": "4.7.0-preview1.19504.10" - }, - "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.7.0-preview1.19504.10": { - "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.Process/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "Microsoft.Win32.Registry": "4.0.0", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Thread": "4.0.0", - "System.Threading.ThreadPool": "4.0.10", - "runtime.native.System": "4.0.0" - }, - "compile": { - "ref/netstandard1.4/System.Diagnostics.Process.dll": {} - }, - "runtimeTargets": { - "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": { - "assetType": "runtime", - "rid": "linux" - }, - "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.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.TextWriterTraceListener/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.TraceSource": "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" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.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.TraceSource/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.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "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.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.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.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.Parallel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "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.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Linq.Parallel.dll": {} - } - }, - "System.Memory/4.5.1": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "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.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "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.4.2": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.Immutable": "1.3.1", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard1.1/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/netstandard1.1/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.7.0-preview1.19504.10": { - "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.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "runtime.native.System": "4.0.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Runtime.Loader/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Loader.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.Loader.dll": {} - } - }, - "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.Json/4.0.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Security.AccessControl/4.7.0-preview1.19504.10": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.AccessControl.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "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.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/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.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.Principal.Windows/4.7.0-preview1.19504.10": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/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.7.0-preview1.19504.10": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime.CompilerServices.Unsafe": "4.7.0-preview1.19504.10" - }, - "compile": { - "lib/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.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.1": { - "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/System.Threading.Thread.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Thread.dll": {} - } - }, - "System.Threading.ThreadPool/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} - } - }, - "System.ValueTuple/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.ValueTuple.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ValueTuple.dll": {} - } - }, - "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.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "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/System.Xml.XPath.dll": {} - }, - "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": {} - } - }, - "System.Xml.XPath.XmlDocument/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XPath": "4.0.1", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} - } - }, - "RestaurantReview/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v2.2", - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.Design": "2.2.3" - }, - "compile": { - "bin/placeholder/RestaurantReview.dll": {} - }, - "runtime": { - "bin/placeholder/RestaurantReview.dll": {} - } - } - } - }, - "libraries": { - "Castle.Core/4.4.0": { - "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", - "type": "package", - "path": "castle.core/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ASL - Apache Software Foundation License.txt", - "CHANGELOG.md", - "LICENSE", - "castle.core.4.4.0.nupkg.sha512", - "castle.core.nuspec", - "lib/net35/Castle.Core.dll", - "lib/net35/Castle.Core.xml", - "lib/net40/Castle.Core.dll", - "lib/net40/Castle.Core.xml", - "lib/net45/Castle.Core.dll", - "lib/net45/Castle.Core.xml", - "lib/netstandard1.3/Castle.Core.dll", - "lib/netstandard1.3/Castle.Core.xml", - "lib/netstandard1.5/Castle.Core.dll", - "lib/netstandard1.5/Castle.Core.xml", - "readme.txt" - ] - }, - "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.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.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.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.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.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.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.Core/2.2.5": { - "sha512": "/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.core/2.2.5", - "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.5.nupkg.sha512", - "microsoft.aspnetcore.mvc.core.nuspec" - ] - }, - "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.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.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.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.CSharp.Workspaces/2.8.0": { - "sha512": "EJWaxi2bI47iEZen/nZkJEDZCrP9Oj3PJtMwBv34Z0ZvvdSkpgsdqlHSud8d5vC53LnCXLfBLewfqHcILDVSDw==", - "type": "package", - "path": "microsoft.codeanalysis.csharp.workspaces/2.8.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", - "microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg.sha512", - "microsoft.codeanalysis.csharp.workspaces.nuspec" - ] - }, - "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { - "sha512": "tJlJ99SD8bHBAXShOG/pXQ1K118cnsF01obEf9aAtdgLbw3yEPahZ7qvWeGMjrheUhvOsSkv/wTKYg9euKa8MQ==", - "type": "package", - "path": "microsoft.codeanalysis.workspaces.common/2.8.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.dll", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.pdb", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.xml", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.dll", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.pdb", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.xml", - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll", - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.pdb", - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.xml", - "microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512", - "microsoft.codeanalysis.workspaces.common.nuspec" - ] - }, - "Microsoft.CodeCoverage/16.0.1": { - "sha512": "W7WI3iH6At2I/9x2ODgCIIMO0QfpA7ZCoHkeygMLAaz3Nms/GsugKz9N4hkTve2Lj66g2K4CAmbwe6utEH66lw==", - "type": "package", - "path": "microsoft.codecoverage/16.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/netstandard1.0/CodeCoverage/CodeCoverage.config", - "build/netstandard1.0/CodeCoverage/CodeCoverage.exe", - "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll", - "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll", - "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll", - "build/netstandard1.0/CodeCoverage/covrun32.dll", - "build/netstandard1.0/CodeCoverage/msdia140.dll", - "build/netstandard1.0/Microsoft.CodeCoverage.props", - "build/netstandard1.0/Microsoft.CodeCoverage.targets", - "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll", - "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "microsoft.codecoverage.16.0.1.nupkg.sha512", - "microsoft.codecoverage.nuspec" - ] - }, - "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.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.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.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.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.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.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.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.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.NET.Test.Sdk/16.0.1": { - "sha512": "ON7UIMIhAwrYb0ep+3ztoWVGvtfo88IhiHVnbyOiuVsi8bOMCdMPVcR+EX1WYGgKAd030pHRaxazMlkQ6uDyJQ==", - "type": "package", - "path": "microsoft.net.test.sdk/16.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/net40/Microsoft.NET.Test.Sdk.props", - "build/net40/Microsoft.NET.Test.Sdk.targets", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets", - "build/uap10.0/Microsoft.NET.Test.Sdk.props", - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", - "microsoft.net.test.sdk.16.0.1.nupkg.sha512", - "microsoft.net.test.sdk.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/3.1.0-preview1.19504.10": { - "sha512": "bS52lVUR5Mb/yuorV8cLSvsPDEOms1LTQ+bN8s3/rrdaU3VSpfvWGorRk5xftj1kyrJ7Dxlw/GADyyekoOfDnQ==", - "type": "package", - "path": "microsoft.netcore.platforms/3.1.0-preview1.19504.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.3.1.0-preview1.19504.10.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.TestPlatform.ObjectModel/16.0.1": { - "sha512": "AIQ9azu2b31R8nOuFnR32d7cdWidjjLl1dFyLC3LNifzAJoEdCUgkHWUpTTHKWcHhwa9E/NRcdzVple8pbKJ9Q==", - "type": "package", - "path": "microsoft.testplatform.objectmodel/16.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.4/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard1.4/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard1.4/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "microsoft.testplatform.objectmodel.16.0.1.nupkg.sha512", - "microsoft.testplatform.objectmodel.nuspec" - ] - }, - "Microsoft.TestPlatform.TestHost/16.0.1": { - "sha512": "H4bYjOjkK4FYQ23RnsHm8FcqR0te8Eky9i9sS1IjVFBlDh1MU7aIwmBUpKpaSAy5xNu7UTHku4RZTWzWHDzS7g==", - "type": "package", - "path": "microsoft.testplatform.testhost/16.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "build/uap10.0/Microsoft.TestPlatform.TestHost.props", - "build/uap10.0/Microsoft.TestPlatform.TestHost.targets", - "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/x64/msdia140.dll", - "build/uap10.0/x86/msdia140.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/_._", - "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll", - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/testhost.deps.json", - "lib/netstandard1.5/testhost.dll", - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/x64/msdia140.dll", - "lib/netstandard1.5/x86/msdia140.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/uap10.0/testhost.dll", - "microsoft.testplatform.testhost.16.0.1.nupkg.sha512", - "microsoft.testplatform.testhost.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { - "sha512": "wc71c9HWTeXy9/w9O4Yr2LKmdJjVyIoJ/XQX8/6uma4EAVU25RLtUWlvhA0gpgFw9Kf1TkCv70x+CbKnRw/d8Q==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.xml", - "microsoft.visualstudio.web.codegeneration.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { - "sha512": "wXlpxDfRD5aPypa0p0UE97tkRQvAz9D9FfA2GITzr+LlGIpybyGnxkwGVp0Vha1Ibr0kJG0HdnqfeHME/WuAcQ==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.xml", - "microsoft.visualstudio.web.codegeneration.contracts.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.contracts.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { - "sha512": "APdPavBUYcGPBaW4rjxBVRePWmg0ZzhIRymOzvLFWUtzfvJKw1+8PaCzsH7Uvl+felm0L1UVQwBx1Do0R7j7Xg==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.core/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml", - "microsoft.visualstudio.web.codegeneration.core.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.core.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { - "sha512": "xH50cYOU+infRq4KikBuu2qeXcwW4tE0D5TDfKLuLrEtDm90aXI+0qygPsqyISf+lOW7L7rQ64BH/dRYkK3c3Q==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.design/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/dotnet-aspnet-codegenerator-design.exe", - "lib/net461/dotnet-aspnet-codegenerator-design.xml", - "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll", - "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.xml", - "microsoft.visualstudio.web.codegeneration.design.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.design.nuspec", - "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.exe", - "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.xml", - "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.exe", - "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.xml", - "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.exe", - "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.xml", - "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.exe", - "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.xml" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { - "sha512": "N9S7TeFZjXzNY9OVbz4OFw9cM9oEeMaCnuLFhetNioy/wPwZbgglrctAEYxfDbvocQ17YCAVR2EMRbYHNDHyVg==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Templates/DbContext/NewLocalDbContext.cshtml", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml", - "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { - "sha512": "sW2lHnOoL1xFnSm/2zSedeUoQPlbhPfWjSuUYsxYUj/N5QmLmH98ZLaqP26k6Om/heR6Gux/veXI96yM1Parow==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.templating/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml", - "microsoft.visualstudio.web.codegeneration.templating.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.templating.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { - "sha512": "/r/y+XpOpbCwN/M/HopjfGTDRlmixTd4G6HG6FaBkD/YF3T1u+4WMRVtuB6zz7aw571HmX+6UokEa6HJSwkPDA==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.utils/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml", - "microsoft.visualstudio.web.codegeneration.utils.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.utils.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { - "sha512": "0gVuA4KUCHFM4M/9SjG+7j7BzZ7SW/BufF97Q78i2VV8JBbQXc/5Rf6YUG1VGW2fwSEOl9+S26utEGS+86GGGw==", - "type": "package", - "path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Generators/ParameterDefinitions/area.json", - "Generators/ParameterDefinitions/controller.json", - "Generators/ParameterDefinitions/identity.json", - "Generators/ParameterDefinitions/razorpage.json", - "Generators/ParameterDefinitions/view.json", - "Templates/ControllerGenerator/ApiControllerWithActions.cshtml", - "Templates/ControllerGenerator/ApiControllerWithContext.cshtml", - "Templates/ControllerGenerator/ApiEmptyController.cshtml", - "Templates/ControllerGenerator/ControllerWithActions.cshtml", - "Templates/ControllerGenerator/EmptyController.cshtml", - "Templates/ControllerGenerator/MvcControllerWithContext.cshtml", - "Templates/Identity/Data/ApplicationDbContext.cshtml", - "Templates/Identity/Data/ApplicationUser.cshtml", - "Templates/Identity/IdentityHostingStartup.cshtml", - "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml", - "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml", - "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml", - "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml", - "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml", - "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", - "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml", - "Templates/Identity/Pages/Account/Account.Lockout.cshtml", - "Templates/Identity/Pages/Account/Account.Login.cs.cshtml", - "Templates/Identity/Pages/Account/Account.Login.cshtml", - "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml", - "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml", - "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", - "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml", - "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml", - "Templates/Identity/Pages/Account/Account.Logout.cshtml", - "Templates/Identity/Pages/Account/Account.Register.cs.cshtml", - "Templates/Identity/Pages/Account/Account.Register.cshtml", - "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml", - "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml", - "Templates/Identity/Pages/Account/Account._ViewImports.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", - "Templates/Identity/Pages/Error.cs.cshtml", - "Templates/Identity/Pages/Error.cshtml", - "Templates/Identity/Pages/_Layout.cshtml", - "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml", - "Templates/Identity/Pages/_ViewImports.cshtml", - "Templates/Identity/Pages/_ViewStart.cshtml", - "Templates/Identity/ScaffoldingReadme.cshtml", - "Templates/Identity/SupportPages._CookieConsentPartial.cshtml", - "Templates/Identity/SupportPages._ViewImports.cshtml", - "Templates/Identity/SupportPages._ViewStart.cshtml", - "Templates/Identity/_LoginPartial.cshtml", - "Templates/Identity/wwwroot/css/site.css", - "Templates/Identity/wwwroot/favicon.ico", - "Templates/Identity/wwwroot/js/site.js", - "Templates/Identity/wwwroot/lib/bootstrap/LICENSE", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map", - "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", - "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", - "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", - "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md", - "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js", - "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", - "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js", - "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", - "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt", - "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js", - "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js", - "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map", - "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml", - "Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml", - "Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml", - "Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml", - "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml", - "Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map", - "Templates/MvcLayout/Error.cshtml", - "Templates/MvcLayout/_Layout.cshtml", - "Templates/RazorPageGenerator/Create.cshtml", - "Templates/RazorPageGenerator/CreatePageModel.cshtml", - "Templates/RazorPageGenerator/Delete.cshtml", - "Templates/RazorPageGenerator/DeletePageModel.cshtml", - "Templates/RazorPageGenerator/Details.cshtml", - "Templates/RazorPageGenerator/DetailsPageModel.cshtml", - "Templates/RazorPageGenerator/Edit.cshtml", - "Templates/RazorPageGenerator/EditPageModel.cshtml", - "Templates/RazorPageGenerator/Empty.cshtml", - "Templates/RazorPageGenerator/EmptyPageModel.cshtml", - "Templates/RazorPageGenerator/List.cshtml", - "Templates/RazorPageGenerator/ListPageModel.cshtml", - "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Empty.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/EmptyPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml", - "Templates/Startup/ReadMe.cshtml", - "Templates/Startup/Startup.cshtml", - "Templates/ViewGenerator/Create.cshtml", - "Templates/ViewGenerator/Delete.cshtml", - "Templates/ViewGenerator/Details.cshtml", - "Templates/ViewGenerator/Edit.cshtml", - "Templates/ViewGenerator/Empty.cshtml", - "Templates/ViewGenerator/List.cshtml", - "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml", - "lib/netstandard2.0/bootstrap3_identitygeneratorfilesconfig.json", - "lib/netstandard2.0/bootstrap4_identitygeneratorfilesconfig.json", - "microsoft.visualstudio.web.codegenerators.mvc.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegenerators.mvc.nuspec" - ] - }, - "Microsoft.Win32.Primitives/4.0.1": { - "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", - "type": "package", - "path": "microsoft.win32.primitives/4.0.1", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.win32.primitives.4.0.1.nupkg.sha512", - "microsoft.win32.primitives.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { - "sha512": "CXsd7k96HdyP0vV9T5mQQ0O1Lj00xJBHTQ+d8Y99mxu/GuTB9MYKeGE1b58AIaxF88maJOFMtt6WhiqEPC9ONw==", - "type": "package", - "path": "microsoft.win32.registry/4.7.0-preview1.19504.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.xml", - "lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "microsoft.win32.registry.4.7.0-preview1.19504.10.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/net472/Microsoft.Win32.Registry.dll", - "ref/net472/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/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Moq/4.13.1": { - "sha512": "ic4m9/b10tz9oRB1Oi5bW7E/FS6Pd2SH5OJFhlmhUJkQhiV5FyrIRxVUEaG5KOpSpcfSPGAVW4rRZt6OzrS5zg==", - "type": "package", - "path": "moq/4.13.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Moq.dll", - "lib/net45/Moq.xml", - "lib/netstandard2.0/Moq.dll", - "lib/netstandard2.0/Moq.xml", - "moq.4.13.1.nupkg.sha512", - "moq.nuspec" - ] - }, - "MSTest.TestAdapter/1.4.0": { - "sha512": "t2/rL9DG+cVAgPs98OGm2sbZ4FTgn+MGEan5P9NRAgqMV3+nYRKG7/5R0jY7lBMq9ISms+84MSqTHWs6QnPt4A==", - "type": "package", - "path": "mstest.testadapter/1.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll", - "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll", - "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", - "build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/net45/MSTest.TestAdapter.props", - "build/net45/MSTest.TestAdapter.targets", - "build/netcoreapp1.0/MSTest.TestAdapter.props", - "build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", - "build/uap10.0/MSTest.TestAdapter.props", - "build/uap10.0/MSTest.TestAdapter.targets", - "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", - "mstest.testadapter.1.4.0.nupkg.sha512", - "mstest.testadapter.nuspec" - ] - }, - "MSTest.TestFramework/1.4.0": { - "sha512": "kV/yZ0XLiOElsVeLT0GnNrsoKcPvVNOP6Cv2zkAiceJY0rpro0L+3t54bRApLwTg1mxlo4rLziBG7X6X69KcrQ==", - "type": "package", - "path": "mstest.testframework/1.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML", - "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", - "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.XML", - "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML", - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML", - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "mstest.testframework.1.4.0.nupkg.sha512", - "mstest.testframework.nuspec" - ] - }, - "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" - ] - }, - "NuGet.Frameworks/4.7.0": { - "sha512": "qbXaB76XYUVLocLBs8Z9TS/ERGK2wm797feO+0JEPFvT7o7MRadOR77mqaSD4J1k8G+DlZQyq+MlkCuxrkr3ag==", - "type": "package", - "path": "nuget.frameworks/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net40/NuGet.Frameworks.dll", - "lib/net40/NuGet.Frameworks.xml", - "lib/net46/NuGet.Frameworks.dll", - "lib/net46/NuGet.Frameworks.xml", - "lib/netstandard1.6/NuGet.Frameworks.dll", - "lib/netstandard1.6/NuGet.Frameworks.xml", - "nuget.frameworks.4.7.0.nupkg.sha512", - "nuget.frameworks.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": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "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.7.0-preview1.19504.10": { - "sha512": "ITo7gZ7yGHMkNj1O6PRmK+i917jbWNs5CZN/jwVSh8hO+3+8C5roDkXJYbM1hA5LZAUagtm9ph5whvnDOTilDg==", - "type": "package", - "path": "runtime.native.system.data.sqlclient.sni/4.7.0-preview1.19504.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.native.system.data.sqlclient.sni.4.7.0-preview1.19504.10.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", - ".signature.p7s", - "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", - ".signature.p7s", - "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", - ".signature.p7s", - "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": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "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": "T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", - "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": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "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.3.1": { - "sha512": "n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", - "type": "package", - "path": "system.collections.immutable/1.3.1", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Collections.Immutable.dll", - "lib/netstandard1.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.3.1.nupkg.sha512", - "system.collections.immutable.nuspec" - ] - }, - "System.Collections.NonGeneric/4.3.0": { - "sha512": "LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", - "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": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "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/4.3.0": { - "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "type": "package", - "path": "system.componentmodel/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.dll", - "lib/netstandard1.3/System.ComponentModel.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.ComponentModel.dll", - "ref/netcore50/System.ComponentModel.xml", - "ref/netcore50/de/System.ComponentModel.xml", - "ref/netcore50/es/System.ComponentModel.xml", - "ref/netcore50/fr/System.ComponentModel.xml", - "ref/netcore50/it/System.ComponentModel.xml", - "ref/netcore50/ja/System.ComponentModel.xml", - "ref/netcore50/ko/System.ComponentModel.xml", - "ref/netcore50/ru/System.ComponentModel.xml", - "ref/netcore50/zh-hans/System.ComponentModel.xml", - "ref/netcore50/zh-hant/System.ComponentModel.xml", - "ref/netstandard1.0/System.ComponentModel.dll", - "ref/netstandard1.0/System.ComponentModel.xml", - "ref/netstandard1.0/de/System.ComponentModel.xml", - "ref/netstandard1.0/es/System.ComponentModel.xml", - "ref/netstandard1.0/fr/System.ComponentModel.xml", - "ref/netstandard1.0/it/System.ComponentModel.xml", - "ref/netstandard1.0/ja/System.ComponentModel.xml", - "ref/netstandard1.0/ko/System.ComponentModel.xml", - "ref/netstandard1.0/ru/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.4.3.0.nupkg.sha512", - "system.componentmodel.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.ComponentModel.EventBasedAsync/4.0.11": { - "sha512": "Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==", - "type": "package", - "path": "system.componentmodel.eventbasedasync/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll", - "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.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.ComponentModel.EventBasedAsync.dll", - "ref/netcore50/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll", - "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512", - "system.componentmodel.eventbasedasync.nuspec" - ] - }, - "System.ComponentModel.Primitives/4.3.0": { - "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "type": "package", - "path": "system.componentmodel.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.Primitives.dll", - "lib/netstandard1.0/System.ComponentModel.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.Primitives.dll", - "ref/netstandard1.0/System.ComponentModel.Primitives.dll", - "ref/netstandard1.0/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.primitives.4.3.0.nupkg.sha512", - "system.componentmodel.primitives.nuspec" - ] - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "sha512": "HZiP0DwTHJ+C+rdFqP47nBYUh5283kcwXIGY2zOVVhsJmVI/2tYiX2zNRdjRQRHsTox58Ydkec6h0pWSh8wAsw==", - "type": "package", - "path": "system.componentmodel.typeconverter/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.TypeConverter.dll", - "lib/net462/System.ComponentModel.TypeConverter.dll", - "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.TypeConverter.dll", - "ref/net462/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", - "system.componentmodel.typeconverter.nuspec" - ] - }, - "System.Composition/1.0.31": { - "sha512": "I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==", - "type": "package", - "path": "system.composition/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "system.composition.1.0.31.nupkg.sha512", - "system.composition.nuspec" - ] - }, - "System.Composition.AttributedModel/1.0.31": { - "sha512": "NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==", - "type": "package", - "path": "system.composition.attributedmodel/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Composition.AttributedModel.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll", - "system.composition.attributedmodel.1.0.31.nupkg.sha512", - "system.composition.attributedmodel.nuspec" - ] - }, - "System.Composition.Convention/1.0.31": { - "sha512": "GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==", - "type": "package", - "path": "system.composition.convention/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Composition.Convention.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll", - "system.composition.convention.1.0.31.nupkg.sha512", - "system.composition.convention.nuspec" - ] - }, - "System.Composition.Hosting/1.0.31": { - "sha512": "fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==", - "type": "package", - "path": "system.composition.hosting/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Composition.Hosting.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll", - "system.composition.hosting.1.0.31.nupkg.sha512", - "system.composition.hosting.nuspec" - ] - }, - "System.Composition.Runtime/1.0.31": { - "sha512": "0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==", - "type": "package", - "path": "system.composition.runtime/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Composition.Runtime.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll", - "system.composition.runtime.1.0.31.nupkg.sha512", - "system.composition.runtime.nuspec" - ] - }, - "System.Composition.TypedParts/1.0.31": { - "sha512": "0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==", - "type": "package", - "path": "system.composition.typedparts/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Composition.TypedParts.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll", - "system.composition.typedparts.1.0.31.nupkg.sha512", - "system.composition.typedparts.nuspec" - ] - }, - "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.8.0-preview1.19504.10": { - "sha512": "6isAINOX/v56q7JLaC9XDXzc7T/yh62QR+pa+Jt0ayjmYmLRCmzyt4rTy5jWe15ZcQfS9yQNxIzwyO7yGs6Zbg==", - "type": "package", - "path": "system.data.sqlclient/4.8.0-preview1.19504.10", - "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/net461/System.Data.SqlClient.xml", - "lib/netcoreapp2.1/System.Data.SqlClient.dll", - "lib/netcoreapp2.1/System.Data.SqlClient.xml", - "lib/netstandard1.2/System.Data.SqlClient.dll", - "lib/netstandard1.2/System.Data.SqlClient.xml", - "lib/netstandard1.3/System.Data.SqlClient.dll", - "lib/netstandard1.3/System.Data.SqlClient.xml", - "lib/netstandard2.0/System.Data.SqlClient.dll", - "lib/netstandard2.0/System.Data.SqlClient.xml", - "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/netcoreapp2.1/System.Data.SqlClient.xml", - "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", - "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", - "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", - "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/net461/System.Data.SqlClient.xml", - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", - "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", - "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", - "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", - "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", - "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", - "system.data.sqlclient.4.8.0-preview1.19504.10.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.7.0-preview1.19504.10": { - "sha512": "CxeUzuw9Lz1+6gkPpQI83BeoUNxn6VnDF28qazxSRyRzWSzLzoeh9ObYG7LYqcPckgm0UaE9nQdd7oDq5ncMKg==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/4.7.0-preview1.19504.10", - "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.7.0-preview1.19504.10.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.Process/4.1.0": { - "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", - "type": "package", - "path": "system.diagnostics.process/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.Process.dll", - "lib/net461/System.Diagnostics.Process.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.Process.dll", - "ref/net461/System.Diagnostics.Process.dll", - "ref/netstandard1.3/System.Diagnostics.Process.dll", - "ref/netstandard1.3/System.Diagnostics.Process.xml", - "ref/netstandard1.3/de/System.Diagnostics.Process.xml", - "ref/netstandard1.3/es/System.Diagnostics.Process.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Process.xml", - "ref/netstandard1.3/it/System.Diagnostics.Process.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Process.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Process.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Process.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml", - "ref/netstandard1.4/System.Diagnostics.Process.dll", - "ref/netstandard1.4/System.Diagnostics.Process.xml", - "ref/netstandard1.4/de/System.Diagnostics.Process.xml", - "ref/netstandard1.4/es/System.Diagnostics.Process.xml", - "ref/netstandard1.4/fr/System.Diagnostics.Process.xml", - "ref/netstandard1.4/it/System.Diagnostics.Process.xml", - "ref/netstandard1.4/ja/System.Diagnostics.Process.xml", - "ref/netstandard1.4/ko/System.Diagnostics.Process.xml", - "ref/netstandard1.4/ru/System.Diagnostics.Process.xml", - "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml", - "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", - "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", - "runtimes/win/lib/net46/System.Diagnostics.Process.dll", - "runtimes/win/lib/net461/System.Diagnostics.Process.dll", - "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", - "runtimes/win7/lib/netcore50/_._", - "system.diagnostics.process.4.1.0.nupkg.sha512", - "system.diagnostics.process.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.TextWriterTraceListener/4.3.0": { - "sha512": "F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==", - "type": "package", - "path": "system.diagnostics.textwritertracelistener/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.TextWriterTraceListener.dll", - "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.TextWriterTraceListener.dll", - "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll", - "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/de/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/es/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/fr/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/it/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/ja/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/ko/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/ru/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.TextWriterTraceListener.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512", - "system.diagnostics.textwritertracelistener.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.TraceSource/4.3.0": { - "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", - "type": "package", - "path": "system.diagnostics.tracesource/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.TraceSource.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.TraceSource.dll", - "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", - "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", - "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", - "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", - "system.diagnostics.tracesource.4.3.0.nupkg.sha512", - "system.diagnostics.tracesource.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.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.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.Parallel/4.3.0": { - "sha512": "td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==", - "type": "package", - "path": "system.linq.parallel/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Linq.Parallel.dll", - "lib/netstandard1.3/System.Linq.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.Linq.Parallel.dll", - "ref/netcore50/System.Linq.Parallel.xml", - "ref/netcore50/de/System.Linq.Parallel.xml", - "ref/netcore50/es/System.Linq.Parallel.xml", - "ref/netcore50/fr/System.Linq.Parallel.xml", - "ref/netcore50/it/System.Linq.Parallel.xml", - "ref/netcore50/ja/System.Linq.Parallel.xml", - "ref/netcore50/ko/System.Linq.Parallel.xml", - "ref/netcore50/ru/System.Linq.Parallel.xml", - "ref/netcore50/zh-hans/System.Linq.Parallel.xml", - "ref/netcore50/zh-hant/System.Linq.Parallel.xml", - "ref/netstandard1.1/System.Linq.Parallel.dll", - "ref/netstandard1.1/System.Linq.Parallel.xml", - "ref/netstandard1.1/de/System.Linq.Parallel.xml", - "ref/netstandard1.1/es/System.Linq.Parallel.xml", - "ref/netstandard1.1/fr/System.Linq.Parallel.xml", - "ref/netstandard1.1/it/System.Linq.Parallel.xml", - "ref/netstandard1.1/ja/System.Linq.Parallel.xml", - "ref/netstandard1.1/ko/System.Linq.Parallel.xml", - "ref/netstandard1.1/ru/System.Linq.Parallel.xml", - "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml", - "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.parallel.4.3.0.nupkg.sha512", - "system.linq.parallel.nuspec" - ] - }, - "System.Memory/4.5.1": { - "sha512": "sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==", - "type": "package", - "path": "system.memory/4.5.1", - "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/_._", - "ref/netstandard1.1/System.Memory.dll", - "ref/netstandard1.1/System.Memory.xml", - "ref/netstandard2.0/System.Memory.dll", - "ref/netstandard2.0/System.Memory.xml", - "system.memory.4.5.1.nupkg.sha512", - "system.memory.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.1.1": { - "sha512": "lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==", - "type": "package", - "path": "system.private.datacontractserialization/4.1.1", - "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.1.1.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", - ".signature.p7s", - "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.4.2": { - "sha512": "KYPNMDrLB2R+G5JJiJ2fjBpihtktKVIjsirmyyv+VDo5rQkIR9BWeCYM1wDSzbQatWNZ/NQfPsQyTB1Ui3qBfQ==", - "type": "package", - "path": "system.reflection.metadata/1.4.2", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.1/System.Reflection.Metadata.dll", - "lib/netstandard1.1/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "lib/portable-net45+win8/System.Reflection.Metadata.xml", - "system.reflection.metadata.1.4.2.nupkg.sha512", - "system.reflection.metadata.nuspec" - ] - }, - "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.7.0-preview1.19504.10": { - "sha512": "Zw6YIPYZNJdb5fVVlLLG0i9NO/p+10u8LM8ApWat+9oLo15xaCGC6XyYALrvc+DzmxkwWLxU6n8SNf71V+x3+Q==", - "type": "package", - "path": "system.runtime.compilerservices.unsafe/4.7.0-preview1.19504.10", - "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.7.0-preview1.19504.10.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.0.0": { - "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", - "type": "package", - "path": "system.runtime.interopservices.runtimeinformation/4.0.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "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.0.0.nupkg.sha512", - "system.runtime.interopservices.runtimeinformation.nuspec" - ] - }, - "System.Runtime.Loader/4.0.0": { - "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", - "type": "package", - "path": "system.runtime.loader/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net462/_._", - "lib/netstandard1.5/System.Runtime.Loader.dll", - "ref/netstandard1.5/System.Runtime.Loader.dll", - "ref/netstandard1.5/System.Runtime.Loader.xml", - "ref/netstandard1.5/de/System.Runtime.Loader.xml", - "ref/netstandard1.5/es/System.Runtime.Loader.xml", - "ref/netstandard1.5/fr/System.Runtime.Loader.xml", - "ref/netstandard1.5/it/System.Runtime.Loader.xml", - "ref/netstandard1.5/ja/System.Runtime.Loader.xml", - "ref/netstandard1.5/ko/System.Runtime.Loader.xml", - "ref/netstandard1.5/ru/System.Runtime.Loader.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml", - "system.runtime.loader.4.0.0.nupkg.sha512", - "system.runtime.loader.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.Json/4.0.2": { - "sha512": "+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==", - "type": "package", - "path": "system.runtime.serialization.json/4.0.2", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Serialization.Json.dll", - "lib/netstandard1.3/System.Runtime.Serialization.Json.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.Runtime.Serialization.Json.dll", - "ref/netcore50/System.Runtime.Serialization.Json.xml", - "ref/netcore50/de/System.Runtime.Serialization.Json.xml", - "ref/netcore50/es/System.Runtime.Serialization.Json.xml", - "ref/netcore50/fr/System.Runtime.Serialization.Json.xml", - "ref/netcore50/it/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ja/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ko/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ru/System.Runtime.Serialization.Json.xml", - "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml", - "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/System.Runtime.Serialization.Json.dll", - "ref/netstandard1.0/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.serialization.json.4.0.2.nupkg.sha512", - "system.runtime.serialization.json.nuspec" - ] - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", - "type": "package", - "path": "system.runtime.serialization.primitives/4.1.1", - "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.1.1.nupkg.sha512", - "system.runtime.serialization.primitives.nuspec" - ] - }, - "System.Security.AccessControl/4.7.0-preview1.19504.10": { - "sha512": "PGk/B6+DoaHlC4PAc7OWPmxI91JtH4zXHHmwlSQAOnL5sll3hgX8kVR9loCnVHfshSo1vP8vt15Xy84xyKiqKw==", - "type": "package", - "path": "system.security.accesscontrol/4.7.0-preview1.19504.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.xml", - "lib/netstandard1.3/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.xml", - "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/net461/System.Security.AccessControl.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", - "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.accesscontrol.4.7.0-preview1.19504.10.nupkg.sha512", - "system.security.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "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.3.0": { - "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "type": "package", - "path": "system.security.cryptography.cng/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.dll", - "lib/net463/System.Security.Cryptography.Cng.dll", - "ref/net46/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.dll", - "ref/net463/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "system.security.cryptography.cng.4.3.0.nupkg.sha512", - "system.security.cryptography.cng.nuspec" - ] - }, - "System.Security.Cryptography.Csp/4.3.0": { - "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "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": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "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.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.Principal.Windows/4.7.0-preview1.19504.10": { - "sha512": "3Df++ZTMSEaRRyov1jZ7VSm8GemEu9cJJ+QY1y6wvF631OvS5dts98RhuoqcZxACVkNRIzl5ThIqd46qd7b+Vg==", - "type": "package", - "path": "system.security.principal.windows/4.7.0-preview1.19504.10", - "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/net461/System.Security.Principal.Windows.xml", - "lib/netstandard1.3/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.xml", - "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/netcoreapp3.0/System.Security.Principal.Windows.dll", - "ref/netcoreapp3.0/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/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.principal.windows.4.7.0-preview1.19504.10.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.7.0-preview1.19504.10": { - "sha512": "aYpmMGgjDYpDYtDpUHwnSqSKgatkoZ4aSteVs6WKxo3/dRbHnL5rQ3QX9g7teACCIw8T2KW9OUxIg0b1kZEABg==", - "type": "package", - "path": "system.text.encoding.codepages/4.7.0-preview1.19504.10", - "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/net461/System.Text.Encoding.CodePages.xml", - "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", - "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", - "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", - "system.text.encoding.codepages.4.7.0-preview1.19504.10.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.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.1": { - "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", - "type": "package", - "path": "system.threading.tasks.extensions/4.5.1", - "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/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.extensions.4.5.1.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.Threading.ThreadPool/4.0.10": { - "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", - "type": "package", - "path": "system.threading.threadpool/4.0.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Threading.ThreadPool.dll", - "lib/netcore50/_._", - "lib/netstandard1.3/System.Threading.ThreadPool.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Threading.ThreadPool.dll", - "ref/netstandard1.3/System.Threading.ThreadPool.dll", - "ref/netstandard1.3/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.threadpool.4.0.10.nupkg.sha512", - "system.threading.threadpool.nuspec" - ] - }, - "System.ValueTuple/4.3.0": { - "sha512": "cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==", - "type": "package", - "path": "system.valuetuple/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/.xml", - "lib/netstandard1.0/System.ValueTuple.dll", - "lib/portable-net40+sl4+win8+wp8/.xml", - "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", - "system.valuetuple.4.3.0.nupkg.sha512", - "system.valuetuple.nuspec" - ] - }, - "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.0.11": { - "sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", - "type": "package", - "path": "system.xml.xmlserializer/4.0.11", - "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.0.11.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", - ".signature.p7s", - "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" - ] - }, - "System.Xml.XPath.XmlDocument/4.0.1": { - "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==", - "type": "package", - "path": "system.xml.xpath.xmldocument/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512", - "system.xml.xpath.xmldocument.nuspec" - ] - }, - "RestaurantReview/1.0.0": { - "type": "project", - "path": "../RestaurantReview/RestaurantReview.csproj", - "msbuildProject": "../RestaurantReview/RestaurantReview.csproj" - } - }, - "projectFileDependencyGroups": { - ".NETCoreApp,Version=v2.2": [ - "MSTest.TestAdapter >= 1.4.0", - "MSTest.TestFramework >= 1.4.0", - "Microsoft.AspNetCore.Mvc.Core >= 2.2.5", - "Microsoft.NET.Test.Sdk >= 16.0.1", - "Microsoft.NETCore.App >= 2.2.0", - "Moq >= 4.13.1", - "RestaurantReview >= 1.0.0", - "System.Data.SqlClient >= 4.8.0-preview1.19504.10" - ] - }, - "packageFolders": { - "C:\\Users\\Raizel Seliger\\.nuget\\packages\\": {}, - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReviewMSTests\\RestaurantReviewMSTests.csproj", - "projectName": "RestaurantReviewMSTests", - "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReviewMSTests\\RestaurantReviewMSTests.csproj", - "packagesPath": "C:\\Users\\Raizel Seliger\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReviewMSTests\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\Raizel Seliger\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp2.2" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp2.2": { - "projectReferences": { - "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj": { - "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp2.2": { - "dependencies": { - "MSTest.TestAdapter": { - "target": "Package", - "version": "[1.4.0, )" - }, - "MSTest.TestFramework": { - "target": "Package", - "version": "[1.4.0, )" - }, - "Microsoft.AspNetCore.Mvc.Core": { - "target": "Package", - "version": "[2.2.5, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[16.0.1, )" - }, - "Microsoft.NETCore.App": { - "suppressParent": "All", - "target": "Package", - "version": "[2.2.0, )", - "autoReferenced": true - }, - "Moq": { - "target": "Package", - "version": "[4.13.1, )" - }, - "System.Data.SqlClient": { - "target": "Package", - "version": "[4.8.0-preview1.19504.10, )" - } - }, - "imports": [ - "net461" - ], - "assetTargetFallback": true, - "warn": true - } - } - } -} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/Controllers/RestaurantController.cs b/RestaurantReview/RestaurantReviewTests/Controllers/RestaurantController.cs deleted file mode 100644 index c6de14c6..00000000 --- a/RestaurantReview/RestaurantReviewTests/Controllers/RestaurantController.cs +++ /dev/null @@ -1,31 +0,0 @@ -using Microsoft.AspNetCore.Mvc; -using RestaurantReview.Controllers; -<<<<<<< HEAD -using RestaurantReview.Services; -======= -using RestaurantReview.Models; -using RestaurantReview.Services; -using System.Collections.Generic; ->>>>>>> 0e003586d4895633c82957f8d50d4fc4e29eed18 -using Xunit; - -namespace RestaurantReviewTests -{ - public class RestaurantController - { - public IConn connection = new Conn(); - - [Fact] - public void RestaurantsControllerTest() - { - //Arrange - var RC = new RestaurantsController(connection); - - //Act - var result = RC.Get("Boston"); - - //Assert - Assert.IsType(result); - } - } -} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/Models/RestaurantModel.cs b/RestaurantReview/RestaurantReviewTests/Models/RestaurantModel.cs deleted file mode 100644 index f7790713..00000000 --- a/RestaurantReview/RestaurantReviewTests/Models/RestaurantModel.cs +++ /dev/null @@ -1,38 +0,0 @@ -using RestaurantReview.Models; -using Xunit; - -namespace RestaurantReviewTests -{ - public class RestaurantModel - { - [Fact] - public void RestaurantModel_CityWithSpaceValid() - { - var sut = new Restaurant - { - City = "Sau Paulo" - }; - Assert.True(sut.ValidateCity(), "should return 1 match"); - } - - [Fact] - public void RestaurantModel_CityWithNumberInvalid() - { - var sut = new Restaurant - { - City = "Sau Paulo1" - }; - Assert.False(sut.ValidateCity(), "should return 0 matches"); - } - - [Fact] - public void RestaurantModel_CityWithSpecialCharsInvalid() - { - var sut = new Restaurant - { - City = "Sau Paulo!?!" - }; - Assert.False(sut.ValidateCity(), "should return 0 matches"); - } - } -} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj b/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj deleted file mode 100644 index fb4c0aaa..00000000 --- a/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj +++ /dev/null @@ -1,29 +0,0 @@ - - - - netcoreapp2.2 - - false - - - - - - - - - - - - - - - -<<<<<<< HEAD - -======= ->>>>>>> 0e003586d4895633c82957f8d50d4fc4e29eed18 - - - - diff --git a/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReview.dll b/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReview.dll deleted file mode 100644 index 8413e972152aafbfd243c89563c6dcfe82b5cd34..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 18432 zcmeHOd3+r8b$>Ivnmr`#N-LlEU?tmPZA)v(vH=^*NY;Txd0$bPZ)SF9 zbrAaL@#!BOdEdP2_kQp9e(!h9jQ8JoKlzBrkKgOB6FrVQUtI#<7|cK%x%4+8^lPDS zHa@QG`)1?F$*dKhG>vgHH4#sz@_C~WAJgMzF(1$7I3)Do_N*mE`aDp~>Y!vr6e#h}+@8YarY1FUsc`o= z2&uk1An|WntDcejtK>_>p|T>;2-xgPpjDfjeP@?IX+!Js=Cd&%7qu?bVy%P5h8dP5 zkX+&BP1Mk)&~|tZQ}y6(05`0)RKsR7E70Z;(8~n%B@%r1B{tf(O?(3o8`Zd@;(9V+ zX)?T-G~0HWf4SoDOHD!xP{fZm`tA?}3_-waPO(5Ad1Kk(CG_j?@LoUDQUv^R1tSl4nyWNZTS55)O``F)VPy1>p=(O+m;8alBS4%!|przU;9!b6| zX9ruV;}}U~?L?iohm5OmGuQcO(q~AzVFn8~JM1mOmTVPvz|oP$f)I%WBxH1Qx#eMc z{v+_Wp$gS=AW$v0wB-^Cm{-ACeU*V_Ae^`wzz!uX3)`NuYM?&Qaw$|(WmWTMfG4_G zU#dl4vY!p1`p^=T2-XK%YAgK`w;HPJt63hd4~x9)D!o7md$1)Cbi*F7x?#QnL$JPP z6Llj6_~Nm92Yw&JkK2R^N5R-fuMl-0fc^MM=YU=?IU{y*u4)U=rO?FyMBnW}O~_4_ z&B@JgqMenwdFAiHH0HuMz=r?6EHyBrOJ@JMzarsRIP6zSY)SaF!nTl=JV?~4iZTe2 zn5rwWr3~gUjSMUjfIVn&DeIAcJ2$wjr1T-hl(S!E9QcKs}?9MAbI`D>m zya$#m{rESo%M;F@R@e4Dc3lgO5lpf?fv;+-qW8cLOzP<8K6{L?Y|a>|3(OrOn|EP= zzyjyyLP@wt${PK1var*<1kIgjo*`q0vngm@3!MgMXow%! zq0{yrTFE(tZPr`F3+zcSBg#71fV?^Z-!ORUITyt@EEj$x8S5BW6E)t3XbCLw>?vZc zS^Hqe*bjhQLpoqT!uyMwAa+-3z&Hp_?dBz<#@~x+%Z=w67ZOiSp zv5MU`Eb5wehS|J|Yt?}>!?20gAm~e+7QEAK0Y>VL>X~xkBuXT*zq&@uz z^awUf>-OY~G0=Qr?N*K~|7a+LflL3QbP#+;=E->x5hD0U=yXD=2_MZSWGd$y@4MtI z#yY$(aXH2@=6Rot>!ShYp~>_QRj-9L`kcn_wEy$rC|!yoSS71o!s>OWmXAbechz7Z zLSObXd;w6ShqQZw8hxaS;i$lAf$N3;2|x2!gr0`xHzH35V)XZ+4&X=quZ5S<)u?3| z-3xdLC4<$$we<7BqroQnozO#}7>!0*^B3r8EK?2P*L}_OO6}{uP4wyD^VsdItb4vD zNxwwvl&$oa!T#u0x}Y+g3H3)cdPdsvG|FC1HKEQ>Gu3I^BVk%rwOa|(mjx#LjCX3g zm7Vm%2;&EUhv}5S;{sJ^#^{6aWH)`irX#S29*SP@?WWVf`{{etM}uMdLWp5=4a3(0 zyOp){PVk#a11CnGf#$VzzWSli0UE1e_yAy-_5e21?}M*VZQ$v^5dC4WDKtb@s3~-q z-Vx=9?eRSwxRL%v{nN-+`l7V45blo-(VwVIDD_3OPNOFQZ>B4J*MoBo(a`99;DqUQ zX^|4$E#3Q<(#M>&3i9p#=xfn#!I}De;I(KUC{<*GA)Bfa>gB-K!hMj0=n+`>8&I5& zH6m+^USG|!h)~saOjRMf*yguH7NSO>ZV9ujnwo{GQvQbeke!=_S|U`0l0yAEu`Eg* zLbZk|@^M(ZT&NzQ>S+i08tY_d+D9=wu<&7XfFXf$OYvZVDQ3sssE+Y6?_Bjs7n9an**G(_hdh z)n!=E&I4|y&w>9lz7GIS*D+*#Fb)^#o)zc9?CniLJxG5X_>!uU;ZPSt+b~AoDimvK z7`1nosHapvJ!n(G&fr(oD*CWZ(RahY59&FG`X}EXqt19E;d)6~64>4mF$@RNcw#=pMa@X6M!86LE*a04QsCyL!RMw#m_%*y0UC06R`F-NAuN2!Y$2LXBBCo1T=+CgVMwF-}`mdl)Zx9OQc*MNdrs&~F z(6^kvjk5%62I}fTJ$jiBdSJzU;SpameczVBriPj4ABDP;w$b&FHDVV@bSD{fv+pw6 zCX_t_64dF)4p7FIpc_51jg)p|qjZaJBh7eZo9J9gHi=b=*IGP=0Nhtyh6gdg6h3qT z?g;T*`gQCS6uO}OS0NuY?MtDn#HN=M!zM$a=Y;kPGPb$Fqdst8~M=`W5*c@9r z-@=cv!9di*3=M&HsThtkD=_NMg*lHo`YQp$cs|H^*Di2}z;1y9fJ^B*!EX?l5||Zu zO5n7>_XBG5Nx)UKQaKlHq;|kM+99wTP^0SvPYIqCcuL^3@Mp!&1N3e6GCHSh54F+* z%Cnef->>WsU4`|NEj*$eQTEcWDE}B3q$iaplu@jA=fWm^RXG?rO@E+FM$gf+O2~H~ zy{P?`El?*`k`{Oav%LfIRefPrIsI3vihU+GM$Y+iU%ekJfctyI52e+5___#X6sQ+Wma&nvG|qk4s3qm9sCqJ)&@$SS2> z{UfbW=~l0;dz5Br9p(u|{Y<1)UDfRY@NZRynNVI;)Y&lmd|kDL74-}~=x@Y`eA1u9eEx1<5_8#ufUD?p zfa~bXfSc(@fE`o^ovUaiU=K9|z6JZqBn^`VcoUrkOw+pnZxy};*e&+E#ePcgl;E?1 z&kFvC;ExFYgy2s)kiB|Q@E1j@DD17GFuzgoM!~xU?-o2IcuMeD!Dj`3Lhz@QpQW$) zpHe}V8B zODc8~RhU0Q*d1V^r0(Dp=BN7=esS@3-`fBSbqqfvoVMtlz;6k^1MrDxnQ!9-(K(A! zDo!#!*{$-q4j_&Rvq3AUk0dB0+tlafh&=fPt#5%qr6S|l=77Fl5$ZQ zQAbt(49}z9>ov^Qc>Yo1o>uQi8+px8OKP*~Z!N(4$O613J`Tbjp8)LZv}(zkQE6|V z=vDIGx&ZH27vOD=*mZb)e!j-$dFy@F@r6&P_H`O(H^#VE+=c9&YA066x$XTou~+F| z#{%uRus{s#vruK(2eER^tz#n}$>+qrNqnj7k4a9?IWfK5;dx_ly_BtkW7HE5vbG*;o6qbJ=8j{>wlUIU5xT zn^W1eZtWg(B-iMLLzZqb4Lwi}wp)s}FIu#n2Kw^F3EfPM<@Dq2G-&FXY&un7ygOaU z8hIf5vQ`1Nfr38KP9w%ZzRkJwedmxY#1vWB3D4h>IRs4>}NeBk z%5Ww88%`UOdWNzY+GSU=`_^N}_N3Cc;@MAsR?mU&wYrehwmM&OAT^=S=W;CzOWedr zagQxra6Y%}+(I&TZ3N#7%$N0K3)Azsdx}{!xOc3_n3zcAGcnUfz$1*vRGSPMY_^?O6%`k5*3&j4uRDQgO_f&3Ct%^35>+hb-mOG}*mU*x*r%&kl0yowwi|j6u>W1`O>a<`Ud0(FU zgfpOA#%;%-iODowC<{1r*XVN?gN8MiQ}i(UO=Dt@k(n-AVLv!GoGva4Tn_u3%6m)L zqeJ+G>{vF3nZQ#llR1(toRk%Trg&YLGpdqKm@z+6+Q{ea$K+U19HjdQrqp~M$?s}7 z^S;eka7^w+t66(Np*>(-6=#U|W>e#NE|s>DGK^&Q*r(^m3n%H|t<;~*XE0@X7AI%r z%7BTk7)Lrv5nd0S7Sh26(8m*xp){S6wu# zkUr_5F|`k-cuW>_)5GSuKc9CE^YmY$;GHYL%*)wp4Pl>QI?BwzVl-*wExoh^xW4tK z3MoWmV#3H1rd~=-PP(Ea`dE_7@*0Bq&ny&6qJ7!?sZv+$#iFg7Se)1vuizli2oKeF zT2EuNt$Lea3B&B+~_h zq1+a1xo5z*k@vF7&N<`6$snt|+?6<$t1Ne`tWza9T$O#Tv%XN{0T~hDrFW0b0K_pPplR>DbVDVJSiNh{nC3B`29?6*H_^>CNYMxSff735J zC^|UC>j@WehZzPa)=|?c95kJokOu7IB)r1Bh;`O33hd%I*{IY&@h{I#RmT z$r`~Yj$9V0Ndr!nc+!;yEN2jN@=9EL4D4pOWmCF|GS-M;44*U@brM?YrNN@DZij+X z+Huc4Ad#M*qC=Az%=)$t6}^PL#dRd*RyYj1X>1Cgeaa2vML*5`X^+K4hCz9-lCyRl zF!I+Gb#vNo8#ZR*CZE+x-6lkuIk;v!dMQN({Ni|+YEY3(JV@2?puz;SM8doj<$*JA zin4&WL6)I0yuwXOnJb`if+q2&(`jHjBt_`70!xXVR@w@liBcBsDVo6VcGQTqT&%Gr z1KbvB#|xVd{9Of~1|ZL(<}9>wpnGsj8OF2e5qzmJ zh{o^1SK!;|0KReW2S5Hl(j+@b1voekx7l4C&U1I_PUmm{r_r2Y{0*YvSCP_pGoDV~ z1npLILO0-zbQI6p-?{*A6d{?fxe?Dhl?^vTVwbip9mNy#ZRo-{I&nL`NZrg@9UStU zcvFC66MiS)DR*{!!4AYHGb0sJ60{OS#=fGqa25R(YCXm*?gb zSGQ20>>P6|V%KcWLheZhuIgGe=oIa$Z1!?n*PZ@K&78UO5Qcs)(tZT_VfT}(#Ljc( zjLhM?h3%g0lC*Zqlx0USx$(f8Yqi`*T^Je}9!dclBRFXyICE{$L@&5JQ55idqugDr zPR;^v7`;Bs}8% z0$g5ucs;QvjWq5&InxH$dK~Ky4|LlG4}C6GghlxGU#hDJt1?k6?GZmLWP}0VvY0~P z!FPWB7d{ znY&{%=VGf>)n>ssO9JdU#NzKcG-h?gPfBn#Kx8#HrGa2cT@$EPT{H0a=TudVsF9`h zGY_cXYuxbJrEFt%B`n5f*F;vMSOhPzB9RDQHv&e2t~%G*Kn==@fbB%Q0uYR9LF!dy!# z_YPF-rX?Z)e{8QED%5vA0Ilr^TQsgPvw=%(#|;sP&FR9D=qr)e{+$T2bM@T2oD{3V8*wx40R{ug@r)gr)F)eI6r{@#wSwfs_bL|t~oOig05UwTkB za+2QxDA2P%?%j@;*~tTaBRB`@INr55j~P3swkEg2Kx9ejdAjrVkxz283Lh%XJ)I;E z^YbPA{||+HTa)9L~lQVEg#E?mg0-ixfS8lZH21rhp|#g zJ3g|;pUoEnZ(bDyp<2O5_RZ)0Q!0ulXDA%kX;%vX?wEuR(o3Uxy^uzLQj?R&s(FgZ$;=oH@9o~Y{c>^~%$#)`T(57Sc$Z83|NZ}T1o+Dw>Gc`> z*FJ1aXr|I#`&$zHZ`65w)|$A*hHx%_B@ zw|0E3CoVOD%^^RoupsACUlvl#JaRqepTvZrz$bnT!)MKL9PZ{?+9x_~cuZmcZNnK7 z^CzA|@Rv)x?VG?O8m?oybmnFAyg8nGR`G6_S?5}@;nvApbqgCu_GPld*EeIU4Xc?_ z^8YYwnXp!FZ#y>fZKWUA&0kn?#Q11n;?9qNN{6(c>VFcO=N$g{N?;zx7rL-BE><`y zlZXemWE>lF913Oj8In2=I(&{e*Xg#ODS7trpQ_vLhe6mh;89V|?&VgzxqfKFS8WPL zh}Xv42$thVbfv_)8}a4s{{%83ht~3WwKD4EG8}uN$I?XK_ayQUzW9}0SD&89#qp$+ zpWt^kVM%U^<5i-O!7G~1rb8qBtyeb1@ug2blgb%+y|Zarx0! zw>q1!sP44VC-sSx)jHw63TRCm6FXDZL~^RVDUL5lvM2DA*WJ2EeJ~b}my8YIO=bc6 zfC`^@&(IX-?LcSK{%Oy%?IaeerY*Jwd|F`@`0f9j^k-|6ltbMXUJ{z9)1kpJ^;1Ro zsb}yuY6@Q)jO*5$wA$fXjpHiYu^;9l#{2l2n0St1XH&`=$WIx!>Sj~CnC+G=N@vpv zyzbJSMv0Lv3wYzYzNNzVU0X^)fWodVZV&C|QS!fVVUp($`!c)!7wY=|D*n$!;6DKQ C6Bxh% diff --git a/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReview.pdb b/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReview.pdb deleted file mode 100644 index d37d25b7c812883db632008f08b672638af8732e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5780 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 UMfLv&^}XKvQS$%3|EnJOH?X3YVgLXD diff --git a/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReviewTests.pdb b/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/RestaurantReviewTests.pdb deleted file mode 100644 index b32d688651e25a2190f3d9930940ad48a2a2cb05..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1496 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 Isttqv5Boia7ytkO diff --git a/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/xunit.runner.utility.netcoreapp10.dll b/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/xunit.runner.utility.netcoreapp10.dll deleted file mode 100644 index 95d56a3ad868050053c8d27663ce46cd43b6285e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 221096 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

6IJI#0fi#ZyuK+&( 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 z }es${H6g8E%`awYIXp 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 diff --git a/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/xunit.runner.visualstudio.dotnetcore.testadapter.dll b/RestaurantReview/RestaurantReviewTests/bin/Debug/netcoreapp2.2/xunit.runner.visualstudio.dotnetcore.testadapter.dll deleted file mode 100644 index 0577a3cb6d3f27278cf8337b947687f94c34a677..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 150440 zcmcG137izg^?yzGOwUZu?!xTs&Mv#K7c90jvkUBUEjK72AP9&GD2DG=XrjhMW7Me8c;qk|#UqJPb7(G&iCO>O@2j2*!Q}V*eE##)V=WenYrnrv-5q_p^WMO|Pj{|5a%;BZ zIL|%8JM`F&O^0sV=AO`T*p?3O#BCj0w{`5j-~JuPx|_H3*4El%eAdh7E46RHRL}jX z=h9+suc@w%SYW(TU4~K-ja@Jo;SPj1!dGgzgb}3N{1tt5BarxO{H%d;%{hmp{44uD zNECj5n`5Z`7y#e%OH2S~4E42k_=AS3fp_=&0d*Yw|N7Ta5?zu+0PjK{t=ll|P4i z#gDQXDx@B|RjCt}1XNV8WoIJFKUfBL8%m51s3c+oO2v&6q4hpY5E z2O3Tnf`;ip-Ift_P$DbUX5^40nCddjyaa%NWEvrXc}B9q3_7Ec)&XBDb-$4`-7x^& zZaQP>>_Nw&vnQNjsDd2n&7BaOJV@xS*3l;hZ#_bjYg(#x@)@V$1Y~0Wh2p!fpo97oCI(utH7`!fr2|)HLWFJkmjT z96|6mrM{3nZkYAT9S?MmkxW_86*5hyZZOP3ACTQWO=AoF2n<;h;btchH^>;~orXx{ zH4?I-UNx`Di0l~_bf>^age z8wc>Rl?uRw3{|K4<|rHNRj=6-HnPyPeOl^V=%|V6bm7`Md5w24RhykJ6n(*-h*<;* zAa4e_;hhN*Q|iTZ7J$$h0W@`Ns|IF*pMe^#3)Y3|th#VRg9CM0sl@oGg4*Th$0N2b zQWtfuM0{PSC+6J()>=HHF2o8>=b`l=+l}}w1!yd&>oWmPXjJhm8a34Av;nl7PG%)_ zgj!JHQoNbzGB3%rnXzO|x;`Aa&am7kK$N>W*zRQZ0Yq)@ZpuC{eslIo`q_u!4vNGm07@eTfz0AVHt{3A zAN74yl;C5&kG@V|v;gtzd>@TKU{rB1)lxu>2ccs_ovc-?bO&TYtCP^F`&u=%QYniO z%u^I2l&2&{T`*5cp!Yl_G3u;5B{Ay4c}il`Me>xysEg()iBV_gDTz@R%Tp4gt|l*% zK=(Cjf5-rCarS!YhK71I)Cl=ntxpDa5w{Ce7KURDN)dlyI!mDaOw60lVxiTbCW@&2 zN+@)&Xb>zU>_qfLkcK4iR}H5hEQbZebC!~0!f?>!iK8dDR5In6>?h0 zAp`p4K%c4UGa-FRgF3d9Gus@e&aM0CRhJ&sSF8Vt3FLbl}Ap-{%l{OsoZ@|*c zt{@in1uVKdVCgzAv~(8j7cH6nZ9t*!*n!2J{o!+{ZAe)Tx)+&M=7)qOft^?~0;sT2Y>8HmRK;9guFmBwqbj*sSPcOT_Z}3@ zfx%m;H+CWbdAh{9IwLb!nGkYQe(D0{iDzH&<^Na&r(2b?l_RPsqo3=9ChgOy!NDbX)MN|tvK z%FExU@v4@IYWp;<)MHSg-;g^@Gv<)P7kG)_df``hd`>#2rFs1 z>kty0!_XRcJzU$$Zh)t4J}5SZ62!Bwi(bvV0VT<-z=B=AK`m_rIcJIKSkuLy#~i3T zY2`?@J=|k9q^+>?b?Bld(%oZ?m7dr^51J0LXG6x zCGETkUS@d6`VBMN#LUnT(>0MyG~(V0Cbc_SEj@Ag(GJ_nSeBl5m=3JQN<~vj&p*Oy z=H7b#(Tct=4V^)bIQxy8OGayEH&X(`a?mAMu}XH~BA-TOw`)GL%uLM4jihaEK{Cvz zn_P4-et!{GX9N`cjJWAELi7`-pq6y6AuTB;ZcS6IVR`qkUM7R6K3E@e&~I2kvilXJ zgFeJc5cOP<&Ov8jCBi_xUP7T>twaQ_)M7QRuG>S3CBax z?01kjZW-~I7A%$vL9k>z;=m#;2c2kI1``7!Gp4B+)5sW(Eb(ZfE?y^=22(2b-fVlP zpuQndJo_fJY+J#66BwZTZH8xNBBpyZ#DGXsN+MY~lE|3elQCiJzoY$?iWUp^?CD(% zYM%}UW$Ut#_N|?0Q)A8cah&L;Q;!8r7B6PX)WMkoN@q5l6`>;j=ipj_$5>sXo`w8S z0PGc`jwzEVcREtBtc6yXpy|DhWG>m+rWXzRVPw_is1wjA5lz@ z2$|l=r5G%8K3f99ruU^1S;X}2DaAxh@24fe*5wIHsUlI>O-O=q3&t1G!D!r;*;J}^ zd`Q;AsKR*mSm@9;Gc!$hBE*&6AeL?oOE*ws84;{L*hm}% zitRll{TNIlo^_c=a5ouXEh8CVq_f=Pc9TK&w~(RR%(K;WTX|Yyv2UnXdkpA2X>*8C zsPecG^j@cSgf&Jk%MN<~Dk8djf@2%fA%`W71-)3vC#=NR1icZv!q@vLSY?cB|<^(U}9(j39CLl)QHZ*s1KWY3!>MD#fG@5O6S9ZDE8Z!Wu@~GK}Do1 zk8qKd&PN3m6;xECY(d3?`Irub@-;eO>)JUK zvKy%JQUei8whw4GTdta?cU|{W_AS@_^~e)~$FnC$o&%QxuFCdUKU?3vYS9f3HNwb@ z`d}nKj0FiAQruY7%R-gq#wjx8hgXwek@X3ZI%*;4o>&(Av()L)%v@E`a8KS#`mhl&@wctg@+Vn2r10U z6}p&s_7p9{UR5%5?xN1b(lMv7+*8Xry-=M~vAm6{XI{C@+>E?1qQ*_{dfIHM^3kW= zR)s*vb`KCqcK~LMp6%(XSafeMR3X^MyBz!C4Wa!oV!HNQOs2zt&IFXf7?(W@ zfka4qmYIto#QFq*SHT_@8A~8mbG`gDRuVs-KQy~&2T}6?sqDVD`G1bZcRu+jdJBt*R z8TGVBhd%yzM@>AM2}6OHFWWDhIgSXKZtc4l0hgT66c5R4RwK(LGjkj(NKC&(Z281Q zmWjhTHapB0!a24^s1w!BVT5y0nbUPaZDx*xR5-_`8P2g`hI4F{;T)S}_FGVD%FJ;* z!laiQKWSToiDB_!iMpLLsoNdDEZPFv_gr|eSoK5v&x0L>0AS56KeorQ2mz(%WqL8d zo!yI}mY!igY`T{KG_f1I*vMk=vGZUW)H`FTzN9Rg2GKl&sd6y9XKLU>0wst|%S=iBIaIXYu%yckX zS(ylWQOu^%JM}~jGwfhihj3<&kz?jEtE)-3MPyc2YlNfDF(8oTN7TX)Ih*7Wy`Xz( zM>3MJBHHq*J4eV9kh)o@QpfA@!@$UKXkLf0_ip4^X5r30%}|&+C`gM1&=QE-GuFtV zL_rrivx2NKOq?zEeE6{)HRW|=LyD6Z-50kg9H!Y|BRb*!88jC+P4{zP=zboKhwaSc zoU0IWwvtmgV+X^+v}VWZ$`Y9F)g|(45P~L4(nz;pWhw=c93-^ z+oxaOeacPQWHpe|Kk zuT1Q11&T%B8Ad%L@GGBj;DiIMQ0v)NjXJs_o~IlQ4h)qfQh%s1`RRg`cCa$%j7q&=)>`+Np$`EACW6PMI|dr=&MR zNjPXiUC3eSI`ZOSsRY1ueGwsnow@&t-J>Y0bRtmB5L`AQHMDamne-Vsf_lphoCV1} zJw?Q%Ul-V1`8zeUH^qi_ZwEbe9b(J=2GhbOYq&O)U)iqp=^U*4 zE)pfi*K#egOPV^nF4o|D%jadQjn#BG<0C~~jWhzW+Gw~aP@M(&CY8Z3z;z{%=TR6> zVVPm4o926@09O78>H+#-B>f`H_|%S_%}zR!{_)_^Iq1Lr}FGM$%6z^Q{qd8O*!22RKqQOx%^^5wbj9RbDu zJZ^Fnv%ISzYO4dAv3n9e>gEzE9l%k$kUd($**@myB}}ZR)#_;u_cZ!3AC_Wxlx5^7 zK>>4vpz{@EQ)A>P87ChY?=jo3YQvdOl%#UB+N~3~H-R=0jAk%R#7g63`6@g@KxMs=mg#mBCt_0rpN~^>xm#kUUd|&96FP+mx_(i~!|rpzL{i zM_ql*P;xxR13i{wTQrnR4BIgV`JjupdoHb>eFrlUEIZkD?50$FSaIB+7MOB;ppNEl zsJ6g~R|aYr?)7RT7#OKz+(qzjg5;qn|11iYtoC3ZlOxVf#?tjx_&QUcH)o8dRJdt1 zcHu987|_DXqlejR0CRw9^`wyc|Z(O#MA<#LYk*2 z&05`Lil-IkcIRoLrx`)h`3XWAEZv>SXTb(d26GE^*dn~)Ji`VmzfgOkT;AEp zROUf4?J4RdX%%NVg|DODu5WTV(ZMF}?JNK_7z=9+mJU$D+fznUf1T+)StO}RV~^vF z5){$H@UUVTWI?q(RRkm6A3*B;6At@Udpr8gpn@TAT7mjzQ8FX7e@Uj;!pp5$w@^~i zDkj1z&_1aKGg5ClFG1u?tB;7*2c74Lu(`jb4YOo7kBQx|e_4sV)5u%jlc;D^v2>Te zL1F~SoXw>t5^7kHOaymyV2;a1>F@LYqH+QqvR0r8z?A*DdA;hLqvyK|bp7gT{~7qv z`q^V*@cTKzvkcRedJH-*677e7iLfRpcb6xk(5U;9=!Nnp!{b`QROp~p2IcugwZJo+huxR>y@+_bO(12g>JP<^xsZB4I1I@OGI zx}2PYqf%54_l3@rMdBgOo{{Kv zmZZTRayb#|R8m=}T_lS(t*(tm&?7vDn&o_c9rEWq#cb*g>y>P(#XkiMdV?sY7&tDa zc$Wa!-reloD*g!X`}CbVQFbNh8WIj`h@oeKrhg_aH6L zIbR1?t>6EShI23BbI}A0T4WXun(ntNx%G8~klRt&*T}l1Fi7EA3TJBXEbV=U-b&{? zNY~bDdCQ^tl((AhC51B(=Uk7N?w-c6&b#2^{E^Nd=-dl@>IUa+hL<4R)97tPGC^ql zr%56GVX<60k2`DTnw!<3~W&aHngM(E2Ul?LlIe%t| zwdK6SkW?7BGVhtiyqV6nnyT||V&1LZW0LpZLBY)f?-!Eu8{+zRy(a-uY`4=vN5a?IfgzmByWaAbq`ZzK7JAs8(s~ILiyxP#bk{ zHLhjNMVQJ3WM3OMlFmlqUCgoV)Y`&13}bQ)n>5EZq;h*=hiw<=6w%O;rEWmpeaPDz z3HEY9ao}R0H24r0Wj}&YHZKAmjf;S_QEvtaTihQ|#xYiOgzTC(7q>^cuJ3MY-{X4s zVMOPdd3r+B+q;}%v=wcSeM%AvR=Qz$spb3wI>UTP_p5Ut7~8awBN-2o8q?wSUhW`r zTZ-9vhp-qwq;O4EV{Za|4QX+QWIZKf*ht;QZrOGoB^CNH&IOB5bISQq85)6J@Y}c~ z^C6_jJ`Q~L2{?mPIItfO`y{bHCYGw#`*#>`RX^pFOR09c&XP;1*b;J|0;NB0zEe4F z`gc#ms-;tpnSF*Bh%-b5Y%A?~$U1dzFyYEn;*b|@s002)oKI7SseZCo=uQG~!$HMjty+F$*Zw~@PmdV(sk!$xL zW1KxeBX{{Yzv8c=3PwYhIJ~j4nA6&W=W6BR(AvsAL&SO1D@brkT}^`fHkBm0%^x4o z( z#vU^LOSTq6=5??aQ|`G#4cH&dVNw$`b6CU#HJ{wI2#)HH7)=gNUwE2AL>mxEjqrlC zSX>+eN8c;MzQhHfkg13S+6*_wly@1~pF_qxdcL61lKln4moQvhi(X2gDStUr>-P3_ z*x6*ZaR-O$XmE}F4aVu1AO+iFd5U4=2&8Zu2+=(+>Nx8;j*u^q{dJ^~1V)Z*^DJEv zaRm`9sMVh9k85mF*iP+3zE*p_h;7zboRR{2a1q<2v1nAlt}9|kXzY8ms`hC`Y>URe zB-l(5+p4jT2)3(#w3eaW7PK#>gQG1=3NjV4g69eSBMk3IsN2B-nWd>lNs4sAYCoK@ zFr~`aHXXasYTw4#LUrs&9XrozAKw?U+6N}U>FMwEWr$~M2hQ76$x<)=$O zrjhQ;NGWZC{nZrMUQ;YRrGhJl7tFow-e%Lm*)PgZ5p}V$ICh5?#8$`3s@Ig;a(xd~ zq=y*!-ia`n-f>oYrZ+_ebVC!Jz7dbW0u%?&yI_nq!L{>Cus8It7@x~JNa9%owvbr3 zu{RWMxBHtMj1arvVGX!Q9&YdIwZrX)kak>uLURiHnwYvkC=Tnd*Z4NASUEQj!@hj- z_8K4GB;?ylc-zN+4E=@My%N6G$Nx_7CzS9}AODQtPn?4$s11{%8wUEA0P zNcWTq+h6No;Ikr8U-d$WBje{>j4If?Yg)~d#FoCFfTQqW?RH?;RJ`|YJFme>gmgLM zAzuMI_QCDSGP#2>9`_KD2QF7wr+Me2`FOX&3G4ac>tuv8)?H{jX;0mZBXelFKip(b zT`l1*%$KC0o*Wx4?I{?KthIpKx z#k_AoB)_-M)|LWv2S!R&#=O}^}@V_=WX!$GkjX^ z%js|vI(Tt=U)P>-Fug4*L@R4V??@eJ?Y&KtWt=_AM3(y-Fsu?CHxl$7XHZ4aHl|ai z-+n?SWSj6@W}C0%r}Jtl#!Yi@oL?y-DvpF!8Vrgwk*@yEI(8I+|$foKsG zHQEnusl#~W^cFQ1%3lcqdCKuQ_}GOtxoWquyC(RMMq_WzM+++*7ZelG1ek4*o~I$g z=P>UXXu^2zqU~rlhHjyEfN$z>Z~CyEB20NYFV*M0!5F>JTPr2;W(_Z59NdS&BOTsJ zB@BRj%fMvsPXtWaxl1kfI^u*RdySgx9V4hB!QG!E_^5*5FmFzMi9=BH>0tpTd)G;X z=F{iBNk|Lb=hY`lz+|z7_AaT-RExJ6QJC&Q@0=HM?G#ie!h&Y7-}uCQ4;UIw9@FF? zhGBXgH-nn%emjqOd2q)pm^<+fE+bjEl*2mKGe+G*VwX{(aSsWt?i11MXLvt>x8cW3 zR_*NHBz%BsNBhOOc8=MwM#-jnN_!^?Q<~CV&1jsN(szGP9kEYr0B7t;V0$fs~Y?r0IB?w&x(l+;rR)yozHG-|2Z_D`(bF2tGzGoKkhgwFGrIxI-9LkF zYzk`s3j(+wq^TA)?21Z1T7_%&n&`D%5}9(qS7SuN!FqG35mwL|ZD`2ui_G%3LmF-l z*?25rArRTWA?*GgPO4z!7@J9cGX8zW_X*x~KOlgz24&A{9?HsR2fxOSMl%?peG^$M zW)}Zo7Aq05t>jOg4*}silr)~_g1+n=TI+<@9k>Z1$M*&y}`@FZ{^)x>(dhh8XuFTJ`T7fhJ1 z*|;Q!;ljez%YcJcY3IKy@%qLOT9}o;TM)AUmK`MGJ48V411UH5H0-Rwgx@9_&)R0! z0H6OBpipLU$h)=?V^utfC#mJBx&m(W>J5#_vZ2w)4Gru#*xiGSaU5)DIM}4nk6c$+ z4etspC1=bNH0MSz70y?{UxJAWSwp&tS( z;9_wlzb5iSlLSA;@Lon5`#`u5Xl2nbMc{N{dUc`^jK!n}i5TN#kf?xmR>`=9G%=xJ z42P(6VOBNGNYY?64nB-2%&v|e#pqgzW{ecb=>?zs{ZbF7guLsD+A?y)xtK881&j}s zlC+VHRvBYNWrexbH0@;?#^|ijYwfz$48vKDO4GMX9-wlyvaxir^WQ5g8;Z2ZxU5Jt zflARj8LJh^7_G?p)iij8MNyHA(Tc>{rjid{=TKB6V+!aPDxL4(TZGDO|wUthB5y^k-CisWseQrF7|EoL#oT5T^IeXmBm8c z?oJvxwnG;i1vcjDIX2!jhG#)yU%{3u6Wy{`DJQF`C)sx$1TNW)=nmvLzV4opV~Jh8 z6BbVzeFOY3<^~l;0q!Bi3*Q9Bbg>(Qt#Lld(&gedt{+Z%w?kQ+h5LvQ*Alkf0EyVo z)I=)I4%)zRIR4Wq@7qXa$(CR&-Q_)80X2BPsDLav$^bKVYMD{m_uc>nuAOoYSkZrk zQ?uHKvKY;+ZX4BP8NtW5&ii7moFX+QQKXdkS`@-Ir}d3v!R_td#VONJ(wq-X(>f z{Jz#*6pgaC;x6KqhT<7%JUbQIs+rD@TMrk1n8Eg0)=JFU6gk>k=V6 z_$M{Z6*xy0ISq~bH(=Xv*~RTZIe3L9Gn`M5IhcK=6OmWY4=K4QSzPl+aVmYg?%Z^S z&>ZHg_Q1QCY)0JC0Lw5md8o~U8|ATX%Dkrl6(=K zTnZ0L^ z#f**1LUmHKl-BqF#uzNf#jdU!$)^mdLnPkGtf!*c`*Z^s#)?V4G^&_HM#y+g0n?Mp zjt=h|DfUo|Dfd2wCDnv`mI)bCF^ujk$$2QYmN;{UFZnmxs>RTnEns?9DGOemQ|U0_ov4shocE&HrQoDxR#xAk<-GL;=xHBm^Bj?I!)5CCf#D^W z>@?(n3l4hDnn$+?J7zB*%`sdb)E4zwkmF*6m{bS>u_-(iq-`psZ7QT~Dx_`7(l!;+ zHWlI(AS>GnClS_Ggw9&52#-i=E4qnR6p7+}Ei84}ilTTLBNC5_6%~!;pC#3M54QWm zQ#?|@;83YPyk@DWKE_n&dB1AHo-!e0D)gML?o_9qS;{zbs$b`~cN7KCWiDU>P$@-k znK@%Bq`>sIl5kv^kTJWLqIlhC_5ilkaHz?9DThEX{$zw`_HU$k*LU)&N0WCGeR=$9 zkRw_t{tiF>KKg^~s<4>oMvpN_gYtd|bapI3j(S*4>H*e)lC0D+)5V~OUW{X|zB`#Z ztcWX(zkb9e#Ul`BEz;&6LJ|XIx5j1%!6W}5*%z;x9Zc>#Q+@^ISp=hKuy?v?R=htp zD!i+kX7Yrlojycgy^>pJa=oHPUn1*?Vr2d+MjwJMPMf={r}wYSuBT4kC$c2f;@}*wtOOJ&JePB>Vq(q3yX{UTD*K)~o*c`pmj`tFd&4 z(>aVLv9f4G{)@Tq%IW98Y6m`h|6n z4ZJjxSJ6m9m5l_fu)wi=VU@Qc4%=$`+305J^tyl?dQ zx3>)MOUT{3366_JmhIg}@QxCA55fD2ptB9yO+9AF5njiG;5Z&{(=(D1^d1CR#d}gT zjM<}|TIL%DCQ>+#bheU9EBfnSL7ru>iDwr>CQV~&bHp`YJX5q*P6W+W01ifRyEfVrq82^NdxiWk7NKUt`sES=gu)*80Cf!N zG{Pmh9c{iC`b3??L#z*Ldm@6DGhm>#M-(H1j6iHNV);6$w2KuHrs6xSv88&`^DCvE ze;)6w0>70;jxEu}QpL`|FtO4q^*z{|^3R9a=1mtfTHD3E%62hI;5?Ix!=1#Y)y`1} z897q97%%Mh&HZ?d(}_fy&hb<)9$yhqw@CD1P`n>CO*d>@V@IDRd9!_@`{27LvCb=T z?FnG|q&o=dgL3Rj@aimSjhutoE`|%d{O$xatn~I)>?3Wuk z_DIeK&}DFXtSLzD{SMVK!fycbIs+Sel}Eu5XpXuYkz~6YmAM0Zx2St4Fvt@fy4~{` zw5-5T67w0qW%(sQU(Lelv7%p{dADvB>}xY9>vEK}@H0xZ8H9$r1+IHIoc7@tqs(|y zWczUE2*7xy3Eb2b&T%NnAbSn(pfQ-{pfc=1c3Z3rdyuTy6*@FNNcchu~+{kfnfecdZGLa^w6tgjD{b||3Z8#|8x3T7fGDcS?!dL z`?zNT$if0_7o9mw27Nct7Z7~{(Xfg#`ZGjB8rwa&5`7`jrx1N=CHj1#Pa`^4i9U~L z2w}VVN;K90R<=O&8I|aZi5?{S%u4h{L_>Jng-m4u&n6m!(D!I(rhjFDgZ7<<`Uu>BCf4KTt~zgDiB{J z;(9^ASS+{LG3nf>Yj*LgkXLpufBu9n1}eV+X=0Yq9Cn~OE05j=Z!M#nnXCP|JFr75JymN&M|AGRRFA8&BRIV=JUu@M%)*2g?7gRN8ha7iJyt z>_T6zLq)DHYq>^*9T3CIw%;BVI$Qi{vK;}+|C`QegBbhc*(JVg7#y$$aBqTed5j5oFP4>~ zFBYYx#LxjL>1M_l-mj2%1qqC9-)d18YNM;5@!qYFw*p@@ze?0DZ7|4ni&_J@E8Bex zi+^eNru$WhkG8PMfo$&00Lm{XmP2z~iTN6^4*H&Q55T=_?7Q;b>hAd7qWRt?d}X@A z-fQx-}=uySy$_K&+~50^A6#84|#r@&UZeQG3Rk_f-m}Oj4}6;#nguZ zTkd@b$FfUdgEbK&kEshLY0crV*w$!J$gjb{_+aHR-3dl=bTb>Y@BI~GV85ROge=#j zo7Hi67#vu?o5i~Xj|)eJtYuZkZg>-X{C-vV^qzjt>uo@MxvA>05B+V~%=OjvY5llY zQ+0d2IKK<4pZ!Yj1$+Ys6Vfb$ZmBAQ?){YfyKs&Px(_hSlBWJM?e|KwoVT$r-N-r% zN}Jd3DzviS2T`~4AYAt$21D)-=;39q4-@x80;c;2yja+M6kZKBT^@s9(tLkI*bl!q z+xZbO$Ek8UJHA;nanu%MrE5Xi4E=D}<60jAjHm5Fh>!pf zuyRcy0U&-?L`VRLw~7b}0P%JaApy+COoh3DIt+TrVxEG9m1uh!W_5TU@Y7I?KCkQc zo`ZEdKLNsdri2~lyaXM>rv2M_reIfkqp<1r0b!5;9ZkkkDc94riIhu9=h zo27kHj-dNkFgGcv@JneWltX5;wF}?z7(e5$P(YLO8^rhQ!JOd&7{Am19s_8ey-sge>H%bKgYPe*o+5LB=@K zScFfSWKr>-YJ#}a&1(7Y^j$99$i*XGkcTk$Q8cc6o#p#$en zC_=C<=zbXjI9M=R74~U4?^1V*fQ^~{3*JuBFL>ib5c{K?_2C_FQRyZVJTrd}DH3?A z0KdmAG7ygcR5N(KC4Gp;KLAKeykTPP#BgLq)t{lptF!LX zV}pS=eSH4=Itc=!qG++~-{5xFh26iyufZFJpnBVe{|HEW#@0neKLZ_*GU)xdLUPE=RzB52jOo6Q z)Od`zeOzf?Ff!`(m!Z0-x1J|Od>Z8g@J{ecDq+0q z+x-V2yru?Q1|K4rsg+6_F%&>An+_xs;cz65myN}P*?%HhU-~t1%Jq4aCmxa)2cZ7` zg*YB2O@N_sXBzJ&uEUFR_^}pbf(713AlT6WUO0t{TYLc5=k@Xq97_nBOl^q+CQkOt zuY42oN_FxyATj z_eF}!B!#`p6t?^EPAOV~-l5~GRm>wWZE}3MNAdit0dh%n2@GI(?DUiP{{cQ_c&~%J zf-qi*5t2%V!Yf{h(Imn|B4e7Npc_(Gc%cdCH9O&y&$BAVI~3VYZ7aMF(=_BoC3?=t z_eMEbVWNlTypp5Hv21VN9k`ewZ(fvBKD-!&d2*r(V*o2l-o__qAXx)&EPEK*P1som zS3dYqIJ3G#Jc1o!1a;Uw$QagrnjZ{FHw>9IJBF1%ZZtMovqMD?t>3@cr)K-_qU2kQ zH{?{P4pCTK-bJN$VU>tW*_;+beoH-xI@`wa7hX= zZ^P=@BT_gEK*iX5Bz1sGxzGV)_+^wdT6b;OPfNKf*hC7SsZPIDbSUW=<~9UP1;A&e~{eWs1E!?JP|tm=3Hr=xPJAY;c|89Q*l40XE- z_54NnHSmi+oR6s0z}<@fc7*lVVXM!C(2i*fr$YeR!nMc-wSOHw)IO$}Sbxd5641j+ zY23)Yii#}`9s*#zg^k%UyzTZi#PNwpJ>G^Q?l6{ZIGluCZ#!`Wdi0=+M*#3H14dv0 zFH{Kv;kppF!>o)sf~BWCVV`fsxXrU;)&xH`fzdmJ(L1UK?pU^gY-;4PN1_%0%Bnt#=06R%x=} zvp5D3y8C|RDJ;_~c@@qR6309gy67)~c7fb`Rk|w`=fbqnEooKFaa=H=d=_&Hb^p~dt z@n&DqO(4Uw1DKhRId$wKK%sT)^AR2INF_!T+2Lz}r3qX-S=2y$gyw`hHc31gos1`a zxm-MbV9#E{{pOBDOOeSAFezDj%XSx?6K2Fn@)|Vl;L5O_s6%(a0VC5AuWOP=+MGRs zF99h4byg%^m&IjW+rgDndu*MBr5c+OOr{R2tuv^2+%dIz+HNIU=;MoH0rAh{{|v;fsK5gy-zJ&}+y?xQ224KOn>(42_+>u> z1>z}&8)?sG9@P=-4(73s8te|`u|5l8Z$AGO@k9BW#JBQa6+fK6nZAGB?rRKp4_Rlk zLVkh~BYz7qL)JM&^i!u3;f&3ZkaI3eJ&62|<2ZFLNcbHc3}l?M+y<{9hRQvUNhh&R zCc~+*a*W||od3SAX}AJ|2vD9+N<1=PJNux_c+d~WpQoW(iWXRrRCl%Eo~b?#g|d3m znp5F?WKhxHZY#3w9%PJWE*q_3xnMhh9ENG4oc_ubf8T6K3n>eqC>2ktIDD;UoWMA z7ggutF_$@#3u8D{P8Tk&rokSX{>EANAY2`1fa#Un|%G~@1vm=i95yzX++ z`)7U@`{0^59w!Dy#zwJK|N9G%;70onyZo+qeO3S+v;Xj**Z}^yms#vrfK~?sHx~bx z1C`DYNWToYz3_iI0GovPaSsxEgUW-BcfLIvaxqiFUUE_{!{Kmm1?1+e%;pOt$C=@% zyFUQDqjMEJerYwk8hVrICZ`LT2rrl-WXo$Kb^5-?BRG$9x*!7PsL0<`J&=jNIPEIe=tgi^4UJ<^b z6dvTV7#rx&wLQ27PD!6F{IXjbQ3o>$yS?Qo+f1D+>N77w7tkt?s07PFcO8k>?o8pX zujEmzw#hgS`H0mqA6-o;^JT#P8(1SZ#5nYS0<8*mp~0h{gBpD%pOs zWulFgrk8V3Yj7kGCF-P!O#r;%KR2A%1!k@ezI@Ni7t_oQ(=oDh;oXIblXrZTX!(t= z|3urH#eN<>Wl))OiwsG696l87C5txO_S(=e+^zMh0*swbcsM9=S1}=bN z5!S8&D|bgZcxN%FU&>K_dvm!K{fbV5vf2jlu#L8X45C`(oDY>{pwk&dZ&I$THq*Ve z(yXMvff4e381ZZv^n6}%Jdzml5ILqL5g@Z$Pp~L?hnV9$!GJOpNF>;g2GD&bJnR>a+U=6a8N=04Z zc`!fSkrZE>A{Y%EXo|l0Hil%%JsdTj95PaC@fCTl3H{IV(R$e4b*tC)3_Dk+vdq{) zk}^|Ymev~6ipdpb09j!;SfCfrSQz7ULX%JncAl*45wtek$V>a#z-o^K3Z0C*m42Tt zh!z_?`F|Jih+;TL zK@s^?2&Vk=IYVJYQ8|>+$dLp#asa%TH9rhI=R2eDKNtT;;U9gJ+`WAaK6a5C^TJh* zyYu@qgC@b?LW7P9%LD37{T+CF9*juSG*{D19RxE?IHG^5;ayT998pbZcwZ|;wNyu? zXKMz{{gVyvff7|~HI?B#TZ$T49hHQ+=U9SNOBP#A_Gv|swrcQwc6=A7ucP)MzOIW} z6n*x`uq`Z#u+xd8JRFa$M^U3ZA}_-+mT~1_c^SUIg4DXB@SkNYb{~j4NaEOF{kUGP zRIEYlc$S-Gl^GNh-;YnXfXLf{auyGw@D&%JusAne>6)b``&=9KV_ISRI!6Z^wsI z%JGLIs1f*X2*S>l7&G1DDihp*FM*U39EqTd@*3njV7hOjlJfRLxP6+tG0G z;wofRQehjuRsk%{$o2i>eE)dg_vq7}LcG%{KfiT)@1efrYpVFBD!LfB(>Yl5zy$JS zi)TE@1@BZLK2J`#n8&q(JUNqRRz^^sQj=%Y^1ckk1p>cygd=m6hYjOv*m9==-z`8Y zyu|NBCeEDsA>F#Q(ldV7geK+B%gES0ptZTs%(e^aq;G zNucypsfGc?uLKQ1T%Ye26%?_ z({$@`>x3H-F7}P_i1%cyE(Q_8Bi^MGp|H0AW>*|H^u2G48^tTu5tueoVL!y~`GJ1U z`_9r)gdyil*hf8v1@M_tGImoHdHBIEAcogxtvqB3%JCG;)xSg7sP^{sES=?N(*fv?7$0BzXm`* zU-WW0f4skTio&G=ynEir-9idjae4d!@>cSAisIni1ZP1Zc%d8VxIw$qcs?0#D?^n2 zkO=dbxBp_SO#&h}_nS_d*gL+re|-N0Y*Q+{4g46mtFR~?jYj(r{N|$&-v0z|>$W2R zDfP=&l)7^!a0l$K&TkFK+kQqbJYdn@h`R>x%V_YU=N;o7Mq>QXPX-Q}y}do!2H>B8 ze!gs+x&I6QoX_0_0Bv8rfq(9kqd4-NnTf!Y4mKqCE$}g4S26s9M4|4*C(TIwb9@17 z8QVhem3j?pJN|H|XZ)L_L>Guoh|M^qLXH{s1ty<&?M+CswL;|NVsmy`qh^DgM>c@ zrKSF!ru&i2d`~}O-8@@ezXx+~88c}{n|fmUZQQX|Kbt}R6KB(%hFmPQ-@HjPdeyy48NOM{{@^~( zZ-O3Bc1zs~w@Y6E0NV_sa{Bo3HvN~|fD+gKXI%ozmFI~TSno5ozyN!hhsguBAo~qgOTHgXSW5%q*XQ`)_oxR>w+vnkFzyQl-tAPd7 zRd)Wmd5hIivmZTZvAQ4bER|bDo-L!v(||md8rHdpSCl#sxLOu9hanggSc67|I$y)-V%Fx55wQd(Cv}%A0)h4 z!UYLGK1WKICgfFqO0rG$SIE}y40{S(S??JANFRcYhYI?_5K+0AB*sTYSCumM=zv1 zYz<>0TOUu1ss%FbwCzE<5cr+s;^n%>PevSi8QiS_D^ z`M;cNslTqEd&54Y-y1EcULCfHEo*m#~R~Ap2(WRPgN_7f!K3V;K;wuMDR_;8y zZ!MtP*-H!G3!G=EBgBTc!b&Z5{g~JK>ePAbXubP`^I>Y}K-%6KvAw;;?Xe#{D5?I8 zwlGg!1NvF&E7;&UT>ZO`?aM{)VX4QrOqy|&3WaIao5Uu+D>gY}D{b-zNNcHc2B_hX z*lGmxCZ~-(7d#h6` zSDmwDp89>`Ykh~Qry&0P|i}V z5_>TAoMx$yA%9Z6vy5pApxma;o$^}WHnnX!H82A`z$`Tzwr8memra`Csr*1YdXI<2 zDpsOSEww`WhbMut)x=)fn*n=cFTXZHmm}LCwmKIgzX5?bLTz5GAw%NslsFSlX^?VC z2jfh+k2hS+KGK`E5l}054OjQA_NEPBOdPEup#1q3Z`uWT`)!}ZZQjhd2E5aqTuwWP zPz&GOiF99CNT^l5|2bS4`w$w%ClL_We*mG;ye9-`U=^V~IbfG|B8>6Am3N(C%hAtDH zMv{r7l1&>y{F_QZ-84VSAmuekPz168BaI<35jXK$2(obaMH;8Yj>e zv@Am71v-5lp{rHDKo9g2x<<_i&{{iYp1uA8b*-8slf9jP&ZhYt>3fOE8mahsKG?4~IT z7BmKa2TrpB8qfeBEaO4>EkLIRey&cDxJiKWfKCfU!PDHlV8I1= zN7m;h?z{7u?p1ZIK$}((dP7|&(3&NL-cer{Xx$=0@2PJIv}iG*zo`2IW+z%W=F$V| zAL?0w<_Ppp_0xa}S+21e_mTQVz(nrY>k#Ngfxacsztyhgk_7?3PgSY1p%Jq_RTVVeR%4}ebK);i8rvwhE zD8s3N^%AFT>9W8{0%@r)51b;sH+2~3Z%<$ZQyi)_LsQp1A_wT65Sa1j6k|X zw+7A?NSEmLzy(GvYU~w^n-`!JeHLBV`6HvF0_waGwWB&!bX0uQ1a;HM5eVOcaHm?; z+GuvF^IGU`ZfXPOjyAf-j-VT8CjQM9hMyGo`+}L$PR!(yZQvGaAB%8{;HQJz1hr~& z3Yb5(^}}szW9*_)Q{WywY7X3oM=Tn(V(^eHq`Ym*N?=Z%ejqS!&tzVInoT!wz9&fy zHpTF-_oTZ(!naA-aENJ=a6;TmCH6_dFBkXCv81UJ{82*Vh}$i(U4kEya9-S15<64e zI|Orr(3~rnBL#E0xW5wjL&47$nnuAqDsFd%`A!!15zSNZcY-ph&f9RRXogz)eN!Ip zsqJUN{hDZ_TqB+8wGq_n??;}4*t?o8f&0E-CP=-H2YoU+a(8D&{k!|kIE9Go%#4!AEKLihMBbnlya z2Pm)Zrk#ALh2iVPCJ#s23F=>vXM%ci#@)cbKmYrq66(>VkHfub>C?#ZCtF@X=?)xm z3HY>5Z!`}aZ0Mu=hhFB}yyz9ghT(Rq-z5m2MOk z2yKk{12GNn!mR~2uBSg7WvQ@)pGR6tJ%Y5w61A=W5V?Q2j_x=K$Hbk!H!+P3bO)x> z9nnYk&%JcFE~NWHKixADA0n?xNp2ZE1kAHj%(e+?&)x{!s}7<*-)gTxcMZSF+)!bRP1M@dU0hfa0k=pMKyESLiK<{5W@bK}9Ruk7fBz<7e! z^pCID57V79VOIwZuAf4?y6OPB6QRU5$TrG_|K=r=jIqDuPyTsVC5X zTI!4g;^3oQH%-dqevR!cOM5%^P9kIA{!sP6wZl^wjxpR-Hy7?thY|C^aAF>f&y`e* z5Pr$n3R`+GL5n&LuBF~!ul|%UqU${@3CCA;V2l(mfkCvUEbTsCzTQJ7bv2 zMXI6j32@ifoRmk^(>HB9#_g5PU6!`B*g?*%@fCXHh+ z)ORQ?@GkU?)bkMB+eH79pnsO-Z=l}`si1+0=b?VLNURQ@alnVbKek~A?x%-;)N6JW zX>|D5#t1N#Y0o&I7MSOSQn#k9``33A=Lr{Mr0!JHMwq~Kj2H>GK`fJP!IJiFNxNn) z9poH20{G*Xua{QP-H}v>N2tS#Yv>NurGQzYCc-^5M)#rGS#WCtj6J|)ef>}^2gVMs zh1*rP8SZal+u%0GN&lv3-mWbS2KWfu8;4^&jKz~YW=Fa+rvBwazg^neS*L0`6@KTc-!ARK zN@BVXJqXH#+Si9x_qTQ?)w&YY)!D2r@}Vz+vQ^zE(3$G_&i>9e^`1aism8|Xod|X@ zhpW_n2QKd%qq=-(c;nHXj@q{bvvaE2%ZHvkzi#37QCK;uy+uCgSFFEmL?`Bz~7SU$^Y4$Z~b2K<7ptT{)_2 zxw^oIR?oT@J5!hYP+zWq+bGBt|4{o z=r;g8AkgLND&%mudP$(GRIKrBK)=&*Qh!I_*=dnQopbP?yN*!%`p~w6|J8M*x}y|l zjXp{}TZ*e6eT=HvQ>PnP**@A;t9__*WqS1gqwP)Lqb|<>@tN7(93Z!or7_8BoI@nUh%@cO{f zb&2?bu}&c~uFSqftQ=0Mbc**DU!T2N95LAIi)&q%iWuy(iTBLn+p^b)(+&2-{B7Bn zi*&kt0AAj?k7QpVRvPS)#m{D6DZVh+oTitvf5Ja8PCDetS#M=uBf=wfywT^rmwl}` zl^niE<-A#+XJ02CH`wX3zsp`HGDm6Nr;VPR>%~5UT{ww(F_ii?#M{f*dXbA%?icj4ivpg|oDtiA&0tKo#CFllm~N%*qMfmi*ptzYao#umLD`V7V59d56?$hz&AIy0I*uw^Ux#<_cb~2`O ze^C6EF)Ni1v?Q11LGhWv-m5Fic}RS1u)n6?67#V5yTNwkJeTu`NE}bK{YZYElL8O< zB*t_OJBfk67d7Da`_p>h}v9Bi_?CM!A!po&H|*Q0~9f2r$b1SsSC=cUxFr zs{0EzMsB;kJFP~kTW8A z@CV{j%|pD5!H2~)Ha2MRAH}^UUJlyjWATu|j+=YpDIbd+QM~62c4~eKBwsez?U4LL zykW2h<_;PBiP*0(&hJxk*v1A8{#;~Efk?#G8?NJ{5KJ>v6X|Rd`Dw({sp%U z?kf)(Y!hRj80^bg_ks7N9q&>}{eK=v03^pVu8`xPI zL&+qtxi*#ptcfwwXTKQSPhMzaU4zr)M#espwR86j?l0RW3;gN%H&Cu(jAqWh!2{(r zjA_Z^WEW#MiiJf72A?25Wo!emJ+UXsBaE#V7o7It;1gwSDW$3B-$`;QV>${fj8Ppv8=NH{w6U)TXUpA;try#8|9$XaxsS0Mfyp65FPkLx#zwa^mTd70L^2EMst?yoxc(@Ax67%KL5Xlp#g(WyW-xqvfnA zluD<#q#=LE82JWcH;Qf5MMK8Q@l%O+qqyU=2}8!q#|`%I=!zi|W$am+w=bu9NU6+Y zY(v~XNAHQ9Doy~sF?u<;sWJ7lUni!gb4T>I!o*Hk%|u}+lpydhKNd720N+Jm<& zthBKdQ6V?mSly7bWtWXL4VflCW^99)Th~5hhWv&wSY20-zYy3z4EE}TJ+U*Ss?fZl z;|Ys5*f+xoOJQuic)OUe!I~%TsvxYw@LpkF*kC!F<^h9cOeD#(&ZZpJi?`AUyH;ad z_Zf0GW7shaCSJ-kE{mARsRS5XFFs=I0mEzKIy_}~AE#41dPfH3u#d4%4ECGyPSo}$ zdUyxC56Z6qcFtNaa=pPGoASVr+45l> zPdpE-N**x0UFSYEWUlbV80u8a7c~3(w6*q z$P)RE;axZ~TX^L`#yaCJ8#yM?D?epyLtMjoe;!gRzp~?fJETr#&Zd%G4jc2xka~Gw z4q zqS)L*Pus`*_HDIq+O=!MI5|zfQS9W*SWTc8VJ$-K^Gay)^d*Io0qE zEn1m-v#iz_eD0mV!Uk(!d}Zzid8xtP7_~0SpLt(-z|3JqC zz4C|LhvcMMo#whZU*|p{Z#LN8xkqxJlrI}>QGQv@4tYtPmi*Vkf>UlwRTJbgyo z(4BH%J@GCV-!={y`U|;_u};y{a0=d}x3*F9`ZSg0JS&_0gy~iLIr#=-oubpVQ#>c% zGuYFvF?e_1*9MyvH)d#;OjydPP_GQ#B}Xtu>+}>ny^Kp(lqRs*c$?eMWrXQ9^+max zu}-YhHF)db>2!J4tkbW`Nj8=uUX_(Lc0$%(S^}LuP6hEU8M;s2)68Xw80SAt z!Q`Sw*Sqpb#yaCt7I|>H;W@_i2st3%VQhnVvhb%v56C9Eri8lxF~3V3l=m3ygb`ih zkbH-+k0j;(f&9Yo29CXF=m+w{Hj39Nk|#X|?1;gNvwt!4u$*?j<_$XKMZ7Arfw4pK zyE)UuALUBJqerzqmi0lBTrW0_dTZ#%a1udr{C_`BL7bCB?0UM}~eW4;XA| zojdOiT^n%M7;tl%%|G+;{rOH$R0y(rSErioq4c37))6_QxJ2@*`q^lzaE6f^`n65k* zQ#mh>`^lNvB182x*zISINz73F4fgMnY|&qxWU%8Wk4fyWat$`6GFuE#BMf$4<(R|) z>U4wseL=Pus3sXKY2lc}fvUn_L$NnJPR%yhIP58pQwt5Y3VYw7HJ4f}z)x-sQmq<8yZkwCklJE+_Z9vtFH?PEum{ib49imYbyB=ev2kMG zVc9C~QjN`?bHcD(Rm~V?@wwT+E@zBwjbTI8&5V5%f9~QUk*79mO#X4k8N>3_PJ?}T z${EA*)jorb12$ZJX|VaD&KNdAC9a|TwBE(*-5L8x#^472NR`9bA=$EMKCqOvEGaIY zI(gV=6=v*^Jb95{oTj#4Mm)k+im~d7%eCYWX=e=^uO4QsQ#`q7_OLV6fh&jyZ++$^ z!%9`tPqgIU8y+4uUG=$IV=wr344a`w7;IK!lA58W8|=7@BsEigZ?MCIy98eBagC05 zV#zOu%~FYsbqe32-NR<9f!7hQQ@q-6XxKSw{7o7Qr~iN-c<*9tgBU(NE#Id$->g$P zWnp%Hle%f6mb|fQRK8!uZz7CZUWyi#&X{hq7B%A*j>p=qMJ-^=lJqjRM%*E%%NErX zB^i#ATxBF%)h&>`gt3q0;kjq$x2mlMlUeV^p09Q~;ssS#6!tP>Ys3|vIr%~LTL&+s z-ZQ+V;DyxJ4qjOO-SDP+7UhRk+^vz?wyPAz)`&vz+EtE&w_Ft%-d&zCc+zd6gSSFW zHN2gkru-FZp@X+l)ka}UjpQ{k6*()_MFx8zz9OeXUGI>*Ky5U3+CS zJ?oIXP`zj*$HXnqzfkQp*!yBt{wlT4U_)ZpT{Jq*@oAc-l-Y zu}1tMc}@Om)z4rubya?+I^JNvPK7sH6)>jDvPPZGm>vad)FdMr@A^sp8g&+98^pVX zdt%opN`JLjpLyB1b>LZ8;l$1PSE-j-@SYJ- z2K9#FJ=XV`{2Ns2?UDR$RL3#4Mtqjilz*ctaPV$Y#fEoTzdiXksYQ(Gy5Fpt9FjMy zHX|7qcOd^}b*aIc63cQnsC5S0pY%cgPu1N98=m$_{zmnT!OlwkB!83IZLsow-{#+< zvbRt<*NET6)Vgj}c?Ns6UwXl2HPT>dX}JYIQ)3M_Ev+o)HZ{dyiFm%@c2!}p2a-R@ z-=dZnY;?jW`CC-|kSi8LZ!& zf>U;=dn{hzmjiaF2MyLzxVP^P^`yb-(sqg+s!L-SFXtBQP{Zz~QtNU)qly_@BTkK3 zTJVgzz+nFPZ1J4B!Xf#bT4#9gdR7!Xr@9!^efyl+8zs5VNVdk+x}H;?8f*i`OP3P& z=r)T@?kw1)Mj33bxU%3^YMjBAC0tqXyec)=D}C1$>{cOz^_R7-7t~b-t8smh|Dt-x zV6TbW3SLsr7%V;Z?t+)qZi5vhZ7R!;)g--L@Rn*c*uRqBEBKAN zz+nCR{jp%5qL*2bF4)}fi-Nb+M#gln{8nu-y!7}L1;16|K9aO}aZy+bV{62p68{Rx zfWdy6a-`sQ>LrKdJL(O?yC=pq{2e8?>D=#0$rkUbB!m6FA7Ljjrt^DOD^!ELL9DqyhJ;_8MRR2_`zG!Lmx!}}$kz&@m|GuY>G z&lVg~_c|m$P!AbiGkWC%MGv}bj8SRafe?k;$0m3U}oN{UN- z!SYWS3Z=Xibhn`oA3~DrI9AUvmC7YH*HN098wYvZ0xh6e^su%|jGu^iDTo`;+8!}{ zHa|f-3$Kz9pL31=Q^`1yH3qL%6s4z8`s53hqIw49LTTcj>KqCOCQy#Aj;9<~WKoW5 zAsHi{M=!^Uy*c>FVG%r&(xJ1{KB6zmnIKL>`4h!+C6o@8S#g=ASc`EY#ihtsim!QW z?43{PpNkybq7%>~YIqcB$;;3?61PSzsKi^G0#THBr#?cbu*<>KvHmmp54i;>1uc(s z&ZU&MR}$rg1r&Z`9KlaU5&Yv+f^#9GaBGypR7WY^DN{^QD9PdBM7g<);9iFBa=(AZ z;ny$%mH3v!ix_TaSi&^xqH9DD?;Dt8Nh(v*w>h<$oco`6E+6Fb5JmDRvRZ&fltqbz zmFSO=;}Uk&?K2k(Z

`O~ zbCbrfR1d2;c;}!_=EYSL@k~NrtjVA&Fy z{u$O3C5~hLAA=h87N*rxiK-8%*hInP(az zVW+Ns?JP=XIaVSUB+2r*cYI2U2hZ%Jq~HcP_cd{)S?l%a()w@^;!3fT+xd77cc>r&}CtHaJ&X2O`QE;Czc3`n*}EgMyj#=DED{63TcmKd+LnxeyhN4qIJ z`$Jr^dolMByzA5t~nA<5zVg+02^CS$Ew&|Nr33ag^p5v^GW~dJ0b#V1&Ez ztP|07`w+Bjp=e3cpBJN-Ey?rGrtqO*B(F!#e-b_)tF00*p$t~<(`b=+qKYANDPM4N zh_ZVT$vY{O0_0gz*J1$V-FR+-`u)Ksnp2ZTkc?hKdy}EDK{B!20&!wnBiR5ItfOdt zNv2znMy#a)Oq-x=R{1G+59f|2sxap57Cws14`}&V@hZl~eVky7;wBx&GSh#HB>hdkvcVdi9Tn@3AKD!hE+ZXKgf`3)f6*MfIh!cLwKo^qo5AJFcVdQ>`IsK1TPc zv&TutO7RbjGz;pns(Ve(=s$Cs+Ro7}qsQJ-Ue``!J)d`My__Af{vAya~V7F-xT2T_~wyk?1Gp zi!{(q#+yAd@yW&~2cPkvO~Cg=(N|8y?bXTRM0_@hQhb;4cbqK4dq~QFmjN#qow6L^ za)i$o|CG~kDm_h{sAghRF2f7wmf_tl%dmG}COmQ(Wa0(ikp=YN*Rd&_1=vT71jL(T z7?v=sU^tuM0)}3Oeuh^8N;ugGJ|!uxR5#5Wgm*U3J%@NjUh#Bsf_FH=OW*~MS0{Lj z@J_X5GslY`0LyWbPjSa8I^&ObQwpgJk7Jm{FwgxY&UeSUeK^S_xDxMOnN)fm-tR(j zx48=zbSJ*F0r z?nrKPzc*@`E06nkuaTKrbGhq~J8|)SY9CWd!0mD!5E)acM}AWjT|!{I~jt#u!|k1*v3Q`|@aFB_E9M~NIxi^M>O%{u$ipEN1!fMrMUCDW*))$eb=| z#8w;nEsZrXi{u}D!$mz)iaGtYT#Epw8IUvv!kpSFmN}oF>&lY1jk_ggm85Z!C3g+k z9g`>Nd4+9gw^w4avzwA2FRsU&a35&KdEKn6W&|Xben<-S7Tg{wpzSxvkcUbL*yp@>OmZ(*NDy zF1&qc+02=-Yq?%)CCy66WY<9E&oeIKxT|An9zDq6XAyp{t&y zn|8h+c$1`a{t{1Z(IH4CE?ynGNoI`r0`Q6%jjm1d4ZsQy-89@J`;GV^cC)1Mc^AVU z+&kx-6t~S?H6{n}?C}MF{rn5mY|q<^isBY{>c*cQH`~+fD+2r~ttf6gx94U+j9U)h z#o=ers$YxUOxeb8uMWFULTX;meRWsG`8_j7qzJEP{fu>SUe60NHpK0M3_Q7j9=tx3 zN?3s>#u{C_WX9Cn!98&D-EkH2MvVFM`KIJH_ud7Mfd1PBzluBGlUVq2T!klN#Oo+? z;^O^r`#80IJRbJR7k&SXJHV6!l4kb-9u*xJ!zaWOOc7ThZhriS^3bC3fHWFuUP!Ut zvmjx5{56pITI^@aA-V9B)$#k~zfZdY@F(Z}H2xdV=ga+adGU5o)-t>-_u2R(OfT{D z^S=c;-L`Z?qt2I`JU=b}D1JS(-(NuYp7u`s7m~*O7m~(*BFm%$zNrRrc$@q2Gf(Q1 z!{M!-iG{^|3WzIwB-V+i#nX;DQRe)m> zKZRZ$pLh++bgJ0e>4`U)@UOkz#IHQGighZ2o77`NFrL+wn7^|jb8F%zRgNcvW~;fm zDWLzUWT*JSb7bUQpwlVfY;}G5g9z_t`7dx&Ym=Ha^@+sIirRm+Dw*m5<&$$?NW6<% zZ@XGH^OMBKu|8s^sNaqIT0VoCCiH!r*U)Y5Gcz;#e&u;MKU;h%FV89I8y|C-|Lnex zs3`^22q$DN?7K&mOlty+SsDa<_l%1HlhUv2i?U zon5X~q*2!@(#a!Z?pU0S`qEnLRSz!wW8VWP)y&urxm06gGHYU!W~=j2qYialVN%kE zTsEWtonI1jX4dgZB{AEpGLzP;%SR7MnjP~{yqfZ}HAgo^HZddz+K}F*GW+3F_-=7md|zg2ux(j8&@3f`yH)<6QL%Jz|lI zTKoK%n`doEuIF$^%*p+Uo8I3eI$~-$JdeZQ4%?o5oa>8Wk0y7-j3_6WBV+O2T#l9H zy7iP4q?3qrvRuB*6cJ|nDu!zrUc>MvhF8Uq{j)yi+^Wo!%}lwA;iedEBfYS&B4uj~ ztw-CLzAZ*uO;n4=nes@?jdiUlPsI@B8K&%t(N>noyewr8$KCCs6?3nP#_cv2mA^A4 zc;3A!+gv;9FbiC1K+$qm9Jv@jYv)1<}S}nQU|!#-gMnpI5_n~SLM7PUJmkKm zaY4V-*w5x}h&wL!iYZt0d&;$}^e$j7i?BSEY@0SC5Mp_9dS!o^a9q8pwhF`hn zP9L6D5+l-%Pr3?eo}P5bJ+-DZts*udqcSZKv4)ERQ??yvEa+Fv;n^tLy0q~eE@L>| z{j1{V)2cbVh{NZ*6H4Z!Kjm6==KS<}H?1}GZqjv6xgI~S(N&FJkRrhHVTMn+zDFHb zari@UYhu@O_!>9qoSWQigSluWt#*+p|C#b3 z!!H;fa_5i8=zqw)Y4N!J-!SC}>Np-hQ9yOfk_j1s{#kPWoc8{S9-^l+eZBh(Xyf(n zuPfK}AB1&kzFhCVdEtHib2z-0?Vt7TC0Lcbo?ZF7`foztz1V-Bn`XxW*5}tCFAu`h zK5H3X!(3|ZH|2+D&mUv~Qj?;C3*IOrlG$6~>f?GCOt`+%z8xY`hW~=p?J4M(- zJ-grik27f>*H&=SK(c=E+_GyPW=)0ry9|sCtp4zr$fm(5;?3BD3x*F|#VM@iwQMc7 z?OG3wq6+r_+^0?wO=8e-N%*y@?BiVGE^#`-_la?U+r`;{4~qqWkBbIC%pySSmX7Nu zeu>}oP7+<>PEdA>X8>OodjR)}x4?akxo?QWpzIUr$0vz*#EF0hL^0q&u>kNx(FFJj z-g}pXJ;>egx$|Tz&M!?m?+NzOp$W|(`5tTK-mg7 zNL~t4`5E9UIq0}J*oJaY9G*^y0sKZL z0Ddo1P{*Mv1F%4y1bC{-1%0I=$yJIZS1XcSt5N{3R7HT-s4;-otMPz0sS?1AY6{?H zH4Si!ngw{5nv2xpTnhmcT@Qeg;(8n~-SyOZZF9&790~0d{?*IfW?<3u}Psn`fOP22}qB_0DjS9}gwC$dJAaB8KT+7b?X8Lnp7 z$#4yGw{UnX!!Cxq7#?EyA>K(FGf2WegAy_|eUZ!+1+{*ASrtjkLA%-6^ zMJh@sQ&HS34o~8635UxRrM84AUZ$WILD|A^D^u=bnJ%X6V#* z3y1IGa2JP5+$6Jv;cA9k7;a_Q#c&tHgA5Nb6dsBt8D=t^#Bd42)eP5oxU?L;lfzvc zKFIK}=R&c3#F7|FXEnn~v0M^{s~K)#*rn-ll-g>BTNrjRJjhVQ6E~CLB!+eIzY(iP z5WJe<&4BNU+W`+V{2cE?UlUI`-pTN;cxs=+9Cq~~dKSZMh9wM38G0GkG3;cxhT&F* zyBHo~C=)mxhS>~D7?v{hGOT0R$#4zBtqgZDbR}{M46_-QFf3*0Wmv~>HN#GZYZz{2 zcqhYM44-Fskl`VQhZ)Mgl#7dD7Q<|YB@9a$dKuO+>}0rx;hhYhXLyj|VTK}!(`1;* zFq`2dhNTSa7_MP>C&T9%9%d+$DTPvobqv=q+`{lqhFuJwXLyj|VTLk=b7z>vFq>fs z!%~J`hII_rFw9D&Sl)gFI~i_a*v0T5Ly<<@Ooo#fE@8Nu;TDDm8H#k4WH^c87EQ?@ z`Xq)W43{wUGF;7Y3&So==}+=o7a_z!%RF@i8j$NkHSkBieY$SWJK36q8wx>@+q8I!14^maHcSv#BdkGLkwjh zakChfFkCW%D61K6(XfapT?`L06r+f;gyCw2TNrjRJjhTKlT0SVNeq`TT+MI`!!Cvg z8H&*?&u|jMyT($Bi7C%hIt-UET+MI`!!Cvg87?`SQdrG!3&Spk2N~A8JSScSyXSj6 zqyCu8QAKK^s!`9XcU7`$psUz*zH5_fr)!@p-#x>9xqE~ALH9TAKAxeTiJk=>pXWl) z4$sz@hhuieyb-fMCO!7}SbyyKu`6P)h`lNHuGlAHcgMaK`^VV7#-_(r#?{6(#oZFO zJ?_c4_v1c^bH$$$KP7&4{5kP;@vZSM#eW-Lk>E>Mp0Fz6^@Kkqe4h}Xn48#~ctYPd z`(`9{Bwv~Qv*f3eUrqi)@?Vl=N=iyz%Gi|3l$w@^Q-NDFaiB@Qa7nrv4)J z)70dCr}bOb@1B0+(#}bHKP{N?XvW_D=>tX#m^`3)7-`fzA#i=+s7=?42Vlh>mCMv`jF%44FVQL!z=JB%@wEO29;~{Xuwlup8WE7 zB>0OWg1d8w-gG8~XEJmZ5GA*cDEE{QyrO0v;7h}ZUObWD6*cDqe!h4K;8XKqgp0Fh zF9mFy9R{2;`eMK~N!R@0+=2s^ZEX(-_(Bq@@V;6r$u!zD=`Dt924>JA=dio+t;kCve05zp_5~cq) zKf#MQT$DxOJI^F|`ecF~l?3}OBsh^E!J+}B17h1oD1 za6F_G=FUjK36NEy5wi++2QX`tXhRHzv%qnHK}ac_bxs7lSd;)>f|;bm^_WWv=X_HE zZ^mrHoh-~Zh2J-r0k{$KP2ogvHsCF=@0GY!%mv&m&H?Bcd3+fWTd*Da-am->Rp1?0vDDfm}ps=Sr zAMhzy|4RG9zO(T4H?gf|1C4dp`! z-v)@5l#d|11rRMMA4B*KK-?{oPau33Alg&zK=>X&CGM3^A$%VoT39}f@cn>jN%>2_ zQR+Fs(P|f9m3khqTD<@`SG@!{PwfFbN4<(s@QE6QK40!S6Yv7pM8H+967)u`I~%ax zJs7aToeS9H&I4TP&Ib&*hXb~_M~Le5jByzlq4>QXA>{};TP~Fs%B}Kc`L6r`zn<`K zoLtONVYNzaQLm^&>Lk}0u8UnicfI6FaTmMqal1U3p3^^pJTCL2%lKzpDk~}#1jO5DX`s7QJuT8!)`B%yNl0QoRJ~=jJ zK+35plTzlTG^DIb*_5&+<-L@XQm3a@rPib_OZ`piuznT&-s%^V)|Pfj+Qzg;)1FRy zJ?(dCb?L$MOVe*le>DB+^ykwLrvEklNV+HE%8Z*c?#y^Uv-gE*U7~UtO2shd_n=)>SwW_p?^h zT_87Byf>3U6&DQr0{6At7z5T{)4&YeL+eh{zuS{+3E{hGVBa%(%FUlgG(6^F|D8W@ z8t&Oqdi1P={%aa|o}oGOeL0P|(PfFBs%dlwME^An{0g__bb1lmKgL-!Ek)&v!|fg| z7omM&(z9Zc+#k-dm*OAm-z<0H1~UoQuyQSbB@G zj-7{34c4V4Se3l^)Z$Zz6{j8_A3hEEG~&~Qj~}0<_$Q{9ZuI^n}-DL#0! z0K!`lz8m3(M7--EQQ+Dk&UHNx`~}E9FCIhqIQQF-dmC~$gT5c0-J8Yx?!%m3r)P(_ z-t$k<>4}%aWB!R#$Q@#MOsdRO|78A!F=G&32l;j4Lhv6$9v8&zz%R7z5F`5h6KNtp ze6Q^Dkhr@~f%v-5$!bKOQuWJ(=MleMWvaW?mcBQOTT<8I^PKCU)YY!Tsjs>Io%*IL zq2CTMr{BA-Om(SiYrk0cQkCrPNZTQ<#OKbm!(w|{stlxG>bfC4Rc=gwNc=qgpJHSB zVSJt!+cS2EFY%H6FLD?5KP*P~zr>x1HW<<81%#8`cl3W=Jl+2Z_jmpGxW^CJAa;^iEar+i>PjNlB|4jHg{`r{k#aHlR2V*G@$ zH8ms0)Qmh;j4!MUw+1KFTKLNL7Js-f*xu6O3l_GA{Q-Ztqp-ynu4@hYylrh!F^UkK zQ#!Q1E{{?@{3Uno2);0-sl2Ac~jYnS@!!ZTXyeSyM~ zdT(18nN*NO`AT11I|@=br@e*n5SNJ4olsX(Q|1q~1-u=l0dFWYQd3cbA`UrYXi6!H z8um^1*9N`84oXOqyC-C*)D$DB0;R1jVXwa>RMOTqpR;Fb_gGrCJGH1+*-^bxdnFbX zQ4y#$IWW~1t_+sc*K_Ha)2$V>cz5C`JCR}vA(fKlUVp$_8}Ol-(4}*HZLLAHI=62T z3(fI`S_8{{GrTR{MqhnNDCBFd4d`ZLevhhZDoSeQQRZv#wgtbc#0+s72a(j*RWCKqGslGSQkY6)jd* zmxMZ6>Zoog`dQwV`hbsSV5v9co8oWrhnjT3qnJ}LsCpq+E%Udv^+KP8X={^bc*Au~ zRt~*pTNU;O!=}BFEvh^<*xKG^WPwJHWkWwF=nwnKgF&s$5N}Fru%ZQHy~P_S^LsJw zLScU$H=1VlBsvv`8NfP!WEl20`>Yn5>221-TXW6$KML2xo#_qxmvahQxkW|og=r=L zC2B{g@&z!tqDVBwog)8xEsTQxpAv=cu4`S6DG)5Qg0_Z7+PY4rk*dAHMqk);C}=Dg z8L5U5nLQ)zrK||S2z^Wq;bOd;y0W2<5+!?9GcmE349t(LT_7p)$RC`(2S5T@{wjm1B@!6;6* znn4Yjl%P)#ayE#W9-4tXx+^6Uk>mZJhEK1S0Vm7#h;&?JnAi#pg+S5JvyPRI`WN(Q zZ2`jnzL5XdM6KD<+r&ZIN0~U_SVK9|BD&I3+FRSW({6-s}sKeLz@c zupaZYK8jervMuNfg|K=3xKg8cw(F{J_ zdqD@-jlOVAMcCIoQutQ3p&n4qtt}%(X;sen38&Z81X}C7fe@O~nkz-!CW{j21JSQHm)FhSHCW5=!@2Yn_$cXfDAq*E%DLW<$t1;E2(4K{MiGN&0`^ zc$}=&V$te%lpZakEFEeJLfu^)U2wvU-YM$F0$x+s+Fa{z@zs;AJFQqi;{aOv0HNNx z#}X*6LFmW32SUf}9xJ)gl$??5bKx_DW6_mQdKU>E2jt;DcFwq8nLf!sfX3n8Z4PvRUt5!eBlVH zcPuq?TN=zp{OqdAnWD6MdJQEhsyae2VG1iM@g9!woQkr_D!91kfLmELuY68bMdi$j znNupu=W}T)tL6)*hf6G{<*BAdO!qd|)_cKgZuU|_W!|t?)YKCU_-lnR%HYkb6=+@B z2J2l~c}qCh!DRG3iPl*Kidcc6!l^#k-u^m@+HEt(R=TJU*9p|QrlOupS=t_iuOw`o zQPoZGUenOz825k`bdjmGHeud>%gaj2F7GJP+9-LdS<(wphE8BeV<9O>ugFhGw zbEt_>@(fX2cD9M5Ic`uwpDv%}5fSXQboxkOd-mo!5#esW6hX~kxeD~=2E~m|*J9h$ zNZLJE&g85eLx&xa9U!n~mznZcgvwi%`-815&1hx#kvhs-$oQ}4KG0qr?g#EGgL73) zI8qQpsPn?Jg{^>2!8m{-Nmv9PLfbxL14PGMMvf5+hXj4NV!HN)DR$A-T z3o}V7S}>sf^;I3H*UFi#@F-ZhwUQ~bUFI96l!Bz^XZPfl1Olxq=C*{q4ZSeU=A~z>>9q0aB|?=i zxZGdoqrU1HsUkEBPTk&lQ{brU83Wd7?+o&6^%OVrz6v`p@)P?TFocgO*)xf%CT#rb zO+r1{(_zu{q*iyd^+GN4)wVbG&aw)MUh#(8gS|vH5+%X9Cb$dhdKaS6PjkCxiRM)u zgGUOrXOzk|=uH0wy>QT;Z7awd+B1^nr>|P!@13tT@zkKVt(Vwj8umM3BU@1C4)QI9S-tGyPbuR?$K zOr*?*Bcr3R{2`hysC!v!GtPW^M#dV}-rNh_EH6DHO!u}lwtE|WM-|YkrrlmgmFrgb zqslotu4ifH_|9*~NlaC1d$7(|(bB-KPjqolNwZl02a>#$gGmN$qc#uxBka1^-;a?DL{ZEW-fdr3r}Dw*v?F9N)_b#w0bP~K%eto-#jej$ft z53X5Fd*xBa)OyE~A?FnothSMQPeo7EV@Om7y?)lFy_63p3s8)`FlM&4IQpNaW-mfi za-2f-%8U4Gdo+r!6n7cvuGW@blD5<+a-h>fc6{_Arq4Bu33*hZ))E~3S{kpHRL=1R zTcAclB_TfE=|!Tt6~+wPEIs?!oGJ9Era86g8Nt|~JsIWA{xDm;vs(Qv;a>QBh>ZrT zYKJY2qvxJ^n$yuW4N;hvIY0?|I8##lV%Eii0+IG=~#7Um5O;P3^T zrCxM9(uGkpg|-`Poz3utn_AiQHC<^4Y^a$q1tuEyAF%Z6|EG88(J#hBMS~Y0~4UqL@YbDj2$R( zVJp^gTvn@AM_5#x{W6y%9af-#F0?E{(*^7w=M0QNNPa@=q|zec@E1K!9gBQC=eGs8{7Ey@N?Hy4>YACw_EKX$4 z(kr{!WPvLib6^PgMET0PCJyjv1~wt)9)p!*skg4lC+yV;{eYwDmG;I^vr$D>uNuRA zZ(Zi&p`*76JaSABdpv9$nCaLnK*HWP(5QE8{^ofxEwD&C&wyz7h1yzq@#dr=I}72r zHyO++YlY?IgP%Zu8zn+kxo#;@VOu(e&|q1L21jv7d`hsj*-*-tV_$X-Rzo`pOi9j- zCMoaXIY1N3>|n$)y^|5u!46|7SS`$=TH};Aw}pAb!;_p`9kgmk+!Zaj0Ryy$PX?XB z9HeaAG8Tnh{vu3{e|8^K(RN78XGq2401alFG6mYQV>X?6HTZq?Hd*UdMk|;5g4mDx zdg&xvoGN7_TFu!cG^jJ|YzK~FjV4>D!I{_$3`p1-EZKnT9oRkTSiwe3V_k<0we9G| zMH=SVW7{H715kB!JS$-K>Gs7Ra~BK)+!tiY=17oQj(Vvb*Eg6)N%HM4#!yrK4m$l& zObPP^0uJ^xW6YAuTuRUk+8*0lVbbl%z)czQE>K@n0yJB&$6%a_?8L3scGBt{^5l7< zv2S$~CxVJa;Wbt&%(WZZ7*tHuHFi>P;V5KX!_s9#ve5+W#z&7VvP=w42fmRg+_7>+ z(Y3ybA~_UJ6y5SlL=nxzjiOoF!|uE&uD#!nqEb7t0*RtVr9^u_b^}C-So`rPqP4+| zB3j$dXrjI2j3V2c%_wTOO<@%8XxphMA$x(q<|2w=*)nFhbZ6W9jp#^vzC@>F_83uu z-7W4YW>gzTrxnGDiWF@-N3l$#sM!`J;GD_0WDv!pX=hCtQfw_WH(^%RE#vivm&j`P zta-lL#s^b;mbuQDai*KXu(%bbJghKH`zT+Q2su4lv=~@hD=SJ+w>l?T*^ZmER6-Ceu^U_4eK5|t(Y3We4M(O~H)c0Gv>VqE)xOWt zO(bG%c4Ii=k}cYeYoZ;ce!U4>qqrL{lFd;Bs5?z(*$U5I!7L5v9M4YQC(~&o31hG& zTnYmk>%J((&20KEY3V3wsVBFf&^^LI$`Ch&{BXTg&~08HHGAYhgp-W;Ng1^|M_@J7 zmjQX8b41#^*nHZz+DOz*QL}lR7qZ#QBf+rge42jKaO2Y#n1id5R4g9$n2`ut$7Qr4 zYa5p?BqHb|>k-Z>4&aUy=Ap?=*b@^+P$O$dR_>7;Z?Lj4MfSnYIS2C?8{yMY!cF!@d?e+?pHoN2tb+ zp>FB47Q?OOC=g#OpTTBfgiH;OEA1qUPWGSSYStl|d@xotf?Zsb3;NqIv?tSn2lMJz;GEi=*1|*0wA%It+?MCykC zxb?o3_zw934c0{02gPt4+61(3VR;LjGenG3>_2;6h5Xcx#7v(Tni>!%;=4jacrHpu&Q?I7|OYxwHt-( zr4x#Uuhu)(T2jI`nfl9`C$_cJD;K3_O^z!7CP@q}oW9mI;dHsR-SW+7w=R{zTVG$J z#|L3SUo$R+I|z>FET|zx03V~VBMz`oA!{i*^DW1ImDD}%Jnt$$|fs9z3xVAwMUnX(mvC97hM% znIE@b&!a$5Q;XqYN2J0sLIvgknwtG*OIVS1ED%<}n`i3;OvB#$aArEXqd zrrP$1Qxu00-Jf!CvT05`acos-uYp-Oy|ty0Mm&NfR0eZ~^*Lu%5t;u~o_V2Y+|Lsw zx}@yD2nh;G>yQY^)>O7Qr{~B$no%(iz79(hQE9j$Q4~8DPRYKoQr*-J zagFLQMjiaOd>*F>P+1O)288X@lw*}ADwKle3xvTHSs=yg*BaXjtj)#IZ|MJS_UJZZtncI%b=x`Bd-0B^Qq1V8_xF@xO4eg&)%#F+oU9&Zq8^sw6tTu zPWLTG83PRAk>dMW=2#2fMn;|fNK^{csApJVti$OV(hsB7w}#ELtc76=c&~W`wH}dL z!UTCKrGqWr4RfHxTo}Uf8RIkzu+-7~3E?Q5)V&imYnE+%6zb5d*4BW){(%-|4u?8I zb>RSMI?I)V_1oudCW>{(rW=R%)>;TgF)UCM1F2F(Di}5p&Af1MV0OE&-8UEG>l|Fr zV2ZT|sx0Kh_yQqZ^|Wc%;hKg>m=f%E8v%AhsHr3X^A}pL8T%%GGe$CoRx^AKl~tB) zh?(F(P$LIMsoHYAWMT8@{FBv`E?R^hvV%2k=E-6~&#dU)E8&Al+HOron_~mcU1^1v z!hW*C#%{7uas%NYQ_Hg*E^Lcj)UY)!$h`z76BsM#i|b-L1VvjUNF3WI2q%lVio!9l z{OW5bj6r?z-q0q}6zxGg8%NHf%o|*RFG^eAPodl3bWcU#?6I{)VCv)S$(~tsyc8mX zF+!P&GazdhNh6JVp4`8*h{4?y#e-#Kj9U@9ptQo!EKI4GuWFN;vWVup8VYtVuE;k~d>h@S)JL+c9iXwt^f zV$2B#z_YOBdc$J;A*6014@iMXhZzn6?<;9~IB50?hqjOAARAJBWRUmZVOmBDH=;=# zcAW4=j5lr-^3&5ES=2xa!@WUQ7HB-!bUHC)0qtSZ%Yoika{@=ZLd5Fjs7xxBSsV26 zl%v}?=24kOHCg*AUJP5?%-KSSUJMY%1a&4?VH}4}TADl`5CE`*Kf;yT<9 zyre`qB-o;`49I9sozrn)t<>gP1}hMByY+BcH@3c~>g4+zvQ#X~lhpmX6*>o76!;)| zFiZ`xp_WN z@Vy_??KB|u1hD9-(SoL`Um-Hbgk4AB}b)C2HkPP0Cl-A|$qkBPc0dhwlQ@--=5WwMwr~L?b+_ zgb@lI2{+)@NQ6Rp+h(QZRiReZ&F`d;sBMSymf1S+`0wnoLf*CGT_Ci=;8BGZ5oRrI z&KxZxg;$zrmTlN!Uq?+sPYK|i92N%4iKet>)kWNT=GGa|=7e!*lfn_!HnJNT zJ3Bh>U=eH;&EXWI6?AsOp{e>jlfw=ANQA@2E6-soTNH(HRGGhNdLU0c|G?->I;^KV zPYzm5eS~kXODqkghL~9L=!FTWgl<3%R#+J_X1Nj>;hSotmZ6QJUil&x`huz1nHnQY z1(AFPr2(QBI|q@5mEq6AfWpzMEONDx`6Ota`*Ubo+*Z)$N8}(PJ&gP*{$;D#3_r(NaCFL7Qj#!7^%k zk*K%*!gizztrl$@0lo-n6Z8b-{y_d-`(eoAizw8+j+@H7NILNfJqL`m)0rH_fJ2i~qYV_kTEhezu=XOXdMz?=&Tp3(5t;UEy7 zAT7rrQrL^Zu8U5-MB~N`!Y4#st80m+fiFv)A5th>dhSt|eLyry{tz$h7I$Ir)mD5t&hGFY#O!WxMTv;*>7Td8R zZ1oA-aAlYe0J+DkfsT5>SQnx8x;oqoB)4eCR9wE*)CT?a-yT1h*JWXk!M8@qm(>f2 z_HneJge=~F>kAQPG+TaeGZ4}JHpR?p-R(AYj;|5x3u=8#&n}x1FlwM%&0CSI;Xsa8 zn@dy9%0?e4p`WNv&B31)$&SE7*Z9DXC5IgodAyG$LcCTS@E%jh(mHklf>tp}Peak! zmyYR1w%+ZV3QhJkd6)ZJwO-*JDQgsrHRt1?WN&vTnHfel7&RbPAswXFnn8P6eHP7^ zWoZKH05xotuML(y)_421Cxy*&7_qeN$2AMBcWuCnGTw;ki8TRFbmAImJH0jJC}}w2 zb`v&RGnB@}rme$rPKTer6@_(Vgy=_8_4`eL;fkjnu7-N`vxxb&rd(ugfwRRrYwR}Z z^|C;XK(QiNOBnunW1I35ts$#vB2M@aF9Y3i%VX=LlX1`+9ld!Ja#ZZ5))h`17eYgV z&jhi8;j}?pqx87L41XZt4;d;+L=p6XtTsD!BwU9M_~^+;AM8*})CSzh578+U9Z9iK z3J)@oOn;kIrjUgr8}aUJJ(X}~rf(XD*lN-iWcLjM%nrH<0qdIlyt-6Io!JGkajgO( z5AXC$*EV9XpFpQOL@BOO5yT^uCTjH4JXj5TkSuqiBeI$4ln$9zx=vQArt%SD9qXvb z13@}(y*fvv%yJze=+!!c2dsS(sb8ZvVE;tDUQg7tw4-K5=~=6yX^Rjor6G!~1KJX; z3U?6IQeMO&=bsr=_H#%M_(zkC4m4L*}BLm42SE@H+8h8)$<}KP&ax7kw)}}#d*kPua<@Og9|pvwgPFT zjZjVfQB22@7-3ThER_`M<+c-M7p^;%uf$S`X%LY_M@4Qng(90L>I%9)62ikWxDCx7 z>yXxuA#)?op0L!2ku#S<>@)DZ65csy3sgA0{=M+4@D5J+^*ahngB`f4(MS)Mb~xqi z8E0)u^qLT2qX7#RpNUvQ-o`Q7?Xa2N#`1*21EY}uO;5ap(zXg{(bB`$Sjbh_oz?M? zb4b)!X0ww>E#J#iaiXQ?lX93jaOXsMMRk6Z290d}&>YVb6YNoQ9Ra7%*3lK2$uI^r zJ#u1iO%y|K@`rGfthlBoOd-n=RMG~d9O}F+gaDPox;@0c#VcOz0n+;bu#bCm(cmb?k&%m5|T!f?5Qv#H#QZeApsICt+<4J1n-fMYIW+vKUt6 z7SnTtJx@AlhMT1a3?~?ITScCq<*IALO`8Jdxmuh$k{*wyv0KZ`NI0vsqM$7*tIb(- zp^*-ruu4Q8t<@PsKW@tkW@a}Uv`WcQ-c~8<_}-{d*hn9qCf3~ulIG$~hc1l?61DpS z1!6_FXL>mIkacni*>&ID06=am7y z#}7qZl(<)5(P+#WXLC>U({!xG53^64i|gp}u#=#>mKPW%8(SiZY}(Zb>3vTmMkHk7 z8iJP=t&m{XG~Za!%|;eoi0oY4>t;QTD-SIQaWmPEO!EkcJVE{6-Uul)u7;z$$ov16 zoHg~jzXOvkB&}H3n9_AJ2e@2693h3okG^@D7B3w9bUU1z5@_|}vIlv7^-vHE{PY_q zToJMqCiXM-K3_l0#sWBDU1m_6v06cM*?`;whDig}1a&`?y$BPkE=-$$-AO#C9Al4z zQ6mpmEuwLqRy0iyPBGor5Uzq{5cEyPR&NWj^C%)!Z=oTXis~zs$Hofic>rx32KP%U~Yo5cA9Rj-R|f_FJDU8`4RFHD|p9 z#!2=$VsV&X8)dEVbc{0JdJ~96bS(SUyT5E_62?Y%XA*`Lz3;2H*v=7k3^6_?_tzaO z6B;|mNWqzrQxwC%iZy;hQB6&qDJxxMwpJwTLHu%hbeXR>6Nj`iE$h8=>DB^XvKtk{ zya+3rIE&P}L$Jr#j)+@&5*su9Sc)0d5eZ(5dr+-<*ztRn&~BvY2a_TxTWK7VZ=dZS zQ>y2KRNba!h;qJ!+gey5T;cHPHxOdJSEbC$xO#C5l67`mEf{s2r;Pnw6do_m;fd+RstsC zSwK-;L3@7-r68_q(bo)Ip{LVIYx=N3@q>||Spc9mET(lI+roS7bRr%)%Xz>W-|jV2Fe)T(&AT(`)dc#ou$4u9cS4;> zC?*7XaEWv+ziyF2j6;F%Lkn^vHg8-Z$LuA&)U zr>gb_|4Pmao3!?o`X0>W4uNOqd_jCWtOtJd$hy9$_amCbZ!T~W$bQhQ>Q?<-T?w z=(e$SysE)=_e4c;xM{nWvO|RVwnRj}$7>}8J^zAdjcVac;_P9;+2W+qop-j-vN&>g zO6Y^6U@QGjjUA2WsEv_sph;^J%xfdN(V|8%`SGF&Ub9A69Yn8Brw1-!`_aWIG+GBe zT5PNZZdiLOYu+!!hIvo#g!s?dZbR&EVZvWOu>yNBH;ozo%mQN^Z*X? znL`~B!FuzC>uEqIei1nu19~No&|s@tFPvw)wFR$F!~K~s#vd+PlUtMgWQ5yJAB$kU z2Z?8@{dP%nS-di+$x~KBAF@y0@`KZWFf-65;Rr>)si>ZY5?uqeSypuWaeInSQnmy& z#?js(#RKK2%r4)v6or_;6n~PsF^W&Gx3i0j3cP4(R>{LiJ z;eQdnoAFQI*zx1L5WkJqfD{(9+(?8j6h(kya0z||tr5R|){Inefeic=_-(ZizI~vz zfzpAWrk#Sk0-$6<23Lsi-GJ|QVD(%oT|SXPF+&`)7V>_CLPE5cB1K%ywqyD^UM7Bf ztd;Yiw7p0b&)W8P+RfKc7B$wH*H3#XX4Ynr>S2fJ+0d-s#Vjh9uA9Hh)wB;SQ>+VA^PHc1iAUR zoy7^!rLA_hak8_;(VA&AR=TxcYIJ-^jhKm=WFiL|cUHS*A{6O8=eQI#WhhG*vQZ{zRG)HKsF)!VLZP!U=X39S@uLS-wGN+K1~ zCN)#pW$)@*vxRFXvb2fpOZK&t8?v=f2`&HUdEc34!u_rH`@TQ*&e_j%p8Y)MG%w_7 zjvfc4Qk<#^H}9Y(8mNT)Kbs)5;LD)le#+*6-X}nm)*7h~s%MBVs#Og!o2%gc=dK z9=T=!(HAr-!9{(EDF6t~wZd7Ucn<0^;zMbLshIU9T_?8Fg zgS152qLht-JZcrf>#uaHv_zo}MZAl-hQ=VRYsH#Wq`_6i@;#e^7cik=PHB!PnAaTM zsEPQCfY(qu0@S17ZJfj4jh>@`>dx@iP9Mk*htz1`i~!&xSI~OSkS26op!QdFgwBui zb*xNnI;;_Sdm4PAjt2_%?u;MgX^FLohqp^3ch3j>L)#wGoFc7#e`sg?BUf}DRm6t? z4QhA9c`QYfS-^c!)O<6c47CEG4}akW(9Q>3hXc-jsD;+jwhFa5+9%`@)Z#RcbY2h5 zv7OrxT)H2uP_WgalUa#}*L1u51m-*_^`wXvNx1<(F2e#|yDF_@u>CMfL}t6@;@ z1u41*p+5=~@dzkKVZh$Q;N`H6R0#-zmM=BOSg66##3Dj)M?%gMdJ#%!Oi__i&Il-c zX{G_9&-*KZ|Cycm(6=)~Nt<$MQ!iEmoo7Syg{~q)X*{*+;qV+w5W1d}N<&dYWiTCB z-&}-QLhWb%BQ#<_F`9#OY7R=$5?&eK4}OX6v||EaI6#S&*yzlISJ%f8gWx6Krl2D7t__h)DcIeG^C90)JHC%9%Jw~@g$7o`Xmz{naz5VC^+2ZS6N zcTjtBxaK$zeRM(KwdAn=SS;`UBY*hPuqAdVnq)sgDgks8>M>f4bT(2?rjk+P;!EO2V%5R%yhLjheFT8MiG_>A9>^}C)JT#VY>&1Yfx$lX66wVwaJWOm(&_LNmx?`L zhK6JuDO77oN+V(94*O>D>vBG26~!<}ykA0U9BKH8S*{d1;XBYMLf}3SJ)zEMmF(pB zpb}6R(2t6w(26@3+~3eh4uYE5qLENx4F>VC0<~odey*@Unyb<6lqP-W5zL{^8J3PNCe4G`x^o+8Ee~T`4+j>(jRPVO zT|blrbYy-enRHKv+hcVzUsbB<}O(p%M9ZL*Sh;-8cm%r?RTT;XnJ!Y(Q5TWmn z^U|ZC5X1wPa9b7!I1^hZkYV?KwFj~hGEQggA*-RCqbM=rzZ;7l31Iq{$N8C>o!}Yv zufp^5I32J|{Ljabz#>*HSkl3_?!U&UM5jt~)USD03?-xYk5K+7^nN0~noJO5erzjI zO|;6xxv)R&gwvZn)aEEH($LYo^(!6{k0>7LXTIsIT*XQi#^MH3QW6N(MPjK4fza;< z7bPAXOEkU6j&s2zkAhD)qoQ;;e90e_M**XoQ-Y3q9iw-hogCcRi6=&({8elY35L-_ zh=~a@{-;4e6)m>KVsL1iOzRHZ=+hxXX|Qttr@{I;(u07~$|MXv`IKEjI-tG8Cmkz7 zyCS{sM&%|2c&r~dS3gEBAS^E$8(9X9`9N_Y>!G^D*aAB6Xz|ef=uF$OfI5VUju`U6 zKB7&;h#<}@#r~{5;8>*oy^|x*7)qgo0|+YGiOw7Dc|QUoSoHS-LB~1h*cXZ_Iez>ajxq%%jM{y;MSD4?i8Xg{$txutm>eM{O?rNIt`yf`vLt5mu*ZAck{ zd;jf%JOEI1@H(@^aB6wD5ZnRc{uB2B;*czYNISq1A*I2l1BAhpi;O%@vlX%!y&ppr zfOY|uC@r?g`{EgBUxgu9{lB*;oD#v4UI+~!mWZ*u`R@YgXO8y(rVxkZ<0;c4!T7%f zoRIN<1srlS@}~rMH1{Is(|j&w0I^P{Pm<7Sm*!&RaAYpY>iV7!CYUp2Vh(A$akB zgM$Axi4e;Ew+rmdRGo$0@dxeSS?n>g{{IP`g$n<_qv1zwhN^|O^)o1)C}wnYi+*Hh z+T@}!mN=UjT*o~meXu|~C#aMr6AYp9|KG?!uK7p)UQ{Q9pvDlN-H1&@XTv}vMvTl~ zAVl!~??uSJqN`mfI*OIu{|5DOivc?`LGAzTV*mH3D_XD|?hqhA$whC74j7t)<)#9L z5KcyC0)mKwb3F-rVkl5$9$^Qrydy+vCqV}@IC`~&rw!n)H-xNuQkOO8wzStFzNUb^ z=$3e$gKljKW72KKUZ)-OH~RgAue?2=wLqTe=McX%ki}Phkbyu zcsoyfNJOYJw5LzJG0KR2X&7m{F%HIsKQMtZ49($b>wKUb-tj<5r%zh3A5B+@b4kyF zbBpF-DM2{gAI2wG@>D7UQd}wp=YnuQ0{;_A7>Evp@uOi@Le3H9f)i#4I?tfsAR=+q z7)%xi$Hd`^pCOTWHW(en5I-M+{L;P)dOYK(!vq&%3>8Bb*VDlpQ-a}5^JWmNn#S^A zI7GmsJu#*6Xb}EZLxc%>FM;myTnGSJ05>2d5Lz0q7_A_D$5O3ndeYQ_uMUD1h)*;+ zVh0`PkQ{IP3g0w-QObzP(sab5M1&b<#SvpE{L$N0nlh4Eenmx^X7uRP9jN}eBge2J z9i_&55lE3B3R*#^(&ag zSQD>Ln&$L+V6J}%6G|;^dT5v=x&KR;ynzG40NXT7lHC6=Oj^>kL#apQ3358GC#3`E z9PL}00zFZ~{pb=&cFg}J&D5k}aR!+HjR0`C0A5hr;^7u@`TsZ^Bg9hvs|e#T;APaD z7_5i_jEMQ0mI~x}nlFKl_L6Z>s?Z)H2LI*$j?(?nq9D)yTO+tjkAUF;oEz7fz|=wH5>(b zM}QISC*oOR>!>?+eQ_lc4)lf`t_P1Ja0XhdBjjT4B=mnA#T)D!dJI%Z(M;iBi-0|Q$(EgG5j%hIX5~90jS~RBV zJBjg<@(~jM$Qir|TrJ)s7Rw*f6)h!Vm!`bL`qLhr$gAoumLo6l3B{+-=G1Y%#EYWm zB9t){D8?;NhPtB{3KYXx2;E?qN!qibZ#1F@LO9Y`nE>)BKCnPrj^50#{Fa|bBF6vf zHa6M?G5n}g@kj`5 z;$MRv@r+oeJxx5yqc<1gNEPAuD@y&i*1w__<)az*1gv%T>1gdOIr#w1(8_7q0AATtWK|^kpsdI#JU|-w~Ad$bq6g{_!jwo?PTVZWlzYlfLjG=2?kH zf*MTvBnx@!M@swvm-l~0eR{>Hd&NioQnso$&Ee)!`w4Tv4`PzuLrC2w?Jn7K{AC+m z$qrO3S7Hx?=~20cIOI$FO|cjOI!rrSus81fC;d_s`^BROdFA=}f} z!jY9w&Cx1ETAktc1VtX}P~GG5(G>`WltlggC}?=B>j!->bU<&7?u(LGc;m_ zAiY_o%?1XvajqZlf6!aT&f7@I!2&W24JVd$Y#7~XV@WG+G>d3V#Y#b}(0+!cCy0(I z2s+K)qCY$tkA@C$MqlMdoQSVJiKA7hfKlvd+@S~~qdCE9!a;HW3Kk&N7zx>fD7MGm zV%RX$fW}9>u|{Qs;(~J^HN#UyUQi4Jvk2gM6a92o@

*weXhEZ~ie(bhiN;RC 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

L|%4B9wfwoLC2ZlET8hc!LNoMuzjX>nCM^k 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 GNe9s&Khhk~_34=JHJ(E3mwq3?oHguV;^!8h8#Z z11&)XP=VHlrY(QV|It=<5ZdoU1W)iMv-7lZg^K)^scK@~q^LHZu6BTk$Ke-mdZmO@ z?f~{4qp$k(@tt^w`a4)cp&%#d1fWEC46+7s=7MtBLs)-WK!5XIU93$w*-W6Dq!#9E zfNcczSN~S$FLvNR)d>jxIZXgF%?sr5Z<=Y!KWhPIn#4~g|H(}IDO;fO?7Nq3VJ<8A zyNCgV*>@Y(^)DjzyJbf4MJ$lBYX7L72XFCF*K|r1HFXvyW;NHO!i`UdBP>oyq6M{n zA9db9xTl#BicLlMr8gvJVyyf@%9)Hj_$P0{3s;q-WjnkO=&GJ2IkwfxnOX&R)~ zD8e|UpG`Csr%~T@dXAk%&Y?#kq8vzWKAX0GGLoZ4!LY>q@Z)@fMWus9L0UEM~LB!^T(cT6WX59k|h;_FmawX;pPaF z2Fc6J9T!CktO=0Kh^4@aqlvowkn~QCaLvauB9}8L zMjE*u%sWzCD%ig7FMJiP{XRG5o<`S&t*3OD-FuPRf%jT#vU|l3dFC-b4F5NFiu(s6 z#a}sfZjCHNK4t8#Ny{LSX!xNq_`S_P%l-6`S_Bi~mvnVf&`K>#T!FLxB@N#Gey|V9 zQP{gQf`sQ+SZdX5eS(M>mPgtR?Gi!mX)TLH;>l{F%z>WAkBe3dHw8cb$oj zh>#A2MrRZck;HHE)tHro$$Q8jRFBP9V4p2jRBUTP5`I%put?&u zZhrM?{BR(cO(n9Vf0%5bmF(obCQ1CV$TUztge%d)@zHQ}LhbKKh~FWkE6^ zek4?=;{*8DFmMR}k%Rq*z5xv2e{g4=l5n?GLN#qh50~bB%FLeDd5$6Ri3T0Y2XzdM z!NcA3mULrMiL+LFoUl-$-_vDoLgXfYT$OgtkZ;+6Qf9pDUMQG=bzVC@=X2L|%P^3R zqNkP2oAuu6j2qF8(XQwqROQ~fwsA%)Ivb09eve;U4;_mP9I}sW6<*_tkGMEvAF<|`7Et`D?;W+8)F$WKGjOPY1ki? zcj~x-Sbm`nhYltKk$`~n6a;)x*f<&e)Nu0MJcMc)6jH;+so~*YXVh=LEI$K2bqixy zXVZG7MYVma30k!&2c<8Pfv10iv9oOmm@N9CQxWov66^Yc!}Gf$(P#PtW;OIgNwmd8 zP4Yn^j%}1(VZ?>orczf% -// 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: System.Reflection.AssemblyCompanyAttribute("RestaurantReviewTests")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("RestaurantReviewTests")] -[assembly: System.Reflection.AssemblyTitleAttribute("RestaurantReviewTests")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.AssemblyInfoInputs.cache b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.AssemblyInfoInputs.cache deleted file mode 100644 index 7c423e67..00000000 --- a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -95e49adbfce7be27aeb92a99b2edf75b02241bae diff --git a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.assets.cache b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.assets.cache deleted file mode 100644 index 12b68cc733f4d3bcfee8f46751c4ca1f38230c54..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 88771 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 diff --git a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.CopyComplete b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.CopyComplete deleted file mode 100644 index e69de29b..00000000 diff --git a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.CoreCompileInputs.cache b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.CoreCompileInputs.cache deleted file mode 100644 index d0230487..00000000 --- a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -9f246d01f2c41581cf0f52e73bae9a088f0a4f74 diff --git a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.FileListAbsolute.txt b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.FileListAbsolute.txt deleted file mode 100644 index 90ce0543..00000000 --- a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,17 +0,0 @@ -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\obj\Debug\netcoreapp2.2\RestaurantReviewTests.csprojAssemblyReference.cache -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\obj\Debug\netcoreapp2.2\RestaurantReviewTests.csproj.CoreCompileInputs.cache -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\obj\Debug\netcoreapp2.2\RestaurantReviewTests.AssemblyInfoInputs.cache -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\obj\Debug\netcoreapp2.2\RestaurantReviewTests.AssemblyInfo.cs -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\xunit.runner.visualstudio.dotnetcore.testadapter.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\xunit.runner.reporters.netcoreapp10.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\xunit.runner.utility.netcoreapp10.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\RestaurantReviewTests.deps.json -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\RestaurantReviewTests.runtimeconfig.json -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\RestaurantReviewTests.runtimeconfig.dev.json -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\RestaurantReviewTests.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\RestaurantReviewTests.pdb -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\RestaurantReview.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\bin\Debug\netcoreapp2.2\RestaurantReview.pdb -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\obj\Debug\netcoreapp2.2\RestaurantReviewTests.csproj.CopyComplete -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\obj\Debug\netcoreapp2.2\RestaurantReviewTests.dll -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReviewTests\obj\Debug\netcoreapp2.2\RestaurantReviewTests.pdb diff --git a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csprojAssemblyReference.cache b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.csprojAssemblyReference.cache deleted file mode 100644 index 2290976d5baafa6b7cb772218dff464dbeab2295..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 157486 zcmdR1349bq_D;APj{qwQt|*|Ws0;)Mmm-F6D)$Ww;v|_Q1CvacnE+u$@j%5D1r$YA z6z>y7R}@rKR8(B?S}$DjTJc)(TJQa<|L=7j{i2LbI_f>V(t5-*7 zWoKn&{e~aPg|bfr^2JJ$jYomGmvi%`MLB z;qT>dO3FGV)-ka<8Vi(9jQL{$LRlrjP{96IZiefM!>KoyYmc{&qp#WKJ zHHK(HVxQ1v0JIzx_7@NH7sbMn=F*@2U~WOUywV>DL|V{&Ck7ViRUn#` z)i|qZ)BRc;EbSN@DGpZnL;5?PkMB1q3pQI#px_?*qbdHdNL>^9D9QK8%l&2tODjNb zfj=6^%Fb>@Uwjq6&6-0jEEq6zTqIl?@t1cT1~#HIi^H*sKx}5Tc<#(GRl@_ZVg694 z&|frnSU6N1h|Db4g$Gm-ZtL?`R?h6{>*?z;GZHA7DL=)B_-v;1W?Fg3hup1?SJ+}`=p4!B8uX$3w2bu$RDx|uwcNl>~t-N+EvI`gu)C*gLF?{thzE# zjG~Q2XHuQ*l{+&OEF>bLF@Hs|KT?cO6%$mT>U)#ud*kSPwmmIjPi4C1)T%fNP`ksS zfUR{uXkC&v3$;=^CJ^&Y4HS+D_)(FZ2hBEPf0(g012g>5N>v}rVzEk}zc7l{LX^3z zovuQm3hT5I`O!+4M{SUA1bsiBecv|l02sKO44fQA6E$;!9}jS-U!9{+%MpuT>!d9orTfT9NarP~2>T+P_JWne2$g#e0 z!Ai+aE2v$U0Xu<(u|NfNMj$&-8K@`@R1{SQE2sqVp-B!kgm#n1>(o%^21E1>Myeaw z)U<|;bG@R5THQ8KINuY6!$aXhe@N9R()|a|>H)Ph_G3(H4}#jeGpGl=X$ePT!HQBJ znt=I%NJfo}ywgN+r?}>(EsQ?PlXAi{Lmj{Dsi*p5MP+b}h&x!?kY?F_l2w-qaryJ#x1QI<09cIDrwUw z-In%bJt6C#Cx|cEMEw!Aob5^J;4z`tEfR=Qm*ATbtfZ&LHsUZC5%I(bJB}XbkCoYa zJ3y~DZG;o7MSUa7%d6~Bk!{1_uwi2zRfa&c5}j?J$X`@Ojcf)X+yr^60(q;r=Jg1e zeL)6hI}emETxkz1%sQO-!D0{6Sn(~J!;Ua!fhYB6LRCd9SRU}v097{fouK@(446<+ zcM79G-NF_`sw-nO=BzBM_D##{(Z3)Ni3Ll7MHrWh$hI@Ay3iY|>=9W7`l!(qmivaz z$De~SR4&esR#z0+1#~2=S&@M?EP_C7|O5U1UiwSW@jtm7rdS(kP>Xm^P`90b_5dUsH=`Wxm}iMMbNG zFbFC1;y@|g)~@z;Fw`qihQLYE8Vwt|LyX9Z1H<(#?7EWo`wax1T^Fp2!9*q^Ly7Yy{^50kE)L=z%ctMn+W?N-HRR*=3SrT0ORNCA% z5Tw}@S1v!-*Nf!}hJ<5Ob5-IzZt&M1=AD!Fqg=bL&uQ6)1f!LdTmvTyMV4m(?C>Uj z9~G>a=fg}Brt&bvp;~bwbl;T$2W$XbWDE{mg+-YqS7DjSCN?HEM;UR&c2aHVst7EI z(QFqco99Fk`V>OgO>cskmtHf+IOtOeJ(vX1H4wVz{JsxSc@&8+P-W{o8T!1LG8uyz z*+{TR#6g3g*6#Duj8&<*D+(hej>#`q)GV`k^w1`0$f*%8kYDyqEDM&~44eW}yy@kT zEDBde5DWSy*fW#1`h2LjBf_+rums&ba@mm}#{7X|IqjFu3~|2xvPe!)RU8b+gv`j9VZG ztg!>&w3-H|cCc(<`TU|x(%hr*^|)^GRG9ZWKdkPC9D!d@WJ*tia&M+WCY52v9c!dY z?I(5=^m@}ln8+2?V;pSoW~G}NsE@$PFRZ4sE9ZFcN<^tQyAwI5 zj&)16JriJ$J^7VplvhVdQZvCd5yp6wW*QRoV<99~a3I>H$y>QLQ|GWJc~?uEVWFMy zqON{2wA-ocT6QaJL?)J*RffZ%RHm5N2yCpqK5ZPnXjhaeFv*)om$z!pswtvnDr|VX z?$b>^1UFdhQG#`^fd%2nTxx!kCwJT(p3JQ$NI?y?Z#zugR)^5j;6~N&JAjl?yRq7p z7@Q8(9z{>O1vX}QhgM*GsG8y#u;xrph;SB5Ofwc9{|Od&l>V87htj9rXAc^c%S_ne zP0XUl_*1ZUF)Vw5Sy1oM3@#sGi?Q}-e+5znVwu_LFl3P@HG+2lLog99f`i%6@6ief z)jf}_K;#&%lrvFLpG=^t%TzngfK?S><#+C*)m*3D-ut1`o5>~`=&8wU^0p9~ugV}D zNeL)asZez^81+$mj$A8cbg)bx6P{?;`^D!W&7?79q4L!oraE^Z>xy8VH#O95v&us% ze3MT|G4y*AzB;2Su_=eV4?w#&X=LJ@)m8TRNtd-F`0od=JmGI*dz z)?R5ZcJ&A<%3+8%SxZunUuyAb7)MLTRno8mM%2;f7+MUJ;fmA|@)mK=X&7dD^PCb_ z^qf{gBR!`nMHUOOE+wYcj~CLy#cKQuOXZ1YRFK~B{VL7xsjo?(PtNF)`gu@)Q_2H6 zIinJhX>#=Em1y@OQL%<6>Z`)ezLLPq-oC!R9^KGr&kqI`394NMnq6#K>l+{dHGsN+ek2ajo$$$rZIcc_H6geey*<%o8)D&inIOAna5lR<2)LMV^(o;MY%oX zEEcI3Xz>(KyLv8v?OLAZZA+ z1ZH|u|Lx(mkqkVi?kEa{OR?xX{e4S}qEYe|aZ%#AFw>j$Kt=^R4{E)c0B|k*7#s=5 zLP5KsI3G4-II2lC3SzSmbT$Jk7myV2L*;MGUSgDN)mg7ecGu znxr&vaMnBQYvC^?qp=9W9%*K<_?K=&iy^3(E`pifJSx)m10T-B!*~ycFqM#p$E=vNw8cq9&1zm7wAhrJ12*9b|io!73`@YBy9tQ z7{%qq2bFBhW`r-un#;t~B{0LA6>++>mqTUhgV@xb1xj3CSRE31mkgc;x)DvXi%M~6 zZP;-wo1K}9Xg_h)a4(sqXW=ra^eD7<28<$MZ7gzL0Xw{z&!BZ;v_D+!u38Dr-Yl6L z67esfsKYg6Usan@cj{>xsSDe6D)q~u(wl~tV(iiWpjf1E1=ObB2-V6}zD9ClWuVC3 z%_b8Rt6|3Pyz*_dK6*LVvZbPY6n*Px73>6mp;oBq=OS~Vyt)#zRiAU}6cX)%;FD%nTn|GsiDrzo2}QMAkU)0a06Q|t z=CF0=^4y)Yr=Qtr6zUY7xKzcBFw>hRnGb|8MWc6f-vkS;NO^|Id2o&Otr;EFmvrml z%`nZI-jW5zIPpcSw7Lb_y~~24zecIZy^gm+btX|7tGqNtZ6^%k<{xON=mbfuvf4A$ z^bFkwGwg*NDYaov)!0`KgN9p0Y8;+vCWCHf4(e}*$=*z+^YC^|xWe97Aoq3L0V6J| z+vzSamENK(7WCc;bL!|wKRWo5)&h&e7cyxP>HJG}r?`gkE*S06CJ|Q{N6Ac7D$J;= z4J#X9OD2zFI^#pO>K<#8ivknv-IjJ>dpFGRW|*uZEmuzW9vI-w%r;^SG4(jwp46ro zL*!>R!i4nG$})+Da6%s^ET?GFJ6J+Z%24BYFD&t9m_Y-0bPs$5=zUOb*T^(mX4Wy# zZaNua_Vnc?%3~(%94K*IK)bJqgTE;=e*ZNes!FfF zMQIi7&K4(iC&=+8Hba{{t0i`}b$nGIQcZ`j+sYq+a>}x&R7vDBvJiQT zg*bYl%!j{<p^> z%5&2(3K#ZrDG5gjHcI{*g=NnGu*Y5` zmCoZ@%;E+1w;ePjUFYX&&)9R!2Z_$#ECzWLMtUJkxiV8xbd+w7G6#CajM(Ef4Q;mtZA`+XOasw!oRz72{q+4h*m zM)?EdY^zE9+<$jk^hucKP1~X(6pBcmf>zp( zlvb;1zZJo!H(5r-^XrbxXxX6ssu7>wHz`8n?HSe$nSG>#8!Giu`BWkxHcD_c>`%ia z?_y+^@@Jqt{r26-Vx;k`IBgX_tJh`Ev#`gTNJ!O0y_1ounG>8IV##u5F!^HgV{rrm5epNFKXvf$Hv)dB>Xtq3w$>(wkfd%RSrsv-E)iFTn(l=5$o?m^0Qi zs-psX8HQ}mU=YQ6mIUvHNjr|B6*Tjr}!?@js;1J02+k_zY37f-|vdL&Y8|6hXv-h^UmnGaRo*P+$Uekbhr zlD~?orb!IE8jp_L#5}m&9A~%!ZIZs5P1PGP`i5Fe%GG4FZXh!>S2vSy!qD{du};sL zMv&!xwpcSj<-7})c=VK;XR5pGcnfxTGXup(XcJ?2nVLN~qx#dT8H}Lk-TEhqw@K_K z@eYZ1NxVnmeG(s#_!o%}N$er<5s8mUd_v+=5}%RyH;K?QF9i7!cfMdE7`-;nqZ ziEl}KN8)=DKalv5#7`uCCh=bq|3~5%62Fr8jfDOB#_VkT)rdr65=}_Z8!N45B$|_G zLBb-@lEi)__9t-wi33UGkZ47sHHkJP{y^d&5^YHwOyUp{?MSpIaVUvDk~oY+2NH*q zID$k+5}inNCUGQ*qeyfiaWsizNE}O|D~aPs98cl|65UAnNOULBgG4Tgo+Nsa=uIMz zL?04;N%SMppTqzXCz3dc#6S`!lNdze6cYI)29qctF@(fW62nLgCozJ=ND`-#IE}<8 z5~E3sAu*Q3I1=MYOdv6l#3T}vNlYOzmBcg>(@D%A@h1{9Nz5W~I*HjN&LH6@QAnbQ zL@^0^*QixOqLf4#i6DtNB<7L`ktiooK_X0|lEgd`5fV`nF%nfI=95@JVj+oY5{pRu znZ%hS7Lz!O#Mva4kT{3Lxg^dbaXyKqBrYIvA&HAfEF*C-iNBDzgv4?Zmy)=Q#0nBC zNvtAqIf*MstR`_KiK|GgA#pW{wIu#Z;u;d`NL)+eIuh$iTuwhtVr*paftzHY%yWn^qe&%Et3~g8R<2`4Y=O^RZ&Dyf9QvCs^txv=MHd zO``Ynn^u3-|BV)~FUz_IvSrI=8|i=ZX)2;uk6yX`v$CmOBjbm!dg=-dzE^ z%a8AL9NZ$n54pkbOK{e_zm2(Zy|npZ0e-{{rgognm{j$-W5!kie$)-7_MX5WbsFwC z_?Q4c?gmr8K;VsEHC?M6+$O+JxWUwa5V-Zq6P-IhDZo#;!PL(X_`&P*9PoAle%cMD z{)oVhuA1q9pAq0^-C*js2)uRA6HeXOA;8bM!PLJIcx2Vd&Yk}*z|XtE)DIFkYrq$Q zKTVc}vQvOxaD%D8B=F{bS2$JoUjqE08%%Kyfjg|}*&t69X!yv^Vb6WjT=nyAA#R%%9?`z2=KRVFvW=kHX6q71o(S5nBvJe z@DBp~qZ^!s4+y;Gmd*}!KMC;9Zg92)FX_C-sdfJq;Qw=j(Hq8_@rwZe>IOHK;GO?% z;Z&sG1UL&Fq|pyHk>GFJ|Iw+>)QzIkY~%(vmEbkeu@1Pg05@@in@MoXpB6r>JI$s7 z+{_JbF2VoYb%s;i%>}rH8%+JLT_~%*jYh7Mt*9lyE!|*Cf&UpjPlNXp;Qig;mJ+;a z#&b@g93a34y21NNaDK-1{*|8i_TM1b45!L20tyzIvvHrfmDp>A+%2|n?~#!jvK zqW~Y~2Dg#mZUtXCO+g0%KHLrdg9K;2{bPZSWR4Kvj&ATl61@10{tk7W1h}&s+*X1Y z_FTI~SJ5K{_$W8{UcmBn>~1o#v;_$Uc3 zisn0JPAfWHfM>YDxe^@xl{Jii65yF`a8C&y^Os|t;+`eIr@O(uB)CtX!A_yf z7T`17;NB8!)H=Ta7rMcD68zkVyB!CM1i07@?jykkLEr7VF%JlEi5uKkg73QGVW&_^ z1-Q%&?kBQs6evI(MEYz!5iipah@R;Qz{jAS1qe_71yTOAb_`F9O zIo-qp0bb|^pCZAX+HQ3QHPr&V$PLby;A=LA95enbz-PL_gC)5A7Utk$0Y1wOE|B2G zpRu9z*#f-84IU!FSslOm$JT$pMxiNke*%228$48jj~+d}c%;lwohQKOyTQXGc=>-> zH?dTJFK~m0OYpq>3ml#=6yS^8;1TN1J8p1_dzk=V>;{jNVBaSLoTvLQ0(^-Ze5wQo zKm6f-{R}P_;7i@$(Et;PDdN?%0PN@LvV^ z8aH@?1aJ821qZxNfUk9fCra?yCvS7W*9q`?H+Yf+U-sI+ow{+o0N>ySPnO_A3M!p` z@J0c?$qk+&!9xP8ojczwz_+-;QzdxOU-~#U-zvbjxxv#U__4kHoGN;|0N>#TPnY1g zvvZwVcc%c~V6;EitZObLEJu+w4VUID((4W1>z zfq|?${+j^b?*^Z)%$RlApSG(OX_Ejy;0Di@;IEpoMA?G^yx9#tLxR^%XV2gk0e;90 z_A4{q=^ob6*TVw*h#Ooe!BuZx=(PM>1^7`nxJZJhoO8EB-D3j$xEow7!AE9wb}G^~ z0e->_4oGnI)}9XdNdbP!4K9)3WzQbtfVT_q({6C71V?8VI^bsn_*pl&OoFT4I>4!Q zI|TSSH#jK4m(F_A87}=@fS-4R=ScAGb)PxZ?G)e_+~B#&j5AmW@uC2~4_nJR&D{e0jvE}6;H;-Fds(ybt^mL1 z2FE1$tJ7Ix;e7%AzzwdF;OCzI$cb|QCBPrL!Sf~f=C*%uGE{p6_#-!XfdtRL@_2{3 zj|KP>H+Z208!`W<0{od9TrI)9|GmYjqW>1)&)wif5Xt2y20m3 z@NxZyId}d|fU_FA^3Uf>@Y78uJftJWY(gRb>;^BD;9uT)*D3DC0^Gz6zCePrZdv*8 zpzShC+*E*@xxp7oaBwYqx|<7d3pe;82|jUuHfpm3xTPDsOoFSQoanHzp8)Ug24Adf z{_Vs^!>j%wMiU1J@PTgdUnKaXC+~9D$PwUHZtx`%eB*zfce;tz0^G(8UM|6fS!_=8 z4+4CU8+@q*5B*Ocr*54#9U;IS-QX)E_{^uCaUAR< zz@6RT)e?NiA~uvhQh<+ggRfL(@Cp4c0(`U^e3b-WYq1CR7y&-k4PGO`w=Q_>Ui}Pq z72xCC;HxFL{LK+gpK`napWp_smEePqUF=l;ZUXFcga0bQ`@g%uDU|L4+`|pNMuK}a z8ST`%TmkOs2CtLgFaEh}Y~`QixVx7C_jZG?mEgN(wsY>BC%}E&;OitfYsyJ6J)z%M zfcv?@>m~TK@1JlU*!}`Mzzx1$g7a_f=vRmZIkFasJ zBv^_KO7`nZwD#EVr=O7&Y(lW-^~PT|VV&PLFamECMA3_Mug$=>bm z>~puK;hHs_#0&^>fPS*ihG=s0|NZt`?d+!eG@tJeRRw0x&T7$Q32t^1ZkCxl#yv?x zvso~CNj5Fs8_>Ob_ksc4jXjIq#k)wlM~mlnw|5;5^M^u(SZh2i9Kt)9x+h%8-Q7Mm zp*xNX=q}fH+dFD|c2CS7typf^>~z>MJu%>fj!Y-@@EpB_&10J&TKr^K#*D%j~~tK1-pmgXEK*pKvs2 zKbv%xPBBiIjYX|8K&&8%IS@pc{Ywu?_G-@Q6`a#@U{}_f(`a=R+cfCCcG{vCSyV|D zb*EE$d*yb=Zg{Gu&Z!nXR6R}XiD0+_hWYpDvBR=ZlnTuWtL-LDa~MihyNE^*du#$$ zB|fv}k%&MLr}QK0>T=HOC7jnPU>AD&&`Wy-d-I`wyk^gK#Gxy*hx|d!)&eLwTq+qO z&d?F>-ExlZvK9hkRg+i*VY0WBvv)pcZ!xeJ)w)*Js?AK|fS~g%*rO_A5@21?yG7G` zHk2OiEbe9-PVEEa_%=Li39!~VB+i8(n(bfv;a|*YK9keD6xbW;fM&K~)IP+;&yI1I zeU+;bz}a}+Q*%uezy+{0nA#Vdg0OqZR9Xdpabf?y{d@K6*}u5hAL!Eq^tH@>SQo^F zP=1u7+&B(_Hfo6@fDs>A7XfK4BXKc=SqxRY7-GB_mIJ$*7lXZ%uKNUka8V%Cabh48 z#LH>Bi=A}c@g~u^*zgx+kwLPP9=hlDp<{*O8{j;~eR6LE^OwT7vQ(URc+bVT`Sf2c zqlm4V_{*TXtD~De0p^zLabbie)z%8Yt(7EJL7429bM`}={nfzU#@VlBe8wIE+BJ>X zc#(*oD{br2d=3&hC<^3C*c(cj6sJ@&dm0|og>n`2=g3wc8&SsvD^c;+;6v+b5^Eud zdioKaWPnp&%&A`oY_+GIq%v4gc`fu$aJk|TmRUEsO%rwfXcnBI#M^(EL{ZLJ5| zx}L-h5N0Kw#hIMRnYuQfXcvHS_?*#3)z}UH| z65^CcW)=8JT^_d*xw_P?+vuOSleh!Ith$pq;gdMw8-TTUWO+8IL)Ep%ad$)WC~dw& zPj8?77Q9+Ey4y89_u&2q$@?1{ajlKGV%EL73DH<+I!0r#`$zfsD)~_LXntP2jF5kEdaMG+m~g0?Vuc{ktx(XJE!*x&`8AA5Qhh zipl~J>scVI9VDKEpn{!s*QmXD6^1)Is4?IB&YGDN}|%*BsL7c_d-9DblJ+h!tU2^jUt*^tHS;;{TskVkx1`)k-3rl+S%j@GW?$xJv zpjRF!X_@_^CiM*{RH;aPju?&(t0)RqA{F^2E?c`uyai!a)h?XVqd2F#f%P~Q8E?BF z^c|R@Qjzf(htJF^>C2kWccJe9S%BgUY3n_FWW7(~0|=AD4xGcoIEQrO)N4=dfx-7MYWBXItt)=t z(ER=Ym1ZwlkEzJ2|9MR|R4`}gV{=+Un~Xla?fOLO}hbheT@ z_3__URueFpO`;KmN#`&BWix00hkx7zN(s`eDX@z?ZECf}g1}}lV4~X@&RHg7uYYRJ znnR6>Or1%HsBfg261Q3aVOb*=`H$<~n%zS+|B($+ogcTA9Hp4F|3!by$?o!LUD;Hd#)gW!C$>s|)QA*ui=~ z)-R8(v}fb3c0gF|NgN7cmd_quJ|FV(=>Y7dbx=M|nBfZxgUsG9akvrhhG6}0SjD=( zcvxK#{Jtjm2&il;TQzmU=cuqB>o%;8xMX!A(HVl6r61Al?dHtB&6({2?Ae~S)27*i z$)jP#w1jRs6xydm)w*H%m!|L-=;|hQ>CsC8KjnE^UXT6-cvn!cgx-pTxrSr$6{{{WG8Y13%JQ}ah~?t^)iY4O0zB9lbi9$gmQVM7;bgS|AP0waC# z0?eWG0*1j@epZ|xt*$7tdH`zWlIRIxmcdS52G8>{$OHB=Z_8lcehBXSz^t;A{N|iz z60v-&IqwVIof7sHIO*D%Snday)t|%w2;$rRwL8-7obRVN-vfbNQwMyrj&wnwunI5p z#_A(XLE9Zwq9jm_4hiBm>li=Pqz{5#HN|19b+k^w6)T^_U&KGuv(Bg3`VFa4&$=JA2r%37!II)v~^|q24Rtqktzz9`Ijmve#-Skr*8rjwWf zVe)u0=kX@a<1Ao39t$QkUl4jatWjgZgs{3I_G?Y-Y^YSr{){s84T%Kj2k14?))~N9 zeiDTcCbjE0wbyWJ1HgK`>@SG}g4`0=qn7<80oE10|Izf8LaCzHoXIZmhXNJF{s`9k z0%HY9%z-fJUCrseg40_LtjF{waX`>p0ecj^Nq}`l?{}KsFqE=YmFDudNH`j$wJQ5KIqS^knqpszg=1VxuRlr`sd$2U;+l=LW^beY0uEknD(-}eeeAqU} ziMaOVy+eJ5>-m1r+%JIk;~eeDUowTLy*ylDEd<`GCb0;@VqlG^*E9ZW za!8cHS+K7nbr$NZ9DdT}a5gMBMn*I$0bstF#Cf%nwFF@691`b3P$AHd2;&y>LO7Eb z!ct&szptQNAC{d)7*~@gg8d6%*qju7cc{;7an*k{^A|$9${5iyk6=*%sbqRrymb*S zS<6UV3}IIGD$a9^^Sm5bZ!<=w*@DzdVTH;Vnb$dmnG8OD(G*?=UEQ3=$85sTZd6ss zw`V(}=N0&hwUWdt2$R}!PHl)&yBgTP{tvX{34Id0UkMZErNxC)9vQakG_fT1dR+x0 z+Q=u0O-ER3@VRw0iM0^KI{k=-BfwcN=B%#+_DoMxpv-2$>a{Roa=b$hb(t-tpbd|L zx$B^)vucY1B_XlO);F{~81sz^mX^g91V~!zfwQhBaRY?O@lYrd&p{?XKt*iz7>kqXfR<%VciCVbvubWAk0Q$GADTwCwT*~ z9*+hSnlI?R8`h}NU_zKlY-+inMAOtwHL>?VrCPIQCtKytM5*4|i0jt9B<_PSX&udJ z9mQ$g1nggGU3a7L+Y%#HcoA@UAiX__ib8vN#RD+ubloaA8y+RdVK&3vh|M*%4?^Q1 zQX`G+X(h3GHLSH67p*NM9)d92grS_*A)ME(z@AfUUTYPWxh)qp^-&lyBZ+Sgm6Wio z{q|W)Gx->_v5iDVoKA0)EWqaa;em>P*zs;X4!E_A#1jx^ogK)zJ&AL>9oY4p+cd`= zHN0EQ&bIg3cecF-#{~6H!%nt=sD|%2g+bZ(l$zp%+v)bxh4BpZcNW{;yNQ{FZgjXo zso*~x=~f(w21_ffXMwYJka!NlEQLH?3cYzL>;(3AECru1E_q?p?3gHp7hq?gW^i56 ze}Ja{MJR45pFFJ6v0lQzt(Qr>0%6kJjnjMrr};HtW1fa-w4%svh+l{5(T)QSL#a=1 zBVteZzy8M3Xa}^?lJ7sT9A}* zS#@ho(!0>m#Tj}G3CF0Rr{q})7OWeqfZhYtdY{Ax5GH*cIDLn4`t|^8Jjk^SU&S-# zqjyP?Wv-P!=v~}RYOb#rTWz@y#{|_M!A`b8b{}}B5bXK-RHE91P3a$WA$$zoN61Hk z#oj}LQ5+dlR0hTtR$HF{WPM8FGYF!ee#AJeEvNq=PXAtDm+{`Lmh`8Sz;T8^h6jS@ zFJMq%4Zb=IQ(J)F6jos-TKLvhGyEmAs#!Sut*i#PHhuT?JvOIUk5doElVph4nlG@9kdF5pT`=cUtxR1X-!l5rc+p%t&3={ z3+p#nanP8+f*2irQWEo>8pT5H!4OtfQxrxviAE4+iTv_2Uv`XtILnTKt#xIuaO{{v zb`(O`!?y$n8uaR($ZA1tGZ-;7(Pf7}8nLA`7Vg!a;qKCR(leMLYPeM;Y@zWnd|_pks?fU$V%h3B58+f zhEi@_q4>&a*Y@p%VE1s?lx%n!=eI+9hUx51n)f51Uu9je);nAk!Ssx8LO?9*#YL+V ziOvv2GyRBIYB#6(ZBBC+U_H*dxGfjl9t}fO*2Rr*sLU+AeWYgc7-&=JZJrv;kHsQE zEF%mQ+lx!BV}Y}}k~j{+th=vqQeWkyb_3R!o=Gb}jmD=4{n{+NcQ+79FIDLBNzmfAR;bBX^E#(6)g|MJQYBqAg@d4LKMe8IRt@VEd|>617z|<7v#p%CM>ugqf%T}K zF=GW?!=QT%`_v%`0e)&>VNs&P8;{o{4TpwKvL>r31#`It1=`jKz^suZPK7Y*+$K)l z{hYedz}9}Iq*fXIHlnf*lOjI6$oN zBql(Z9B<$p-^Dqe46MhyQ4`xQ_?-fC)VjIEIFsAl+9yJ~YjUSTsX9hs3^ILm>M(^6 zA#4Xg<(-Dh)^rjxAWUL!=EUB_iJb+k$Hyqd+b&2w9j2&b6yhvyw_%MZbG3Cv2e*~W$EoTu0j zC(K#*(wvth(yM^=DC$aR zwxD!AteBqgx+RV9+G4@nSujAI4WKVMq-8c5?XNjI8*0?Jp5_w8h<<7$7{hkmCAesvL*iTrle)#6 zx-&U-OM&%xT<^AAPOSg;8oKzb`arJCl`b z12x;1L9<${op?tvUKAnT#1OSs0Bo%!u?oUuyqq&0;*75b*5k$6HF+XfzY>P2#o9G} zgEQYNwN*n2=dK26=C6WwwPsLjxBm#>)f?2}t^vZjn#5WNlkNbgyO`6x4p@)Z3??*R zaC|MSQELVh!Z@*+#J>5O*z2HDz3W2_CP(-yibL4lzaH1D>q*=IVNyDaQ#zAVdNZ&~ z>R|3Koi;~gHmSZ73A50c*Bcz8^G4>B<_GP zd7aF8oy2+F0IbI?LrtCtqVI-bs%5C@8=Uz}+T@{{`Fo(fqZ8~Idk~y$2OEL1?j>;_ z1W|7P+S|uQbIM0?$~OUPoUW4QoDA(4Q;S`E^pDzYAJc9Kz8`>9#Wi{C5S`&{%y7;0 zgV3wy5QYT(r4@8WYEjfawNt*d#@=wc88~YTiH9J}>OGWmJ%n?;6u){T_&uYI^W2C0~F(}rpvKiJ{kK>xPjl>fWCcOhWy(e*cw*%{S zt85xBD191s=vLVTa2hk|+)mRpJ_BV(I8O>&$}zT(&QTv14u`B~0kU?Gcn-pB8uB=w zy*Zydfi-rP*0Q>?6)s`hrb^h9%4r@6oe>szNj#mg{5e zt(SnXUMBGhgjsXDai&k;Ouq)K$01rm^98rB!x|N$C4@P|W;R+LtBHLBDhE2nX-wS5 zubB4@#qNq&^{@z%!VAKYxdj+^S#RPN)-DonL6~*C3upc)&irm*pXHHUn%&?0V6@5~ zipHvngJC+e7%!*NYs=|eO3VVl(h_AUjS!PB=FW%!QFiaZpC#ED-N-53%$DGf*QNU| zjQWEd!SmObS?}S3^*)IYAj~rBz{~6~US@lMUF^-8r36L`ojw~Bmfl5c?!%qOUJ|*!PgxUDC<#Zmz>D&vf$C>+m`ym+q0%obq{l4*> z^GrI`$(r*op5!PQ}UhgYhx4tIv4TMSb0i5XlInmz%dp>V# zYT2KrF=|X;ykPfx*rLuwPXMYbN~dZ{e}F=@c6<^d0<__x*79?ye+0<-iNwzkCa+C7 zuT40wzX0p;+VNx_2y%agL2B)IGGtvbJY6&V8?>s7^BA>)a0)`eFvjCq%|L24iAE46 zv%mbrSJdJk&Wc)KJ_(VO)_!R6C(UGYXj2D{@pWrrb>3)y1=c}E ztQJ677KxS+CZ*qTO26fl9ssPz2aY9mL2!E@EK&!KC54(K*M7~|EKPC_)V7m7C?9wZ z!I6KZRx4b!T9ar4VUoL-llwU*w=J;edfURrnJ!2@7?%7gnRj(X=4?&oAyB8zHC6ek zkrkL~3RlVlGNL}YKTBS=+Tkl!dlH92m<;dX41dTO?f|UE=bEPGkD&cmx(lcq{GsY-5RW$o!q|t0)#FwVz^q&nJt53G zx04h3JSQ>_*z4+`@uU$jx=3La4bO#D^x9^evW3xazxbU@<|fD_ehISsz)Y4JPJ(r~ zxAmp62qNKXo>I+yU+7i+l^rpcht%u`f`NXxYV{{E0K%-h+d1V=amoh*>v4Y-XS!hZ zWLTp5t2l^5W@h=GpeAz=)T!jJUWDPB;{BY&(ZJSv2VHq> z<|hoR1%qQ?gxW4@T;}{`a!^OP=5H)islzYrf!c&XX;sJ{8M;s{&5v5+fU(Atm;hli zxq&lz7iV%ZupS?NnZyA>>J-?c7V#zla(Xjaxf9m(PK8po9gC&&hv8j4$bQTZ;^hTV zb1CFBe94+lVg>~9ZU5Q<)6Jakn>gRIfUV=*xDY8%sC6q%Bz&@y>1gh0R9r(~; zDD_NiqJ?Nt%}^;6s00gZ+U*6ARv9i@K@xKy%w}RWr|Sw%S2?gACs^E;3-T&ph)S@y z5uC|P@~c&v$uP93Sc(szCt+eRYE|N@HIGCD!lZIJr}7d`Wfia<$5L^o3ohrw5*16u zLF$Uk1)9tSPv|G5K$vXJ;%v?2Y~2j35mcp=Jyj;e0u|9jy|=HguSYkGyypi43lM1b&+CDFQ;+VEKuPxs zXVW)(?RO1Mic+{6HV0E<#VHl4-F;HY8YW!Szf>2=Jy5R346+EsE6!+$wGkJsdr8~} zVOH4!CYUT z#F=iFTcQx&ft97Hu)qs|PHRfxsHTKxxUSR%@GexVb$B?gXL3cky_~6dbf7#Osm4ab zfWO>&4s3BZ1^@|+7rcG}Th!vw1RzdnCSl2HP3f0V zsOCA11(nuUxMF=x;u{E)%mX-?`*SkC1J>JlPQz-!;`cB@&2t);Ie(c1AXjPret@dh zvQ+acD{(?m3=N$1BR;l%BJneXNnTS!oU!Q8K~U{ahroVHA= z-PM}5-=L?N&|_sa2Tj=|8bJ_O_OCrH`OA-d0WJRFET9Fp(o?SNq)juZ9VrawtfY9X zO<|%#*#4?nX^xw#-5iuAnh=;*g?*nOrFGbn!Frn;^e8F4OS~$uv(L717VW4my`E7C$BBA-jk<{7UUfa8#sCD zYF&|cohI)PXkr;|7Ca`*aJK{8YER-&2=kHM!zulcQ`!O8y2x;|2(q>r?iw5v^dAm; zS%$lY?>L2$S%&+1T_{IDzv`Rqm1BCBOh;U?I+5rMVOHtgod35u|6PFfwr@797Ni~x zBUImPTz2@&EL^-%^LGqXC9c$?!ligGY^k|C=2*b3t|X3wFe~+IoYYr2soj9B<4PTp z)}=db!zySZ2L=B=*qgXgC;E<4D4A92n{}adhkkW@xN6U=9{AA8CD9YYq<$x-{&`M) z9>b$qzG;t-bEEY7W(u)ffuc1D}0!1@M9!m&`$>Ia0?pTqzNvo+Yx z*?Wq!HxO8lcSa{PUvPOctWi6o6T&#Lsm7p*qOIFCv4fyerM=l^>`B#?0q04wP65iw zCovepBzG$(_YqF+P+&bydna{45IhVPskC=eC?`1=ZwX5wDUxuO=1xuWaHv&B=DM=& z{AA1#fLS9+oC;yGyos}XKWBL~upS?oo7@LM^B9<pDwMES5AW+x1Z?s2;ZRX)8opvpCouzp$h3dO;#p4SO`ObGz#7p(O0&AtL=&PzC*RlxEW0;SXx#B0a%jz-WuOF~OG;<19c`A|GL{-VQ| z-36u6*(Y2j^PuKy0TijD#f`ix_RwKb#zI`Ss!1$@Flk%LX*-|OwiwupYCZ216$@l2 zDT@SHDGP2ho{$QR^an$y!F@VhFQ7R&gR@oXF+CroT`twJx1(!!o^4G}BI9J1Oey zrLdXpgGq@Vr;sx1*thCJx(rt2xL)99t-y!YN)oFe%t9#Vg%IL}uo~D}*JjrX>AL6A z{BOb*)n%+8^GfKR=(^&NW#25N>Ewj(pnFWSbrsa8>11ayjlGf6r{7(<1|aKd5^EvM zwjjXSE9UI21J>i|8z4+lXK_+za#C*w*4y3k%w|F3EiggtmS-0^bD1=^Pip3Fg(B6_4~h5}P%f1% z6}%0Xt=mc50bvq2nG-mP6Sx6bkKZ8@Z@VD!ZkVF__;`%TXG+g{!kV~U^LY>SsXm?x z&f16%tb0k^2Vu5~qd9}4ID?yjt#zyD^iWt4oa$OjyO!B~`~%Rf`gr=3la$Hq=rfw6 z2cbcY3u!8Gv_BZKHseEU3yFsy%&In&6E%brwG~)z$A!vZQNJFAel;#sS4_fEItM6W z@dSj)-$2gaNu0m!z}7w{uT@P;;(*}u zY1pIoU?%}`dNY}D{=26487OV#NA`uPT#3Hdl72X_EbuUU~#)$6U7F#mvGg3nZzp)W~{$i<-WU_CzS!)3T2@*UWrj{0x`Od4z7OunpXd>6{pszNq1GCC0R7gJyS9n9RFLzw(E<@`0_{QUx~x8pWuvmozRn4rdO>>_6_laOVX zX6`pA;vw`nS~Z>30*qyoXar%>_R9}^{U!e4tiJ@-`w*H87MwMMejY;8mAWGApPI1d z(2^^wwb~NtKK)UC&Uf0kz}GB`L`w*h((gE>-*QS10Jioo!md?Row`qg^#fsIENwn` zxulpBPuRii*5#4|JJjY+=VVp+4!BmhXtgHM2Et^2FK7RA&VE~9J>LB3wp?(0Fbq+f zKivqAd!Bm_C+|Z}UI$?LYV0&RYRt^A zec@z7O`W!#oUoG)hePc+$9RXGj63Z2H9O`V5gh|_O zPTSj@wl2VWyi6#m3!?HJ4U5z=p`=iUXX?^ZOMoRB%KS@{d<@hc%!Z%r_)Y6rT(i28 zI1a+3_BBrJtDM?yz}7{M+uS=?yMs3Ey6S^L?7gCVd!WN-W}5-`Xg<3`8C&|w4(FH< z#srgl>1z+bty~g4Axw&Qa*Chl6z2hJEN-dgeie3NNkm%5r`zqhu!J$ZQ(HVoP*Pl@m2hFp$GTAZLcbbl@)ZoA4QIQ& zcqt47*5iR@0^k%^FGKR0y+jZ{oz?&xs!mtj7r{ zm*IlkF|b1=q+9@p$ISLE?A0`mg)+XA2^lan5euuWakyZOCouuSy)HJ!u^2=n>BnNxTZr*Iaq zbur(;dOA90F3q0JJ}A$QB~FJuGm|>$keb=1jjuJSv!Sn-qpzm*BhJFZGw?;rPofaQ zq+SkN1X_m z80T=CSrh%8<~9tS9h_3;!MsmS1XcoK%_9+kFsuG@&g~_f+bUpJ@JOSUF||2tv5!1K zWl!(@0P>s@yTzFgyUy6B!w$)r4Pt)KBrkx@9*$1dl;>B)%IN)nMfSX*xs7ijzGYRD zSOj76zLfKRKIeTgun*J$@2rLQn?`0Zq}hkN;t@Ct)<@H2iWgWW1Dv09ft?LAj!ZZS z;G*L zI3PH_6!xg)9Z7(k-b@mszi4_dgHpA|O{K}%zQ7f@Y^@}*3c_TzoHHBZ%&rF3<27#a zwhL0Pgehu`TRevInaP^L-!z|BL7zGR51B=AD$;2C>^sV%My)jfSXYx+3t=)E;EWb? zM%MxB@d0>=tQVYK3uDv)c!^M))l6z>cH^w9d%#e3v+JNy<&^BkDjK9ih<)pwFw+`m=!8g+0Bx0j;XPx_EuXLkr^cPp?4yR{sIq|yH;aX_&9DC|-F ze-fZWZ)V|@rRjYPN{>uf^b`Dx!V%vne?@5(URP>84xqJ-#1jx^4IaojK8bU@9atl! zTuY8wO^(=hg`{0+CYMa71n*D7#*!2$aLCUr;k2J7{~2gjZLhtLYuuX>nk@)@0amEC*SzjfnAs|+12ly%LYLYVOp8(Fo3_hC z`V^s;fUsUB@d|{=WH-*_37pB-fHignr_}Vym|!6cSy)N0{Kj9!@}=L{ib<0o5%Vx| zdU2r)3KE(x7=0bqs9nJcVJ5LDtrtxg7vyMS-+)TB_Jlf6c|iBLa1ie=e-jt2T_oOu zFgfkQIX#MVx*J%J*Pgg77j(V@L)6+6H=-6yCfuOVS~K}Bv~^C{zSybmVF7=vDuR*0 zd%#)mllTC_Y+*ZaQV-*#?g4gf9i$6b3rk6RUx_p;%?8$RNwED9EDY4_ze9Xx&FddD z@gGC6+FOWminES|@8bFdAnQ{SpFx;axh-e?AkO+;VC!PtMH;a~G7kjFU%()>w=fyf zVK}qMx2bj~#`)%55wtj;WXAa02kK3tOB+#+jHOm5T*(4f4nB@KPJzxHde>ls3fvx?i z_z5xun3J1NDSf=hIISdsJasD)G$|l+NEWAKL;z z%OcSd!X*1UPWHE)>;r(kh4*CXgj~fze`!THipdfjxbFOI=ZBNN7$y`f_VdyACI>lXq^#B8!Sq1T zc{mJG<1q6&XS0v5_QQovn$07iOPvrt#UH8)OscBHFt#H;wmOmM3}G_4n=|<~XR-^h z-kuQdm@KF}8WyM%!kufJwiH+RCw!KV)U+J~J;%xMA8$qISRS#?-=60h6^vr}IHnYj z1>WjP;y4JC&(}DguW~-S0eb~+S%3d~Z%o;m}(2r_90y67V44g*;7(^&Om zEJ|d1maHE5l9fxMCj^y){cBG+?BwO}JTHelVAu0qu9~euP||8l)o|o$hDH440sGZI)+zYZ$|o@x!mOxUIbV-(zJ>xjpY2FZ ztG%eGDuoRt+6EDRxu+cHg*R?%MeQ2~D%hfo8_N)k!zF7xi3t$q6TN{`d>5y9GO*rex=phMnNwhe zim=S<4uzTJTDofrr$U!{37iugN2)7h;nIk|vaFhuIt^fJI*Az&CaE`bQg7m<&H}df z!(FGJN+a!3lP7}b(_xr;30zIzs4M1kHS@EfU8TZRyFR80%l$Ffw9ddq%TJ;Z!en|K zXZjk>bO2b7Q{isQ1+yhEM5V&rh&p1jX)iE&g45&-t_p^Vef09YK(Q|$M-!A6hN{P) z$I`7<8^lvh%ly&&F-^q(~^+CG}^qVvdSMRDkDt6$VNrM=J=y5 zKU8V~Lg^5HtOYF%E%ZkN&F2QHEB(PpQ-2gMCu<&zP9#+=>6?{R`M8M{EHAH$(WG08 zNTA$asgsr6h$f)3vKlweZbU`eD7%pgM5f@(X{2vjw8(CeC&N}GT}pzbRS~&NQ+N~% zM747xgmvLaFjiK6QmWsQnuI^{jl$X4*;s0X6*1V*p4AHbW@CQnt%yyq-+9~8D#OQC z5Q2Wlav(rFeHtNJW3>hr7qpwTH`;7gLE$pR&*Z{D6A@_e2X5v z_KX9HN?8u0hP%}`wUH89DQ(BBs0xL^LCfqs{VXFBsK=>JF4qdZ4 z5@0<}in z&!#^*7sZGBS+mOry!TTl{q}I?R zLplui_Vvl&6v5$|;Rm2qWf$z#l0z3(VmX-o?r`ftT(mZm*aBfPJB%|slr#GXupVa@ z+?ESQx55yWU2r2flbP(j8L63k6x!5YCai%P84cr*j6m_kSU5r}m>v0m>AWSY# z=3EZsTs{S?$9tLLZ5M2Ahbd|=Q#^+AnaRx9X`0Wcp--hf z#|Ol;fp#dJ;rRiMyP__?2J08phApSysEe!p2?Aqv!MzSse5spak9^+1cdR!_?1C_h z>}XzOU3ihb4eT8}K&j&*)8n2D3(Fb(?1shj(&MJC3TV78pm$(ICz&;M_sdRjWxWfS z^&W}$A)lUM3#`Tl-Cb&f}Cp6yo?Go{c>)NxfY$xxWt2_G!kc1ndbHqfFF1 ze+0cM)*BuQ7t-PRqOo!;v_1yN`h>)%5X3V5h&1!ToaMHh<lOA=lX7~$eRSQ-53Ym#9w9ocRAL~m%tglFX4Po+oAm{f0&hNLtdVE+(V*3TV z-@zPpSV>}B9dVm84cx9r1#FacR904#C75@|Kbp}T3I07{Vt#H`6JjwttNF`6Pkrj{ zU0>bkJO7THyMH<0(@%bx^Z8{L{E|DQ(&_P=zx?Fu;+doNzkJ)BS06j8@Ps=8 zCv^Dv^?|Wj;ck1rKI`;*a-OJVu4DP*m-ik$c*SlNWQA&YOJOs!Q+a z`tM&_zxeQm6K_56*IT#V*f}(3dEb_!{?Yh{gGS7)c%<|6rML7Oet5-q^PXRIlmDcw z%|8cTKkS9~{=VlwMLl+`KO+CU$=Chy%cGv}ddSne{_wAx^Lq{G&~(?MuN>d+?>T-& z#q)pu!*4sg?H-?9h);+Pa*BRbz0WC2)v06CKj2;o~+PGy5}YF?aE z5$RN1^;_6roT`pNgQnko=dfvw&wp%P?5PjVDSmM0 z2g83{`B3v^hpoHtxK|#|IY&9QVM}$tuDkC(Bl}$G6g7tQtA27WO4X@)f2Nixr}Q&* zv2-d&c_aUyvm#Ze>b;~^DyMWwt&&c~mDHM4ovQbex>`AaTJ(HW;VwjdSWg=9Cd8ZEi45ZHaU0 zA?B1(Qje$VRJ}h_+muuKnR-Gx757X%o2paw{!HyqPU&arIq6hf>-SQsPHpi^iJpbr}2Hw5n zyDQHNU-j${!^iEpYG&~V?XDa8&bM=qJHE~E4NnG+|L(~aO=sPn^RjX(_pyFcHuM>j zm;H)#s;O)!@SYX>C+E#novQbe+NGS*CH0ncDz2p7OVz1*A5XonoYLc|4_r>kg38MI zBvq&Cy`lJ2Ii(wl&!kgv4aHXt#;LF4ocbo2Q$ONDE0h~~YyVIMrJtOi)J+~-G;>P( z-tR5T{#o8cLDc_qXh6Ll-}&E9k7UDABR!Jc2%pS=W8{p{gH!6GVK`;QIn`1+MGjHP z!aw^br&X#>)%%0lS~;a3%r?@gxCgUcgK?^ToKuG;bE;#iPSty7*GW00JG;)(Dg4j= z(bezR2IExMIH!(dPEi%qStI2DX@YECkzDjSSb^WvO}NT=cw@(UY`Q`K=!ElTFpk_O|{IdM*% zE1kms%rx&s4aTWuaZX*#oZ`K2&WZ-()XF%gR!OJgo~bnr#;L30oLVcL!vDZiw3x8XwK?9J`!COUg_hwCP)9_MVth4uK?|9`fM>&`Cc&bj-`=D%_a!L=%o{&zdL7A?@&o&sRcEmaL zTr#I#!iB^S=F93P`oVlf-UR6H2hu5?{-Gkv`6N}R>OHaWsd7p;p`S^o@IU)U{Xgd`{Iwn*)mZ)N-Kno(shQRP z2A`;`K6#~En;%nks@|*LPs%A>{eG5CsV0;hqo16trYV-xcm8*eIWx51$i;;#dfwk^ z=ZnWyOgyvca2%h${@{Y4-yeT+amTK2+_wLd<5w=5-1CxC-@drXMMr+QV&jYbK3lx; zjjqpq^FXgBA9}RK#@y^R+gh|=y=_I;M@q+E9vgG#y6Di&w?w9We#pyhUfBBZeK(vl zV(|-~{de7YcU+#+v(=zSJ9KS5_)ptor!;ydCmWX9CDmiY*pKeJ8JZt>69vN_5Yl4 z4aTYQaZXKeIdz~cuAFHN#;NIXPR(FW8BNw1sXA5fLB3x(rGxxJ=9KYFm8I%by+>I= z<&=)H=18aFqO8hPovQbSVxDqJHxv=+R7+k=_&aA|gK?@l&Z$Mxskks;NrQ3foH(b> zWlkBL??ny9sbz6aUCf-K8mNb3D;kVbE90D6#hfCCRN$7grolLMb(~XcnNvnTwZ6eP zb$y&uHzafFwg%(W?Qu@s!JIOlsf`WBse9v`x=%V4H(cG^V4T_#=hQ>eDHWaT*6;BK zYHRv{n%if`YFz-pOZP2)vTdZzie1)&b&0jCu-(}s-J!^TQnG_ ztT?Ayx||}%=qIODgK?^LoKtO*In}PgIMqJRsY97lR6@G?b!;$Bb&7MUvvevhDn7Qs zIMp@IspF(m)cG2TjvlExRqq+mT;-I`i1w6Dkwerjs-K*GsXA5f0c3yWl#VC{NT=cg z$Wt1OQ~7aD4Nm6Nh*X`b_erji$|*g`bt-d;s-Etr#--|1y;r~S$|+s_CNQUrhGJT( zPSyMPWx8@ok6&g;r_}gGHxy^2>Qud#lwUceOR7*h6*rzLYcNg)f5R9r)GQL0YWdqc5IIi(wli=|U> zvEPbRovQbeTB)4UCACUA6<1PgQgy1{OX_OnlrE{Y(y6#6eSNAyZf^X|C4j| z>w7PKq}^X1|I;Na%jVDe>aq*o>ojEE+sn=$d&FtioO<-K(T%PMoPXiGN2)H{+p%w( zC3|l;^7ijfeQ)-NzjgfZs}J@ceD3bb!`Do0{YbA(TRysT&^>pC9=x>kfgfyse{$34 zdxI{1J@EMWrw2VUar&#PU%mI~R!4m~fA2MiKRo=1z0-H(T(6v3-t^vw7lr>B%DzE5 zMJ1&idl`ePoZC`$s@_ZLcIA{VsXL@o$|3yI{>j;xs#Enop1M~#rN>kExtx+dW#w#6 z)v0F|*DE;vUg z`k8t~Iz?5_$WgqRs#Epe`R-Cq>CX2p=9GG#sIka-FIA`Ny`gwtIi(wl52RDnq#MuF zCk@7_Pve~Wj5%ereqS{hr@oGJ>Ko>iQBprP7^i-UbLwa2lu=SyIFc{%9BVeN*z-Yp zjQud#R9EGcE~(?BQ*kBLBUPvB zy`*xLQ@W&jN~hGIOjo~txRAIB?XPa4o6rI5CPq7a3NEb2E&unM(0t{TW@a#RikeXM zaOR9?Fiwq(bLv#)lyZoQJZD_0PSyLQ(s<>Ro>ZE^oFZqGV>#1Ob*kQ5o9W6a-P+8M zPLVV8tJevffeVQrOuxE`elQE=P2!&JGF(`1-}$Kj@%P09l~ek`oa1szGgFzWQ}v$l zo2Q)88NY~hO4VJIjs26eFjc4O{lTnOPU#18k#tH`KV4EwQgy1{d(3l`Q@Z+{%bcRp zqP~HCaxO~Msd{g1mMN!nYjd%5Dz3Fzk*ZVmzH@)2a!T*qUnQN|PZW@rIcrjNs@|*L z)ygSd{nkpS;-0DX4aTYK222ZjW>74wqA^{^e}Mg~UDhz3L{q2fvTq zMBRY?pR*Yk*5i*FL+g6)7q%#;bieSB%PHN2KAx&m_5NUPQ%>mz^9kmZk#c#q!8o-e z&Z*~^Q&jELPtHrYkhl)NtZt&~@GHq~@+K~<$1VT&>+r7sukMb4;f#VffS;Sm3{rfk zP+?M_LWK$yDpaUYktU=GX+oNiCZq{za?*q}Ax%gV(u6c2P0$2Q&;%8#yk&R2@79g& zHt)^ET%0lYv-|$8j5>(SBo<5;XOie5AP!iFtEVzhV4L$GT&Ms5{kFh zM~H%jg;veWC)1C$DDz645Q-~xiYNkcrOtvuoeR{3hl)igT(VEO^4%H~=9S8FkM#2S z1+G-m{g<9!h@rBBLFEWku7`4UxekiFU{Lu2Rp6mwl`7Pt%+s%kP@I0nh!W{n;_kS4 z1uvy+HZ98h zxY|xA-s*RFC}=xwzfLX6JSe&d#X-@HD40*Npy&w()hkeaX(-+m_iIt+={G$#geqG2t{d`^uJis#g04;7nJqgs@C`;8Hb+wUo&#Ns<1 z3~EB4o_na+IyD&#YD%D9dMIc=UZl~7!%uZW^b zVWASynigeVsdYkerM@EyDg}c#v>U;oHU;Wu8j4ad+R~!T4~g4^;zQz2Ce*GLWj?3& z2*q=1A5mgX9cWSJbLx;#Jg1HjCDy6qU{EIlb(#rv77XfKpe{VrRsLOlj1oD@%g*NQ zm*pO*QzVkyeo6Nk|L=+L-Y;8=GEcu8LUH=#B8t{2-X`T~QRbD(Clptzz(d839)-c6 ziUg|IL%Fw4T^|xlv?%lTDo!s9B3L-_W)YiZ`^ah!PvxHZ96L zDB20dLD7LIv7zk@2Gu1{-I-85!Jv8tsxK3&-`xQtnKgi4LWkn3&%0^&z}=C8FG<|{ z&)>2$=pJc&&pU)D5s;6xDD!|ECKLzc2%;bqAx|hIqbFLFc|eX5iUV>CQ6eCpX;J0@ zIZh}J$O%M=fPA4vnOAC(P+X}gM2Skh(xS{OHBBh4)C{6TrQQUCN(t0#8VYbQqIX)9 zdHc-~ira4XPLd=+gE lQILLACFsHEj}~Pf=?8@3NI&#Yv7q=H4C+{*PBNhG{sVTCtDyh@ diff --git a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.dll b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.dll deleted file mode 100644 index 9f7d57a14c55d84714a7d6faf86e7b2cfcda4e53..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6144 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 UMfLv&^}XKvQS$%3|EnJOH?X3YVgLXD diff --git a/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.pdb b/RestaurantReview/RestaurantReviewTests/obj/Debug/netcoreapp2.2/RestaurantReviewTests.pdb deleted file mode 100644 index b32d688651e25a2190f3d9930940ad48a2a2cb05..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1496 zcmZuxe{2&~9Dna!d+n{W>$nFZoTvxO5(2VF*BhBkH@9|k#t@;qKI>&&uiU%q z1i|d8WI9K18bbUBorZ)2)PMMcU}TF47=I)}j3y(E(HIhq{zU=`2J!o@oyE=9eBbNm z`|EwbpZne=QauTbFygBoq`xZ>Ew;&<9R(86L9PRd^=C%7?rV^};2wJ!p@#`V0d7l~ zhL+DVZtnn{i|d9`C=UO5qFDFPt}ZwWfL{;*Cvy4-#|e+*O^wIjLFb3#KRxp9!sEaH z0jb5|FhP)DWM~TBoLl+ z5?tSgh)Wow1x!$aU^GMs@(LKO6$n_*f)~$u8?4PlKt+(FASZb_koPgcg$BW!`&O>y z1_3OKxW(~vfv#e20_=t=7V&z(BK&v+UmSY?yYImgR4i68@4N0E%=7WZqp{N|LOw^c ze8<25M!Rr@w-&-V!00mJ{BdsfLRDe%9_-U(-r0Y2_BcdL^Tv`2GAOfhCSsNe7*@mO z2VXna*p!%jW88oE_?gI`BLh1wdA@CYGlk}#`hd)yO75{P&Rp1e_FVMXzH7-(k(k=g zOgcs|Cd#AkAw~`6Po}j4G#5?LoR+1ADCey#HNAzjI-1T>78%o2LudN)rktmyY*J>* zEHf&$ZIL(2ZSE0E%Vq8Zi>ezmT`0itw)FlR(YJF@9^?_J%&6RN=vgB@CacW1+vg9( zHn#T+4AbcMdhnLAHFE0n^6HIWod^VObRK=~w}D?8*4{WUTRweciZh8_9sH4!m9^BJ ztk6eI1#Xpli|U#r+>*A8blyzTqDIGMMbDdtp36apE0!61^$g9iRm=1#Y7{k=yarr6@r4b5*@|z zyGyO5P0@YdL~gpbymDx}=Zmd-TCFe5xL!VS=fn8b&(6<1efRJ0;Dds2orDD!@dnX0 zFKXo15*%_2p+!SS)!=B?E!Boz52fqTTkU;6*UwF^y13@d>iaJozP&wJzI*b;*_pc7mFt-+4N91E - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Raizel Seliger\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder - PackageReference - 5.1.0 - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - - - - - C:\Users\Raizel Seliger\.nuget\packages\xunit.analyzers\0.10.0 - C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.codeanalysis.analyzers\1.1.0 - - \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/obj/RestaurantReviewTests.csproj.nuget.g.targets b/RestaurantReview/RestaurantReviewTests/obj/RestaurantReviewTests.csproj.nuget.g.targets deleted file mode 100644 index 4b7695f4..00000000 --- a/RestaurantReview/RestaurantReviewTests/obj/RestaurantReviewTests.csproj.nuget.g.targets +++ /dev/null @@ -1,13 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - - - - \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/obj/project.assets.json b/RestaurantReview/RestaurantReviewTests/obj/project.assets.json deleted file mode 100644 index d9f47315..00000000 --- a/RestaurantReview/RestaurantReviewTests/obj/project.assets.json +++ /dev/null @@ -1,9808 +0,0 @@ -{ - "version": 3, - "targets": { - ".NETCoreApp,Version=v2.2": { - "Microsoft.AspNet.WebApi.Client/5.2.7": { - "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.AspNet.WebApi.Core/5.2.7": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.WebApi.Client": "5.2.7" - }, - "compile": { - "lib/net45/System.Web.Http.dll": {} - }, - "runtime": { - "lib/net45/System.Web.Http.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.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.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.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.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.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.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.Core/2.2.5": { - "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.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.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.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.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.CSharp.Workspaces/2.8.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.CSharp": "[2.8.0]", - "Microsoft.CodeAnalysis.Workspaces.Common": "[2.8.0]" - }, - "compile": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Common": "[2.8.0]", - "System.Composition": "1.0.31", - "System.Diagnostics.Contracts": "4.3.0", - "System.Linq.Parallel": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks.Parallel": "4.3.0" - }, - "compile": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} - } - }, - "Microsoft.CodeCoverage/16.0.1": { - "type": "package", - "compile": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "runtime": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "build": { - "build/netstandard1.0/Microsoft.CodeCoverage.props": {}, - "build/netstandard1.0/Microsoft.CodeCoverage.targets": {} - } - }, - "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.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.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.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.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.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.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.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.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.NET.Test.Sdk/16.0.1": { - "type": "package", - "dependencies": { - "Microsoft.CodeCoverage": "16.0.1", - "Microsoft.TestPlatform.TestHost": "16.0.1" - }, - "build": { - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props": {}, - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} - } - }, - "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/3.1.0-preview1.19504.10": { - "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.TestPlatform.ObjectModel/16.0.1": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.0", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.ComponentModel.TypeConverter": "4.1.0", - "System.Diagnostics.Process": "4.1.0", - "System.Diagnostics.TextWriterTraceListener": "4.0.0", - "System.Diagnostics.TraceSource": "4.0.0", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", - "System.Runtime.Loader": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.2", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Thread": "4.0.0", - "System.Xml.XPath.XmlDocument": "4.0.1" - }, - "compile": { - "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "runtime": { - "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "resource": { - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/16.0.1": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyModel": "1.0.3", - "Microsoft.TestPlatform.ObjectModel": "16.0.1", - "Newtonsoft.Json": "9.0.1" - }, - "compile": { - "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netstandard1.5/testhost.dll": {} - }, - "runtime": { - "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netstandard1.5/testhost.dll": {} - }, - "resource": { - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.3" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { - "type": "package", - "dependencies": { - "Newtonsoft.Json": "11.0.2" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.3", - "Newtonsoft.Json": "11.0.2" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.3" - }, - "compile": { - "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} - }, - "runtime": { - "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.3" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "2.2.0", - "Microsoft.CodeAnalysis.CSharp": "2.8.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.3" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.CSharp.Workspaces": "2.8.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.3", - "Newtonsoft.Json": "11.0.2", - "NuGet.Frameworks": "4.7.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} - } - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { - "type": "package", - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration": "2.2.3" - }, - "compile": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "4.7.0-preview1.19504.10", - "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "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": {} - } - }, - "NuGet.Frameworks/4.7.0": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "compile": { - "lib/netstandard1.6/NuGet.Frameworks.dll": {} - }, - "runtime": { - "lib/netstandard1.6/NuGet.Frameworks.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.7.0-preview1.19504.10": { - "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.3.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.ComponentModel.Primitives/4.1.0": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Primitives": "4.1.0", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Composition/1.0.31": { - "type": "package", - "dependencies": { - "System.Composition.AttributedModel": "1.0.31", - "System.Composition.Convention": "1.0.31", - "System.Composition.Hosting": "1.0.31", - "System.Composition.Runtime": "1.0.31", - "System.Composition.TypedParts": "1.0.31" - } - }, - "System.Composition.AttributedModel/1.0.31": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Composition.AttributedModel.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Composition.AttributedModel.dll": {} - } - }, - "System.Composition.Convention/1.0.31": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Composition.AttributedModel": "1.0.31", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Composition.Convention.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Composition.Convention.dll": {} - } - }, - "System.Composition.Hosting/1.0.31": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Composition.Runtime": "1.0.31", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Composition.Hosting.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Composition.Hosting.dll": {} - } - }, - "System.Composition.Runtime/1.0.31": { - "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.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Composition.Runtime.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Composition.Runtime.dll": {} - } - }, - "System.Composition.TypedParts/1.0.31": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Composition.AttributedModel": "1.0.31", - "System.Composition.Hosting": "1.0.31", - "System.Composition.Runtime": "1.0.31", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.Composition.TypedParts.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Composition.TypedParts.dll": {} - } - }, - "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.8.0-preview1.19504.10": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Registry": "4.7.0-preview1.19504.10", - "System.Diagnostics.DiagnosticSource": "4.7.0-preview1.19504.10", - "System.Security.Principal.Windows": "4.7.0-preview1.19504.10", - "System.Text.Encoding.CodePages": "4.7.0-preview1.19504.10", - "runtime.native.System.Data.SqlClient.sni": "4.7.0-preview1.19504.10" - }, - "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.7.0-preview1.19504.10": { - "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.Process/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "Microsoft.Win32.Registry": "4.0.0", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Thread": "4.0.0", - "System.Threading.ThreadPool": "4.0.10", - "runtime.native.System": "4.0.0" - }, - "compile": { - "ref/netstandard1.4/System.Diagnostics.Process.dll": {} - }, - "runtimeTargets": { - "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": { - "assetType": "runtime", - "rid": "linux" - }, - "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.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.TextWriterTraceListener/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.TraceSource": "4.0.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.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.TraceSource/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "runtime.native.System": "4.0.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "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.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.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "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.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.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.Parallel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "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.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Linq.Parallel.dll": {} - } - }, - "System.Memory/4.5.1": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "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.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "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/_._": {} - }, - "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/_._": {} - }, - "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.4.2": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.Immutable": "1.3.1", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard1.1/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/netstandard1.1/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.7.0-preview1.19504.10": { - "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.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "runtime.native.System": "4.0.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Runtime.Loader/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Loader.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.Loader.dll": {} - } - }, - "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.Json/4.0.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Security.AccessControl/4.7.0-preview1.19504.10": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.AccessControl.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "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.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/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.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.Principal.Windows/4.7.0-preview1.19504.10": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/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.7.0-preview1.19504.10": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", - "System.Runtime.CompilerServices.Unsafe": "4.7.0-preview1.19504.10" - }, - "compile": { - "lib/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.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.1": { - "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/System.Threading.Thread.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Thread.dll": {} - } - }, - "System.Threading.ThreadPool/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} - } - }, - "System.ValueTuple/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.ValueTuple.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ValueTuple.dll": {} - } - }, - "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.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "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/System.Xml.XPath.dll": {} - }, - "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": {} - } - }, - "System.Xml.XPath.XmlDocument/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XPath": "4.0.1", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} - } - }, - "xunit/2.4.0": { - "type": "package", - "dependencies": { - "xunit.analyzers": "0.10.0", - "xunit.assert": "[2.4.0]", - "xunit.core": "[2.4.0]" - } - }, - "xunit.abstractions/2.0.2": { - "type": "package", - "compile": { - "lib/netstandard2.0/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": {} - } - }, - "xunit.analyzers/0.10.0": { - "type": "package" - }, - "xunit.assert/2.4.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/xunit.assert.dll": {} - }, - "runtime": { - "lib/netstandard2.0/xunit.assert.dll": {} - } - }, - "xunit.core/2.4.0": { - "type": "package", - "dependencies": { - "xunit.extensibility.core": "[2.4.0]", - "xunit.extensibility.execution": "[2.4.0]" - }, - "build": { - "build/xunit.core.props": {}, - "build/xunit.core.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/xunit.core.props": {}, - "buildMultiTargeting/xunit.core.targets": {} - } - }, - "xunit.extensibility.core/2.4.0": { - "type": "package", - "dependencies": { - "xunit.abstractions": "2.0.2" - }, - "compile": { - "lib/netstandard2.0/xunit.core.dll": {} - }, - "runtime": { - "lib/netstandard2.0/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.4.0": { - "type": "package", - "dependencies": { - "xunit.extensibility.core": "[2.4.0]" - }, - "compile": { - "lib/netstandard2.0/xunit.execution.dotnet.dll": {} - }, - "runtime": { - "lib/netstandard2.0/xunit.execution.dotnet.dll": {} - } - }, - "xunit.runner.visualstudio/2.4.0": { - "type": "package", - "dependencies": { - "Microsoft.NET.Test.Sdk": "15.0.0" - }, - "build": { - "build/netcoreapp1.0/xunit.runner.visualstudio.props": {} - } - }, - "RestaurantReview/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v2.2", - "dependencies": { - "Microsoft.AspNet.WebApi.Core": "5.2.7", - "Microsoft.VisualStudio.Web.CodeGeneration.Design": "2.2.3" - }, - "compile": { - "bin/placeholder/RestaurantReview.dll": {} - }, - "runtime": { - "bin/placeholder/RestaurantReview.dll": {} - } - } - } - }, - "libraries": { - "Microsoft.AspNet.WebApi.Client/5.2.7": { - "sha512": "/76fAHknzvFqbznS6Uj2sOyE9rJB3PltY+f53TH8dX9RiGhk02EhuFCWljSj5nnqKaTsmma8DFR50OGyQ4yJ1g==", - "type": "package", - "path": "microsoft.aspnet.webapi.client/5.2.7", - "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.7.nupkg.sha512", - "microsoft.aspnet.webapi.client.nuspec" - ] - }, - "Microsoft.AspNet.WebApi.Core/5.2.7": { - "sha512": "gM2QzApnHdy1FbKUJ/ROGJSm69P2G+HMoVd/t5Vq1O/zZ5TI4IKC9PX6nUfRt/NHgebZOIWHpB4/4K4inuy4yQ==", - "type": "package", - "path": "microsoft.aspnet.webapi.core/5.2.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Content/web.config.transform", - "lib/net45/System.Web.Http.dll", - "lib/net45/System.Web.Http.xml", - "microsoft.aspnet.webapi.core.5.2.7.nupkg.sha512", - "microsoft.aspnet.webapi.core.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.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.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.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.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.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.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.Core/2.2.5": { - "sha512": "/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.core/2.2.5", - "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.5.nupkg.sha512", - "microsoft.aspnetcore.mvc.core.nuspec" - ] - }, - "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.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.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.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.CSharp.Workspaces/2.8.0": { - "sha512": "EJWaxi2bI47iEZen/nZkJEDZCrP9Oj3PJtMwBv34Z0ZvvdSkpgsdqlHSud8d5vC53LnCXLfBLewfqHcILDVSDw==", - "type": "package", - "path": "microsoft.codeanalysis.csharp.workspaces/2.8.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", - "microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg.sha512", - "microsoft.codeanalysis.csharp.workspaces.nuspec" - ] - }, - "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { - "sha512": "tJlJ99SD8bHBAXShOG/pXQ1K118cnsF01obEf9aAtdgLbw3yEPahZ7qvWeGMjrheUhvOsSkv/wTKYg9euKa8MQ==", - "type": "package", - "path": "microsoft.codeanalysis.workspaces.common/2.8.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.dll", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.pdb", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.xml", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.dll", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.pdb", - "lib/net46/Microsoft.CodeAnalysis.Workspaces.xml", - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll", - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.pdb", - "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.xml", - "microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512", - "microsoft.codeanalysis.workspaces.common.nuspec" - ] - }, - "Microsoft.CodeCoverage/16.0.1": { - "sha512": "W7WI3iH6At2I/9x2ODgCIIMO0QfpA7ZCoHkeygMLAaz3Nms/GsugKz9N4hkTve2Lj66g2K4CAmbwe6utEH66lw==", - "type": "package", - "path": "microsoft.codecoverage/16.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/netstandard1.0/CodeCoverage/CodeCoverage.config", - "build/netstandard1.0/CodeCoverage/CodeCoverage.exe", - "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll", - "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll", - "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll", - "build/netstandard1.0/CodeCoverage/covrun32.dll", - "build/netstandard1.0/CodeCoverage/msdia140.dll", - "build/netstandard1.0/Microsoft.CodeCoverage.props", - "build/netstandard1.0/Microsoft.CodeCoverage.targets", - "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll", - "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "microsoft.codecoverage.16.0.1.nupkg.sha512", - "microsoft.codecoverage.nuspec" - ] - }, - "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.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.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.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.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.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.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.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.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.NET.Test.Sdk/16.0.1": { - "sha512": "ON7UIMIhAwrYb0ep+3ztoWVGvtfo88IhiHVnbyOiuVsi8bOMCdMPVcR+EX1WYGgKAd030pHRaxazMlkQ6uDyJQ==", - "type": "package", - "path": "microsoft.net.test.sdk/16.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/net40/Microsoft.NET.Test.Sdk.props", - "build/net40/Microsoft.NET.Test.Sdk.targets", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets", - "build/uap10.0/Microsoft.NET.Test.Sdk.props", - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", - "microsoft.net.test.sdk.16.0.1.nupkg.sha512", - "microsoft.net.test.sdk.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/3.1.0-preview1.19504.10": { - "sha512": "bS52lVUR5Mb/yuorV8cLSvsPDEOms1LTQ+bN8s3/rrdaU3VSpfvWGorRk5xftj1kyrJ7Dxlw/GADyyekoOfDnQ==", - "type": "package", - "path": "microsoft.netcore.platforms/3.1.0-preview1.19504.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.3.1.0-preview1.19504.10.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.TestPlatform.ObjectModel/16.0.1": { - "sha512": "AIQ9azu2b31R8nOuFnR32d7cdWidjjLl1dFyLC3LNifzAJoEdCUgkHWUpTTHKWcHhwa9E/NRcdzVple8pbKJ9Q==", - "type": "package", - "path": "microsoft.testplatform.objectmodel/16.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.4/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard1.4/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard1.4/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "microsoft.testplatform.objectmodel.16.0.1.nupkg.sha512", - "microsoft.testplatform.objectmodel.nuspec" - ] - }, - "Microsoft.TestPlatform.TestHost/16.0.1": { - "sha512": "H4bYjOjkK4FYQ23RnsHm8FcqR0te8Eky9i9sS1IjVFBlDh1MU7aIwmBUpKpaSAy5xNu7UTHku4RZTWzWHDzS7g==", - "type": "package", - "path": "microsoft.testplatform.testhost/16.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "build/uap10.0/Microsoft.TestPlatform.TestHost.props", - "build/uap10.0/Microsoft.TestPlatform.TestHost.targets", - "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/x64/msdia140.dll", - "build/uap10.0/x86/msdia140.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/_._", - "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll", - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/testhost.deps.json", - "lib/netstandard1.5/testhost.dll", - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/x64/msdia140.dll", - "lib/netstandard1.5/x86/msdia140.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/uap10.0/testhost.dll", - "microsoft.testplatform.testhost.16.0.1.nupkg.sha512", - "microsoft.testplatform.testhost.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { - "sha512": "wc71c9HWTeXy9/w9O4Yr2LKmdJjVyIoJ/XQX8/6uma4EAVU25RLtUWlvhA0gpgFw9Kf1TkCv70x+CbKnRw/d8Q==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.xml", - "microsoft.visualstudio.web.codegeneration.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { - "sha512": "wXlpxDfRD5aPypa0p0UE97tkRQvAz9D9FfA2GITzr+LlGIpybyGnxkwGVp0Vha1Ibr0kJG0HdnqfeHME/WuAcQ==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.xml", - "microsoft.visualstudio.web.codegeneration.contracts.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.contracts.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { - "sha512": "APdPavBUYcGPBaW4rjxBVRePWmg0ZzhIRymOzvLFWUtzfvJKw1+8PaCzsH7Uvl+felm0L1UVQwBx1Do0R7j7Xg==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.core/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml", - "microsoft.visualstudio.web.codegeneration.core.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.core.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { - "sha512": "xH50cYOU+infRq4KikBuu2qeXcwW4tE0D5TDfKLuLrEtDm90aXI+0qygPsqyISf+lOW7L7rQ64BH/dRYkK3c3Q==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.design/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/dotnet-aspnet-codegenerator-design.exe", - "lib/net461/dotnet-aspnet-codegenerator-design.xml", - "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll", - "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.xml", - "microsoft.visualstudio.web.codegeneration.design.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.design.nuspec", - "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.exe", - "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.xml", - "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.exe", - "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.xml", - "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.exe", - "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.xml", - "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.exe", - "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.xml" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { - "sha512": "N9S7TeFZjXzNY9OVbz4OFw9cM9oEeMaCnuLFhetNioy/wPwZbgglrctAEYxfDbvocQ17YCAVR2EMRbYHNDHyVg==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Templates/DbContext/NewLocalDbContext.cshtml", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml", - "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { - "sha512": "sW2lHnOoL1xFnSm/2zSedeUoQPlbhPfWjSuUYsxYUj/N5QmLmH98ZLaqP26k6Om/heR6Gux/veXI96yM1Parow==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.templating/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml", - "microsoft.visualstudio.web.codegeneration.templating.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.templating.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { - "sha512": "/r/y+XpOpbCwN/M/HopjfGTDRlmixTd4G6HG6FaBkD/YF3T1u+4WMRVtuB6zz7aw571HmX+6UokEa6HJSwkPDA==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.utils/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml", - "microsoft.visualstudio.web.codegeneration.utils.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.utils.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { - "sha512": "0gVuA4KUCHFM4M/9SjG+7j7BzZ7SW/BufF97Q78i2VV8JBbQXc/5Rf6YUG1VGW2fwSEOl9+S26utEGS+86GGGw==", - "type": "package", - "path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Generators/ParameterDefinitions/area.json", - "Generators/ParameterDefinitions/controller.json", - "Generators/ParameterDefinitions/identity.json", - "Generators/ParameterDefinitions/razorpage.json", - "Generators/ParameterDefinitions/view.json", - "Templates/ControllerGenerator/ApiControllerWithActions.cshtml", - "Templates/ControllerGenerator/ApiControllerWithContext.cshtml", - "Templates/ControllerGenerator/ApiEmptyController.cshtml", - "Templates/ControllerGenerator/ControllerWithActions.cshtml", - "Templates/ControllerGenerator/EmptyController.cshtml", - "Templates/ControllerGenerator/MvcControllerWithContext.cshtml", - "Templates/Identity/Data/ApplicationDbContext.cshtml", - "Templates/Identity/Data/ApplicationUser.cshtml", - "Templates/Identity/IdentityHostingStartup.cshtml", - "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml", - "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml", - "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml", - "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml", - "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml", - "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", - "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml", - "Templates/Identity/Pages/Account/Account.Lockout.cshtml", - "Templates/Identity/Pages/Account/Account.Login.cs.cshtml", - "Templates/Identity/Pages/Account/Account.Login.cshtml", - "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml", - "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml", - "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", - "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml", - "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml", - "Templates/Identity/Pages/Account/Account.Logout.cshtml", - "Templates/Identity/Pages/Account/Account.Register.cs.cshtml", - "Templates/Identity/Pages/Account/Account.Register.cshtml", - "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml", - "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml", - "Templates/Identity/Pages/Account/Account._ViewImports.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", - "Templates/Identity/Pages/Error.cs.cshtml", - "Templates/Identity/Pages/Error.cshtml", - "Templates/Identity/Pages/_Layout.cshtml", - "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml", - "Templates/Identity/Pages/_ViewImports.cshtml", - "Templates/Identity/Pages/_ViewStart.cshtml", - "Templates/Identity/ScaffoldingReadme.cshtml", - "Templates/Identity/SupportPages._CookieConsentPartial.cshtml", - "Templates/Identity/SupportPages._ViewImports.cshtml", - "Templates/Identity/SupportPages._ViewStart.cshtml", - "Templates/Identity/_LoginPartial.cshtml", - "Templates/Identity/wwwroot/css/site.css", - "Templates/Identity/wwwroot/favicon.ico", - "Templates/Identity/wwwroot/js/site.js", - "Templates/Identity/wwwroot/lib/bootstrap/LICENSE", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map", - "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", - "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", - "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", - "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md", - "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js", - "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", - "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js", - "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", - "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt", - "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js", - "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js", - "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map", - "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml", - "Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml", - "Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml", - "Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml", - "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml", - "Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map", - "Templates/MvcLayout/Error.cshtml", - "Templates/MvcLayout/_Layout.cshtml", - "Templates/RazorPageGenerator/Create.cshtml", - "Templates/RazorPageGenerator/CreatePageModel.cshtml", - "Templates/RazorPageGenerator/Delete.cshtml", - "Templates/RazorPageGenerator/DeletePageModel.cshtml", - "Templates/RazorPageGenerator/Details.cshtml", - "Templates/RazorPageGenerator/DetailsPageModel.cshtml", - "Templates/RazorPageGenerator/Edit.cshtml", - "Templates/RazorPageGenerator/EditPageModel.cshtml", - "Templates/RazorPageGenerator/Empty.cshtml", - "Templates/RazorPageGenerator/EmptyPageModel.cshtml", - "Templates/RazorPageGenerator/List.cshtml", - "Templates/RazorPageGenerator/ListPageModel.cshtml", - "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Empty.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/EmptyPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml", - "Templates/Startup/ReadMe.cshtml", - "Templates/Startup/Startup.cshtml", - "Templates/ViewGenerator/Create.cshtml", - "Templates/ViewGenerator/Delete.cshtml", - "Templates/ViewGenerator/Details.cshtml", - "Templates/ViewGenerator/Edit.cshtml", - "Templates/ViewGenerator/Empty.cshtml", - "Templates/ViewGenerator/List.cshtml", - "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml", - "lib/netstandard2.0/bootstrap3_identitygeneratorfilesconfig.json", - "lib/netstandard2.0/bootstrap4_identitygeneratorfilesconfig.json", - "microsoft.visualstudio.web.codegenerators.mvc.2.2.3.nupkg.sha512", - "microsoft.visualstudio.web.codegenerators.mvc.nuspec" - ] - }, - "Microsoft.Win32.Primitives/4.0.1": { - "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", - "type": "package", - "path": "microsoft.win32.primitives/4.0.1", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.win32.primitives.4.0.1.nupkg.sha512", - "microsoft.win32.primitives.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { - "sha512": "CXsd7k96HdyP0vV9T5mQQ0O1Lj00xJBHTQ+d8Y99mxu/GuTB9MYKeGE1b58AIaxF88maJOFMtt6WhiqEPC9ONw==", - "type": "package", - "path": "microsoft.win32.registry/4.7.0-preview1.19504.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.xml", - "lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "microsoft.win32.registry.4.7.0-preview1.19504.10.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/net472/Microsoft.Win32.Registry.dll", - "ref/net472/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/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "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" - ] - }, - "NuGet.Frameworks/4.7.0": { - "sha512": "qbXaB76XYUVLocLBs8Z9TS/ERGK2wm797feO+0JEPFvT7o7MRadOR77mqaSD4J1k8G+DlZQyq+MlkCuxrkr3ag==", - "type": "package", - "path": "nuget.frameworks/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net40/NuGet.Frameworks.dll", - "lib/net40/NuGet.Frameworks.xml", - "lib/net46/NuGet.Frameworks.dll", - "lib/net46/NuGet.Frameworks.xml", - "lib/netstandard1.6/NuGet.Frameworks.dll", - "lib/netstandard1.6/NuGet.Frameworks.xml", - "nuget.frameworks.4.7.0.nupkg.sha512", - "nuget.frameworks.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": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "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.7.0-preview1.19504.10": { - "sha512": "ITo7gZ7yGHMkNj1O6PRmK+i917jbWNs5CZN/jwVSh8hO+3+8C5roDkXJYbM1hA5LZAUagtm9ph5whvnDOTilDg==", - "type": "package", - "path": "runtime.native.system.data.sqlclient.sni/4.7.0-preview1.19504.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.native.system.data.sqlclient.sni.4.7.0-preview1.19504.10.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", - ".signature.p7s", - "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", - ".signature.p7s", - "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", - ".signature.p7s", - "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": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "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": "T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", - "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": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "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.3.1": { - "sha512": "n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", - "type": "package", - "path": "system.collections.immutable/1.3.1", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Collections.Immutable.dll", - "lib/netstandard1.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.3.1.nupkg.sha512", - "system.collections.immutable.nuspec" - ] - }, - "System.Collections.NonGeneric/4.0.1": { - "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==", - "type": "package", - "path": "system.collections.nongeneric/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.0.1.nupkg.sha512", - "system.collections.nongeneric.nuspec" - ] - }, - "System.Collections.Specialized/4.0.1": { - "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==", - "type": "package", - "path": "system.collections.specialized/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.0.1.nupkg.sha512", - "system.collections.specialized.nuspec" - ] - }, - "System.ComponentModel/4.0.1": { - "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", - "type": "package", - "path": "system.componentmodel/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.dll", - "lib/netstandard1.3/System.ComponentModel.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.ComponentModel.dll", - "ref/netcore50/System.ComponentModel.xml", - "ref/netcore50/de/System.ComponentModel.xml", - "ref/netcore50/es/System.ComponentModel.xml", - "ref/netcore50/fr/System.ComponentModel.xml", - "ref/netcore50/it/System.ComponentModel.xml", - "ref/netcore50/ja/System.ComponentModel.xml", - "ref/netcore50/ko/System.ComponentModel.xml", - "ref/netcore50/ru/System.ComponentModel.xml", - "ref/netcore50/zh-hans/System.ComponentModel.xml", - "ref/netcore50/zh-hant/System.ComponentModel.xml", - "ref/netstandard1.0/System.ComponentModel.dll", - "ref/netstandard1.0/System.ComponentModel.xml", - "ref/netstandard1.0/de/System.ComponentModel.xml", - "ref/netstandard1.0/es/System.ComponentModel.xml", - "ref/netstandard1.0/fr/System.ComponentModel.xml", - "ref/netstandard1.0/it/System.ComponentModel.xml", - "ref/netstandard1.0/ja/System.ComponentModel.xml", - "ref/netstandard1.0/ko/System.ComponentModel.xml", - "ref/netstandard1.0/ru/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.4.0.1.nupkg.sha512", - "system.componentmodel.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.ComponentModel.EventBasedAsync/4.0.11": { - "sha512": "Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==", - "type": "package", - "path": "system.componentmodel.eventbasedasync/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll", - "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.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.ComponentModel.EventBasedAsync.dll", - "ref/netcore50/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll", - "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512", - "system.componentmodel.eventbasedasync.nuspec" - ] - }, - "System.ComponentModel.Primitives/4.1.0": { - "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==", - "type": "package", - "path": "system.componentmodel.primitives/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.Primitives.dll", - "lib/netstandard1.0/System.ComponentModel.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.Primitives.dll", - "ref/netstandard1.0/System.ComponentModel.Primitives.dll", - "ref/netstandard1.0/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.primitives.4.1.0.nupkg.sha512", - "system.componentmodel.primitives.nuspec" - ] - }, - "System.ComponentModel.TypeConverter/4.1.0": { - "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==", - "type": "package", - "path": "system.componentmodel.typeconverter/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.TypeConverter.dll", - "lib/net462/System.ComponentModel.TypeConverter.dll", - "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.TypeConverter.dll", - "ref/net462/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.typeconverter.4.1.0.nupkg.sha512", - "system.componentmodel.typeconverter.nuspec" - ] - }, - "System.Composition/1.0.31": { - "sha512": "I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==", - "type": "package", - "path": "system.composition/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "system.composition.1.0.31.nupkg.sha512", - "system.composition.nuspec" - ] - }, - "System.Composition.AttributedModel/1.0.31": { - "sha512": "NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==", - "type": "package", - "path": "system.composition.attributedmodel/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Composition.AttributedModel.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll", - "system.composition.attributedmodel.1.0.31.nupkg.sha512", - "system.composition.attributedmodel.nuspec" - ] - }, - "System.Composition.Convention/1.0.31": { - "sha512": "GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==", - "type": "package", - "path": "system.composition.convention/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Composition.Convention.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll", - "system.composition.convention.1.0.31.nupkg.sha512", - "system.composition.convention.nuspec" - ] - }, - "System.Composition.Hosting/1.0.31": { - "sha512": "fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==", - "type": "package", - "path": "system.composition.hosting/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Composition.Hosting.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll", - "system.composition.hosting.1.0.31.nupkg.sha512", - "system.composition.hosting.nuspec" - ] - }, - "System.Composition.Runtime/1.0.31": { - "sha512": "0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==", - "type": "package", - "path": "system.composition.runtime/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Composition.Runtime.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll", - "system.composition.runtime.1.0.31.nupkg.sha512", - "system.composition.runtime.nuspec" - ] - }, - "System.Composition.TypedParts/1.0.31": { - "sha512": "0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==", - "type": "package", - "path": "system.composition.typedparts/1.0.31", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Composition.TypedParts.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll", - "system.composition.typedparts.1.0.31.nupkg.sha512", - "system.composition.typedparts.nuspec" - ] - }, - "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.8.0-preview1.19504.10": { - "sha512": "6isAINOX/v56q7JLaC9XDXzc7T/yh62QR+pa+Jt0ayjmYmLRCmzyt4rTy5jWe15ZcQfS9yQNxIzwyO7yGs6Zbg==", - "type": "package", - "path": "system.data.sqlclient/4.8.0-preview1.19504.10", - "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/net461/System.Data.SqlClient.xml", - "lib/netcoreapp2.1/System.Data.SqlClient.dll", - "lib/netcoreapp2.1/System.Data.SqlClient.xml", - "lib/netstandard1.2/System.Data.SqlClient.dll", - "lib/netstandard1.2/System.Data.SqlClient.xml", - "lib/netstandard1.3/System.Data.SqlClient.dll", - "lib/netstandard1.3/System.Data.SqlClient.xml", - "lib/netstandard2.0/System.Data.SqlClient.dll", - "lib/netstandard2.0/System.Data.SqlClient.xml", - "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/netcoreapp2.1/System.Data.SqlClient.xml", - "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", - "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", - "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", - "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/net461/System.Data.SqlClient.xml", - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", - "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", - "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", - "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", - "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", - "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", - "system.data.sqlclient.4.8.0-preview1.19504.10.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.7.0-preview1.19504.10": { - "sha512": "CxeUzuw9Lz1+6gkPpQI83BeoUNxn6VnDF28qazxSRyRzWSzLzoeh9ObYG7LYqcPckgm0UaE9nQdd7oDq5ncMKg==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/4.7.0-preview1.19504.10", - "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.7.0-preview1.19504.10.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.Process/4.1.0": { - "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", - "type": "package", - "path": "system.diagnostics.process/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.Process.dll", - "lib/net461/System.Diagnostics.Process.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.Process.dll", - "ref/net461/System.Diagnostics.Process.dll", - "ref/netstandard1.3/System.Diagnostics.Process.dll", - "ref/netstandard1.3/System.Diagnostics.Process.xml", - "ref/netstandard1.3/de/System.Diagnostics.Process.xml", - "ref/netstandard1.3/es/System.Diagnostics.Process.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Process.xml", - "ref/netstandard1.3/it/System.Diagnostics.Process.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Process.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Process.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Process.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml", - "ref/netstandard1.4/System.Diagnostics.Process.dll", - "ref/netstandard1.4/System.Diagnostics.Process.xml", - "ref/netstandard1.4/de/System.Diagnostics.Process.xml", - "ref/netstandard1.4/es/System.Diagnostics.Process.xml", - "ref/netstandard1.4/fr/System.Diagnostics.Process.xml", - "ref/netstandard1.4/it/System.Diagnostics.Process.xml", - "ref/netstandard1.4/ja/System.Diagnostics.Process.xml", - "ref/netstandard1.4/ko/System.Diagnostics.Process.xml", - "ref/netstandard1.4/ru/System.Diagnostics.Process.xml", - "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml", - "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", - "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", - "runtimes/win/lib/net46/System.Diagnostics.Process.dll", - "runtimes/win/lib/net461/System.Diagnostics.Process.dll", - "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", - "runtimes/win7/lib/netcore50/_._", - "system.diagnostics.process.4.1.0.nupkg.sha512", - "system.diagnostics.process.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.TextWriterTraceListener/4.0.0": { - "sha512": "w36Dr8yKy8xP150qPANe7Td+/zOI3G62ImRcHDIEW+oUXUuTKZHd4DHmqRx5+x8RXd85v3tXd1uhNTfsr+yxjA==", - "type": "package", - "path": "system.diagnostics.textwritertracelistener/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.TextWriterTraceListener.dll", - "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.TextWriterTraceListener.dll", - "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll", - "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/de/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/es/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/fr/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/it/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/ja/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/ko/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/ru/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.TextWriterTraceListener.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.textwritertracelistener.4.0.0.nupkg.sha512", - "system.diagnostics.textwritertracelistener.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.TraceSource/4.0.0": { - "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==", - "type": "package", - "path": "system.diagnostics.tracesource/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.TraceSource.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.TraceSource.dll", - "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", - "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", - "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", - "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", - "system.diagnostics.tracesource.4.0.0.nupkg.sha512", - "system.diagnostics.tracesource.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.0.1": { - "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", - "type": "package", - "path": "system.globalization.extensions/4.0.1", - "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.0.1.nupkg.sha512", - "system.globalization.extensions.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.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.Parallel/4.3.0": { - "sha512": "td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==", - "type": "package", - "path": "system.linq.parallel/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Linq.Parallel.dll", - "lib/netstandard1.3/System.Linq.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.Linq.Parallel.dll", - "ref/netcore50/System.Linq.Parallel.xml", - "ref/netcore50/de/System.Linq.Parallel.xml", - "ref/netcore50/es/System.Linq.Parallel.xml", - "ref/netcore50/fr/System.Linq.Parallel.xml", - "ref/netcore50/it/System.Linq.Parallel.xml", - "ref/netcore50/ja/System.Linq.Parallel.xml", - "ref/netcore50/ko/System.Linq.Parallel.xml", - "ref/netcore50/ru/System.Linq.Parallel.xml", - "ref/netcore50/zh-hans/System.Linq.Parallel.xml", - "ref/netcore50/zh-hant/System.Linq.Parallel.xml", - "ref/netstandard1.1/System.Linq.Parallel.dll", - "ref/netstandard1.1/System.Linq.Parallel.xml", - "ref/netstandard1.1/de/System.Linq.Parallel.xml", - "ref/netstandard1.1/es/System.Linq.Parallel.xml", - "ref/netstandard1.1/fr/System.Linq.Parallel.xml", - "ref/netstandard1.1/it/System.Linq.Parallel.xml", - "ref/netstandard1.1/ja/System.Linq.Parallel.xml", - "ref/netstandard1.1/ko/System.Linq.Parallel.xml", - "ref/netstandard1.1/ru/System.Linq.Parallel.xml", - "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml", - "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.parallel.4.3.0.nupkg.sha512", - "system.linq.parallel.nuspec" - ] - }, - "System.Memory/4.5.1": { - "sha512": "sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==", - "type": "package", - "path": "system.memory/4.5.1", - "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/_._", - "ref/netstandard1.1/System.Memory.dll", - "ref/netstandard1.1/System.Memory.xml", - "ref/netstandard2.0/System.Memory.dll", - "ref/netstandard2.0/System.Memory.xml", - "system.memory.4.5.1.nupkg.sha512", - "system.memory.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.1.1": { - "sha512": "lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==", - "type": "package", - "path": "system.private.datacontractserialization/4.1.1", - "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.1.1.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", - ".signature.p7s", - "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.4.2": { - "sha512": "KYPNMDrLB2R+G5JJiJ2fjBpihtktKVIjsirmyyv+VDo5rQkIR9BWeCYM1wDSzbQatWNZ/NQfPsQyTB1Ui3qBfQ==", - "type": "package", - "path": "system.reflection.metadata/1.4.2", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.1/System.Reflection.Metadata.dll", - "lib/netstandard1.1/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "lib/portable-net45+win8/System.Reflection.Metadata.xml", - "system.reflection.metadata.1.4.2.nupkg.sha512", - "system.reflection.metadata.nuspec" - ] - }, - "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.7.0-preview1.19504.10": { - "sha512": "Zw6YIPYZNJdb5fVVlLLG0i9NO/p+10u8LM8ApWat+9oLo15xaCGC6XyYALrvc+DzmxkwWLxU6n8SNf71V+x3+Q==", - "type": "package", - "path": "system.runtime.compilerservices.unsafe/4.7.0-preview1.19504.10", - "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.7.0-preview1.19504.10.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.0.0": { - "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", - "type": "package", - "path": "system.runtime.interopservices.runtimeinformation/4.0.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "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.0.0.nupkg.sha512", - "system.runtime.interopservices.runtimeinformation.nuspec" - ] - }, - "System.Runtime.Loader/4.0.0": { - "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", - "type": "package", - "path": "system.runtime.loader/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net462/_._", - "lib/netstandard1.5/System.Runtime.Loader.dll", - "ref/netstandard1.5/System.Runtime.Loader.dll", - "ref/netstandard1.5/System.Runtime.Loader.xml", - "ref/netstandard1.5/de/System.Runtime.Loader.xml", - "ref/netstandard1.5/es/System.Runtime.Loader.xml", - "ref/netstandard1.5/fr/System.Runtime.Loader.xml", - "ref/netstandard1.5/it/System.Runtime.Loader.xml", - "ref/netstandard1.5/ja/System.Runtime.Loader.xml", - "ref/netstandard1.5/ko/System.Runtime.Loader.xml", - "ref/netstandard1.5/ru/System.Runtime.Loader.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml", - "system.runtime.loader.4.0.0.nupkg.sha512", - "system.runtime.loader.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.Json/4.0.2": { - "sha512": "+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==", - "type": "package", - "path": "system.runtime.serialization.json/4.0.2", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Serialization.Json.dll", - "lib/netstandard1.3/System.Runtime.Serialization.Json.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.Runtime.Serialization.Json.dll", - "ref/netcore50/System.Runtime.Serialization.Json.xml", - "ref/netcore50/de/System.Runtime.Serialization.Json.xml", - "ref/netcore50/es/System.Runtime.Serialization.Json.xml", - "ref/netcore50/fr/System.Runtime.Serialization.Json.xml", - "ref/netcore50/it/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ja/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ko/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ru/System.Runtime.Serialization.Json.xml", - "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml", - "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/System.Runtime.Serialization.Json.dll", - "ref/netstandard1.0/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.serialization.json.4.0.2.nupkg.sha512", - "system.runtime.serialization.json.nuspec" - ] - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", - "type": "package", - "path": "system.runtime.serialization.primitives/4.1.1", - "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.1.1.nupkg.sha512", - "system.runtime.serialization.primitives.nuspec" - ] - }, - "System.Security.AccessControl/4.7.0-preview1.19504.10": { - "sha512": "PGk/B6+DoaHlC4PAc7OWPmxI91JtH4zXHHmwlSQAOnL5sll3hgX8kVR9loCnVHfshSo1vP8vt15Xy84xyKiqKw==", - "type": "package", - "path": "system.security.accesscontrol/4.7.0-preview1.19504.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.xml", - "lib/netstandard1.3/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.xml", - "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/net461/System.Security.AccessControl.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", - "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.accesscontrol.4.7.0-preview1.19504.10.nupkg.sha512", - "system.security.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "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.3.0": { - "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "type": "package", - "path": "system.security.cryptography.cng/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.dll", - "lib/net463/System.Security.Cryptography.Cng.dll", - "ref/net46/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.dll", - "ref/net463/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "system.security.cryptography.cng.4.3.0.nupkg.sha512", - "system.security.cryptography.cng.nuspec" - ] - }, - "System.Security.Cryptography.Csp/4.3.0": { - "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "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": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "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.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.Principal.Windows/4.7.0-preview1.19504.10": { - "sha512": "3Df++ZTMSEaRRyov1jZ7VSm8GemEu9cJJ+QY1y6wvF631OvS5dts98RhuoqcZxACVkNRIzl5ThIqd46qd7b+Vg==", - "type": "package", - "path": "system.security.principal.windows/4.7.0-preview1.19504.10", - "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/net461/System.Security.Principal.Windows.xml", - "lib/netstandard1.3/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.xml", - "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/netcoreapp3.0/System.Security.Principal.Windows.dll", - "ref/netcoreapp3.0/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/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.principal.windows.4.7.0-preview1.19504.10.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.7.0-preview1.19504.10": { - "sha512": "aYpmMGgjDYpDYtDpUHwnSqSKgatkoZ4aSteVs6WKxo3/dRbHnL5rQ3QX9g7teACCIw8T2KW9OUxIg0b1kZEABg==", - "type": "package", - "path": "system.text.encoding.codepages/4.7.0-preview1.19504.10", - "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/net461/System.Text.Encoding.CodePages.xml", - "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", - "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", - "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", - "system.text.encoding.codepages.4.7.0-preview1.19504.10.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.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.1": { - "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", - "type": "package", - "path": "system.threading.tasks.extensions/4.5.1", - "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/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.extensions.4.5.1.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.Threading.ThreadPool/4.0.10": { - "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", - "type": "package", - "path": "system.threading.threadpool/4.0.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Threading.ThreadPool.dll", - "lib/netcore50/_._", - "lib/netstandard1.3/System.Threading.ThreadPool.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Threading.ThreadPool.dll", - "ref/netstandard1.3/System.Threading.ThreadPool.dll", - "ref/netstandard1.3/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.threadpool.4.0.10.nupkg.sha512", - "system.threading.threadpool.nuspec" - ] - }, - "System.ValueTuple/4.3.0": { - "sha512": "cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==", - "type": "package", - "path": "system.valuetuple/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/.xml", - "lib/netstandard1.0/System.ValueTuple.dll", - "lib/portable-net40+sl4+win8+wp8/.xml", - "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", - "system.valuetuple.4.3.0.nupkg.sha512", - "system.valuetuple.nuspec" - ] - }, - "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.0.11": { - "sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", - "type": "package", - "path": "system.xml.xmlserializer/4.0.11", - "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.0.11.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", - ".signature.p7s", - "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" - ] - }, - "System.Xml.XPath.XmlDocument/4.0.1": { - "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==", - "type": "package", - "path": "system.xml.xpath.xmldocument/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512", - "system.xml.xpath.xmldocument.nuspec" - ] - }, - "xunit/2.4.0": { - "sha512": "NL00nGsDsyWc1CWxz5FXXjLpW9oFG18WJoTPCyhNv4KGP/e5iLJqAqgM1uaJZyQ6WaTtmWIy4yjYP3RdcaT7Vw==", - "type": "package", - "path": "xunit/2.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "xunit.2.4.0.nupkg.sha512", - "xunit.nuspec" - ] - }, - "xunit.abstractions/2.0.2": { - "sha512": "vItLB0WkaKg0426RgWq+ZdXH6D+YV/uH28C0weWMOBnVx7I+luHuEYss9hoOngpkiN5kUpLvh9VZRx1H2sk59A==", - "type": "package", - "path": "xunit.abstractions/2.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net35/xunit.abstractions.dll", - "lib/net35/xunit.abstractions.xml", - "lib/netstandard1.0/xunit.abstractions.dll", - "lib/netstandard1.0/xunit.abstractions.xml", - "lib/netstandard2.0/xunit.abstractions.dll", - "lib/netstandard2.0/xunit.abstractions.xml", - "xunit.abstractions.2.0.2.nupkg.sha512", - "xunit.abstractions.nuspec" - ] - }, - "xunit.analyzers/0.10.0": { - "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", - "type": "package", - "path": "xunit.analyzers/0.10.0", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "analyzers/dotnet/cs/xunit.analyzers.dll", - "tools/install.ps1", - "tools/uninstall.ps1", - "xunit.analyzers.0.10.0.nupkg.sha512", - "xunit.analyzers.nuspec" - ] - }, - "xunit.assert/2.4.0": { - "sha512": "Swvkm6iTjZr8TiUj5vMnmfG+2dD4s/BIBgsVOzTxxmoq2ndGsmM2WIL4wuqJ8RhxydWIDOPpIaaytjT2pMTEdg==", - "type": "package", - "path": "xunit.assert/2.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.1/xunit.assert.dll", - "lib/netstandard1.1/xunit.assert.xml", - "lib/netstandard2.0/xunit.assert.dll", - "lib/netstandard2.0/xunit.assert.xml", - "xunit.assert.2.4.0.nupkg.sha512", - "xunit.assert.nuspec" - ] - }, - "xunit.core/2.4.0": { - "sha512": "BJ/O/tPEcHUCwQYuwqXoYccTMyw6B5dA6yh7WxWWBhKbjqTsG9RWL0nCQXM5yQYJwUuFzBkiXDPN1BO6UdBB4Q==", - "type": "package", - "path": "xunit.core/2.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/xunit.core.props", - "build/xunit.core.targets", - "buildMultiTargeting/xunit.core.props", - "buildMultiTargeting/xunit.core.targets", - "xunit.core.2.4.0.nupkg.sha512", - "xunit.core.nuspec" - ] - }, - "xunit.extensibility.core/2.4.0": { - "sha512": "qr/KrR6uukHXD9e/lLQjyCPfMEDuvvhNFDzsYzCF2kKlYKiqcADfUvA9Q68rBtKFtwHFeghjWEuv15KoGD2SfA==", - "type": "package", - "path": "xunit.extensibility.core/2.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net452/xunit.core.dll", - "lib/net452/xunit.core.dll.tdnet", - "lib/net452/xunit.core.xml", - "lib/net452/xunit.runner.tdnet.dll", - "lib/net452/xunit.runner.utility.net452.dll", - "lib/netstandard1.1/xunit.core.dll", - "lib/netstandard1.1/xunit.core.xml", - "lib/netstandard2.0/xunit.core.dll", - "lib/netstandard2.0/xunit.core.xml", - "xunit.extensibility.core.2.4.0.nupkg.sha512", - "xunit.extensibility.core.nuspec" - ] - }, - "xunit.extensibility.execution/2.4.0": { - "sha512": "252Dzn7i5bMPKtAL15aOP3qJhxKd+57I8ldwIQRJa745JxQuiBu5Da0vtIISVTtc3buRSkBwVnD9iUzsEmCzZA==", - "type": "package", - "path": "xunit.extensibility.execution/2.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net452/xunit.execution.desktop.dll", - "lib/net452/xunit.execution.desktop.xml", - "lib/netstandard1.1/xunit.execution.dotnet.dll", - "lib/netstandard1.1/xunit.execution.dotnet.xml", - "lib/netstandard2.0/xunit.execution.dotnet.dll", - "lib/netstandard2.0/xunit.execution.dotnet.xml", - "xunit.extensibility.execution.2.4.0.nupkg.sha512", - "xunit.extensibility.execution.nuspec" - ] - }, - "xunit.runner.visualstudio/2.4.0": { - "sha512": "3eq5cGXbEJkqW9nwLuXwtxy9B5gMA8i7HW4rN63AhAvy5UvEcQbZnve23wx/oPrkyg/4CbfNhxkBezS0b1oUdQ==", - "type": "package", - "path": "xunit.runner.visualstudio/2.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/_common/xunit.abstractions.dll", - "build/_common/xunit.runner.reporters.net452.dll", - "build/_common/xunit.runner.utility.net452.dll", - "build/_common/xunit.runner.visualstudio.testadapter.dll", - "build/net20/xunit.runner.visualstudio.props", - "build/netcoreapp1.0/xunit.abstractions.dll", - "build/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll", - "build/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", - "build/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", - "build/netcoreapp1.0/xunit.runner.visualstudio.dotnetcore.testadapter.deps.json", - "build/netcoreapp1.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll", - "build/netcoreapp1.0/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.reporters.netstandard11.dll", - "build/uap10.0/xunit.runner.utility.uwp10.dll", - "build/uap10.0/xunit.runner.utility.uwp10.pri", - "build/uap10.0/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.visualstudio.targets", - "build/uap10.0/xunit.runner.visualstudio.uwp.testadapter.dll", - "build/uap10.0/xunit.runner.visualstudio.uwp.testadapter.pri", - "xunit.runner.visualstudio.2.4.0.nupkg.sha512", - "xunit.runner.visualstudio.nuspec" - ] - }, - "RestaurantReview/1.0.0": { - "type": "project", - "path": "../RestaurantReview/RestaurantReview.csproj", - "msbuildProject": "../RestaurantReview/RestaurantReview.csproj" - } - }, - "projectFileDependencyGroups": { - ".NETCoreApp,Version=v2.2": [ - "Microsoft.AspNetCore.Mvc.Core >= 2.2.5", - "Microsoft.NET.Test.Sdk >= 16.0.1", - "Microsoft.NETCore.App >= 2.2.0", - "RestaurantReview >= 1.0.0", - "System.Data.SqlClient >= 4.8.0-preview1.19504.10", - "xunit >= 2.4.0", - "xunit.runner.visualstudio >= 2.4.0" - ] - }, - "packageFolders": { - "C:\\Users\\Raizel Seliger\\.nuget\\packages\\": {}, - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReviewTests\\RestaurantReviewTests.csproj", - "projectName": "RestaurantReviewTests", - "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReviewTests\\RestaurantReviewTests.csproj", - "packagesPath": "C:\\Users\\Raizel Seliger\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReviewTests\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\Raizel Seliger\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp2.2" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp2.2": { - "projectReferences": { - "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj": { - "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp2.2": { - "dependencies": { - "Microsoft.AspNetCore.Mvc.Core": { - "target": "Package", - "version": "[2.2.5, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[16.0.1, )" - }, - "Microsoft.NETCore.App": { - "suppressParent": "All", - "target": "Package", - "version": "[2.2.0, )", - "autoReferenced": true - }, - "System.Data.SqlClient": { - "target": "Package", - "version": "[4.8.0-preview1.19504.10, )" - }, - "xunit": { - "target": "Package", - "version": "[2.4.0, )" - }, - "xunit.runner.visualstudio": { - "target": "Package", - "version": "[2.4.0, )" - } - }, - "imports": [ - "net461" - ], - "assetTargetFallback": true, - "warn": true - } - } - }, - "logs": [ - { - "code": "NU1701", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Microsoft.AspNet.WebApi.Core 5.2.7' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.2'. This package may not be fully compatible with your project.", - "libraryId": "Microsoft.AspNet.WebApi.Core", - "targetGraphs": [ - ".NETCoreApp,Version=v2.2" - ] - } - ] -} \ No newline at end of file From 09a4820679dc8cdcf5ab86189c0430d84c9864f9 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 29 Oct 2019 00:56:07 -0400 Subject: [PATCH 28/36] some tests added --- RestaurantReview/RestaurantReview.sln | 6 +++ ...aurantReview.csprojAssemblyReference.cache | Bin 424 -> 258011 bytes .../RestaurantsControllerTests.cs | 28 ++++++++++++ .../ModelTests/RestaurantModelTests.cs | 42 ++++++++++++++++++ .../RestaurantReviewTests.csproj | 31 +++++++++++++ 5 files changed, 107 insertions(+) create mode 100644 RestaurantReview/RestaurantReviewTests/ControllerTests/RestaurantsControllerTests.cs create mode 100644 RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantModelTests.cs create mode 100644 RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj diff --git a/RestaurantReview/RestaurantReview.sln b/RestaurantReview/RestaurantReview.sln index d468aecb..36ba447d 100644 --- a/RestaurantReview/RestaurantReview.sln +++ b/RestaurantReview/RestaurantReview.sln @@ -5,6 +5,8 @@ VisualStudioVersion = 16.0.29009.5 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RestaurantReview", "RestaurantReview\RestaurantReview.csproj", "{8360EA5F-0352-4385-8CAD-7404D91D7B0A}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestaurantReviewTests", "RestaurantReviewTests\RestaurantReviewTests.csproj", "{501457BE-7F9C-4874-AFBE-12A4C9C0874C}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -15,6 +17,10 @@ Global {8360EA5F-0352-4385-8CAD-7404D91D7B0A}.Debug|Any CPU.Build.0 = Debug|Any CPU {8360EA5F-0352-4385-8CAD-7404D91D7B0A}.Release|Any CPU.ActiveCfg = Release|Any CPU {8360EA5F-0352-4385-8CAD-7404D91D7B0A}.Release|Any CPU.Build.0 = Release|Any CPU + {501457BE-7F9C-4874-AFBE-12A4C9C0874C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {501457BE-7F9C-4874-AFBE-12A4C9C0874C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {501457BE-7F9C-4874-AFBE-12A4C9C0874C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {501457BE-7F9C-4874-AFBE-12A4C9C0874C}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csprojAssemblyReference.cache b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csprojAssemblyReference.cache index a5e87179f0aeaf8f96e7c5b38a77b490dc0a3b6f..22e772705425440a79fddf03955df2616e7ba4c3 100644 GIT binary patch literal 258011 zcmd3P2YeJ&*FK@ifDIKD6$L8@EQA08imxGnL^`2}g1Xskk|mqnWp@JvMMXu$jvd8< z9XnRAW5SFPV(ByEYCKD=2rlY;OPK~BBv1DRs;eb$KsBfrm zudXF^@oZf>Iy4cj%cjHeUR@{DmB(X|(b4+J$(m?lXnEhF$^n%JR2CLi4Cos!3b&!c zy1AE8R-eg6Ys<3XY?M$&Wh@>w|Etw*;wNYkk4Ga}sE`Sb3TLXb;qrKtv^H8nv?kFc zv@HPb$0WlQBg2twGQEYYPY0-5lB`XI)6sN0dT&{5ezZ0Im}xsT9IuOJTC`}@qD`9) z?RJ!Uj89j@65+W0%(oK<{bx*jsL>h)Tmm(WHux8Vifc`OYUDYpWrw3}?K%>4WM)((vx#VSMy8@>#<;pequG(+c)UCu zsTrA!S47h@YHjOgHHR!0*Ujlwj+G>5KY=NoM1Izq{G zURu!PYBXoeO;sj2+o9ZRe2~M&>UgrMie4K@CMsi9b!n5MTv`(wo5#p^l<;?$if#`@ zuMSpGA9IMMXM-tY2dH_m4>j3XNF6eqibdz8;^>y?T$p47Gxf{jRBVKN+T^ekl)Ez+ zyQfj?wg!#si)~oEku_M&JFBrACKjB|OvosMc~tg;l9F6$)H2m)+Q5Ze}fu&g@vIa<`tIUv102nnh-ie zk4u8mgW6Xn6^4h}T$QG&H;{I_K)cI)XvaD$IWC@^Qr2BfFQ&n0vMUty+Ggw1} zJy zMJr4dx+2yF=aDyf8LAoDG`{?GYS9d?fY35FbJt zFw_<5E(*q=>116NgQIg2rO8Tq_O2`2N#Y@sx^B?r*t}Q^>*~-rOsA8gnPePV%MP|D z6u3PYGBh{Vhxs&jwt)rrg3^AxHa398lUOjv<_pi;)tr1~;A+n?{1x1|dqd56c`@#^ zXnBan`YG91oZKgxhW0_}`B}J9)3O&!RP??mI-m(gYgE~}v250}*Q&Lr$>Jp@OZ!39 zlRdY8xweE0lS*b{W@oCVcoK#J3Qral>T@4WhjLj-u{-ObQQ{#}lkU)@J}<3hOe`@w z1Q$LX&B%BdY}NzC-|U$PwVq{5HpfyeREGc{7U5~c{G8*Yd&gqSHs^9}3f_ZOM(;8C z+8+uZpBKLPYyzFk2%*rSCv

NF(JkGbV)*zKwS+i^gMBXr!S;T@@mx@GWb?RS1A8 zvgX7xb>Vm>TUQZFhUTL4l4o2MO+>}=w$bHJk>0MH;nS(+YssbtZ0{k+HK`8EvDzrci*!s4yd#t8+Awu&L2Ga5<7b`WL7&NJx1kXU@K1{z*7#@~ z3qg-7eDK2N8MF_$m7$s_0?g4k?5&5yY_Fk^t$di%2g2wDqvZ?iWo#elc#01lttEFY zno8V^iwy`BZO(bO7T06VhpdoTU#Q|ePN#YWql*?knN$)RI`z2>8jL5J1~U`PC(U7^ z5K8%(i`cm4jJ8K>%cB()(TZI3W9`ZrZ66_DVyfB?s$S~DlwyY_l!}M5mDHiw#side zS&=!H*~61rn#m`~#~XNEMNluG-hi1Wg^idfO`viXa?-fD-T*Jwd;v|S@&zV^{ex?Q zVGLBD5d*o`CRnVVG?f|vrOx+ZSFK-!Dx+cA`pjuM)p|x~qd8@`OwUcA=S+PLfnr|FqH8Vj@8FE)|8xD*|S1FcOR)i6C&;Y1MTt?Do5i*Y(;FL z9)eP{UPl_)V6i4h#Zp*ABrwL)E@eM`my#xKxtuH=ADUo+&8AU|l2`d?8qDFTh^C?m z?4v~LV~JTJaOpW3&0L@1_UlUR*ER4mhBb#cG4E5fM;Q7n6K;|Wo`_t=jYi^okP zje>q>d)7}5G;qLOaw8&$VmWdnY|RR-K}Q*kr$&@u1x+JvDRjEfvreiHv-yB_tFz&% z>S#Pg0Typ5WVBg5Ib1bLJZ!3V7*zAKSIq`T%u*^LAw+9K^V6UPTBKwgT z9SyYu3V3S))g=9QF6y#{gceR6PycPQI|gdzsn1$oeQ5$6DVd_^2qhVsYK#r8{iVb6 zlj%@AoT#e980nFxN#?_2|^@QG}e@%*t3Ee zy;T!!cDpofF&Qc)yfR@1-$Ql^5w(K@8pbsXLjy%RbI8sR5`)MTlo?PKbR?OqiA9?g z%`7n=W#P=JP|HscPR&sWB{cBvoo2H8N@E_0{Q~9BQwy3F9Cg?m!Cp1?G-IB_UD*E+ z+o5>WY(`GY$Ya~x+vk$^@qo+*(FNz7q%WJu5maTL@FDC|jF(PPgUH0uP&z;JvAw(^u8u*m`SHY@d!bZz7-a|Kt~%21$zx3; zanNHsawOuLo^vpw(zMi=goJnO$P!Nx6d%yeC(D5I$PQ0aAf+mN z8qaN%^xD1LHX#~xtSA)CPsbXEMMj!VeGxyEC^kRGYuFe~1y`Y9KMnv}1X6s&-0Ky| z6K3+Q_aF&NzpyiJtD$6m(rXwynx_sN}BoigD zm7UId4y?2JRnAyeZiso1%zS5qu2zGJ_{n|s;F$2?Nd0@6Ie41=FAiPuR)WkRQ>_Hl@{={dR(h5PUV+t=maLq!|2>?Z zH5E(x<)$waPx8X*p3|Jt+PC7=-?;Wh|xupkdM^?h3Oku6DQw&&5>@- z3li_lAZc!Xr`6S7b;KgTQ0AnAm#jI-CF+&snE)ySO*VP1(u*#JHVYUIa7 zpa3P}Ic3R64W<8lRQe~+yMNI5`ku!X9!)A>n?n=m|VX+}-JRUK7*qKn{0w1l4siEQ!4HL2L zUEM~KXjLG>PQN}2ngx{5Re{J0HF%Lt>X9l6+fXAH51XW&-7MQ>#N9wygd%X(P8|Nq z(85|KzPW4}Nnh8oN0OmMiK)gpP$NG{#>46=E3I>K=c3g79r2wMosApmWCr|sC_11k zqO8%-V`H$+pqczHfjaq#O88p9)Sm1hOf~|~6r3;|azZ{iN znM*QzfXclP<>s$7qS6=&WXkkKC^|oDT{&@}Xlwxruk2zJo~K<3T4pB`h;503m)ds8 zB~Zl28q`B<-mGt)@)KGzaDkC9MG9a%Rdg) z<-{gyf3}M}r8G1(7M+_3P3>Z|g=b&*m^Hu}W zh}yQ}VuPEZ-u%1-)cO9XN|Cq)`rKB&eZ`9VB%J6dGVIXn~!0PUPcidy60a^6f2=}ezxDNe8Rg> zqMyswESJC>64>Rdb2F7ud2Qhxk;8Wbj2?eQTLo6L)I$4+!Tj6(f5yiWQl#DQ>smcCS!@oof) zd0>n*KXfFfut%U?Kw(!(d`YI|mAD?A6v}k5pEY~VqfpGxE&FWgo=j0crd!%sj6nUK zi>houA1~jAo~|Me?00J5k3sqTbbBmZMPnOlUOcW+KGr}5@AuO-YxK2ps<6euuI4o3 zYedH5(8P}=ng6ThR@vHyBatM|VdP>-<{4}0Rb#DF^~K_CW;1*O%KLHN5pWApJexij zMc-P=MMWC4%z!pN2W5VriCBCRiuj4ILlKJk;}afMY(3rB_k^6AG{e)lJghWPnKb!$ z3TpVd)LwNvXLrN}r#OU~#ubH0v#h-*&kCq&cK4NP^PhPnae_2J$`arI<4QcW|8 z*AO6UcsL3uE}@jKYOrK{25RRgXG(5MibX!A29vdCQG7sG{AoS55{cmDxSAlBZomlB zdMdt!XTHT$b}f|6&;Fblm8gw7t{iy|rRQe}Xc^~ul;|g+jSZ*i=v;i^DyI&|j4??( zWs?5_l<~7|!iIz9CS|gzx6!1`7onz~!IN=@K{Tg9oDqgSQsHd91T}n4CLYFco?1@> zqKvK4Wb!f;$xkGYhdFuf!z<9hyL%$juOjRw{IocK>1~x}c`U@mI%pD5jv8X+V&^Yq zUfb^dJgph4n?Mhnz3Ww|mZ#l5dlm0EDsSI!PDH&1ZT$3g)`{fzGJMUU@?$6s=FZol zrk_L7Y)G<>KSpUuFHZ00GI6mH$y)WAyQk~~)EiJTKWTrsA*v#Y4Lq{on<&+Lr?b86 zkOv=<<+7Mx<7J$XCT~F#&k-?iipYx7mbF>=w^5{@&?#%a+TMX`F}bu3HZf>B2O3A~ zq3{_#_WGTXgXV?|Sghb3DC8#xTk%90vu65ijw>R@4BQ}dRI*Z8--S~7i6xQyX9pVJ zL$RLYt8)4>FEOD*P;;;xqhyL1MU8#oSkBqzl_l~Cm45L)bnqVR^wx`{0@j2{J_TF} zd{0HD!HX}4l$bs21L%{VSihE=LLi=3Y`*6r3Q`&>MZT9Fs+yxy88 zlgoM1UPh@S_1ppf8fy6otg*&uZEBD&iu-Dlbm9}69J$O?tOZ(|8RUr;tGAfV?i(nZ zpNYU3a3=eGi?Ra>a>=+-F2pd`+zKU;GT%X&{6u3dH_JZBO2vPV;{D`=G0(=_iBOHm zD<`y%!5R-K_g^TNpIMTh2OpPAn5pdeN)IXV1C;QyiK!TIZc60B597l*oReZ3p;&(6 zY-|u58_nW70rC^OKSBdPkxws6e$W`26s@X@htv8;B7cG!`I!y$zyq1#XO!+I1%kB? zObPOHIvyK`cI4_8sFa_<)tQ+@bo`3419B>zE)iuXc%;SIXY4)W-=LzO@t;}D!}!no zG9Ul{2W8In;X-=oL$?3m2*Vyepzq)ktW08+u}C;8gTtGkm7jPPqln+Z+)xV(PzZ~b4o;NnxM4b0; z6d7>*AI8L?UGoA;kHec4|2LZ+i~s)vCCy~#W+t+;&P(h1R602a;a+Srdd*5;y_eSa zP)EL~LHBJ@kgqKZ%L}HtssN=1wCO}^UzKCltgkB2qF23weO;j?)chBMAZBZGjed-^ zl9h0Vg+2-0__v#h#a2+y`_Le32FXTpKxLOK#TVeR_^P}}E|D7vhs_li zNwtPb`8jDL(>4&Y7T@O*Lw_5TpQlBgeet)LhRm6#EsD>RUp`JG#*1V!wTd#;*dlLM za7@X_O%}oCb|~NTHi`~|@VQ!-pLMCOlhcfxO9ddj*eOFeUP2B+{=jo`I9$|9a zcGwAe_*s3hwn1yMW<>W{v!z9uTV#JnD48GMhsHD7T6V0ucS7;`8C0wx&GP-sJrZ+B z-x)dt6f(B_W5kZ-ojSSisah^F#y+`x?F_~8l+@uKY$}ddVTqHimY>tz1^NVa$A?UJ z&&-aCXo<&>rbIqpHaiZ3VyoV?6lLmlyE&4-Lderu0)7_NQ{GO}eO zP$)k=S*=?#q0-vgx-9Ltn-|&+VZed_0RCGo6indsqIQ4jH9u)fl}eG|S&KMMDa1 zcAbz!dY(zlUMN04jhk)WF~^G9(B65YfTASg!(=QK%@>#5Yq zdqN%0K83QLhXI(}acv{I7YYyPKxaiPT$RB6ne?4J9CwXpt8u$$q$Z~T6tftQ6e4Je z*OZvAF?(chpY4jz_Ra&HxwLn-wnD_nafXu&8G>?tjuKfdUEIzhGWJ86FgD{F4YjN2 znbpu8(e^StZ1UCzs(E+grQ<3+A}nx3_BVO&<|XKLiA=aMYQ|j)El-xmUFAlAHSbe^ z$B{ig#eCjWurCxm#m82xhhD&^Te=r>OsuLpJ2y(wRHYEA{C{17XBBol|NpQ(EdhF0DONjZwEwB~5KHfDy|y(BcNhfIQo zKovjztIymcE7Q- zWf!v$MMF`3o~Agf{W_JiSl+Vyx4wN zZ7lo;n&oHo({{j)h@~ha$Lwr}K#72I{hXmBP*+RaeX&GNw?MGj-kG?G$(Y`Qw) z;=Hj&OB(!-I;tK&8U`i&oL6N-l;xTGyGogQUI~=S&tlI!t2(hRny$BFrNdG9H9nkd z#)#&5R3(#Dxn14UxZ824`3|$ekAR}4%j+?!zq!vI)MaCFu^#oARW*fPWU4w6s@@U| zr;&7hDoYpJrmE}dLL@|aV{^ovoQ_~L%}D0i&c5vOUdF2wC`b1F+W3$HMfsR(nV!v;iFM_evZ6wGf{r6bs%*NG^qJ^mkKhj zff<{I^sy)~AXk_oD-Ojh!^5J7N8?*t_+quG+Bm4@eZkPI*djLvIWAL?jtq~? zzBz6@RPi2xQmXI;xnnOY$7JaN{K&gG*13 znQTpgI(f>yw6$=!EhQN<;bPmiI4MCxhcT7JG!loCm`>sd5=WAlL1HF}qevW0;usQP z66GW!Bq~TmNmP=kB2i5uMq(C;8WM35wImWGk|a_jW|K&h$dJgAs3S3l#9R{dNYs;< zPvTe-$B|e-;&>7#kT{XVLJ}vDIGMyLBo>i4mBeWzPA9RL#2F;cBykprvq_vo;#?Bv zkyt|Fd=eLsxRAs}BrYa#35iQdEG2OniOWeWBXI?ZD@j~M;%XAhNnAtXS`ychxSqrf zByJ>e6NwchZYFUHiCanBM&fo7caXS~#7Yu(k+_@0JtXcWaUY5MNvtBVn#2Pn9whM) ziHAu%LgG;pkC9kI;&BpBka&{BQzV`y@eGM)NvtLD9Es;iyg=eb5-*W>nZzq3){%IX z#A_s8C-DY}H%Yuj;%yS^NxVbiT@vq+c%Q@vBt9hZ5s3{XJ|^)AiBCyedO=2Gs`;yp?M0XNBNbFCd zCy8DpdXor|=tH6}i9!N=R!%2)FF_OfgBu0@aC2<&u(Im!@7)xRtiSZ;RkeEnf5{WVrlSxb=F_pwL5{HwR zPT~j>N0OL9VkU{BNE}V#7!qL;2`Do8|0RFbG7QB5L7Vit)S5^)l>BoZW&BvK@1 zlSq@ukjRp#BQb}>ToUt0)RUM`;#d;Lkyt?DcoHX&IFZCc5+{*3nZzk17LhoW#Azf> zC$X5s86?gmaTbZQNt{FCToUJzSVH1_5*LuTki5uP56!k4C9NeN{8h$0^_n*Gc z?60lrBGA1=Xn?pLP3D+Ksv9XwrvAKbg`CH9+d5#U>O@DURH;g;(zw86It@a;PI zND033h$j^I4gtPX2hWh;n$R3JI>bqLZrN8UcP>2S+7%QHMF|%})sMlRCIkg74_o zPqn(I1o&wkTqVKJz3{ne{LcvRvpTq1f=gnd6;pqHQ}mRz0{ol~j!E!;zqm!c`FR0; zK?l#0;3E(0a)oW~7X|nw9b6;9XRp0RS@2~6enkhzEj6n4RBv7}y3GmxGI3>YrU#d`QtQX*Sbnt8m?)l^v zsv*5A!0+kcv;+^@rOQ<|&+iNH2Rb+-!F9(xt9brUfIrf~SqZ-FhnJMj8wB`c9b6~D zKNTOm%vR$Q0sd46&ynD#TTgnxZgrmt@aH;st_07&agQ*SF)L+)1s z{Iw3Qm*D8o?&{6o2=KQ$c)kR;h(3`{UnP6WcLMyq4n9_bXAYd8n&^K8_y-+)oCHsK z5urN$-!{#^$zl;CY1Z>y$>KLq$s9ek1mA71mYV&g9X{#ys1EWzc~k1C!2 z5#ScBw2A%{3BLBH7ZkXFQ0?2c)WM4+*f_tn>VvHWxU~*GRf3CeEK+Q=5#Y8u_%sQQ z4eqJlyoCU_)4``p@Wro*++GJSmf*#i$5jP82=JCV_zVf|Qq}q)yAN(9z+3C! zGbOnGVKxD6Bf#70;Ikw+RQrG$3OWk#b~^ZM34XQpp{m1fFTgwK;BzGS?6R(k=S~8= zqYge-f@hs|vua2?3GmK3_&f-G@ft~&Ta3GTlvqh_ma0=%aVzDR=W-q}i3a4!MgTL)h(!LwfL zq$;?N0Pm}VFL49!C&1lx@TC%b_V8DgQF;jQ{yKQ61phT`nri$#1-O?EzD$C9Y?)R% z_ZHxg4!&H1W0w^xqx2ErzB+iB1RuENQl)dD0Qb|uS4i;NJMF4?E)wAWI`~QnKKG4p z)SCwg@IW1Wl>|RBa)8qL00ADPgRhq0lOJiR)EF$lLv-+R32u4G3`O060(_7TzD9zN zdAXx{^H2dkSO;G#!8gu*bfrDW{6~Nf(ZSbAaI|k9Rl#Bb9;Sn@m*6{pXrt695#ZrE z_y!4n@wZAf4~`JvkvjNB2`+DOuwvs-0Uo7;Z<65Hr@!4}SFluo57WUbB)EE~Wy;*6 z1$c}OzFC5=dTp|5{9^@poDRN4f*<{EkfLt908h}tw@UE4H}9f6#)$$vNeAC1!4H4- zxYD^yfG6wV+a-8-^dbeGBEVC1@EsC7E5+QNX##w>4!%=@=S~}_DmYz$kI=y@C3wMG zgBAEl0iL0Q?~>p}izcd3bfy3wrGxL5;DU$yDWe=Mz{lv|dnCAb$q#BC3=43%4!&1{ zZ=JET(m5i)6*~An369^=UGW?h;7T2QzXXr?iBVT2z|}f{F#c3;ItOn_(U;MEe` zqo`i>lo|n!>);0@c&oY|3S29|2_5{P1dqP^T2;ZM0H<{DLlS)49-S3+vjsSFBaf4bnsdU&KzB?z-J2ZSvvSR34U(W?W%%j3-CEQ_<0Gw?ZQ3PkbABGpQnRg zkl;hle^OO&i2$FkgI|>3Mbn0=#(#kTU#Np$lHgSz&Q}$@NPsWa!7oejg0GKI;7bJf zQXTw?1i$!4JJtA?3h-q*c%1}yUVWdc;N=3mOb5Rz!LQuhTUGE10lrcPzb3&Cbr`R7 zzDj_v*1@k!@CRiZl?9gz@HIO44GDhl@@Z-)xK@C#)4^{_@GaLrrP}lL0(^rGeoKNs zYBNCTe4_y0q=Vm<;K_IHt=L#0z&GpQ_12sBcwF`FTLk!49sG_2U%UIqijCU@_;wxq zt^}`~Hd?81hXCKHgWr?jAKKoj%)L^8@6y5VOYk`dw^a@4ZUMeW2Y(>JJ9mFjQFpHZ z-=~8=l;DrsGLP|o0bZqpKa$`lj%DE00{nmu-XOsr{8Xjbcu;^J(!n1~@HsQzR&C>9 z0e(aWepJ** z2|l^tF{Q>E0{o^9{;vd&{qYxg{H+fDU4m!sHAGqPI|2S)2mc|#h3`MFjPhRr{y_)-DZz99*+)%n8wL1B9sHN2 zbEn_bn|~7EpLOux68zNwX6|1E_*WhLj|8{)pik1~`8NUnpAK$;81Ga(aPJY%DV{e8 z@b5a9_JRrg;$$|M{~^GC>fn|V{MS1ls&V5l0sdPDx02usb{wc$-9G}{qO}%(ZY{xe z@13Ti5Cw!n{8K-QXI^eA0dB2>+e+|d(^=TCjR3dR!COf1BfCDh+74N4A;9f) za61WJxzj4evmwCkb+949ue5ksHKYy#yrm9qFTv*@d#s{vD*@hG2X~O*JN9F~=r#hp ztq$H&f>&Q&s?_Kxz}xBItt5E#ua7HpZ!f?*=-{m-_{KSJC^k9?@Qylo8wuWj&`4Fm zodkGi9lWgs57{(Lxe%QNco!YqQG%B(iK{p7D!{wx;O!*1Tc?LrtLq}byX)ZXCHSTt zhpIR4A;4XA@D38(eey|an&>9Ld+Oj$5`52E<^=8~zYLbz)LVcmJ4y903W1-_mtr4J8iF8-B1BO zSO@PV!BbymKGJ^#_z)euw*+rWtyR6dSb&G=;C&?c(^GF%;1U5Iu7mfL;Nq^IsY!E$ z0FTtc`$_Q8i%Qh+b*KQ3(!t#&_>WQJlm$x#_%I#ZLxMYQ^MF!gv;dFM!TU?_hUkl` zf@1}EoDS|O!C!3JPw6~ffG6nSUJ@Moa)@fr69ssZ4(=_%Rj2h+Zcmv2Pu9U93BD@Z zRk@c_1bC_r?jym6w>?@>H%)*K*TH=ycvTy=^Eh3AkI=z|68utj2leJ71$c%I?kB-t zoYz}{XA1C9I=D!JA8Nto!J`HE7#-YSf?K?sIoWoo!U9~bg9k|PF8h_KZWR&W3LQL9 zf=8F!sV2>+09WeZ10>iHo~;t#Y8^aCg1bN0N0~b&z_WDlUKD$3LNZ_gn#W72xA^ z@GuGfc@P^I7YOk2I=DoFYu_HFbUs0VPt?J~CHVg3EKs&kfKSrFBP95*&mT5Offoz#89KOBf^VK5Qfizj zz-Q^;!>l(S{Hy|>Ex_mK;L#HN?tZ7M_I$1YpQnSzNbsmLyQw!X5#aN6@K_0MHRTcY z<_iS)LLEF#f+zRurQUpz0AH+w$4l^)28(Q8BEXmG;0e~7>%LVZ(ozAwOb1Vt;1+yE zf4KlJ)4`J@`0IOnsGf3#0AHzt%Ov>L3m;VN`6>avS_e;-;E|WHd2qP^U!#MkNU$;G zNmapX1^7B0JXM01KFb=?^#Xi@4xT2#^B&w!Rq#duzDWlkF2Q%-KUuZs6#{&-4xTQ- zcRV{=fo~DuTXpae5*)98PYsN>3GnSY_(%!P{LOZF?-1ZSb?^)c?))*!M_MVscj@4n z5**2}%#gbU_#Pd6lmyQ|lP&-672x}H@X-?dz{H)Db8^1`uhPNCNbrh>+3wP60e(OS zhb4H6jW4J^_@Dqkq=U;PxXrXS%G?hN@FO}nBEgP%@KFJNOb1s;@RlFWRpwqJz>n+T zs06>e{unhBJR!hO>flNVzBDsl>HL%cKdpnSB>3uidnxcU0{pBFu9o26j>;;X*9!1+ zIyff5@6Y)}@%+31zo3I>NpOp)2W9OY-WLVpm937~ z3Gk~rxK@JC`pi%+#A^clx(-fAaOGz=s0zLzz;Ei{qy+zXOD8qMz9qnK>)@0GPh7*g z)p`MbM+eWA;DesHRgHD;3h;Y6I4!{+y~oDq_XYR^9h{Ni_3yl{D)^xQf24!65aGeB??!xvoKM~+hb?_Vs-fPSAl^UN3@aH;st^~hv@Y4$Xg#dr4gXc-` zfUj8o##aLTwGOVA;B?zcRl#or_*)%3UxIh+zCeM$6X5T4@Uary;l$k)_`d@DgAP7U zfK0{p8EK0$(i?!2oSH+~b~ z|LNcpCD<|6Z4%($b?`z7?)5@<_2xeW_)i^tk_5k3P^dcWUjqEM4nA3eyN$n2QTLAk zw`ilqpHGqC-7bkJqZAMd@n;>pNP@?9XJ-&v32cxMdP;@;2m`EITC!=sKLsDodkGC z9el0?N0%R_sM|?^chz`mJ=DG;* z?mGAa30`s3ZmNQN2yj;&e4zw8HjKIn@SZyOA_?w)?!l_n?Ipl_>)?we__)C==(LXj z@2i6^k>GW8Y;Col0C(5HmrC$YL%vYMR}TT+Uk5Lh;9HJoSr$D7xR(yTOoF#r)>l#2 zTYy74_;LyExa2?u?jyi`b?`C?zUZbsRPQbn;C?#z3JHGkD0V)jNPzq6;43Bgn&a8{ zJV1a4>foy+c<8tTl+FhT@E{$0wFEo%tp*G55FNZ+g15bfZDbrMzz6BzYb1E?-}@>z zey9K+tb?zW;Oy;#6?Oj+;6rrqbrQVf(>gV76btY$4cz8>fIS_G-4179+f;`$#p7Bh za9Flws-{({Cff?|x;dov2=%ZV-YkeYKwhAxvS2M>usf4zrQ2EjVI%YkjPoF*|L;B#d8r-f{ z+m%jcXZlnmv$&9}Po|=#&$zlnquG(+c)UCusTrA!<2I{4>arYm^-BWe&?QYoP9O79 zwm!Hrwh!LJ?pNuvSzhUmmG*59gMJm8#rEnd4LQ^-FVweJ*OIz;wk{nVnuyln+qCgs zT_@C)$72y(^=5u$b7;7teDDE-iw5-@Tu~8@4(tmu+85ji!&6r(XgeC^4pHUWhsiS` zeuNpTC6)DQO`n)-P(oqHvPt&V`s30GUWKNXa5Zn2GXBsADT zX`n`2V+MXPW|BAx!fA!&+zMB7D};ePo_GstaLa{lrL~~797;@ct5i_@-DdL_K~bIE ziZZ{>WmMp2BTAwY!b##%PU5AU#2B!r2hfz+6hSwZd8E?%yjc6Tv!IXrrJjTdiqt!7 zQfpA&_R^uiC5reSLxk>8&KPn0VAPUGKsf1K!s$GZ(>WX11^(M4rc?9QZFp0XNqi=a zCRzLD(|&zilom}g4IQSs{Hn;K8&U9oo1aI^4>%w^ATnTJ;ozeF(Y}KQoAc;Oo4gE4 z>L^Q^O5V)mx>P)BWbtRCj>H@YqK^J4AfKsVF{kcyPF+2)$L5tfrLrJyJ~WuzpgK<4 z@Wt=V(-w&wP+nM6SsAJ5S5Z+hpb!;rUvRfg+p#F8i)%-woAF9;xvg;=AjSd`$3r+< z-$G8|iJZcPz@8UuXQr$EsL^@s&{jnRu_r;VW16h6BH5phcdt$I$tbg{G^YCvd${+~ zI0YzU5s6bFoK3Z!^E{99ycpPvo6U2kK9h~shU_~F9k(9iGS5EdXT1B!9?#wC%~eOR zeFn6PY!0djr@^4G*{%A1oA5JHYD1-Rx0jq6;T!7-YmF>X(x|?w!{%TxA z;$jGAi;r>Qt2yyYft{b%!P(YWaCsRNDAOyWIO~rloKqt%?^{$kpz?sq!orFHeZxgz zb7+3h=InA5v%fMKTR@CSR#njr%Z^xuu?%?Q3KCaBIGb^pvv~|>b2+d#2hfb!N-!?f zi}0&~a~ZTZS4BbpHPE;=cV3iX{59r>ZNpp(1$s28fMbPz9pJ|GByNCk+GRSo%i-KE zD}cS}-?0n7F1MLx;T05Cxf%M#b0#GyqdaOG+#V}|y)poMu;HHknQ$r=m5SwJipHxYtZ)~!tjdLjpbW6aHo)B| zy3n;~>uY$S5e>h^W88zsjC)Dk2jR3vDYwQbZjIHzt_s!~)-Bv2mro9PG)+?#7Iu07 z`e!|p6_nAQu#NU0^yu%Z2ai6w+3g`bX*^8g5eTQ?6V2jmI7Rn{G4J z7S?+lwV2x+)`BwNQ?>!0fGXB*#_)7_F5Cj+N&L-tip0|pPSXtLrWwRdvliHSd3CF# zzJk-|Q2a#cRLLI{Te$}b++3<>Y_^_9Av-F=m0$y*I1!E`z?m^#z;DKjBwm7WvR24h z>&sbN2khbi8Z>Qjg{3O=ZO__d0)q}dW2DyF7tLCz->Lmz&2Wqm7qeeIgiu>nn?%zeZ`zk{-&%lgeau3aT4_M=U z5+6V~4bY7nper}P24JrVzyQqUp?Iw44WXv0CT#FAG>zrP1vf;$+#-*zJ9sbJhWG@9 zvyC36ZCR`eU3wBe^DMpylnEV{NhXX>@qqCeiO(UN*67Twu`{>ESHK3b(Zj5fG4)G_ zu-RjNu_zOo1^xP%%U6Be0at9?*=!|+UA~6SY@=thPbuS=I^;4!xff3zmO` zGDkI0N5!hY(8M~M)t^veZ`b~YkVGOXwk;grRWW|XBgQWzeuZ#0dV}-aj`O?;*gFH@ znKgPuC2S47u7p_wZmgohB)>!NlqZ6ek^F@zUbBt#2XyFQc~s$S*!UBFF#aO(H-ys! z1>6KJxCsjI)t9>b`h`$d(AW}Xk7HF(B<1cAx@{Z1VUyGfCAha_z7lXurmgXa(S}4@ z2q%r3HnEJ0|KUGYfl7k3HGmDcCG(Y!kCxn6MTH64LvQz%+}Lx|jTiv{1+yFrYv_W*gAqK84C!2*S66 zQb#vc*`WAcZ}Yo7itH@A**N-!E3)b)MKj4b$c4YM1AaC-k=PM}$fbY86!{e=_e)N0 zXJAhbfLsq#WJBErrMp0t8I9IY@#$}ReAni4SCrS+)r8vqjALBc4NnH})a1FND)l>$#=g=9cOKY!DHBW~n&W&UNVFTehw|yH!xwW`F3*BKn&l zB`BkOXd9&`%HL7;T6|p9%q*f${UUSL=!M^m-Xua0&LL?Xx495*n4v zm`>qv{BDdOF%rUQi`Co~tGF#nfjzU?gG5Fo)F6Uut5Yr1L0ARf{wmbtD)_6FKIc*g zLG@u!$y(sMfE2T$h+M)ZuDJ(a*wl_ji91PZ&2QIZ_cV>qlA7s=WALLfmc%#+=fJU& z^Li)ebt13}o6T#joiF2I@YOXJY)*nAM>JA5MP>g`KOb2fU)fBSp|p^id0C1BA_$eS zs=BoBEvDck1BT`_4lfv!@r*Hr#8e1p!(G7%zKIh&9oV}9Aed!xAXdUutb>Zk6eAUL z8Ao!ds<6lr(0sNxj+CMNjV9mNhB^{T>?WH9U)sVeKFgV>K9=b-DIA+0jdv}J#$#1D zS`Txc4Brd3MQ#&(;F^fBHUJ8uR7!gjMzpA!pw zF{!Le-6kjNx(3+)Yg@MlO6?~b)TBBjc+^JWVy0ti)ig4ht__oOghY0Ljam{32xkvk z!tHn-x8rPJmvB2`KczWG$2|0)&DBI0Bn`!8-!*V=irqBamEFy6#gwq7| z+ywKu2^Ir;RsbfjGRW{{Vdz8I^8;vzZF)9nPzk~G8PMsdCaS8)HOt7w<#)~H_{}Ew zOqAGFmB_+9luwYEki?Uw2N%6=8ABCt$CA8_ys7I#TL|{9UAF4AUdM9JX%o^tuQXc1I9%pE{1S& zALHCtbMBV{8$@gYGfXsLE&xNc8;G0%c|a5&!Z!8G#SELRq_D_k(3!;+Hv3di#`(iG z&gIZxAJry?C$r-aJDU&>XDi{(IO6up05z^4aV3P)EMabzW4KwC1ABDAQ83MV6@6b+Ga z3FA7Tjq6F=0O7R5bZ&>kxgAyj8}R%Kg-qor2qcwr_KnTWzb>^C#<&^Ey3fBZk8peV z$#nY1w#O|f-hGNFhU1Tpf%R0qaVt>9Z6t1oaN1!ax5ET(hn2tvJVk_+QcnIiANN#G z3gYjAcJ5OIt9ej_7vR1UaXG}@D0WZP`LszaG%^~dt0ywXJ-`|FlDH4TNqH%!d=#gA zHL#ZjFa&9{a;Q?O<&ktVZPBWdp#1@87~OpRgCf3_P5gr>xC2%%R!cD+!XJ!>Njw7K zWVo0!d6-a24Y&CS%peMv%rI23U2x#UbZ^b};hiee`? z{;oL6*;lTNM*H?1T-di_V01v`fTD6Vmi7gP&CzQpgPrbji4lf|M=71vcpXUN4H9oc zIH~Kwsq4iY)x3UfN2~_AJBV@3Ez56)19+#j^2&b`s@hKq2XCyv{ za9X4@x5&=iB3}X9{OD_@;eKeAG)j?1-nK+lO$6y*L$Pp^HRdeS-fJ#P64%X)ZETvq zL7`TvoOOO_LONE9o##1l#JB63>;-jy9h^p*;80PI-93_!$V}7ZSfhI9sj3DQ(9o-3078!Hy&Hw1mfT zLsmnu`#ZF9&+U{jMX4GhSIi{tr zBG`!Sq}*OTHM|qZ5f8A)LMc zE6(nhoZZgAJ{G_@%c9E_wx%&#Q!T7XZnGBF)I4bwtlnJ3g^6}SJ?1rwIAz3~7dx)L z_O7-OcZDw7$;LFC&caBKdN=&t=t5$52xt4>z%BF@{#qXF=|sP+>~L3MuCNC0li|ncE8mSzF?hqLp#k&WFcvZjD1M# z3*n@3J*V+)PGb*X^SmYASPcZJ`$HjXOS~~8XSi<&i3gh>U|jvRJ#2=1qEw4v3}sUi zwK%n26|ESH@IksBw=ze=wMH+1jNT+d5Ke~IafV;v3>N~MXNDWAfnc~F6tWm@49OYx zlXTF{X1EBYT2VDCS36V^565aVMt}Tf3?MNO!b$8}PVBRs*ulW&IjW{9F8CY*J*=pj z1_+AAy=)o}L}9zjF{dOMmqS4&RF;ZH%;Y3&s2&82F_gr?5KcPRa5^93bQS{}#5JWJ zM$|?sAZQ&1ebhSGwWdMQyN^w82?}Mm4{%4rz6ZLvBAlX}_~F1BBS?&dAeznpnRjrm z<}|P3G?xOqJYdhlRxK=4a|Y$?g#|z9-c-#5|A#?QcKJY44=6kM^A+~9?JydJH+{8a z364jO0m>LlVjP6Cp|9i?xRYC8BCr=V+X9)Uu9l1>s+?C#+T0gfZnPR9()FnJVxpSf2#tn!Z^QP{ntDWa2bG{?o(ey9~wdrTj#;jHGMECWos=MdK+-b({>KF@?lb z2xp^T!70CqQ$8KoWzD8sd24JjO}C6?!&TKnFK3Ilwzr(lbEB0K%pUi z-#WC=rZ~yERi<#ic7sb zwsU8t1n={qqx&r3L@VQsZ zh1>=wavLlJHi&z3*-V`gdE2pACZ^Q$XbRUV3X7ZsjoH1qo8u)Y!wj$ub21dzK`zOV ztsOdicrsE~i!s(X1-}@JNSq4c9BS&h3FdJVECx1!k8XHahdHzsteycSrnyy0@#ilv zet^y2nJCKIdsJ6amsE$bwH?nGXW?h#Y!c@{INR}TPGX9axCGeKn(c8)CqHZ7O%;*a zNbg<-X&ZX?4fPjvo)2}b{l|tF&Z(aqrolF+7ofadlruXmmMH3n``YXc-3#%%aS@4& zA)GBU#!0Q_q%H;alxCBv-1uCYX5-2WMlXXdGaCnSO8o?|4zww~90hJ8d&D>-P1Amy zu?&ASt{`zGgpZ~Ma{^ZYdtm?#(RG$;_S7WEy&1ZdZ>HLcY=7Rte{8aEL8;rC zpO_1c#OLRt=7pfft@x{P8;RQ?oa|2I>`vh9t^{^YbDO7m>@-wq>wppSfQH*zg`t7s zgLq6^LEl{{yiBi%;>&znXu#$J{;tP@ifz8`MltM)SJpU7lF6D_RGtgE2QcGa68Awk z2`uFVj^YHa1~%Z20!B=&nsqRUS4eRD0Q6&byEamJMY_L6T4Iy_Aj)M2AK2R6WjE7! z2x#MB5|2PQxi9A2AHum`18finAEGM0;j(k<93yN$ps@(6z4fa$sm)-<<4~3zd}x}G zpzJZiw#O4F-n|px0K2%82%iWwo&?Nzip0|pPD2dlh8V;Ru@=~XI{^->`e^ za>~~MoBypw*BS_pUxh+!tI-vy81}cID76`W4W+VS#&LCZNm+F`oeHVju8r4$Hr^od zCWNzf_uy1_=Txr;Hi*w8(cKH`g7l23oVv^#jojN^=?$tU?C=h>W#dfKj3|TnyH93Sn(_?DZyxs zKN@XFw1sfmW7BUueH;Iw(zk)lZ#>IVSTNcilZ~BT};&cGab`x!aAT7E6(q@ z*2mZqzZhGQ*c!q)UT@^A{lHo42yA}i{0^-Jb=yG+E6(rune*o-fI8jgZ+jHwzJXQ3 zQ(?^gT6|x`*a3K>6Nw!moNe(d&gz$()y}{Myn*HTdMxc>rJIlW8zm?}qo5{UUn)^)>?CwHiZ=j5QNbC#YY}o5LrEhaedjK2o zO%fG$;-J@X3agIbd4Fi#%xU4+(SVbCTts~2ntx<#W?JSr(+T1dE<}901^Ws zob0dV>_5xd9}H}My$efW!Q~K?Z+REiFN(0-y$iQ5wnS{g4n!#(8!W4ggYai#D2an1 zoWt)LPT6CevSMJ5ZSD?Evo;vn^3IHG4}%7i8&rqW=4X>JYSUJNa#*a7`Qenfs_y6% zpC}s+v@wFjNC;;GT+P{B#n~(cHi%eXIFqv0)|98_HT{S(h`$lJ$~MSo6mQ)(%o+uYZI1!M7)xRtgtJMndksUf}4C*Ag`RBlDY?6;eu|t~Lytl4KotzFQa2;AY>x^g2!1KmT5=TKe2bkrY z{;N6tVPKyNAachB7#YW~E=$E#-%?$#{stRAWB{jW3WWK}QKJRT=TRBf->_6`8#V%k z_L3czd88rr?`7t?$EX0%h?1y;aCV@j+=7>K3&wyA;*(p}{E*9WROP%ksD&`XEGSi( zL!A}dB^*CPc?*E91$zMjRlcmP7)=$@CJ=^m&}= z*}&#`kF&8F2$s`O$lBv<49OWDm>a{cG49zm!x@z79^OM`8|yb39ti zIX<0pTn}u(F>ZOw2=1CsN1gXxY7UK%PjUK}02{UmwP3JNzRAP>>_98Be_2nlyT~9<6Hm@tdB%l*~r#%m%bc&A$~V5 zB5^T<(-tvqi)wC*rNBBCSsp(vB5V*so>n*&3q|5FSOK@i_X{21wyu?~iHrJz<;$SW z%*H{ARI`L!HjZ7BLXWjcy&MI)Un)hx1ipW2ECbZIg2a^&PJY9j-(xtx%YhBzc5K$x zDU#r016i+_VE!8DS?${Ob-Xfyzp;LSZG>x4HjC)Eg)S#WaVwq?{CvgLW z(+<*v^5r7-US89^vWpC`~_+ExDUd~U@2#C6lZWXuz5a++DHWip$|YG>mX_) zz@X?o*{1hF6lw(-Y5G9MZdo!?gNvmw!HXuQQiZZ9(HZ(Bg2{YHwl-$=d*Ip0{wN!h*JsQNF!}D}UjH z;f~5&mJhB`&$Dg9K0ztlN#oFXEvF>oQ~cfdjKt>_^UAu1&3PQRRTj11bv(D+crp7lq*}wl6r>X6_plv~y$Y4dYwzy>jwv&jZ)Ess+SEtkyw@E@Vgk&V?*5$bO`Sz;6V6N_3-VQ~NRTWSS<(|alHjgc}8QLBNSRMeo+|t+qe>Xaj*b%}xK77TQ z`jRu%8QA=K08D4W*e+1P@&MS6oH;+q;g{RY?TUijuT!%QML6;}cLUt$LSlCaXVcrj z3H^u@+6~x%uT!(mjrd5baI2tTe^2P^ew~`zGs-CbI{X#3QT9Ul?&-{BS;ROaBXM>) zW9$u-u@8xTA)K~Y&u#HGw?z+N15RhgPBN6Dp~dT7537z~et&4^p3cmmK@onHO?Xcf zYaKD6FJ^`Cg_|(0zKt8b@Qcx#LxhZtXT@L6 zc_*$}5zB4v|=ByX$VsU`x{%Yw+Svmk?b?&&hKR-?3_(TlJQK)>HiML zL&gXaBO#oeujZVu;+&TPdrtuVuk%CTDO*RU_v`uN;EhyPSmrS3o>uGToM=+U^7j$( z8*O8ah8EU#&Y|&Sc{m=MZ*KC1O2Tn`ekwK7#5LH7~Rt`R>&K^5Wt2A^AO!jD9;omH=58jhbEOBgfovoVvz zQ4mh1mvg4C=1hly4WcQB)iH@AwDCwWRX}iC4t-`cTFIbDz0D>yg7VyN$5mO0<|ia8 z05qZ`Dj}ToF6H!I%IS>(dwBq(IHOl3Wj6eBBqeGh3mGkr%~GtPIO`-Bp9K}&FUNJF z75Dx!Gw-muuR+P~+*7(S%`oDdIYt~nqn1Ph!pZ#-&i#3u``N$-d^2$c^r9(L=;g7I zJ1Zr~PeVs{@||c!zQ56ArA>YYC0oH!#~JbrZOj{4{A|>bm;>RYd@-l|bWV9au+1M$ zGU6)@S>$Af@NuwY1#;ptl$Ykbz!fV-n!GFMLjf`_)UX1A-uckSijX$MC{lA?%D8SO z-EEV4EXuP!t~ac%vXVZ&a2)<-EFf__1Tjhfh@6{+oXHb8lM8{(@5l9|zJj=uP`veV zJ^6!^t(>lWab@dXo2`>ki1l$j3inNl&aR7Q@Nw8v@Po04#HkQY%IY~~^EhRTfnAXI z7^S7O;Oz|PV0~SWSBaD7C-!!~P2QO(sf+7GX}R0RS%4U4lQ;*$*@tIy8dIFcCBU8+ z?387#K|BtaRz(E0=R>b!nyj!Q+20_!+9vq|lxdysEl#Ddqd|j{aUuR}Ttwnx2xt3@ zabl}Eu}gu?@A+P(vY_xXXkeZ1Rlh0P{C#rZL7TSAQI7j1!Yb#>SO$=B1&J#moUJp= zNj!#=xE$DkFA>HBlM#7n9^0p?jG*@#=;nTjutF-b{k74DZL+ULsoSc4Auba%uESrA z>q*=I;cTMQIlG5*c2@wKr%X>>V?p7~P@qizNpa?H%jZ#>vs+LMpLt*(xSRMMdU6%|kewYkbKp0PvcpAb<@L*2xAWraFV1vj}O62|(TUYf3 zxz9lxE8o}^#)v zn-I>n+=G+dos+#D*gSuZRa0D0`VRD%ZY}2R54cRGnkgFnMXsN>X?z!jg_M&qHI}Ih z$IG&H75KC|rcLA>S40nuCZgh-O!!Zn$$k&d81Iw#0K(apyK#EEa(Xua>$ro;6@?)_hQ_nKJ*W(1YLd%7rt8heFWLtB1WK?- zx60WQ-*5R8KO3Ks_#DD%i_Y8@J9Arn1#I(UQ?>TT$FTs6CMYL86QXkrxeO;-1q9Py zLmw9D)-X;|bMiS{NqyNS^&6DOu9Id_;Za$90Lzi7^DVH(cO<@ta5CJHGrTQlcq6bu zTqn(f-PNR;pEMo4YJ&S8p((pgx+yM#GQ>LD5I>=C>sAwXThWNxST~ zkoXnCIiwrh3hlTRHUXRGTTPm(g&_QQC}rJh(iB>;opVUmH7DXVo9#bPGK-VBoWnH! z1jP7@#NQCk)?UDQZozpjXdg_R44%J!95tsg#pMjDnJ?KAda*c}ONAB5{v4AxY?51{ z%pJx>=Vmb~CM&b%y=|dk8Jyc`jbDs5B-%nax!v>&PyWS!sN`Q@o1FrcPuIOJG9a!EkJTM%MR$vF9eZgBc ze;rVidm<&BMGzmUR1<`;CE&(ZB({cdlDd(T`U5AmBd|9G8`#C!ijbMd6H>EcE{&HB zxNa2`{BH++-4iL@o>4~e*QnRqM%fXX+CXV+TNuP9%1O zaE{bpaf5ux4bmCda|1AlhlOO*^$@)80=24hs<-0YpKJcE&H1hi_}&BF`lU)3&6 z#Ejj5HM)@49m3fQHgM8E;-q&2HV7w0HF!AXT(wvtmP;3Cs%pXxdqPv@q%`$_GK9az z|GsUAy-+yIA!xL4hugR}9y0bJu`h(vBI~(D-sTqR0c;SNZjD;RtN)l&WrdCQhwd!X zEvF}gGS-K-v3f!a_vyplLYq<=ni`AF&4i}*H+lhX^d=F4aGGfyH`6QJOohN+6~Ji4 zynAb3FjSXQmtnJpTfKxu`awR~j|AGJsiX zv-c|gYa5^jMO$||s%y&*AD)ch0~)x~DvsZcS`rBeXM0}4X+MwCJ{#Cm^4p$Wlo#Zt zp^J5+qYFq;>aR_2v?I&1$hxYDYrEB6*WiWrif}d=I9Sb#fQG*bheZ;B5@PO4C!@fe7xqQQDS#V`NSq4cn zJdg9d7})>I3;QBL{uxj+=Y@SyP`3EZw#At!zepK>^H~FlEbfg&Hv3t4&^VjKIS@{( z%;r`}ajPr=))5s8(7ngzH3cn&etw;NdKrSV;$^~A=R@~7&7jI@w46>vyZV}&Y@=NO zO|08bFn1Xj;=hfHNL&ozv_*{DqMF-cDX{sy{eHFfhE%i6rK-XR*FbZY6qCz?%257}Gyi29>RKparQMFhX&GcH zS$EZ4ho6k=N!$QI_Mm@6AZ!+O1Pty{FX zz9q3_>$ZO@o2>^?jFq8m->+)^OSCL&rqDhFgz+$mMt|fJG3JDKQMC;(>!Uda9S00Z=Mn~%>Cu^dKp{@yNhE4NpD0Ejz zGs}H8lbk0clX2s90E{{$m-8sqYfnC&WlAF~y-Lx0Pz5`{BYNC#cR)0Ob zgU#x@D3Kj8bh>2n!%oI~02%L-_yEG$e7kXGyK-hX02{;+L#LlAzv|@OF}1!@WsV9T zLpOHB(6!o%Y=5rjRyNt6pj2!3mVC4cw9oh{{%Cwg;&TXRv+c~u-IoZ*BjsBPsVp7zK3wq)sfS+EvIWEuydR1 z1U0LZ3v~rqKce&rj%qlm%Ee7BUFB=5<#9*UQ6<5BOK9kRqRRnR z#QTe!ce06Zg@Rd{hgyc>4mol6H@vaRSXG^fyr|!e)_BrrL!vE&(-fP2=84t#50zLA z>>~kq4N-LnCMgw#lcp3^zvp5cRjticTbQdoYQfSya(_H11MXxSume=FygOtAiP3W` z?qG^mnE6`9mH-%Ak=Po-Iqq-dcKU(asUxs?_U_!Y7j$n2Wi0Q`4W(H1H-C1vS=}Bb zc9Rp2b+b9nWXIGMel&m@I{;>MBC#WcliRO2w_kE@I|F-W0DZv2vaazu2!?loN)?-} zFXy>$2m#<`u1$8edEOP}vf+pAdeOK?i$M7`MmuU+9El|HWp86QJZW?xu{(rw_}Rdz z|Av7F9emC|Zu`h(vOzXLs-sWcN0c;REujnD>8Ocz!P$w5-=v5Gu?+=aG z&Z`azir77DVtb-M>+(>Hc{G;G{y97yn-eWfR3?pHz!<$rgdm*5&pJ--E1cXyV1qb^ z3UcZAZwPbE|Eumy;G`(7KMo3NsW75|7Z6cEQ5ak~6a@@&C=rl5qCi}BXJKV8W_D2& zP$CdfAfiA#fS>~L0OA2e6o^D15`jbo5)&XEKs?%mp*$##13 z;hEijv;DrmS5;kIT~#e~jmPrZh~MIuC}MJZG#>y*+G`Mx92D_!bmdL2fp4nhZHtqV zS(4-muJw1K7-Z=ei*xl^JA8$;=cWUUUX-^`wcn*`cZBaN8EEX?4o%8(k1?_FC9yca zMYAd07NAa6u1DNtwxq@P+$5#fxLl@^bOU1We&5G{SOR;NBx2pNb4Ft%mP=7(F#>XlmY|sp$pZYTivfHF8JeA0QC9n|i8;tEBal zanBbEU#^tA6=!RuIzCZS8d5q(J@ISAkTK0kM1H z`K2+I3lA3KCJ#o}>?x|*lT@>O_-5k03Z&-8oq#G?(*=ej=iP{kyjQ`bbp=kZCbv-n zkHIO)JV(;o@p@+tD}XyI;9`!TBaSomrSW~w;VmvjY3W4|Zf|EX-xq5?oC z4{^jxCOlT~olGSqOC=?N^OIe8NIAfcNC{So!>o*(aWHxkrqd)mOp`DkzL~iDAw?c{ zL6zOop944|--md}E<7oanG&_F67_zZPwxDOyDk0{8r@XBoe;UlWE0@UCUP?gM%Q*S z)%HQE?PU07=(fEQcb47=j=DcaL~`dpUs_jW>z><4uhpjQmB+)RVv^74<69lq7PCc`6mN7zRYi(Hf8;Y1}(XR^q(O43JhLMbVo zIw3|j*$f1_B`eJD0z&J>AbY!aKsRc@My9Gy)*VSgMU$-!<9 zP*>SBCx~=Z(msJRdcOui?Q_yEdlZ%=&VeJF%gsC(UE_SJ@o1{?Q}E63YY?zB)Y zgvV9MzJ?Cv6z8WAqxWkNbZ=Mv^m-mQDDj`cndK%gYI0h)`1q1izUaPW^!R9xBIiv6 zY(8As0&W(<=&eRJmH#d(|FiI|=1pG8=WrB%4q?enUds1(HBaw`qqEZdd7PW{_Q*AN zKyg{JKc(#|vKa1c2{%h&^kP4h>V7-b{YCg@qPIsn8gUU_WqW%S06GbI3GtHNUIpKA zlagLVxKSnLWt{&C_kN!AHsu7Q|~w5n)~PY_HbgR^Om%Exmu@*1KYW2;D}64F&AcEmZb3@U7l=iHLX|9pA+1<-0`00aq>iE}z#+e7h;N-oi=b6Js(@F*`9P z5p|Qz*20ag<7PdKE?`$G;P5fg72N{gYMNP1f_0?(9nRgC{FaJjIbP&B za(uHA={=l*tf?YxdCIa}QZl#VJ8T;_+hKGav#5?&Qyt%jZzk4Mk*i$F@@2QJwP{yv zP@OD%fXK<3Dw{95iAwLH*GnbpLj=*pZQ}JgcVgDz4*0O0-0XtU6Vs9=<_emakKp@w z1}=5_ti!5KH*`=O;s1=tvdd?7g-&mR;jK#Ozu=_gWsz>V=gZiVJ#0Q(VK=fu)-wUa}7f^k_fN%9q*_Hu23Vw<6%PHIPh%1#)S|Mm`B9n+MaT zEjE1jT-z#Us2JfpI{p*U$en2n7gx~aU$^NgbZj>=r|q>@x68@R&C9u_Lt6}?omsQL z67(CK?s5^49AV)DDwrt|7Y}c-8)0&T`)=$AoY_%sj=^w!`NtWNV^rTWsJ`FAx9SUx zs?;y5h{Tcl-w5n(OLkZJ^zN?*D&@b!+2u;%iS+T5H5qc;xUenY2X;|F&tHhdRnpoc)ZZiOngY!REy)vH`MNBT1n>)n=e zxXDQGTJ}SgjI(fd@9`quj>O`aC6*|SSKbP4R=?}*LO0Nlc6dn=i&VIMGL1* z*<(h&MNsl35aoGO zwbOZeHC(BE8O|)1I@8Bx152@U?jUsaVyqclSaWV#!00-EM0NfX)wv~nf0BV#qY{&O zz2kQjz7pZwB?_>&AJsOUooauiw7m-FB$rBZgX2z`<{MCq_KqJ-3_6QS#q_6JP80lSuOQt4)uharyD$BECW7kZde#8i~TlI^oN# zGdEpe^qg#XPI<``>y2Zq4>x^bcv|?!8DMyorsWly zmj3Xq=J~)Wfja^ZKpb*DaEgN~V|v2}`AWutIGKEurltn;!*)bD`6bx}QSs!24T2jR z%*_xOUC|e*qAyTIhr;*CDmPco6+4=U<&&M#>7gfL}_+W zZgxDE50{Bvkw1{5^c{##K3DVi&6Mb4l<0TjykxNfxpK&b;QY~1*P^20(&Qd|2{sJh zV8gi?0i!oG&rYwfb$1O*=~T9yhiw7I$0TssL5i3iq&xwlwQxO zP$eh_A;=qEZJ8X)#Ss?cCJ#oh2v5;OJV_Ig58vv&;nkvcbiErv$Qxemu&ZBstxB=d zZwyZ5J%?UQ@n!|^V1?Wi!RQ5gHr4Sls^eJrW_S+0nAL4lfXP)-&Qwp%B8(#{?>Y3s z%@sJk0y?MPjk%IR=cean*dKXk()^{dXb$>Wqpv!IvKv1*i+xR z!Anln=3|Rhe+OT3$+(N@U7xtRr{7wxfB;1VkEZ1`s4uiIryao)epc<7_TB^I-H6olgZHO$C1nzSX=a!6SG_+NTkV zT$JG9zKi4KU3Dl5p2_qbOss!6c<@L>zMSqP)c znoVWBi^}>ed^533sS@M5J^+ri&mkVUNrR80D{ni@52*Uil@pb`&*P->emZ52AzO@N zYza3@VRTuCQdw`Ovc3r4YQCRN3EYwMCBz}`r&AoLjOh%JKcHlM87CuKRgxA5H`RFQ zH)fe6*fKb=<=m`*(VN@;RL_1?&sX7_iLEM8cjP?s$^U1!Z;eghS>z&Q9)`Nfna!%p2jsHgU5VM$bS;nt|(R2DZRA6Zg!d z*{H-lvx(to{X0ZO?wL)uObPrGCGdMVW$VPadQ|(&ssg2wR33JzJ_lm zdRioFeCcsYXWGWf6RWiQ8+2spEusKMK9lxyJQXVGhk#1l%S?{J3lmk1{t zez8ROIK0^jZcf7J3f80w)}RX3tn*)6B8(OWyMLs!M3~??nxBGb%U>c)zTze%y(VO? zO30}=J()O6x&wUb9dlg?Jh5AJMr_-d~sOn>tv zJ_WBt#h6B?$sg9q(wT@o?lwkNGG!`RKU2v%3sK1R+~OG)I~%`ab-1Yu!*jtu&a9NL zX)gXjb5Rez)w`ZsK66Vx+dLPim+QI30avZ`?gpMxYMqCZc+dIgQ;O8q|IvQMcoolh zRv+%H0XGd{^g{gw74mZ`lj$7blq}li@kL)NLUu0CSRYDdHr_ zsNg$#GOQkccur4TpptPJ&M#kP=(TV;`h$B)Su;4X=G?S^(NpjdO~IdN3R=Rq>i1p= zXImz(mCMn)?5 zz#VQY9A&M!iNfg3`1@4lKTwsk;QQkY+*4KJ4%Z0X(exTbB3FhQF0PpA-Mv1m#B7Vx zshKLGN0x{>LkFxK4zl*#bb!&d+(NZ{mulG&zSTWbB_(o4%Igt`nyHfFktrpgS4!T1 zv&jdbeVup0Iy?Wnvk6!y_^{60bb-+Y-9QC>n+n<$zSaBy)Ca)P^(Mq4AAtHeW=h^A zO5ScbsjT(d;1FKhmtfs-l=a}ICyXxa8Y=7?RM=kdt>#*9gziZC14JTgz2TB6F@K@N zycMUrz`e#|8gbie_ycXQF;ifN)F6OIL%vY$G{oz~n1@?t%V;;;NMlf*^ zjQ=EJzwjMF2Oyd|{ai97=!;6wfjFJ_(;=~A7aIf*Hkg|sFkIB+zX$mLd6A0x0u^;A zd^7xXNbJ&O(-9_jXL94QMA3QgQR)TTQPu_YB*S@@_;i)bqG2VODatsVeVQ@JprP z7@X`9(R;?*CXz#33AC-w|LcRz07jvgS^zIr$W0N9F6V42=VMgPvGA?tO@(FP27)7P z91+P)g?(LJmDB6BzN$n{;IwjPiRgiJE6B$RK30k&tc;s+FuJhQsjv@IVaLO_dS{ks zQ9D}Rhalw4674Y6?`pf*WH~w4j?8MCmzR@!O>S;(`z%~#&aC;m((itpO3o&e<4Lz* zeGXsxI047lL~bU*=n77z3O+~`oDAP;o=uh#xFh0^5r>>jmf}EVOlLOPDkbAXIGKEB ze9D&EH^qxf3-Z|%c(AG5OoP$I98bl(mx?(ZzM1Gs6;3 z8ShC+g|(gS==F5tS4!ANaZ0im9J$)_cMbN-F3lOuX26HdsGB%LO+3%l71^W=|HC>usQHx zbGexZqsyF6WgbmsehR*s=(iG?6HY*t6j@+65|3%FSbqYIo(1-^?4{49JkA#lu{Z7S9d+6Zi7I08S1sEEL(Tc!kFrv!c;r#x5m zw{9DGHEKHj9IAfaUK4Ig7L@~A%ery{z+hKHhv#7jRQ+eNqZ-&rtbaW%(l8#MlC7_G~5l%?6s2iBAz} zzMU3sBGRh@+f*Vx!^!1F)%=Z){PM{5;g@VbHwR#J#V@3aUqBWA0=^}rBVEbe$(-H@ z-}^heB;RRS+GA?#wQ`@NcJ1XRGBQp_zAtfFxj(f$;_8(A6EV>c?FPlY9EuNa$JT-&YcTgL8S0@bIqjfb9E<3H=>TDm!ZK zOoT+VS7BjUDc|gl9ft=y!Ock+y~x(2GS{Fo*Q{IZ9W~GJ9cfQNG_s@S>E;TXg?7Yh z&X;Ei-l>E=6{jQ}HIjBG<)XjHYQc}y=H@gQy%c}@HJ#&&AKW><@XbU=&1pz^{dY=m zG%nuCmn>hhIi;I(xfdTlBuDZy5h3ZQ`8m77r&pr?sDwWYCnhr=X?H=}Eb%66Lxvv1 z*>GodxTy=H>;E;?{~uKUdhpG}bX3}7(4xZ@tccF0L8$=H$;P>em&|~y;5(U0%10_G z=i&TW;@Tqbl#(wtC@$eWw|va@kBZ;-DsmRBU>g}$A75h)xM>KZw>@9bQ$qW)D0dlgP8izuJ*Iv|#f zmQhSWZH0rZH8)WhUDNlerhlNCX2G|bi)d=(j-1yZ5LrZ1J*bklk4?Qcvj0RW*%oKJ zP&7JtQrjz0T!3}*xdTg!>^)|L%)M8o8t8O$bDm z%v6s|DY;)M*$rp&>9b|$jK*&C`ntI8aA!TZ=?TNNP5w(h+h0SqeS>P-3%;4|vx(@^ zSP>@&dg#JGCj~!1ygq$44^iBtq}P%Dn@Y;9IRE$D?!J2^i#iV_`(bJ|>kTK?hnv1I zdMaL}sd$B^qCb4AzG|gVO$LsU$J5D&yCsOJlAUH3#*uvhV)Nb%$@R>X*k35I2jZ+` zBTFK-8rSCSG$vpTf+riy%@7z}@fWG$FHpsY!Z#BeSrWz7$bKRjSS4jo!E&^}15uKV zEd5o;R06(I3AhudCNqe;73ZqAMn$^~9Gx96VZ-3UhI2ClMpyn>s{A6Vd^UVDF@u=D z974V;Dw>nv5kd0n%-73hMca~<#vUM!)*}%YnL+H~M@7bYY=-qbM@A1Rk#lfPIWo#0 zLb@A~v0NNtF>dl;xVZe|OvreOiu)uLHy^%L9vOApkxJa@>0vuk-i;{a$f$nYl`y?& z8Glz2j={NFd$!7SVF;EM6_k$dHaeCwCcz5u6;{Yi5sY4LXH#h(qtcFr?<*PT*pU_^ zH$Qt+QE{Ra+Z;znCnL;BMp((F!w=L+MjUaMR7xN>N$FiWzg9^~AO_N!)4{J8_IN2u z#KdKvmBN#iaWf7^&&_n2n}=y`#=|!gtvMb36M=~bS2ii}$8s`pAEG3!xxag+67Y>m z!2LM&Wo{vm7n|hVuc&y%?!av9)-nN(Y$7+4V08T_Q~e*L`cH=M{0!6$c?m5<+g=cL zUKt!sATIxvw-!*2`aedDc^2NT`01^{J*vci2xo4QGPuQO4`be(`#RCVMTzXZ7@GoL zHkF%cFnY5;p6Y)u)qgsCtNy??;XDx&L*00M=!BM#1CeFP(2`5bvf9LBd2MicphMtx zXigR$L8SS1UvLw_NB8ir)g|4^3QEi3vCc)YGHi)b(CU(YWh1eP!mY9K$uiv8^BKgy zR3aY5$uE^BCxbfJH8k2gf7IyGdt%(O8SrB>xtRr{Ct)m2LJ3X6Z1~Q|KqaWe#g`5_ zr9e1xKaQAU6%*@HSA8J$TP5`qIC1&YLr7m|4xHIsZsx)0dgoKUM^n9@g75#t^bnWC z5&dZdR{r!5_Zw9CbVgymQ_4SsvtQ-5bL1*Buq0cI`6kFfCYz5hum#*KgwdP)Y^wfU zRQ+e+yDS5xom_GgCE2RYaeGOXyz+WOI*EA>F&9-r8aFxVb%ai+dg1xvAVJH zZ0Y}_bbcA0_mzdu#FA65EQ_-3NNF@Y@yW*!;$ZOWFQDey|(D1a^ab|K$Mp_`g*AJE*^8IM>IFoPl za#IYiqmHwc_zGLa&1x7u4ZUa@ZlP&d1K&*Cl94uuZ-PW3#HKGJlM&h^!~)bw&6|ju z+>%**FH=c6RVC>y#NhR!5^N5QHw#nJvRqtrlR^q;clb%tSz&w(I{E=)Ueqx)r*$kr>?v7N)>!^-f z;2S4X0{@F^Yh7v?7t z{Ix}F2OQW=Zg#=w%D1G-UqO}s2)L);vO(bca<)jx--|22H8c{3^_bVu8NA`-b7mEq!w$vYQSzkb$JVt#|u z$&nR#-OvQ3PmzwmnH}Zk7>wS2Gpg+wRNHUiTg@XY6_Gen{~LkHk(G+RL6uKuzR-C} z`R{OcIeeJBnN8pgNVtvZT3Q;(D({@K$|JW8l=P?K z%<^s}WmAni@=N$G%B&V#SZ!`jgVBrnxBs9M$MJ(ZaU8zYe7E8qzoYP(2uHqF(c8}z zmp3SOH!EHp^7ECpXW^XQZ!f_;QeOV3vbb}%j*J&#)0^J;MKN|ZzQgKpQx`@r;$Ks- z|3SsB2j2|8y(C8q5yhW}Sbz|1dM|WLMEg4g)yd1bh}`?_CB7QDiAt|ebD>Jqc?d#Q z0{&PX|9EFcn;;Gs)_|LaFnT5Ug68FOnwJaVTg{cgJAOy(ix7^i1m1qGw&`u!eX-K^ zVx035&!J)YtTZ~f7i$DB)|i_nFnY27gv$FdmA5H;=Vf4Amh{x+gVJbOzD+?V9dCl; zsC_A-%c+Rm6+FGd+*k>I8BQywzMx4N8|_~fi;qvPuxf@wtT{I=VDv)#5mot5ROOcN zt=_3Gdf1MdS0V~I^+iAKO2`}Ts^7hTPf2(c&UK|{=2FI4Z!Rt#g)3w$__NmBL}B#O z`##n64^-DI_`a0c(wj2KIw~1nCCjlVqLYJb5OJZsE^cDdE89&~V%j1AGUcp-{nev` zOY^ZOZ##U6wdbY-jGmn>G&}Fo>~w^$_86{`D~HGBC(5!55~XFi`Ne$wFrNPB#zyg% zUpW{3G9FtpHEC`Da9|+^t?dRGZem6ALbO}5~vsa z>LT8c=l);3L@60tg_FxFf^$-G2V#}uLlu3)O@?)i@m%tFl}g5)IJ@l9%F(Ib#e8)h z8-_z{I5#6;bm^a^(l4UYXT!I8yR>@Pj;JFMh3wMm$8`y(JPKK_g25llss8Vo&^5B_ftAPS1uNh z-WtPO9p7^w!ASphSNL=Pma#%s1CVH-OEDBU`}DLKt24Y%2R*RQ6}#``@_?k49XH@hPwT zw!I7sC`bC|5M#NQVd3qHpI(#HS&9EV&fMHhI=KVpJFU@`_-rv;*%EG+!szl3rSjiS z<$n>r+KVw!>M(XycnNO{5^ZveOL2{DlgJ&@rf=EJvC^K{OnYQ@&X}IX1-N-?Q>d=Q z*@+T)G3J}hRd$R`ijIMJps`D*W=QZ%H=GP7RA~*`a ziHPLuhJ0N!ByyxXL|%mAcuI|CHEPs)5F1+Hhtseifd4#TVAre~Se;Q5|NG|pmbGqs z@sHo%@_N(jpV&WP%F6h=eb0KN?nV1%je7C_j_qCWqX#+bth^XuJn&s_gl z&+Pr-ssE~f%b23Imkyn}^tzjy6dfJA_3_2oooc-C@7S(J+dqD9|2H{T zZ&~!ct`80V`Ne;4wzcK?n?E}5vn5^IUf;O(N9#Yh>bmzLWfE%Z{pbB>TkAdjYmQ5S zI#p0bCfGs+-tbP8P_p5zIY~ent<4l$sK7HdRYIvuO%qVE_{k1LWQHwN;F+2!p;V@3 z2`D2|b8MkbfB)Y<+_>VSe>@+Z@=|2Qi8^0=e&X(fKmEyfr;aOlsP|KkH+k)bzdilY z&fOdKJpDn3^O~OW*je#T-#$3^fsLQsbIwmUpMKA6EkD1e?&Dw9KDh7mrf)C#`{!Th z4(omP6B}NB>WbkbTfG!()%f4LI+qSFZoU8ONh5w4**LFri$;%}+bwp%C53N4(XP)O zA3PD6E1_Pw@kbBT+j-{oHRlN^o+)`R!>d(fzAaSXnOY#BRHhaRC?ivgLj$$MfLiJY zwJbDH%MGX%eo!kz1GUP4TI~n5HZ)M{45;;fP#bNb0&o2`NhsC&Z5B}SIwd+3H6mMW zp;jG#>~E($FzP2w?z#S_d#7LbZsQ%Nyct__N#nbQcA2;F@mQ0G=Wn>NeuJ-8-MFk? z){3(}Y`f|3T}?-|{@DdzX1%atU7bazw`u;TiEkEfiJTZZYsa74@9W)hMvrc%fBxAG zQ(DyTykg7Ic@Gu;?A?Fe+;9KShUI>G!Owf_Ju>FXtIoZ7`8%bo{)b; z-D#c_f5d1)Yn^6!ry001wGpW{8dmc({H7$7z0?H_U%|Zj!+<|`n z!0S|d38m^(2LeT};*n0aP=VK}&Js%1sV)M_s8ii-p#slT4+*6*)l)#pV)s4KgN*bJ z4OAZks;_|Jb&6+8!bJwzLIqy@21_Va{Duf9qxcQ8g$lg*4VO@=_>B-yvh`B~^0~H9 zfoCcvp;V^w1eDB_f-10u3OrMV5=v#NNI)5xDh&-(nE^G9Kxx;h3ARvy7r%)TN)^9J z0!kJ?(W2LgOtFOud`N1lgi=FN(*zW5scOjj#K9snY@q_r)JzGbGBry;8JU_B8mPGj z)I2|^`JsVYU_dP-P_j3XEPjha1GU6}T1udJ5tN_Evd};+H=tJdL9Gl8)G7mNwI9@4 zTd2VAeAh`Rb?3XDK*^%V{~Ot83l(@bX_JIf-K5O|ig%N=9>rE$sLmr^id|mv=RLEp ze{}kh%U^%%li$vNbNsfxw?0&O_41!xy)m!2_qe`;+uVI}$&I;}toq%-zs(%}@U|b8 zPMJRc=$CtP7B0Ja_)Q(A9=Yw~rVEDN^yK+%-_JWU_El+<-aS7#IBn}Y^*(?3y5p<= zx}x@iHQgp}Iqi?jOMboPxep&{aq#llH~#kgjX77=yJJygn}j;~F*|41{-Zb4+%BMu z>(mZgsK772J0+C5`0nz9+8r9GJqFZX0Y!^mvQF)@g$le*?UzuhP8}dn97c^%91IQA zAp`2LfRbYr9E^V=M{J=2uTw`Ql&Vw51e8(yj)w;7gaLKZ531Jbmd~dGuT!-VY4Z7$ zs#B-oH~jgOah*Eb7Ao)_MI8yHdK7gDlvA6Wi*TgAEmYujs)2-3b*iC&GA_Q2Y@q@# zevKuRDt=7_lx+RvJyoPxXrP)KP%Q`)FMb@3ea1>XAgkWi}i>nWg&)~~lMRN$>&9|@&ezrF&BHxPU{?NI)4qic(vs!0S|* zgi>{CoPaXw)P&GLO*Eh;`9V#wg$lg*O_flp_)QZ~y!dI|q#3qQf!|Nflu+t^Y8HV4 zm-m3 z0)LRbTtcY_*((GTZz%A8lOO(2JF?OiD)3CLl29sBs|A#iskNbjT4zA5_k-FP8mLVM z)Mh`Zt+r5sH|g6Xlxotq3n=5_yTcYL@P=Zigi;N~E&;{sl(q{Mf1sE zUZ)yJC{?E#3MivaHL`^Yy!bViP^$H7BA{gJr|zek*+K=Lspb+&WvYdMGBVXFG*GP# zsHh)QI~?#{g4$mG5w!%hgZLvn-SiXbgaeE4oB#bLw6la#Ww;B0;we{UxVtS>;AOan zgi>X=r+_lbaBo|vz+0O>5=v#NuYfXIn?a$08f-ufNr94eD>BR$D)8brTtcbhH$p%e z#V^+uD)3?6n1oWpym@LaE|6 zPC(JlBiL$0CWHoRq5(BYKpAyvN@$>_8c@^xpk{;yYNi1-%MWUfEmYv+Y;z@)8fTj) zp!gs>FM_z6PJSZuZJ`2hC>BU4)le)HP)40v92%%42GmkNsAaZLfnTSVODJ`nS|Ol} zzTe8wK&>*MR{KG%4Gq*f18Th=)J9vVz#EE95=u1`n+257P;9k@3cOBjlTfNoZ5L2R zo!Wr|-eUqgujL{&r}@=r7~4lK*{3ATR{Ga)DI0* z0|TldfuiFAkw&&qffv8V5=ymxO$3zD`ZWs;RC5EWg&$NaTd2V6RBH*P>Qq!f$vUM5 z58H(Xs=Wc#fk5#(rJy?5LIqx@I!h>3r@9CzqfT|Vg$jK1riX-5qc=ST6d%2jSxPqP zy=|cauTy;_l&VvG1(b3BGRPJx@ZvXELaE|6L_itEZ&+xch8s{L{Gf6}0~Ir%@&pv^ zO(g47L1>@~4X7dkWfZ?sTd2VAr^+Ohx}O>+pp1*}gwQ}uG@vG>K=F(vi{BJmsKA@_ zsS-*x>C*@ltyhs5worjL=`$siYSL#3D5Flzv4sjeQ*$Mh%G5jo#p@IYPrJD2=DNw5Tt+a&- zJX5PAl*-iV6eyLcwV{DpXF#ndP+CK=F*Hz{45-ZnO1n;NwS@}2_1h+)RO`20KpCyy z4qK?e>(ovOrRvl!0cG4I?zV*rJX3oll*-gz0VOjfZ|NiZLIbtmfI5%@rCPs(p@BMN zKppmjI${eIc%3>bp;VnZCZJ@GLKVN`worlBsS^@P)v1#LO4cb={A!(P`F!eV_Fpfb zP;geSi6bAoX5~5Cet$*LzzMZ)ZuYPLENa-T$FZxr)v|pxyiRo-2UZv3m$suiO4nQ+_=7R%X&B6xvBK~r~Ecj8<8fTPhGwI zwgay%U2&-9Y4{C)J|(+H3hHcIsK7H-M?$Gg)fG@irs~^51zx8bNGMgO8VV@mI@QP) zD)3A-mQX5FO$3yYsb-;pYHmQa@Pld<8mQI=RMZcu9S(TU1!^z_VWlu6}o0sK6^`4+*6zW={bnE2g@F_YMtI9|NkdAJm}G zKn*sahNM8LIyKA|D)2frTtcZjH9|lc7rR_rsKDz~OhTzTl_#Khoud7%NP#U>;F&6v zP%2YJ0?No#sV!9CnJSY|DpTVGlx+P}oth9DsEG#DBtNJrp@EueKuz<5nh_ePnFiFX z6exA^or443eXY6jkEp)ZJn=`2zSevkScDQ?VP7loX(|gOl$xfpP(T^eR2JJp1>S@% zkx;4$T`HiACUjY7pq3j@EBv5V+Cl|BTCz$)snL?v0_rSzK@k6qthI#-y!fq?P^$Q? z7f?p=+ZYN>SoKpEGmeYQ}6Hx&CNlxipr2q+^{2W_DOpC@ogLaBKIhf|w|2e0&ghl zNGR1%)D=)hLs368Pz?;Ih6IW?5*&_yB8_aJ0xy1zC6uaDO$3xtr<#QZs<{Ex!VjvI zEmYujsLj5^iM7Ao-K*Iq)Y;@3ey8O5(tXrMY9P+k0>y4ykp-lOOtp;V8e zr+|{Jp40ZB_3Ld56?pOMBcW9B>nos);y1_^D)5G4u!K?##Sj5yG!(-^12x=$8bP3B z(Mw)@b8VplFMcrzrHWskfHI0-L1>@~4X7eNsM63tl^Iau{GcY_fcJp>MEOV5fczx! zM~o(P3JxqnX|C}8CGgf}s)SOl%`^hV%ds4qip&TN)Jy|vmVlBlYMgD3EmYvG&0Gnk zTAO(S%4luo+d>6i{1!+kRs0qTDC1(c*cK}AOf8X6DpN}Zl#!`rp@CX%K&|kDT4@Uv zc=1~$p;Yl(Euf4heXT82;3J~zB$OHvT~DColjme#Yojex;P)?^B$T>;*-W4~jQm8l z+Cl~1P;8S>s-f5}pp1rMhb>g#nc69#RHk+bC}Zq;w=GoQnc5?vRHpU{C?iw*aKO6* zxnKSf)qy-9{)o}q9K?Y|DA5&mAb&dSKeeZ2ol%nYf9)ezKVQ7)-cu$G|7X^iA>9V- zUihnDPWXIC&B9J27Sw*Q!^y;3!ybC_{tu6z{=|2m4$tYd@tX-(?fm+W=Wn}ma^A%U z&-lmB8gD***7@r`i@)($?Y|`+sk^S<#nTI(|2%6z$$xVHdN12EyVbR=kDWht$r*RH zANZ@EL_5Cv>ek57rE4RHB-EU>*Vfwh*WcvSJS?DiOT*QXpU4qgsKBoaMf1sEUZ)yJ zC{?E#3MixXYZMx&#s*Xq0>xWDdB+)P78dPYNg_-L>k31*$e8O?e)K-*`U{vV{t~wW%YaRBKaL zKpEGC`nFJk7rzD)N)^9`0?H_UjY0#}*nn!10;O)sn%P1HKBJ?#giY6sP3VG>R~|j^n>ah8mK-7R9`=+ zLAFqVU#A93D0Q70BA|@x)UeP%4L6`h_(A2`LIvKW$0U?$((?oq)|qRcNI__z3Js_t z0cBjLN^PM6pQ2nQq0|)RaRiE|N)7W)u!Rb|_)U~hs`yPJP}(r>6ddrr)0`^*h`Q69 zM*awIag;JMa9|OB@xOnkIa5NZCUlm7GMdmip@EufK+W@mnjadd1qReYKd8mFP=Qy> zB@#+i%%uX#XhN5T25PwhwSqvQS#Tf!t+a&-ysx!NLaBygwSY1jinX>-fnV&_Nho!( zTQ8t^@#7!Wq;JFl@9V-Q`A5`sVROnKasCu0#cjobMfmA||GKbELaB6b7f?pJci2J& z-rDSxP^z`rC7^h^`S6cQ_ikILz$@k+38gZ%S3nt=+Gh(D__)@738luh4hSeduEoJl z$3Omw9JGZBy!aiGP^$PH7ErwSaWMIb9I=H8y!aiJP^$PH6HrF+J8laVc&1KBD3z&` z0*W^f988TB*Qy(qCcQQyO?m!;-*`WN2@O;o1FEhcRDD~hz>8l438ji(LjfhbC93!} zvV{t~uhm#WslHZ|6exA^ZDtD z3l;dS$8ZUyZaqd2DBgjRpGdAPRN&XCn1oW-sXPJ2dlXvhS6~YjctcSrp;SXrB%q9j zqBJy6Wd_tZKd1?|P=VK}i4scHsYwEg-}TDQEU#CQDYj67*Qu!zO4X@p0!sGM<$ohH zLIX9^fSQ#8C9@To6B?+w2Gl$PrL}(ZZJ`2h{T4_l)%q~h%oZx}Of8pCDpM;2l#!{Gp@CXuK&|$JT5Agxc=1~&p;Yl(FQ8;ojvtes z$VU7>pXWjHkGRi+QvQf4!&`A+5q_%hc~IcWY?Dw*ne8c1>bkJQ7Ao)|shtu^4N2`v zfl>n1%){c3$l9$c<`EnS zN5woUp;W~@Mxc1gRT(}W8mJQn)JXv)Vbm_cwIY7$u8kwf=N&5Dr{OpJd5285{BPuJ z9I#4v;I+Gsgi^J;u7EOXcYRx^z%MQhB$O({4Fwd>kXD8p*+K=Lsm2mYWvYpQGBVZ7 z7Ao*eHJ4B-Q!NCPtV^mJ(8?An@JzLqP%2YV0cB*WU1*@%8&Dlmpj4(hg$Am#0o5f1 z3hhPm6X|XX75Ly-4+*6P$9f7VS*H|KZ(FFq>r@{JrRr2)0cF&wLAFqV-!BZ7Q0jhR zh=4LOHOv+&@Fsn@gi=lVh!iN*P~?UNDrP|C5h$%kQ4kuaLIbME531A_D)5G)OhT!K zVw`|78j1@ z1>U2WE1^`6VxEA)&9DBrZN4p3;Kgr&gi^(Cp@1@q-{R0fEis^$`avzTg$lg&TP~qg Z>$gHc@zzg!+_o|_P^%26)jm*X{XeT)V7&kU delta 30 gcmcb8pMM4O27gATzZ{bT89n(JfIxr^L;?Xf0E^%S*#H0l diff --git a/RestaurantReview/RestaurantReviewTests/ControllerTests/RestaurantsControllerTests.cs b/RestaurantReview/RestaurantReviewTests/ControllerTests/RestaurantsControllerTests.cs new file mode 100644 index 00000000..4a6fa6e4 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/ControllerTests/RestaurantsControllerTests.cs @@ -0,0 +1,28 @@ +using Microsoft.AspNetCore.Mvc; +using RestaurantReview.Controllers; +using RestaurantReview.Services; +using RestaurantReview.Models; +using RestaurantReview.Services; +using System.Collections.Generic; +using Xunit; + +namespace RestaurantReviewTests +{ + public class RestaurantsControllerTests + { + public IConn connection = new Conn(); + + [Fact] + public void RestaurantsControllerTest() + { + //Arrange + var RC = new RestaurantsController(connection); + + //Act + var result = RC.Get("Boston"); + + //Assert + Assert.IsType(result); + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantModelTests.cs b/RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantModelTests.cs new file mode 100644 index 00000000..4e94b1dd --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantModelTests.cs @@ -0,0 +1,42 @@ +using RestaurantReview.Models; +using System; +using System.Collections.Generic; +using System.Text; +using Xunit; + +namespace RestaurantReviewTests.ModelTests +{ + public class RestaurantModelTests + { + [Fact] + public void RestaurantModel_CityWithSpaceValid() + { + var sut = new Restaurant + { + City = "Sau Paulo" + }; + Assert.True(sut.ValidateCity(), "should return 1 match"); + } + + [Fact] + public void RestaurantModel_CityWithNumberInvalid() + { + var sut = new Restaurant + { + City = "Sau Paulo1" + }; + Assert.False(sut.ValidateCity(), "should return 0 matches"); + } + + [Fact] + public void RestaurantModel_CityWithSpecialCharsInvalid() + { + var sut = new Restaurant + { + City = "Sau Paulo!?!" + }; + Assert.False(sut.ValidateCity(), "should return 0 matches"); + } + } +} + diff --git a/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj b/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj new file mode 100644 index 00000000..561173e7 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj @@ -0,0 +1,31 @@ + + + + netcoreapp2.2 + + false + + + + + + + + + + + + + + + + + ..\..\..\..\..\..\..\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.core\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Core.dll + + + + + + + + From 91955310ff5d33484e2504058cbcb58d4fda4b98 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 29 Oct 2019 01:15:46 -0400 Subject: [PATCH 29/36] saving " --- .../RestaurantReview/DAL/ReviewsDAL.cs | 40 +----------------- ...aurantReview.csprojAssemblyReference.cache | Bin 258011 -> 424 bytes .../ModelTests/RestaurantModelTests.cs | 8 +++- 3 files changed, 8 insertions(+), 40 deletions(-) diff --git a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs index 1d276688..735e0aa1 100644 --- a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs @@ -3,8 +3,6 @@ using System; using System.Collections.Generic; using System.Data.SqlClient; -using System.Net; -using System.Web.Http; namespace RestaurantReview.DAL { @@ -45,48 +43,12 @@ public List GetAllReviews() UserName = Convert.ToString(reader["UserName"]) } }); + } } return reviews; } - //public (bool IsSuccessful, Restaurant toreturn) PostRestaurant(Restaurant restaurant) - //{ - // bool IsSuccessful; - // Restaurant toreturn = new Restaurant(); - // using (SqlConnection conn = new SqlConnection(connectionstring)) - // { - // conn.Open(); - // SqlCommand SelectAll = new SqlCommand($"INSERT INTO RESTAURANTS VALUES(@Name, @City);", conn); - // try - // { - // if (!(restaurant.ValidateName() && restaurant.ValidateCity())) throw new HttpResponseException(HttpStatusCode.NotModified); - // SelectAll.Parameters.AddWithValue("@Name", restaurant.Name); - // SelectAll.Parameters.AddWithValue("@City", restaurant.City); - // toreturn.Name = restaurant.Name; - // toreturn.City = restaurant.City; - // SelectAll.ExecuteNonQuery(); - // IsSuccessful = true; - // } - // catch (HttpResponseException e) - // { - // if (!restaurant.ValidateCity()) - // { - // toreturn.City = "City is incorrect " + e.Message; - // } - - // IsSuccessful = false; - // if (!restaurant.ValidateName()) - // { - // toreturn.Name = "Name is too short " + e.Message + " name must be at least 1 character"; - // } - - // if (toreturn.Name is null) toreturn.Name = restaurant.Name; - // if (toreturn.City is null) toreturn.City = restaurant.City; - // } - // } - // return (IsSuccessful, toreturn); - //} public (bool IsSuccesssful, Review toreturn) PostReview(Review review) { Review toreturn = new Review(); diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csprojAssemblyReference.cache b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csprojAssemblyReference.cache index 22e772705425440a79fddf03955df2616e7ba4c3..e1e2708f4f9f5de18d693109866c9e4ae094812a 100644 GIT binary patch delta 30 gcmcb8pMM4O27gAT+1!%@89n(JfIxr^L;?Xf0E7|+dH?_b literal 258011 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 Z>$gHc@zzg!+_o|_P^%26)jm*X{XeT)V7&kU diff --git a/RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantModelTests.cs b/RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantModelTests.cs index 4e94b1dd..9821faef 100644 --- a/RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantModelTests.cs +++ b/RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantModelTests.cs @@ -11,11 +11,17 @@ public class RestaurantModelTests [Fact] public void RestaurantModel_CityWithSpaceValid() { + //Arrange var sut = new Restaurant { City = "Sau Paulo" }; - Assert.True(sut.ValidateCity(), "should return 1 match"); + + //Act + var testCity = sut.ValidateCity(); + + //Assert + Assert.True(testCity, "should return 1 match"); } [Fact] From cd90887ee44eedd27ca6021725db02b2d6ef084c Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 30 Oct 2019 23:02:11 -0400 Subject: [PATCH 30/36] standardized controller methods(endpoints) to return IActionResults --- .../Controllers/RestaurantsController.cs | 1 - .../Controllers/ReviewsController.cs | 20 ++++--- .../RestaurantReview/DAL/ReviewsDAL.cs | 49 ++++++++++++------ .../RestaurantReview/DAL/UserDAL.cs | 2 - .../netcoreapp2.2/RestaurantReview.deps.json | 4 +- .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 18432 -> 18432 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 5780 -> 6044 bytes .../RestaurantReview.assets.cache | Bin 123254 -> 182608 bytes ...urantReview.csproj.CoreCompileInputs.cache | 1 - ...staurantReview.csproj.FileListAbsolute.txt | 4 +- ...aurantReview.csprojAssemblyReference.cache | Bin 424 -> 258011 bytes .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 18432 -> 18432 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 5780 -> 6044 bytes .../obj/RestaurantReview.csproj.nuget.cache | 2 +- .../RestaurantReview.csproj.nuget.dgspec.json | 10 +++- .../obj/RestaurantReview.csproj.nuget.g.props | 2 +- .../RestaurantReview/obj/project.assets.json | 12 +++-- .../RestaurantsControllerTests.cs | 3 -- .../ModelTests/RestaurantModelTests.cs | 6 +-- 19 files changed, 70 insertions(+), 46 deletions(-) delete mode 100644 RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csproj.CoreCompileInputs.cache diff --git a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs index 7878e03f..5c7d4115 100644 --- a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs @@ -25,7 +25,6 @@ public IActionResult Get(string city) var dal = new RestaurantsDAL(connection.AWSconnstring()).GetRestaurants() .FindAll(restaurant => restaurant.City.ToLower().Equals(city.ToLower())); if (dal.Count >= 1) { return Ok(dal); } else { return StatusCode(404, "There are no results for this city"); } - } // POST api/Restaurants - must send in a restaurant body with it diff --git a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs index fc618b25..14f5081f 100644 --- a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs @@ -2,7 +2,6 @@ using RestaurantReview.DAL; using RestaurantReview.Models; using RestaurantReview.Services; -using System.Collections.Generic; namespace RestaurantReview.Controllers { @@ -27,28 +26,33 @@ public IActionResult Get(string username) var list = new ReviewsDAL(connection.AWSconnstring()).GetAllReviews() .FindAll(review => review.User.UserName.ToLower().Equals(username.ToLower())); - if (list.Count >= 1) { return Ok(list); } else { return StatusCode(404, "There are no results for this user"); } } // POST api/Reviews - must send in a Review Json object [HttpPost] - public void Post([FromBody] Review review) + public IActionResult Post([FromBody] Review review) { - new ReviewsDAL(connection.AWSconnstring()).PostReview(review); + var dal = new ReviewsDAL(connection.AWSconnstring()).PostReview(review); + if (dal.IsSuccessful) { return (Ok(dal.toreturn)); } else { return StatusCode(304, dal.toreturn); } } [HttpPut] - public void Put([FromBody] UpdateReview updateReview) + public IActionResult Put([FromBody] UpdateReview updateReview) { - new ReviewsDAL(connection.AWSconnstring()).UpdateReview(updateReview); + var dal = new ReviewsDAL(connection.AWSconnstring()).UpdateReview(updateReview); + if (dal.IsSuccessful) { return (Ok(dal.toreturn)); } else { return StatusCode(304, dal.toreturn); } + } // DELETE api/Reviews/{id} [HttpDelete("{id}")] - public void Delete(int id) + public IActionResult Delete(int id) { - new ReviewsDAL(connection.AWSconnstring()).DeleteReview(id); + bool IsSuccessful = new ReviewsDAL(connection.AWSconnstring()).DeleteReview(id); + if (IsSuccessful) { return (Ok()); } else { return StatusCode(304); } } + + } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs index 735e0aa1..917c5679 100644 --- a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs @@ -9,7 +9,6 @@ namespace RestaurantReview.DAL public class ReviewsDAL { private readonly string connectionstring; - public ReviewsDAL(string connString) { this.connectionstring = new Conn().AWSconnstring(); @@ -43,13 +42,12 @@ public List GetAllReviews() UserName = Convert.ToString(reader["UserName"]) } }); - } } return reviews; } - public (bool IsSuccesssful, Review toreturn) PostReview(Review review) + public (bool IsSuccessful, Review toreturn) PostReview(Review review) { Review toreturn = new Review(); bool IsSuccessful; @@ -74,27 +72,46 @@ public List GetAllReviews() return (IsSuccessful, toreturn); } - public void UpdateReview(UpdateReview updateReview) + public (bool IsSuccessful, UpdateReview toreturn) UpdateReview(UpdateReview updateReview) { - using (SqlConnection conn = new SqlConnection(connectionstring)) + UpdateReview toreturn = new UpdateReview(); + bool IsSuccessful; + try { - conn.Open(); - SqlCommand updateReviewCmd = new SqlCommand($"UPDATE Reviews SET ReviewText = @reviewText WHERE ReviewId = @id;", conn); - updateReviewCmd.Parameters.AddWithValue("@id", updateReview.ReviewId); - updateReviewCmd.Parameters.AddWithValue("@reviewText", updateReview.ReviewText); - updateReviewCmd.ExecuteNonQuery(); + using (SqlConnection conn = new SqlConnection(connectionstring)) + { + conn.Open(); + SqlCommand updateReviewCmd = new SqlCommand($"UPDATE Reviews SET ReviewText = @reviewText WHERE ReviewId = @id;", conn); + updateReviewCmd.Parameters.AddWithValue("@id", updateReview.ReviewId); + updateReviewCmd.Parameters.AddWithValue("@reviewText", updateReview.ReviewText); + updateReviewCmd.ExecuteNonQuery(); + IsSuccessful = true; + } + } catch + { + IsSuccessful = false; } + return (IsSuccessful, toreturn); + } - public void DeleteReview(int id) + public bool DeleteReview(int id) { - using (SqlConnection conn = new SqlConnection(connectionstring)) + try { - conn.Open(); - SqlCommand SelectAll = new SqlCommand($"Delete FROM Reviews WHERE Reviews.ReviewId = @ReviewId", conn); - SelectAll.Parameters.AddWithValue("@ReviewId", id); - SelectAll.ExecuteNonQuery(); + using (SqlConnection conn = new SqlConnection(connectionstring)) + { + conn.Open(); + SqlCommand SelectAll = new SqlCommand($"Delete FROM Reviews WHERE Reviews.ReviewId = @ReviewId", conn); + SelectAll.Parameters.AddWithValue("@ReviewId", id); + SelectAll.ExecuteNonQuery(); + } + } + catch + { + return false; } + return true; } } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/DAL/UserDAL.cs b/RestaurantReview/RestaurantReview/DAL/UserDAL.cs index a67f2f86..db74381e 100644 --- a/RestaurantReview/RestaurantReview/DAL/UserDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/UserDAL.cs @@ -4,8 +4,6 @@ using System.Collections.Generic; using System.Data.SqlClient; using System.Linq; -using System.Net; -using System.Web.Http; namespace RestaurantReview.DAL { diff --git a/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.deps.json b/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.deps.json index 3a57fec8..3c1c766d 100644 --- a/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.deps.json +++ b/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.deps.json @@ -1,7 +1,7 @@ { "runtimeTarget": { "name": ".NETCoreApp,Version=v2.2", - "signature": "7443a509236c83b5b3930ae7ddda6974ae3cce7f" + "signature": "" }, "compilationOptions": { "defines": [ @@ -10,7 +10,7 @@ "NETCOREAPP", "NETCOREAPP2_2" ], - "languageVersion": "", + "languageVersion": "7.3", "platform": "", "allowUnsafe": false, "warningsAsErrors": false, diff --git a/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.dll b/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.dll index d49cd9d714a3c46cb8d220fa9e58f9a992a58c60..aba3100b14b7567dc22f98c31ce5e4cf6922c852 100644 GIT binary patch delta 3996 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 C)xE<2 delta 3650 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 WbN5~h$y-Nfym7DFTEiY0(ENY)zC=I( literal 123254 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 diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csproj.CoreCompileInputs.cache b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csproj.CoreCompileInputs.cache deleted file mode 100644 index fea71b5b..00000000 --- a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -200aee51dd565d0042e93d9a3912a10130b847c3 diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csproj.FileListAbsolute.txt b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csproj.FileListAbsolute.txt index 5bd8cfa4..8ff375c8 100644 --- a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csproj.FileListAbsolute.txt +++ b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csproj.FileListAbsolute.txt @@ -3,7 +3,6 @@ C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\Restaura C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\bin\Debug\netcoreapp2.2\RestaurantReview.runtimeconfig.dev.json C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\bin\Debug\netcoreapp2.2\RestaurantReview.dll C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\bin\Debug\netcoreapp2.2\RestaurantReview.pdb -C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\obj\Debug\netcoreapp2.2\RestaurantReview.csproj.CoreCompileInputs.cache C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\obj\Debug\netcoreapp2.2\RestaurantReview.RazorAssemblyInfo.cache C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\obj\Debug\netcoreapp2.2\RestaurantReview.RazorAssemblyInfo.cs C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\obj\Debug\netcoreapp2.2\RestaurantReview.AssemblyInfoInputs.cache @@ -12,3 +11,6 @@ C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\Restaura C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\obj\Debug\netcoreapp2.2\RestaurantReview.dll C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\obj\Debug\netcoreapp2.2\RestaurantReview.pdb C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\obj\Debug\netcoreapp2.2\RestaurantReview.csprojAssemblyReference.cache +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\bin\Debug\netcoreapp2.2\appsettings.Development.json +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\bin\Debug\netcoreapp2.2\appsettings.json +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\bin\Debug\netcoreapp2.2\Properties\launchSettings.json diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csprojAssemblyReference.cache b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csprojAssemblyReference.cache index e1e2708f4f9f5de18d693109866c9e4ae094812a..a69f6379efd3ba98c31aad3a5284e0a694da22a3 100644 GIT binary patch literal 258011 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ΜmbgXqTRcHy?%P$)!ir7#og>W#F+W)^pZHv+7JO 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 Zt=|d(#aln^aoft!K&>*MR{KDm_5VxaVEzCA delta 30 gcmcb8pMM4O27gAT+1!%@89n(JfIxr^L;?Xf0E7|+dH?_b diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.dll b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.dll index d49cd9d714a3c46cb8d220fa9e58f9a992a58c60..aba3100b14b7567dc22f98c31ce5e4cf6922c852 100644 GIT binary patch delta 3996 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 C)xE<2 delta 3650 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\.nuget\packages\ C:\Users\Raizel Seliger\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder PackageReference - 5.1.0 + 5.3.1 $(MSBuildAllProjects);$(MSBuildThisFileFullPath) diff --git a/RestaurantReview/RestaurantReview/obj/project.assets.json b/RestaurantReview/RestaurantReview/obj/project.assets.json index cf8d61c1..42bb488f 100644 --- a/RestaurantReview/RestaurantReview/obj/project.assets.json +++ b/RestaurantReview/RestaurantReview/obj/project.assets.json @@ -13031,10 +13031,16 @@ } }, "imports": [ - "net461" + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" ], "assetTargetFallback": true, - "warn": true + "warn": true, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.0.100\\RuntimeIdentifierGraph.json" } } }, @@ -13043,7 +13049,7 @@ "code": "NU1701", "level": "Warning", "warningLevel": 1, - "message": "Package 'Microsoft.AspNet.WebApi.Core 5.2.7' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.2'. This package may not be fully compatible with your project.", + "message": "Package 'Microsoft.AspNet.WebApi.Core 5.2.7' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework '.NETCoreApp,Version=v2.2'. This package may not be fully compatible with your project.", "libraryId": "Microsoft.AspNet.WebApi.Core", "targetGraphs": [ ".NETCoreApp,Version=v2.2" diff --git a/RestaurantReview/RestaurantReviewTests/ControllerTests/RestaurantsControllerTests.cs b/RestaurantReview/RestaurantReviewTests/ControllerTests/RestaurantsControllerTests.cs index 4a6fa6e4..6b8e42ca 100644 --- a/RestaurantReview/RestaurantReviewTests/ControllerTests/RestaurantsControllerTests.cs +++ b/RestaurantReview/RestaurantReviewTests/ControllerTests/RestaurantsControllerTests.cs @@ -1,9 +1,6 @@ using Microsoft.AspNetCore.Mvc; using RestaurantReview.Controllers; using RestaurantReview.Services; -using RestaurantReview.Models; -using RestaurantReview.Services; -using System.Collections.Generic; using Xunit; namespace RestaurantReviewTests diff --git a/RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantModelTests.cs b/RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantModelTests.cs index 9821faef..689c51f5 100644 --- a/RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantModelTests.cs +++ b/RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantModelTests.cs @@ -1,7 +1,4 @@ using RestaurantReview.Models; -using System; -using System.Collections.Generic; -using System.Text; using Xunit; namespace RestaurantReviewTests.ModelTests @@ -44,5 +41,4 @@ public void RestaurantModel_CityWithSpecialCharsInvalid() Assert.False(sut.ValidateCity(), "should return 0 matches"); } } -} - +} \ No newline at end of file From 2fe866c75502ef65fab3b9fa700146e00d9e97d8 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 31 Oct 2019 01:25:33 -0400 Subject: [PATCH 31/36] manually tested endpoints, added some annotation on models --- .../Controllers/RestaurantsController.cs | 19 +++++++++- .../Controllers/ReviewsController.cs | 2 +- .../RestaurantReview/DAL/RestaurantsDAL.cs | 10 ++--- .../RestaurantReview/DAL/ReviewsDAL.cs | 24 +++++++----- .../Models/{Review.cs => GetReview.cs} | 9 ++++- .../RestaurantReview/Models/PostReview.cs | 29 +++++++++++++++ .../RestaurantReview/Models/Restaurant.cs | 8 +++- .../RestaurantReview/Models/UpdateReview.cs | 6 ++- .../RestaurantReview/Models/User.cs | 6 ++- .../RestaurantReview/Services/APIResponse.cs | 35 ++++++++++++++++++ .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 18432 -> 20480 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 6044 -> 6752 bytes ...aurantReview.csprojAssemblyReference.cache | Bin 258011 -> 424 bytes .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 18432 -> 20480 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 6044 -> 6752 bytes 15 files changed, 127 insertions(+), 21 deletions(-) rename RestaurantReview/RestaurantReview/Models/{Review.cs => GetReview.cs} (72%) create mode 100644 RestaurantReview/RestaurantReview/Models/PostReview.cs create mode 100644 RestaurantReview/RestaurantReview/Services/APIResponse.cs diff --git a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs index 5c7d4115..de52ee65 100644 --- a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs @@ -3,6 +3,7 @@ using RestaurantReview.DAL; using RestaurantReview.Models; using RestaurantReview.Services; +using System; namespace RestaurantReview.Controllers { @@ -22,8 +23,16 @@ public RestaurantsController(IConn conn) [HttpGet("{city}")] public IActionResult Get(string city) { + try + { + if (!ModelState.IsValid) throw new Exception(); + } + catch + { + + } var dal = new RestaurantsDAL(connection.AWSconnstring()).GetRestaurants() - .FindAll(restaurant => restaurant.City.ToLower().Equals(city.ToLower())); + .FindAll(restaurant => restaurant.City.ToLower().Equals(city.ToLower())); if (dal.Count >= 1) { return Ok(dal); } else { return StatusCode(404, "There are no results for this city"); } } @@ -31,6 +40,14 @@ public IActionResult Get(string city) [HttpPost] public IActionResult Post([FromBody] Restaurant restaurant) { + try + { + if (!ModelState.IsValid) throw new Exception(); + } + catch + { + + } var dal = new RestaurantsDAL(connection.AWSconnstring()).PostRestaurant(restaurant); if (dal.IsSuccessful) { return (Ok(dal.toreturn)); } else { return StatusCode(304, dal.toreturn); } } diff --git a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs index 14f5081f..17befd47 100644 --- a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs @@ -31,7 +31,7 @@ public IActionResult Get(string username) // POST api/Reviews - must send in a Review Json object [HttpPost] - public IActionResult Post([FromBody] Review review) + public IActionResult Post([FromBody] PostReview review) { var dal = new ReviewsDAL(connection.AWSconnstring()).PostReview(review); if (dal.IsSuccessful) { return (Ok(dal.toreturn)); } else { return StatusCode(304, dal.toreturn); } diff --git a/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs index 64f84840..e8a1f9a0 100644 --- a/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs @@ -51,11 +51,14 @@ public List GetRestaurants() SqlCommand SelectAll = new SqlCommand($"INSERT INTO RESTAURANTS VALUES(@Name, @City);", conn); try { + toreturn.Name = restaurant.Name; + toreturn.City = restaurant.City; + if (!(restaurant.ValidateName() && restaurant.ValidateCity())) throw new HttpResponseException(HttpStatusCode.NotModified); + SelectAll.Parameters.AddWithValue("@Name", restaurant.Name); SelectAll.Parameters.AddWithValue("@City", restaurant.City); - toreturn.Name = restaurant.Name; - toreturn.City = restaurant.City; + SelectAll.ExecuteNonQuery(); IsSuccessful = true; } @@ -71,9 +74,6 @@ public List GetRestaurants() { toreturn.Name = "Name is too short " + e.Message + " name must be at least 1 character"; } - - if (toreturn.Name is null) toreturn.Name = restaurant.Name; - if (toreturn.City is null) toreturn.City = restaurant.City; } } return (IsSuccessful, toreturn); diff --git a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs index 917c5679..d4e494e0 100644 --- a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs @@ -14,9 +14,9 @@ public ReviewsDAL(string connString) this.connectionstring = new Conn().AWSconnstring(); } - public List GetAllReviews() + public List GetAllReviews() { - List reviews = new List(); + List reviews = new List(); using (SqlConnection conn = new SqlConnection(connectionstring)) { conn.Open(); @@ -26,7 +26,7 @@ public List GetAllReviews() SqlDataReader reader = SelectAll.ExecuteReader(); while (reader.Read()) { - reviews.Add(new Review + reviews.Add(new GetReview { Restaurant = new Restaurant { @@ -47,20 +47,25 @@ public List GetAllReviews() return reviews; } - public (bool IsSuccessful, Review toreturn) PostReview(Review review) + public (bool IsSuccessful, PostReview toreturn) PostReview(PostReview review) { - Review toreturn = new Review(); + PostReview toreturn = new PostReview(); bool IsSuccessful; try { using (SqlConnection conn = new SqlConnection(connectionstring)) { + toreturn.RestaurantId = review.RestaurantId; + toreturn.ReviewId = review.ReviewId; + toreturn.ReviewText = review.ReviewText; + //if (!review.ValidateUserNameFormat()) throw new HttpResponseException(HttpStatusCode.NotModified); conn.Open(); SqlCommand SelectAll = new SqlCommand($"INSERT INTO Reviews VALUES(@RestaurantId, @UserId, @ReviewText);", conn); - SelectAll.Parameters.AddWithValue("@RestaurantId", review.Restaurant.RestaurantId); - SelectAll.Parameters.AddWithValue("@UserId", review.User.UserId); + SelectAll.Parameters.AddWithValue("@RestaurantId", review.RestaurantId); + SelectAll.Parameters.AddWithValue("@UserId", review.UserId); SelectAll.Parameters.AddWithValue("@ReviewText", review.ReviewText); + SelectAll.ExecuteNonQuery(); IsSuccessful = true; } @@ -87,12 +92,13 @@ public List GetAllReviews() updateReviewCmd.ExecuteNonQuery(); IsSuccessful = true; } - } catch + } + catch { IsSuccessful = false; } return (IsSuccessful, toreturn); - + } public bool DeleteReview(int id) diff --git a/RestaurantReview/RestaurantReview/Models/Review.cs b/RestaurantReview/RestaurantReview/Models/GetReview.cs similarity index 72% rename from RestaurantReview/RestaurantReview/Models/Review.cs rename to RestaurantReview/RestaurantReview/Models/GetReview.cs index de9f5c09..d75525f6 100644 --- a/RestaurantReview/RestaurantReview/Models/Review.cs +++ b/RestaurantReview/RestaurantReview/Models/GetReview.cs @@ -1,12 +1,17 @@ -using System.Text.RegularExpressions; +using System.ComponentModel.DataAnnotations; +using System.Text.RegularExpressions; namespace RestaurantReview.Models { - public class Review + public class GetReview { + [Required] public int ReviewId { get; set; } + [Required] public Restaurant Restaurant { get; set; } + [Required] public User User { get; set; } + [Required] public string ReviewText { get; set; } public bool ValidateUserNameFormat() diff --git a/RestaurantReview/RestaurantReview/Models/PostReview.cs b/RestaurantReview/RestaurantReview/Models/PostReview.cs new file mode 100644 index 00000000..a831793f --- /dev/null +++ b/RestaurantReview/RestaurantReview/Models/PostReview.cs @@ -0,0 +1,29 @@ +using System.ComponentModel.DataAnnotations; +using System.Text.RegularExpressions; + +namespace RestaurantReview.Models +{ + public class PostReview + { + + public int? ReviewId { get; set; } + + [Required] + public int? RestaurantId { get; set; } + + [Required] + public int UserId{ get; set; } + + [Required] + public string ReviewText { get; set; } + + //public bool ValidateUserNameFormat() + //{ + // MatchCollection matches; + // Regex defaultRegex = new Regex(@"^[A-Za-z]{4, 15}+$"); + // matches = defaultRegex.Matches(this.UserName); + + // return matches.Count == 1; + //} + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/Restaurant.cs b/RestaurantReview/RestaurantReview/Models/Restaurant.cs index f38179ca..3f4e14fe 100644 --- a/RestaurantReview/RestaurantReview/Models/Restaurant.cs +++ b/RestaurantReview/RestaurantReview/Models/Restaurant.cs @@ -1,11 +1,17 @@ -using System.Text.RegularExpressions; +using System.ComponentModel.DataAnnotations; +using System.Text.RegularExpressions; namespace RestaurantReview.Models { public class Restaurant { + [Required] public int RestaurantId { get; set; } + + [Required] public string Name { get; set; } + + [Required] public string City { get; set; } public bool ValidateCity() diff --git a/RestaurantReview/RestaurantReview/Models/UpdateReview.cs b/RestaurantReview/RestaurantReview/Models/UpdateReview.cs index 523deb72..d401e8be 100644 --- a/RestaurantReview/RestaurantReview/Models/UpdateReview.cs +++ b/RestaurantReview/RestaurantReview/Models/UpdateReview.cs @@ -1,8 +1,12 @@ -namespace RestaurantReview.Models +using System.ComponentModel.DataAnnotations; + +namespace RestaurantReview.Models { public class UpdateReview { + [Required] public int ReviewId { get; set; } + [Required] public string ReviewText { get; set; } } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/User.cs b/RestaurantReview/RestaurantReview/Models/User.cs index 56103309..40c6cc1a 100644 --- a/RestaurantReview/RestaurantReview/Models/User.cs +++ b/RestaurantReview/RestaurantReview/Models/User.cs @@ -1,8 +1,12 @@ -namespace RestaurantReview.Models +using System.ComponentModel.DataAnnotations; + +namespace RestaurantReview.Models { public class User { + [Required] public int UserId { get; set; } + [Required] public string UserName { get; set; } } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Services/APIResponse.cs b/RestaurantReview/RestaurantReview/Services/APIResponse.cs new file mode 100644 index 00000000..3c3857c5 --- /dev/null +++ b/RestaurantReview/RestaurantReview/Services/APIResponse.cs @@ -0,0 +1,35 @@ +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace RestaurantReview.Services +{ + public class APIResponse + { + public int StatusCode { get; } + + [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] + public string Message { get; } + + public APIResponse(int statusCode, string message = null) + { + StatusCode = statusCode; + Message = message ?? GetDefaultMessageForStatusCode(statusCode); + } + + private static string GetDefaultMessageForStatusCode(int statusCode) + { + switch (statusCode) + { + case 404: + return "Resource not found"; + case 500: + return "An unhandled error occurred"; + default: + return null; + } + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.dll b/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.dll index aba3100b14b7567dc22f98c31ce5e4cf6922c852..45152aa09b0dae3e852a60107c3caf7579f5dce2 100644 GIT binary patch literal 20480 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 N9A)_{D67a`_J6~gDBl18 delta 3166 zcmZWreQ;FO6+idx+mE+zH=EDhd}osl5FjCu&=530z6b?_3L)Y^D1i`2geF3Q7_00i zVPO&mA-<@LV2uJO7s%j>N>Z#wr%cU`)$-ITvuO5 z6DU8#<;C?&s-bJ0;BN5Bt?k^{dpWMvgPB*#U;p!`gEyaUJlDRt>xd+>t@8awRpBe( zvz(}e5>W5~i-DN{8#V%UKpbENTmbv9X1j0TAAuk`i+r>cIv+?kupTa3NzygwFQKmr zL8C&_Q7P!Ol;p7p%CJbf2>o~H)rz1NMbZiAv(S63f}XQVT4WbgXP4Bd3Tjg&U2zJ! z=9F|v6ZC;5^#dXhydo9)48ywfv(f^Kl@OX{;3x$4iZyYzbIK?E9r_8&6y$l5PlGLq z+~_#k-*j+Z7L%O6Pd0IGKgGn^o@(N3Pcw10^D3HbkL?*jQw2L@nm9XTnF8WvmMcd%+V?-U-|TyU+0NH+YKS|ER%J4S$?L zG#mbDhW}a<=Z#&<`Dcf8IPhXFj=)P9#s@s2Idq3VWAIGaBl$CU7C6t)Cg5lA&o;hi zUV>$sYw%d`xh5WDhf-8bH5`_J&qFxVOds59;>TdW4}6BnzYKh)iO&bmH+U)h%MogU z!3)4E?(jT{M@1DPo^;?XvIqg0`C>{xUF;|pm@Uo*TN@4^w4gw^5jK#f1aIp zIX5e)O69C2MaoBkyT+D9P&X(yXPYaD*a_Z;Prg=z@$dv(ZWp%&*5 z$_>sDlvipaC@uF#NHZnw~{T;(Wlbu~hsa)ltTyM`c>BPZkOPUn7$*Iw1$);6oD z!`-08BnD;_RaW*4_WW9Rcyhd0Q^JNDCG@g%I7rAY=@qe3FZX!$6S2t;_Kf!m{{uCP zFVA_h^W6=X?)|c;>EuWA+7JJ(@#{Hn%eT(GGV783SvJgyVh==BUPL)EqbgddMwuGW zZ+WtU7SY?1ii=0M&~J@`+hB&op_M9m7t1c2@QX48f&C>C;ZY(TSZcCMUD5n_YxB;# zhcVv!w*Oey(3ySDfBI2U$8g%R*s;`E;kP$YO~llB$qPFN@0z_Kfdd>QCG9`oQ)Z?=DnY$Byqw zSuxuFp?0xmY$7G_V(kI3;a`^`?O3BdTcfSo3^m zsm^a!9?IOcAaS;aa^m-ajS0Exg0;`+0Tl#y`}Yx@@1i&-3-?i`vI8)ckhgXvX=1l+WHj zV;k28;(bEVhvOfY?^yNhgeip!q{GXvtuorBQJJ*(AaJPpIdc(_F0n@wB_24OLw!fW zf*>Xf8%`lVm2i6Rze9wq!lfp=unL?=Gq<2I&k#xCKJlaojmhqi=zUi9UXi;`%J3c; z{=h3@#9f1OM;Am#bw%x6^BCT?cdmbF#hQ%#LpR1})?NE{di(6=r`~d=#~0mne^OX~ ze8HdI+?AsjCi+xNpNL0-XXp+0xi{^hLN*0ybNcMnnY&2{oR`TrsI)$94*QsLB_y-h;XFL?)J zJ)-|H(OoV2`=gEM?Y_cb|H=Nd{)auO!$*FxzU_c^@;~*jZoWD6#Seo?-#psUFL$OL zJMS#w<1Q~&#jT6%kxyc5NJbH#l(=vxN&?%X(!e3-#5?AU&DFOXZvM~={P(6?S2Z!iHgP!aFMHdXG diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csprojAssemblyReference.cache b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csprojAssemblyReference.cache index a69f6379efd3ba98c31aad3a5284e0a694da22a3..bc2e241c818f914d81bfa2f7cc84b0ee227645b6 100644 GIT binary patch delta 30 gcmcb8pMM4O27gATQsK#gjGlZ9Kp?;dB7uM#0D+VRTmS$7 literal 258011 zcmd3P2YeJ&*FK@ifDIKD6$L8@EQA08imxGnL^`2}g1Xskk|mqnWp@JvMMXu$jvd8< z9XnRAW5SFPV(ByEYCKD=2rlY;OPK~BBv1DRs;eb$KsBfrm zudXF^@oZf>Iy4cj%cjHeUR@{DmB(X|(b4+J$(m?lXnEhF$^n%JR2CLi4Cos!3b&!c zy1AE8R-eg6Ys<3XY?M$&Wh@>w|Etw*;wNYkk4Ga}sE`Sb3TLXb;qrKtv^H8nv?kFc zv@HPb$0WlQBg2twGQEYYPY0-5lB`XI)6sN0dT&{5ezZ0Im}xsT9IuOJTC`}@qD`9) z?RJ!Uj89j@65+W0%(oK<{pa*;phjyHa0%2f+TdRdDy}vCsgdWXmK~0cRV6@fNjMX2 zQBbfgJvbgewA}*#a$Z5nkQo!w$*Od?w(CgHk(p7E%qF7Q8JUWj8RO~>jb=xNWctO8Vzfj*9@mTo`{G7>#6BXff1^r1G zr8tus7tNB%L*wvhnS3-<5s$ZR2elsep;mNWHkzPDlnGVD!l-&C8;fK@)zNS~TOFy6 zM$p*8U7v|X z!f}t9lX+ok`H~6pC8nzFq3WCE zJ_S}!2&XI!($Pxl0MtM5M|6rAvTsjLhZ7mu_{^fWLeZJL6m1SRlj~CPs9EsVDERbX zsIQ$92~kx&(mxiDnZp3J1dMMj&he~H#vIf`nP{Xg9n02-BI){6mIgF*lhC}{_>BIc z0T_IwIrw-a?NMeuS;C(@yf$ufv@Mjn(z8;oqhz=)TOCbcGz!xM(;T{roo}$2>j)*& zd1*nDtI?b>H&vPBY=?5M@j(t7tK-S4Dtc`snW&6a)um02a%oL$Y#t-uQNrJ0D!M%s zy*gM$eas=2o(-mq9iZmLKGbAmA$7=bDi)oWilbYmb77JV%+xQ7Q?U{9X_LcFQ0~rP zl*2rRet^y@{$C}$kLcWFx~3T;NU8Oz5#}35TCcME#*R??zF^em{)B(cxhK(>@;gEK zR9-sv@N{^t)vb3%sSABj7J*L}hWiRPC4&xKTboRv{S9j96&8kym{(YW$BM1TXhP@= zJuV4K4{BeTR2Uv=b5)wA-ay*z0_`sIp&je2 zj;BL#LbJ(8GM)*|%D||Fv`Wj_)h{z&GARTnRKDaeyu=(^c7v)5^3u-L1U7z7G#!U) z7OgN<=mHgP3dWq6!xGji((5$Atcq#OeoX`8?hbWp^TOEha5ii*v`26Z@sZRALwpEr zz))AHyC@igrjvD9435r8lqM_b*}JZ6Cy9ql>bgOfWAkDytgA!gFr7|{W|DDeEj!qr zP~i4p$k5zaALi5C*#;Ke3rhR(+SmXVPh!Cwn=d?XS99`}fvY{o@K!)O6adMw%8rlb?=V#$cP0L;^QPKON=zt~|tx;v?#g9m-`T#qO+!Mu~?^O}ayq`nWB8NJ8k zYkw$wd|vqCvk7!EBZNYSp3vbjB8`;G%$O8L_%`0PEE`jY+Xex8JdgEOP+C6G!Yfc+eVi^MS8n(hEJ!OuPqa=r7?j#=R?(N8(U5E zLNylqu)T*M*Q7cu$7-V(FVZnJ@QzHTYs1vB1+BfIkDqmh2Yn`^-G)Xaz&|Z=SmUE{ zECfBS@WBh4XV5<2R)%V#2rx(Eu(uu(v%Q8ww(?<49|)rtjFvC3m$7}I<0(FLw3ghp zXex0tE;b-kv^nS9T3nAcAF@JXeW8l?IGyShj4oREWKv0N=+x&jXfU2=8q7>EpEQSw zLMY{DE@I=FGuj@lEss`IL@RR9kF_gjw0(qpiK%KosCuanQ;Hp$P%0kIR#Jyz8xK&@ zWku#(W)DwhX(pc_A8+7w6+yj#dIM&j6gFa_G=a)l$VubodIP*z^93}S$`_av_7AQJ zhA~iqMhxU$n_#he(o|{ylseysUA2A@s*Hwd>oce6RO=a`k@8tnv4K$RUtTL>D7NN# zv&aKbWPW_&;q{3y#+HyZI9+N9~?#o;$Oo2gYb>RXd6nCV_oX@gOk zpQx=%C^3ZnR76YMwQxEEZj=3R^J&u%L!jIZ0X9lFeRfa+-I_vs-l9NetP1Xx{TB3X zyv0=ZKq%|oL2>cYv-Jq;V7nc@s3%8#GCeneo-_412>Rq_*=~hjC!}MwSZK^al#-g( zP$+O}FxHbHJdf70Vs@m=!BECeI94CuSW|LpWzP!z++8I$$46JOo~>@bfVDk z7&afWk!l3L=ZV10@cik4#xo^Ri!GU|XvJ8}U+MZXEKkCoC#?pX#lbsm9S~2`Kx7X8KN9I}a&R9mZNBE<7lEGrHkerZ#>{ zbAw@h3rp+5fHv(uW*}u#f3G(^yl6V$TX@ z^j1x@+3nJ_#bl_I@XCZ4d=J?vMAQxrXc*Tl3=I_N%pp5NNDLxVP-Z|`(2-=aCKhd0 zG_%Bfl!Y^=LM=Z*I5kHhl+eJtcbduWD~)+1_6w9hPc3L#aMWRM1bfxk(~NlzcVYiS zY=`1evlSf^`UTy`(5Ur&b~elkaCuSjK4WvavJR7fQ;!Gzuts!GbtH)u&r zM?gtmu`87s&oVe^dF*UsRs>CpU8$$7oJhX7J`&3L$*^(@ti=+w<^m`u^;}X4OA}%N zWj3`LQ1B!lV`wh3hiqJIDM>*p&2gLwMFJYdc&0=yBr%84ks(1N#8FTypsW+Q?~Xig zbAL?R^q^*y>xmOVU!(^yXr{4CyzCa z#6gek$dQO|dj5Ea+2P8eXnv9>u=A9xOVd(g5)$6ABTGC*P<%i;pDY8;BRf1zft0H7 zX*{=4(rfo}+k|M)v7%5kKOJiv78z+e^+o(tqS*W#uVG^}6^k?;wSgjgJZ&nBlYiP=HO}ezc_TslRvK3_~KA8 zh5jq!$+@N;wa_CVA4%?|iS!JI%lP`y2D*HB<*^YU)4SdQJ)bf+)!}_QeBNgj+uhC~MN-9?JV&<6*RcUPXm^COg zq@z?x6bmUp@W}fBSsfZLOxap6sB)rO`Lr9HAlKR zFG##IgQU6noo=qnB>N3!Psl>a{2Z?|gQOF}GR|Iya`O~tS0i^Ogn1=aeNQHI)8aVm5u#1aqN-pHY%E<7#9MCXr*AMoOgD&Q8%&IyYoKYbrJmisdIo z#9l4JdrCxNDY+!7hXQlG22HΜmbgXqTRcHy?%P$)!ir7#og>W#F+W)^pZHv+7JO z(rS+6(;tVDee?y^3^AJKG8Go9t1@T+B^?$(hx{}-)5El`Dlo@xQ-S02rhv8m#~cD; z-~=e(XM2~KLGuBUh?U1Gu;)wZX&&vPc>?3{s?rL?GwD?(Zzn?ScwV|HHCrNTAxg|o zN8!m8RPsqEIiRgoI|muh=P=ay>4rnh=}U<6fv>$Mb7Za4VyKRxGN!-hQ)@U@p#1SVP`^(3w*RHriO|`G)%;{ zcXb;{qE&$iJN^1BXckaHR|O(3)Zj%nsYj|PY(tG)JZzG7cC&1k5qAS+5sJWBJ8}3c zLknw}_~x=@Bz;}S9!Z84C8iqZK#lw)84s(gthCO_or_ZQcf@y6bT)3JlNs>mq3D3F zh_XgQkBz}PgJ$x-1nT4`mS3Do!F4lR4owB;qu_wDWzhUGVu9+l?qOk=iyt0c?c%F7CXqlZ%AhsnAUTWJV zmp~C8YfuldeP@2lG|FF>JE50ChoIsyI2;eJ89T)duGnyoTC+)&{CfD!;#qTqSPI4R zlg-XH8*tKDY!F|D(#?%@k0Ia99Tca@+#D@@o(#8l9WIBWe*8oh+^2Y2E+ZLR!`n%S z%bSu{a&o@{fUI7L3w2{X4M@QfcSg3RiJJL@B@0HNS&s^*hE6>Sp zE?H2d&Q(yy^C~qFotvfOQ@H(?HnBsP3h4l0-;m2y8bve4DYUs^JS~l7P;`NI zHOz%#NVVx)Xknue1?I%6k+pH6XgSn8&4;V+VW`%oj1hBS?O|9sRTO9H6C!SS4Ycvo z*%Uw6_~a)UVu@HTj4^WHTCtN5rHPn1c3%qx{j9eeRnY6O(5R*j#)s>mazJMyE&n)F zmlK<;{n;+^l+w`DSafbCG_}7;==IRf^Ev2d#mT9)-+nU=W;N}B^%fJ##g&DvG)p)I|}+GUxpKKz1UUjZ*5!tynQocf1wK z{mUm?WUxf-T00N;+y)KIo{43Y&l~2Q@gzTfo)%ncFrwcMrTr}Pm`iH96}ileY%CXk z1ljKnDDr=CYAG@YusflhIadcbfQehN<;7bjZ$5@GdKpD<=$?NuQLKc@`PqK6@(J%k ziGD6yvs?mmNMM(*&dpRtk&`Tr0{YlLn3fr7zsI!d-B36`0T$Y!)B;-fpzu5;3Oe^L z*g#4h?_TKP`MMl!VKbwU7B&6c61Mb34HbDGip)<)$Ic=#{{^2vp{R>#`}>*>B13=r};lY-UIC*Ri)i!joJWK!(EJ^&T`1e%>ghRg^> z_MpeR-mK$T)Hol6O8N2YX;7G8wa150Y%(v-9XrwWFbehK@H*+I5C_8jS^82@#=8+H z=7BNN{Lqn@!XANo0fk*D@gHteY|`ddb)}@u-~bHKL+LV)9tZv6^(7IdGWYP`B(!Lyx&jTtkKuXslpZqyPDIC zuMruKLlZxiWd5&~TV-n-jzp3;hmngVnP;q}SBr+4n-*Dk5715vGsIg-xG3f(hN`I^03lGWzyv1 zDX8J+QhU|yoZS%@oZ=8_8rwEr&-ps~A+9;CpAbz`H!#(G8tMj=*N1x(#nqGHNHxtU zUPFMa;o&HtxP(%^s=<=+8K|9~oGH02DHi#d8cf!nMezY$@u&6JN+g1p<7$Fjx&b3h z>#6t_p7|D2*|ktMKl^iLRH8QSxN_t-bRx$Uxb=|22aKr2GN`baYh*SNQJZY64dZHnRpn(d1^fk zh%&ZDlgZ0aBtMZn9_Hk^53fK2@9v3AzlyM%@YCY_rMFd@<*^VK>!3+MIckWNi=Dre zd2PG*^R#BHZUQ}Q_O4f{YzusJwl@IT7_5wDHr|StpX;%kVXa%8#Kmm^)vG zntl#Rvmwbk{urety*Ry}%f!V-Bx}`c?w+y}P;WrV{G|QihNy}pHt@)TZ=zK1ozC{M zLmqrcmdj#(jhAskn!E)~JV(U5DIzOQTh?af-$s#sLZ__xYI_H&#pKdD*uV6lRCppc&&Y{e60%$n)5Ij)EpGjM~xG=SC+^pRQkpH(7}7K(_1f+3Rn{+`4n&^ z@I4io1~0xGQeyV751>zeV*Off3XLcqqVQ!tdJF5`wXuqdcyunlt!>?w<*{FnwO?SL z0U;GXf{IrKqhdx}T4Y@YK@kScD{IqH|m|~H3V&T(F;r!KZA;9fIHxQTlT>M*G*gT(URVx-}a_sTJk$c$#ie= ztf}7TQ12lhosKaW;St|ZG%+WZPU7;nM0QRXfzR?BkLfW+ogH9=df`;-g=Q7LKotVY zdeFi#j%{CW%M~po(_rKGODLV6u#BGON(0GPDBb(jEOLI%ShriJ>~rxrYDHeO^LlHZ zOfKh1dl{vU)N=>?YpCTXu*MprwW&eADDJCG(uq%Oa^x~ou@-1;W{@XZtlnZayKkUu zekKBEz?tm#Ey@lk$R*=Sxe&u#b1RfY%6tc9@)M1<+${SfD;57eiuaQf#ylHyCqgwM zubj|625UT|+<&25er8F29(-IfVWzU6bRNn zFeS*(>3D1$+L5bYpi+JYS7&At(eW$F4#=r=xuI#jl{S}EV`7;sec05TIR1c2_xrFcn_9IMIkH6M^^C4Z zb3Lxkp}Bk;zdGnoXz!;VGwo^Tf?WqXuh#1gyOd4OZUeRQRsVvD|8ksHdfwP%6LH?Z zQDngJe;5;ocFhYYJq~YH{NHSPEdKuwlr)o_o0-VYIxns3Q|aU!gnO~g=rt>W^;)d7WyP~6 zB-I)!<>#c0Oxr-nT6~{N4E=3Tex4R}_Ql^~8Zu{|wkSSNe)%|&7%!5^)GEqUV~f05 z!7(KxH(3Om+o62V+bAl?im(hmf0K?@VN%D}b{!udF_gh3JDcEF9pP8D(uq%>io-FI?6U;B*TWST-I-i!t<0a z!!PF-6a851{ooVMW((O0isWapCi^P8r*vzSou8GnHSLZHC$Rk`?7t04_t8H+xa^1l z(v}ReEHiY_Y8Y;7ii<CF`{1lg&;r%`Xl5=wl=TT(m*NuLi1=DvM=0cHz+ehx zM0Gu?Qzl8G0b@I#$}mq-hLm$rhPjPa2$_`G9?InBcF6JN^j%qXHgyM-oTsB+dW6Yw z+hHf@;b-;1+6Jx3ni1V+&6XBrZjt>Rp=5r19~#eSYuT~t-U-F$XHc<*G|Trh_ejhk zeP`$pP{`Qwj}beTck1N6r)sRjY%wKEjUQ&NX}u&Fp+g(Xh5T7FJ<7w8kz9Un5? zJu^Elq9q(Lp{RddztfjT*q_R!jvGQ%nJ>@$0@pZdzmy=-{U(vk})MB$SpJ#oqSA1u52mLz7`wDCQ@0!DeP> zm>sDXi1m2wJdWgrVdg7L{<=X;KevZ^@bN5m%yc&P?OpkII%JftRb%v?&@6w`6b&i3 z*>yq^>3JqGd!hLJG;X$e#~dqaLwo0q0*aD|50kMd#XcxLKNrKp{V&Bw9#Rj}2pucuNc z?+JB0`xMH09tL1?$F+^ zUQ=Se#_W;3eYPt;+dB_*=F;BT+6oaP#~DsCWC+UnIZ9-;ba6Y2$k-2M!q|*!G}Nx5 zXI4XZMBB^ou*q8=sOH^`myWCSh_JvB+27>7o0p*1B{Jd4s2O)Hv^-fJca<9f*1S&v z9!K{06!Upg!M;%N6dzl$9(n0wn^<^>c=jKwT|u_r(%9-2%a8duQS%CS!UJjzZp4BXc(06b6%AVQI==!?)3U$3Z7jmY;B9(TWWJ<95SLAPIlM%$+D1)h~l{AfZ z*pITZfbD-p-lq8i)4qp6#rzC0*4#cONf(uwg^xzz`8o2!%|!XN)`8S9(4gkuT`I`9 z24-v;(#N8}fLvjUtbj;)uG^z43=fMQ9*u8p;fvL#YU7}q_XR_lIx;*m z`{uauP{n%$N~yvZ^nh&J)Fr<&-f|Z+($>P^wv=Sdgo|z4;-mx(9mZ4=(?}dnVmgTQXVYDmOM)RIV$NRmjAm`x&0B10leqK?EI5_3t+BT-Lc zK8a&V97kdSiQ`F}K;lFa3rU`P)l65UDkAhAD* zo+Nsa=uIL-q7R9_BnnCNBT+=6KZyY(29h{{#2^xbNem%zAc=!W3?*?eiT{u|ghVlk zVI)dO3@0&y#7Gi{k{Cszl*C~qMw1vrVl0VqB*v4NKw=_^NhHchOeQgf#8eW~NE}XL zI*B7l97$pZiJ2shB5^c{V@QNal#_^%s2~v~QAwhTL^X*RiCH9SNW@9hl1Pw9l1P!5 zO(IPqLn2F}j>H@ib4ko2QBPt%iDO9|M`8hq<4K%A;zSY)Nt{IDWD=*4SVZDf5~q>VhM@!NnAkULJ}8|xR}HxBrYYfl*DBuE+?^!#1$m2 zBykmqt4S;;aSe%UNn8ifW-5A5Pqp(ptS%O>2u(Kcxf3gcGTg=y?MeQd`EOfb4r>KZ zt2O>t(=wcBjc@a0+Gfa0%(O{o;k37`Otfgxx@F4(^tN95o6D-PrBe|q&SavsFOVmn)rD3-ALvI4r^UE?cO;4+`)@I=EbdcPdG# z3O+2rkLcit1fTo%?h5><06(UKD@<3h;9}I3~gW{o)q&=H~_Y z1syy~f{#3~%N4e{Ulib%ba0IXpS|`PWxIP zUK8Ngb#Ow0kG`u$8RZQDep3f0CHVY1A60C;CBSd%;FJWfeW^mJv0i}R(ZRDNxaX5w zsD|{e0Kcb$(-J&rmo8V?Jijl%AL!tW1lJw&tm64Y0scq_XC?TyA6`;AZxG;*b#R>o z|5SYNGFy#L1o%@OJV%0`ZawJ%yVZRrz@O{jxe`48#!*U*F9i5Y9XwBhPra>J4Y^+l z@Yg!HUV@`TyQ?>UBf#J4;Q12VBKkx+eUSkzv|!0Nz*O%Jh-vs!7 zI`~8hzWw4ulp31^_;($=P=dF4yserh{t)0lb?`|Ne0a^nijBVn_-`G2vILh`KdN;8 zM}S+j(kA*-B>38&UQplyLbY$(QU@=RVB`GOst>jj;MO|$R0%G=u}HDeMu6Mu;L{{H zHn^vH^A-Z!P6wYZ!56t+OI7QK>^``a0B@~> z&y?W$huH+QjR0?}gU^!SQ0)V1DCj7_+v(u5CHU3WhpG;{y#Vi^gU^xRv&*_Fo;wNf zjym{U37&P<&8i{oB)~iC;PWKd*w|eerLzF);C{_}YGKtlL9?yXxQzCAj~xjGC>w3Gkje_#z3eduJ)$s|1m8IK(UtZf^B(~|LI%kl^Z_mML?O z7T_^D_+|;d>b1$L@sAbYaXR=G34ZjuL5jNZ0z5$n-zvfH-n@(Q7$*wwBprO41V8-Q z<4Wf;0iLXbZXgI7y% zkD_|jQ)&b_u7e+t;H~OI`upQCg>R)CMw!H-Mu#U0YBi7pV}<8|;868v`UTD68fL4Z%x!B0wXVrU;_ z!G!{Rk`8`Kg5O)dUN!!c1^5&l{Imr3dFCbMxGoalQ+4n&61-~AC5nyH1o(6v{Hz4G z95hJjyjXzG(7|gZICFHl0-q_sXX)VQB>1^ex2p=CEx_mK;O8aywhQ-EL+-f(e4Y+| zL4prG|4CKBB?5fD4t`OB7flIA2xpA_2Zw2fr-A3%))=fiDr@ zOLg!o68z#H?NsAmD!`ZN;B^w*dG&p&f|m>MG9CP?1ix}~Z&kr71o%oF{F($m)M32R z`6>avS_i)_!5@@uR2Ez=z}M*DHzfGI%crTK;93E`P6xj!!M9xhlxok{3-Ap(_$>+k zsLcSS^Nj+0lMa4cf+yd(w_;<30N<>G*IRGi<8jryZxP^Ib?`e9eC_TZD>iNu;M;ZZ zyAr%|+GwT59Rhr(4t`I9e`tHBGWSXWzDozcFTv*=+*UQDy9M|j9sGd=@7(=CMcusu ze4h^fP=Y^h%RI*W1$dPX{z!tKIF^A|3-ALvc!LCg@Kcpy<3Ry_NC$r`!RO3;TeXdc z1^5vi{D}k)fBrdTlt%^lF&+G=1fRGkbEwt`@Z&o8GYOtue5&I42?2gm2Y)WXrFG0D zeoBC!*1=y$@WRwp%G}Qg@UuGjO9}4(&1wZ+E5Og`;IAaO#h~+N+ab8;1^5LW{Ivvc zxb6)_-HQVJk`Dexf@^A?S8BX0z^~}wZzZ^@miZg&1o%}Q{G9}EzkEM69ls{Puj}CN zCHUlm$CMgx2=JRa_`ec7_SbtA_$>i`TL=Fj!CfvbQs!PS!0+hbjS{^7FEf?S?+WmH zI`~HkzG}@UYLIzffIrZ|KS}Vz>$X?(;D-YIkq-V@f>*s(sCxGX0sdGA|02PkcRN&p zKM~+hb?~ne+@eD`WjCbH1o(3u{F?%7YV!TuFz`aL2r+D5Z zz`yHY+6yM|i<8-4{)Yhnse@Ze@L%tIsK$-I1o&?q+)9Ek*m0n0b^i!(i`H8FxwQn> zy?2_5LKF}R@n;>}MuN|Koq4&f1h};hZY#l;O=n@lHUivM2X7(4kL>#3YCB}Hg#fqH z!R;h?$9o#{J@7Ry|qT2}Y zwmNuA30{49sZyh(0B@&*x02w|zdo+ay}bbMpo6!T;2Y<>q1fmoz&q;TZ6tXAK_gWK zcM{;8b?~+lJY>@}DhX8lg!8=HB_sJ)zX`-6|@2P`3N$@>unG?8|0Pn4Xca-3>|6q-O9|7K12k#`o zV@K_%bly*ZyX)YcCAj|!EHk8s0PnAZJ4^87?bvQQf~nc>EK-@ z_=JPkD4qKVa9ZjU9p#b;O!CfTyhojhnw@85d>)_obc+SN=l^O#Cc%Tm6 zLxS6Hn)jeRZX6)MgLH6L3GVzSqi(PO57EKhB>1pjST4kY0(_7T-cy3F@3g&YbwdUC zU>&@d1W$dL`AGi};6rrq-V(eiwN~}+VgVkegZGi(Pfxv7flCBzn}(E>b12k$Sz8=^0& z3XT=vaXPrC1b?wgPZZ!uI=Ht4SDn^Rxjkh9JXr^aB>1Xq zSLI$#5#XshxQ_%M-u7rk-82C{TnG1+;8ktd&f|0eK0*fEI#>ey9bT2aguuV{~wT32yOj=49KU3JY+#4jv%EyX;q{x>ZDgD|GNc z2_9W?rC0MF9FgC%(XOFvLev_^pAI(Uc# zzcT+I#dECyCv@Tp+;5>);Xzu6=uy()k1dK2Zk`m*D%Cvq0HG0X|6wkC5QMlCxENK3RZI z(ZM4nxZ7C?)ixFh@TofZPzgR^`T{l9ohHDi>)=rmJb&0A1zs$`XXxNk3BGxLNU3qA z0H39U53}BU@Usehwg8`_gGWp7yZfE4+Vi;re4Y*-Bf+E2?55tlM1arN!DA)3)s#on zn=cUH3w7`~37*`qmwNL>0(`L!9xuUH8Z5GXi2z@!gC|&TuKQMvNJ|CyG95fof?Mzv z{pA9@Ob1Vr;IHrPp?b;{0(_+oE|cI}FMLq7=c@$xY8^aTf=6D)=E3Cxe2osCBEiO# zCshTn72xZ1@Kgz2`YdZm*9-6sI(V7{&wFq`Rlyqt_$D2ExCGyQ|76vkR|xRUI(WJS z-|_5h1-?aqZ`Hv^NN~LVJvA`iCcwAr;3FkC^Ecb!y+eTS)WI_(xbw#>A8Dlk-=%|R zN^m5@GDGeb;CpoNQ4&1=Ot$>LSAg%+!ADE*0~2>r&dL1(yh;ZjBf%>kX1hzP1^59S z9G2iMHolnzQhy*+4!AAx7F&$hX!CQVfSDAZ_06(sS zqZ0h?`eW2k@Pq(Ase>ye_|nXHrSnq){Im|PlHjZ7?WMra2=KEyxLSgLJ1VPmUMs-Q z>EM_Izdz>_#q;w5{DKaiCBZGG9+b6rcwZFYmvnHA1podx+Z=ycfM3zUaS6WZRJJ-^ zC%~`j;93bj>oY^S5U&aF>pD0g!Ihugpep!=0Kch&lM?*nEuGX1`<4K|t%Fk%JaG-{ zR_g`$9UVMdf)9G)RyEeWE5PsR;IssP^d1|Z-xuHybZ|z3*T3_+s^EtL{E-gMO7OTR zMyMvbL4ZHj!F3Wmx(nOW{6v61)xmQlc&{zbS89AFz@O{jxf1-w!A~pj7XtjH4xT5$ z1HNMU8(#_V*E+afg41m)RRzBh;BR&CdK;QtEn4?6fb z2@VavLsf920RO0i7fA3kJ0(;&>n8#JSqC34!S_vjM9nF`2=K2u_yh_5x$~}S-1tp^ z|EGgblwikLw@HA1*TD-VxYrBa)tmni;6HWnNfP{CL80ofe+ls4I{0J>?l%59McqFF z+@g&Ze?CQmce^B_j8Z@-#GiHWA_*Sbot;5wCBUt9@Tn4f;LEL)&TRy^tqwj-f(H&9 zrr6j*fZOTd(r4f#S1Up)kPe;vG3f^RvVWm)tT;9ffTG6~*hSzkq6 zZvhVJ;L9brWS~N9F*%*vLsQV zSa~dtZ!s1W6oAbZ1#L^fayNC-m|agY4mGE%gy@E6V>n>O2ofV9s4nLJPQbskUj6$& z|1_@(^o}j&gyVJ5qmORUuJws{*($uuU(Fovq!QYeLgh;f=$Q48K7IO>4C#Z*YH+(+ zZC5&(o#|7N%;G|>KADP|KI7^Rjb=xNT}$fX*}8OeXd+sNZ_~zm zb)8UG9*;$E)tmX1&7t9n^1%lTE*jKta79HpIf& z?L4`d$twlIev?q614O<3<*u?~_R@CCr`sK%cCsfztBa7jg@cRwNBa&MY|f)AZSpcG zsiQ1uDtR-L>r(Nkk;R{lIudgrh&uYGfPAKc#hkj+Id%2G9-CL{l*)p*`Osi;gX%bG z!xz6dPg^8%KzU(NWo4wIUqwa5fI?KfeZk!}ZO5XVF0LJ!ZpJIY<+jFgfEWu%91r1a zeG55-CvplG0()MtotdusqekbkLt7OQ#GVAbj%l*Oie!I2-n}--C!@@+(wOcy?BU)^ z;}oEbMI=sza5mL?&htFZ^I~8xZZ^-E`b;)j8?x^#bliH3%RKv-pYiS^dpvimH&-3O z_8HJFvN@00$xN~`8)CDSc8_;6+PX{igdxs{wl%pjq734%2duUYasi6pR<;BC>u$z{_^WXd ziHjkeEk4GHuja%r1$KU32WMMj!R2L8piHlf;;cWKa88Z5yl+wEfXV|Z3kxd-^bHq< z&7t{0o3qPN%>K$`YymMQSye?hEIVQq#xmfID@a@k;cUiX&gL$}96&Q>E5W!_ zFT$?|&SlWvToncV*FfXi+<8%k@zb$}b!lehuGX_x8TE{Aiw ztN`|=f5$HTy4+@(g;!8mWpF zG;SktJA~676S+MmaC@u-_R0Y4!G?SCXTqsiR4SH>DH^Yqu)c? z=t9?`t*_yQMl}2uk8uwkGwvmEAB58yrQ8~$xHVP-yDC^~ShsM8Ts}GE(KJm}SlHy#aC51ivDtbah3u#dSAq?M;zT%(0B6Q{0lyh9l6VQi$yy<2 ztuJS79k7c7XwbC96_%>dw>@i<2@E>;jIF+TN=Cug2z{(&~*1IDn89O=d#W! zDlD%o8Z=;FxT0ua|7g(w(?wlt^Z6PIV;ffvZKmNXQ24|pZCt$$nDGXQHzAzV_TbcZ z=hUtT_Nt(%rEgOSt(wcSs+S=A9jM7RjvC=0DDI!Pxqlbs?yC&VJOeX=$vrgVJz$OZ zNqhj|G(b0QfUevC8-Tqg00S_WhvKoGH-wt1ny|sg&@`4C7u*p2a*I5=?%=&>8{!ib z&Nh0Owq>y@bm>X>%(M6+P$qO(CYdlk#RJA?BtD05TB9?!#?IUtUjZA$Mh~+_#?&tz z!e)>8#iC4T7WC_5E?@O=2VAjnXS0X6F_Y?$-Er^@x0miog7~hfj9)gTP|A+u_M{bO5xiK~ZyC{IJ;U&0UjSr1g(6V1?FIfH& z${f{19TltoLKEw3R)0c?ylZ>hzm~B9Z`xGi`Aqd|N zN*&!)WrN~(z0L3TD6+HcX5;7^uE?sJ6wM^#AQ%414*1#VL}Et>BA5OVQ{-2i+%Gw~ zoq;_$0CGJ{kqvbhl>0{n_H>}ut7xhnWf@fJJ+FyZ`r!?>{dZxoBg3Li|B8L zl%S0Ap>33&D1S%UYw>YaGqZ?3^^43|qZfWNdXor2IESQl+ybv~3lsu-VgP-`!;qvY zE|~2HJ*Kw=^#8{3?*?egmY+E!%2ONlUfXH zz-xPL5YGzzoPNn>2M6~`3L^}I&hBe__otL`{Egb5*~Te>2D`{^M2YoDe32FYN@!Fv zV>*Sy@w+jC#7GFIEmm_|tm3vP1@_El4-y%XP=g4rtxmO22VoU_`>RlotKhFz`kYH0 z1l5N@C2N820#eM1B610vxaJ;wVN*LACGI4tHNRbt-P1HaOKPSgj=_({SQ6tPoCC*7 z&g-3=*NMO`Y&Ng8cD{^cczIJ{s?#xuqg5>p|Z4R-}6_$E&9bYSlafMAx%fmjJsu?{LCQ;by1 zWgN++s=^{iK=aw&I8ui4H=2B78|p|Xv72lbd}#|a;ao=qW|;wmF_Xkm5YBeLoSWrp zZk8~xrv_ja5AEJneL;0Ov^lz|S}J160m&)F)O9TR&L%d3B8MvLPK{;i!tt_fT}3Pz zBKL@POb(4EqOv2nZ8lfn6-JaqC4{p>Eal8!%9)P=`z&Xk`dFsVq;PD0G~Tr=8jn@s zXi+FpSA~;D*r}=sSK%O$8foU3nr4KibD?PjnpP=I8{2Iz(#Lpb?7SHS2;0pb(@^5>l$GHuWj8LD7Bw#P?PGA;87ceiWz>UBc~%{gmb$9rMtGHdhm2kTevVm1Er%^ZxqPMw|HzO5a14J{f~H(reH_ zX@fwGyhauvqmINJ2q)uE-UG%oYxfi@P9I3B_|NG;@4pUA0R2<-I%G;S6Zz$iz`)kx(UrV-om z$U^scq)Y9D8BT(-?peexk0^Wio1%ZQ?Qt@S-&Ku&R+`mV49oG5nL-bMv53T}5Ka@+ za}&(tCRhyYSpk^9${@p+g`p2+&kvv>w&~fRK_vv!XF#W;ny9KG*DNC!m)|v)<2Re! zGf`q!RU!-bP(DFsLK25s>y5L3GR`J(4uq58*_`1NXLt#)%|E12Yy1AJky9o?CS@v> zi!wmp3IIz>}*0joUMdAj^Som4(!zd3_9ZAd?+O~ z(}MLBUC_?NI}^y7sF*OtHPEvpuUwJi_ha zC)4R4+a9-|c=suy7>++W2G&#c#;rgZw~@FV!fA(z+zu1C9aaJx@DveNN;&!8eB4t# zDTu!d+PO~=tmZ)xUV!^b#N`loqu4!F=hG&!(8y?*uAayk_W)5SS`hP2!AjhCh-V_ zli^~{@FASxHNfU6cZMk|xO*IBk7Ix3B;|PI+V$*k8=IsjP=d8VH@qIV`@|w4xo|d~ z#Bat^B%X#KzUUv3GccI*HHh=I7T7#*&}oVb?w*4l)&`vhP&E3>7NARsL??e9g>5w{ zTAMUCFDPbhynsI$FOql(!r9siIeUFMd+UHrH8)cW_azAh;!wc7=aMtw&{L50DvF)p z_`BjLXJ5H88tvP6aADtyfzbh#1B%MgSlSmDHb<|a40gK9B}Nz;9;I|v<8>g7H%Pn* z;iRqyr>;AvZauI;obGZ735IY<5fpQ$)EOCUyjp_kcc3LZ-PJg}83u55#X8sqco#*p zd%yIV2tjf?sS-XJPA?em;R)k?5+6V~4bhDoqANGV24HXh7v?1FWY`MAFQelX-qM`S z*{NYQg<(F1*2%`_sfLd!1NlpI-pV%6Cs3h_jF7 zYlu;V()MUhOFUOTJKB8yg!0@|JLTaC<7Xg@Ur784;cT@Ar?efXbQ7@W1Urt%(-I!X z4OtDr?(fjbJ-1WB6v6(+h3##E|3Hx}kkQ1zZTtzS@fV4|A)HJXaHd;urVF+R=9reg zieMwQlX83Y+()UqWO0lpcnHb{oopMlLfO_KP0R&Itc@D2@i(IliM9~V zkz&*TcosSSLuHWzo8Lp4QeV-2+oO2vkf!`WvE|Pn-pOXG0}8Pc)=I~RCd5+MsZC&T z-4Z_-Tanlr!b#aiPT3EfvW~zW*IchyPG8umPFZT0SK{>3uf(CKnw*Qc&Vsh>pn{dJ z#((A9(UPpNnb$dWwz=CLB@IxH2n(DJkEWuDifAHIUz(UDPUtuf=Bz*qX*{O|`Hlxy@QwQ}d)%uzGV97be;T^_bTz;*=3{UhKH~ z+Pm6D+!eZPCmYjnItwE`>fP{nqYH`MA)M`h1Gmse+(O-eZFc*|l3rd@gh&DnytuGp zv)8~eodvmjLWL;}E2Nn7mu%I=W^OMOWNnF0idM#DJ0Bjyk>6~j8hHcr>W#etGWH>{ zFNBlE^_<4HIgLGl&GVLcV>J+@?hl2mE%C;XoZ-G9Bpz&jfN}NL_OKc5iBc_wF_cY7 z)Z)~7RkUI(!UySk+{zpc*BZS5GJ2B;K{y#+#~FTwGh7I4o*8be27=*!P{?AqF(hZ$ zPtrj*o8cmqYDLwoT?IkC@jVh018=ct;dxZraL^su68 z8Xzbd_p)g`5QXh7$DER6Tn+`9P+2M(F_V+9p?VN7#!wOmLpbSN!|8mC(^(8`5Z9D? z7*QLkfS`34^ik_z*O~@J?>;uYB`B2LKENFf`yS}xig1c@;)erkj36-*f@n7XXWqfN zn$x_B(_9Md@_;=HTeYxI%^8%l7Z&`ads8(N{2vBI+2sRGJ)rF1&sW&bw!>%?-t^Uy zB{&{A1}I}JiE$9lhQ5+p;7)FViNIdeYzt(Xx>_=lsB&H{X>(s_xzTEbNY|&bl<Zgw$kmHpp4STHcAc3 zx4a`O*SR!-$vT;$OiuH2BXMAiS`rBe=cKWOTjD%!iP^yB**j{a0)pu@^s&67Mu3W5 zf9udfo8Alxb)O|Bh36;Jp)uh^RUMX1MixM$j>H@YXKP=~IX<0pTn}u(vqaj|D=zi& z*v_4m61>lcj_$LB6RpViH%k=R+mSd>kW!wle!exQ<_bxa^rJpnvE+j7`+U-%xoOQDfJV;I?$%{aum3Y>=EOTG)?<) z#xnfTxPru$5KbP$oX2B0kIR9rZ|>fWHySmC1$Wn={7Kp`oG?E}gooOMU5iroP!@6> zn2qZIGOj0a1BA18Pv-<4&Iw!r?1cd|MAuoW*;A7s_h#r;zL{z(vi*4n|FOxw1*L9l zeqt^(5}%)oniql^x8kqHZ6t1oaI!m*vpa#ayAs$r&266MvC~kctpi5P0~&5?6@~_i z58^Rx1$}p+@G`w3iZAnRp#hr@_`4npDz^E$8^y3IURmQTNhWJzQF$)t9>9!yN!$nF zB(RhdIEoXv8rXn83K%i9YSzIZULnEp1JIA%?b=A?73uyOX^BnxgD96Bd|+#Lm)%U` zA)t+iNjw7KabBwV4fW{)M_SUc3q&9;Yk3(5@@S$l! zg0ja5+a6D#c=t|#1MK2XB77p$coHzRgChMVF57CPpq`wHnSb^IK*ozCUV{-Gfuzom0IY*dRWWM0YQ!3(_;Da_TZ~G;(iur8lUau){mhmW?w_GolRQ?>_a> zwn5%S@jT644Xx~xKW6&adq5iRllTC_X^d{%7+twBHUJw)n!8eree8!6%Vo4-qqkNq zVT6yNB~No#g=uhZfE?3NT~lwy+6MRpMe}V<#DBB(wx3u+2{5Gzk?UZ53as%NiO(UN zCg{vfuroKoSHK2wsXB$Gv-P(7NHc3FmZ&w;Fmf_N6IByt_!^q>ea$8w2+9!SZ9{y6 z!mWKxmfb=*;Hvo;-vVWPN8)=3=jh*&n_ydRf{nnQ5x}A-m({tPu^O#{p!!E>WNl_P z3RNW2_>cC!dEeeOnP;L+@=qw%-L2ubLK;5pLojni^Sg$P8$?( z8?@jyC}<*@QLJA5+IRMKl=CNoJB)fE*%V+Y`kP9%1OaJI#-IICZBRyzY5@CKIS>#?+lm4C}Q1;sUsAV{#KqdZ6^0ZY3?^ku)7P5y@4|JA+axnvth62l)lX=?E!4S zH%V03iGyClDXcnz=l!9b`%MxIstEVjbdR2ejTU& z6;6F2utAI|Zi^eQp2p^?D9q6h8nZEFa}Nb&n6Pb_A}C;a7vr!So{mM3=Z!xa14s;n zaI(Lav;Qn-e=xB5^)4)h1(!omzU5t5zbL|T_b%MN*b=b`I}oLGY_O~{4#J;}p(GB5 za1Os~IAxD<%8G$Kwz)ev&DvmO%R4i&Jq#L5ZcrUgo1aa_s7+f5%3-lS=7&?_s=A|7 ze4=bP(8dT7BO#m(a5ZOh6=$;)*dStk;Y`X}TT}Kb-MA$#5Eb7iGsncH&wn*tJ<(hb zgSITz*YqRGApS<=D%&8VQM`5EFl!Vnwmk+2V=Rer5Y8sOk{jVpZiI=z=J~#1SM>$S zlc3Gf4VpL0uu#PM^DSaFv1KUI4jsAPNK02mP6o=DLSia}liU@Y+?zPL(}B%*=%}$O z2!fA*Mt10^F{qQ|=AQ$ru}MA>#SUp|^WM4|b#gkKz;$TptTUc51J4^XNgM^?9AK7n z`mg5nhk<=AfXE#iU}PM_x-1n}eM@z{`WtNgkO7>gDG=r>M~xOVpGRd_f5TF(ZP*AD z+Dmp==8=Zfzn7Wo9-{(4BTAwY!r6hAatmI{Ef@nfh)-@=^FuDjQI+%FpccXiv!GOE z4s}*+lQWak?b)tZXeDj7Yf!Sa$EniYCWkXMnGhYLt&At<8gYP(S`rBeC(}zf)8}!f zX9Jt(J&*&hcn5 z=lFEaaXqjB$GGJ!Be-im9d+J&vDvMAULisGeCX#Mck)cp!90#1SfW+|-PSzK4)=%WDF9bG-dkdp#W6|2htRS^=iC8sOCBgei(2(6* z*cez5?{D<3vxz?$1+&)fC|G^S%s2%wV-bl{A)LI|bKd81-WLNKL~D2OuC($@yLwcx zeg^bot-X=T2Sxf^oAfhLZco=aTszDo63mdPjR%agNt^@Wq<=Q2KgH=^0&EZ$IWy;n z&NNZ1MV@gIxpQ7aT<(<=COIEEvx}UWkL3PTP{ygZjdKAsus#xHWg}b5UHWq9h4|gL zh{VMZPFuvdEvmUKmICWoWO@9wh_FEjd0OFAEEI{yUP&GeyJ1%6ZrnAu?$e-3KCaBIQb28evje&E(bP<+p$?& zr$~a24P?Dyg86HpXSHkB*YU~-{>J(Rwh^vH*({>t7P_1i#kJu0W*0Vzt^?Y*p2Q6h zPCHEJb~v2dVFj>3M09A7(X& zCz)K;7t}ruZLA=pD=a8t7um!0O2IB8z-+TCvO9=dEUa63JcmkM)~#@uKa}) zhC3>ASw6T%JbYNMX0~&WQk4aPbkisPRy+; zeCd@wax50H#?ScK_=Uu;5Y859a7Np4MmGVQ=jo)O?t;$Wp^7z~G{h)AX+xv=UHbx? z&p%L}#iw=MiVDOTf8uB3FA{%4IQcB#e74|x78rTwv!U*S&z4Zd;Pya4XJGT|0Wh5fW4k~F%L8CPa_0ObhhJ_pw<`*AzfR3M6yeC@+zoJ}3yIw!oK0^7 zC-fsuXg6R3zD~_LH{v6$!mWaW{XL+o0DM%fGHyQedkWf9|yjKtaH zjIlRR#y%wWg>c$pJ-5Z%+!j564LF?{JIPRrh8C}TJ*+x{`Te1tdpa|N21WQ)HsL){ ztaZeMzL*ul7jDA1`ZjL#!Y@W|5+MlZ2(pfo{0b+z5ZL@4F>z=uxa~Czn-X^#NMY7M7JHMBWuyZyUNyalFr~f+~ z4;dp!jD&D^%Yazs?VVr)(Xa-mmA6gEvxHVVT3Ads?lVbD~KZ%il-D zZ?ugy8d_M}IfurR<>7d2zPZU4DhbE&{gE(+modN?V@ZsIa1Jjkxoz&`wwVZQp0{%v zses^n67;dQa~c6Edi@1!SJ?EHq0mPBj8vGiPR)y3Cj(_nAu$!g+4xs*f^XskPX{(= zKO+^U^jcCXmqCZE*UD6N1l>nKyGHyB1yzLm8+>lD2|p6Wc2>QLX*hmvEMd&R&&Es= zM?pB5Ue1}mnll{+Hi)JiR>vfg(8eRhQ~|+lIrN#)XeEOp^){Q-2+DK69am)~nxBxY z0MLk%sDyCRyOh&=DW^9E?BxNB;*4IEl-cmhk(8*3EM&AeHcPRF;;fTkd=^x6zZ}rV@Xf>((2J%}p_j)- z?yQs`KMft-$#dk!z&3w0 z$%wBsWRa5@!pFgq708LpP+pqz0#~dUY4Wb14+Y4$P{RrcdgntQD?-{3qe#tpDdW1C zbhl0Fu_({_xZbe3%1Zk9!g2VUv4F(!5X2JsLh;te z_2dsuwsN}i#g(mlZMIHEA=bzBDBL$GI=e2K!N*}w!4JkF5~o5qDXZs{&Eu3U26jQ- zW0aQCg10lEgY|ViUL{VRpV-^|HhE{Fq%N)#rR8oLX8~fIP2wB~XCI!;X-sh%mjHWS zuv3<`2JtvxS``u0o)5i_X|lqKWPgL?YMbN>P^NXhw>Xu;js^`*#)bH^aS@4&A)M_q z#)+-w#4ZIkzvp|E%7Vhnpn-M1SN*1F^Y_Vt2W{FeM>+172&lw@UT$#p)+!@4?S z+=HKtdr8~};q23;oW4<Xk;A=ZxqT&_LHvg zluhyzD0VlwKtNg^?R&}pnnoXB#WhJ!0%1Hw;%Nvc!Gk%$gE+x!fej)@DUthEY+cnC z-mgL?DHtHk$mH1CJUZ%*%lpVdI31&MG`MTI7fp*PH$gM?>bvOE^)N%|r^%$??H{%Tw zZ$dcRat}^+cTVrJ8v#n_5?q+fhAlRTPH!7#h#^_MkG5sYx#Tn65V;zi1oi6DYwV z-705Ke81&W{A_$i;&TY6Ejn{s?96TP6|l{ZP1V{TAIAbPnxLHYOo+}g&B^C*CG};S)NfE8yH1)#g-2!a0W3$R&bPoC-;wwp!pU$)&hWOJ;f=rs zah)^^c2|>Xe$sUGstN9Ygr@8|>87{{$`I>pL;Qroty@jlZABw$W7$yY7&Y)1KLcp| zLgH5l=a6o2E41TQ*aU2zZ#8ME7J~5Kp_Fy2NmFRWcFrML*PMvgY_|VE$t+Ihat_n@ z6AE)`ZJ`*Td*ut{!( zGItmkotwp|n5@j2_qK(GWpHk%HGVPLkZ23xJOaMj=D?(--Pe{#*xinrj z;JQ^%@V_1Obx)*pdqx?>U!z`c8)bWxzmN1uwPovwIq0>+kWf%joT*Plj2!?qI+55B z!Z}iZ#SQW$H%Mn-&kevJ9u|^K*F*5W3)HI4sosinf3EqvHs`ydZ04k>HV-eHe^t9Q z5i@oJ*62cFcL--M*uY8uh?Cw8*dUw~)!^ZjbJb#rST0?lsj3M(>&7sd7E3L2e3h8x;1JMul{3Bl@&JHAG)(l zx162~%2*%T#_9;+)S@Y4LNS{7^N`~}7a2=nAuI-8_6mr)pl39%ReKHj_;#-U(k!oHZj?|1y#&Pp| zAGJ>PFe{jT;}8^EDil|&8^&T1*J_wn8xaHJ}0D`-xRKI2uYy22)hLHoJQVM`g#U+n4&+i;_y zO7GlM!TE*|Tv=lb9x=v}7zg3B*h+4(JGsRs0_$++1GE@v2H)PVsbmF(jV3|glqX_> zGR{}Famt`W<9CJ81UWJq&eq}531c###uO4$A)H28!HsegH_CKi|Ao84=0LMbsaY=0 zC7UT}t;8!PjBy0?Z2Yb;j&~X%r^T*oAo3gA2uGsqo#pz1Up^$R;hceAjhQ5lf^bd> z%Q^2?bKb+ip2UZ*e}B?!pt@kT9GV>2SnU*<{uWH%*{t2ll)YDpv@ob7oDr~N!m`)puO$!~jhQC^Un zhA!5PjxHcYslPV8(WW$m0^Pq#=S+%r?pb8Uf35IrvPp&B5^8&ljnNQ z^E}S;VqpI-FYJp1`DZ}QoEP>*LD}Lr+ZJb{{32!i&1VfHvbZ-A+3aWGLE~%^=Ri2E zGMif^#jUagSVvSWK=&S-*A%oA`uTP8>17DcikAsfoe$mTG=nOq(Q-Nw?dof8vW<2D zG_h_!!Q5qBi2pV&B5^T<(-tvqi)wC*rNHL*_7j?C&8W;}DB8OH1bh409Hb;Vdo(_O1YY8Y^mOdXJ%$ zeWH18rqWgs_gAC&=uRb_7*fqLm#PXQTm#KnQcNxnDnt1@&it2csB58wm3BK0r)7|- zWZhMF9ey&dCvgJ=*@ONOfwbw|9*1*#tN=E@X}3;_gmbtk<&2KvjIIW@uDM}wEeD`aA??)na~lsdWd(T; zpzJd37e$u&vYa9zuG{{tY_=XmF;<4MeZQ*tFVV8BnL_&z5XQqK9)WN+#$rz0A)LB3 zz~(ta*;Rc(=Ht-D%20NNDQ5k3^forJPoT&SG6+Mr*BDRY55`j@o`!JpIGFP|i1WA> z*k(7uT03LV!%mEO)s8vwKZml%u_|zq{N%@PVUzScO6Vd>F!KU3F}iM&oH|PVm5?_U4 z);$^SIK?sz7)21hx|Y<%DI`2J5v_xh3m0rcU3okf86B;koUDl^hPo!888*$Yq0n6= z%`ErXOmd!(Ova7Z0WjVm@g{_`ZT8?KcjqLp2X;}jNp4o-bkklC`wo;js);%(TK)C# z4mPXrqC|GY(CL!N4?7v}0c5;S;sXe0^XN#BTk_E+&_3g*_@nU|iO(UN&9*ZqcV|xSSHR|X_tsKa zwA8OrzO{R6{h|o-*E+Yc3Ht`6Y$f}{*l2AsU2lAgKN;VV_#VPZS4U3Qww$hwz|L*1 z6V$9uF4Prd{fN>hII7{KDkmSv^%8)NHdQ~N47MfbY|)1ybrb6xbDYf>KLcv~LgH5l zXLmL@h3zniJLJUO-|)sNV^wt`@}hn>TH{Hh4T-i8PE&09nI~4`KU88h zu#W`bHAK}Rn50w`PMT6w{ho_)RJAr&ZDFqVs0B;+$o=u447ihRzz$Hw^6rogBu3A% zxPvKLVdiTYTLNHgMPh3R=eWO-+vx{xr;fnp*}HSoUeLWAl(D=!H;Rb2iNuZ&PHw;A+qX-pEdu4&811NOaU_z&m%WYM@TAd&#O@Hz;b#M< z{v%F(H(-Mpe%O{C%>+zQ+vf=jMROT`a<8_q)}E*Z8-8+sTp7^c{L#fW;9gLL?Yxpl zOW%A7jf#d5t;aRb_}$ot#J&(tGp*-ldYhZ62e3ixyrPGgXCy<_LY-WUp;tjrzCSc# zJFhw@C}Q`piS3C3t;<6(=FwO#`{(d-R{x~S8rNW2;UO+?vMPYE|P!ur8p+rFLhyrohorRUXnAt^9 zK#4#^frtX}0D=m{1BeF@Q6Lh5NCXlUNKAlu0Pz44Bapul$p2TH0zFotOqweVf56jp{aR;rluEst9du|)W{u;e}F*bZtAHXu9DVI z#ywvwe7REcR-CPs>i9%SX-MfD^~CEzM-~^4VZHGU)`y$EFuJ_2Qh8sY^7e=CiVQSS z+3ps+DV?G`5ui;ARWYWMivftbxH9Uv2}-YhYN--55FyCzP?8f93k%e=%RxBC26Hn6 zhNpsmoJZm>(p0=aQ!y02)w~@_O5l#TcOVYA9ZHIWD`R@s;;WR5cj9Dnjtp-khT&&6 zoSP9adMSREO1Fqgmkr-j@v!|$LPg2eD;hTx~Dv+8VcLJ(pO&1uBoOdHC@?Hg#))hFtn%qVS zJO-yE^BhTU$LpOrtN`w;keebHUG3Ra?Z>FvW8teUn5p7aU(yvEjs2c@|EID&iwXdp zJj4+%nebS_cQTcfER~c5&QEsXA>{x&A|+TU4zn_D#=+=Gm`;=MFipaE_-5knhZK3- z1yy!Se-7Y?d>`T=yYQqyW=hnyO4R#tKDqNB?zZ?-XmnHgc0%MHlTCmZo5;;17+u@R zRNDuswv*wTq1*OK+*x`fIO_fw5y_qZd}&>gt$S`Gy;hsHS0X=z)5Vz2CWHWG_&E#elj9y~LQb|jwq_g2$^`Y2=Ia4H#u}N$iSGj2-a&$KNg#B@ZBnP`a zKwV|ioFLLsN&5uO==~Z5wa-bv>`_>fI0uewE;sXFbdB?=#-pjmPr*0CuR*}lP-okh z5*}A2`x-iwQ=FehjNY$7(7j#t)9ZQMpu~R$XO^41sL5&F;^Rw7`J(%h(c_~%ikvqQ zu=#Lh3%FSbqqiE_RQ|iD{LjL-nm2hVpTkl7IfNxQc`4uD)jYi$j?PN+=W%Y*+auT9 z0mWs>{*<<>$YQv&CEP59(Tn|1s{8F!_ZQ)tiQXRRXv9TymF?|S0O%y-CB#d5dlh`g zO-gzd;YO8|mvR0p-1~Xb+msWKlA9h4EG~=Z#Mm-;v*p~ZfYEc(pXQ_=&B?3qU7CTB z4$=b`)2gB|K0z>%49=!KDj(0u$ZLppjIAP>N=R3gkk@f~`7V(k<`?A_--G?N@jJGP zo7FJ7?7gV$w@}&Fz_)teB_iT=bbJ%1m+ul02VAx6yL?_R@$IJ6dJ89!PmIYt#q7kG zMAS_-TMIX~j+^x`x`17&fZwMAZh&vqyD5cLnF#F9;E4Jgge0FB`}xIB8z+jG`11HV4Jwv45KUBkt%u}Rdfq{t7&F63D%MBcQ|)n@>?pB<#>_j z$nnier1x+JvZji(0HdWm^X9DEKALFQ;tFBd%cf9SE;6quZ2V zU*RlrSDIdU%@bd{jfoz3?8i6wJcy(05I2Wmbmi(%<<6nXeGT8Lufr0<8~G%dY#vOT zw%G99b8V}bp<;yZ==e`WBX_1TTwFnuf8D01(6QafoVM3q-7Y6LH!tU!4s9`nc4p1~ zO3-g`y30jGa)gBss9>fNS( zs#3qKA`(aHeXO}C5lS5eQ?K12*4zUy5oP^PJu1R&SL3OTq zc6F~5*28v0Jq1z7mBRXQDj`;F*%V&SMO%ZFgs0+Mm%A59(mUyspPO3{yC*vy>spju zFg}r=V71`PYIAcMjNUkW`wg9njUU{p*zjGPfgS?sx)rL}vPEn*SFdv69O=(Qtan?= z;U*)!YuOJ~GS0%;y~m4qI}(dymRO=Rj&~>VsgDVEHr!bqZtBA5>G+za;~z8~_2B!9 z%%&sZL^no6$KMu_(w*RsS&~!rvdF#!Bp+UUPDai}xZcA>Uf;=7PKK(SoQLz*7cHDN zWslXz5!Qg4hA_JPUr_l!r}AG2-zx9;UZs{?i`o(OA_Vb6FDO?(`|gI)o`WuWjM23>P#P(4J^gZxr5Nvi?L>KVa>T|0i)~u5!LxmROgoP{YeH|jY>@B z^^V_B_)3IxmngvAepK6ZcB=i6()KExlUypv4URi$nr}cck}n!<1!vZpn<$LlIJ{3) z{sUDx3%;4SRFXS9K4CYJe114e#Ab7;EEmp6!8M4LTq?``hMSD^E|u9T8EtX)OPwvE zTRRx3_} z&fIi?(Q~qa=HzXfldkaHn1L3E)Qudvk}n!_V;v`Btz=!P7~aX-O<=jNit_2nv>NL6 zOlC|avm2uE-i9(|{;#$-R(E`h_28x_jGo0cG>dQ0EcSwLhPRZ$nwmS2LBcQ7U1#A`CenIOQc%tT&FaKHT($;c4L?XMo{VnwD2+ zTKdDcn&$(j1nvkt0CC9qz$p%{jOh&@cG3128xt#`5~bNi zx!LhtK3pbxMgBmJ(sv*}`CQH4H&ddIQKH|8^OD5|CD<^0 zgAM0q1dQI$JWKUoMD@>xZzdKSkjsT!0L~vAWxD}Z@*3fT>11Ujq9%(CDpto$P-l3B0NPC@gz+|K76b9hF6Q)(e-WwA#ZrK!>)emwJOC* zzcDzK_Z)gL#hVqtgB5a91fv(|*;L2JsE%Xdo8dY1Vpg|J0VY>TIa573i!hF;yywsh zH&@{F3g}oRZ~~{43%}$jbzkg39?#FgWNjQ|W!#K|(aY#`s_ny6+wt(N=7nFWkvrw| zJ_I5cex-W2N~Tv-6H3YZaW=B2KFu*-TkWty(5Vo!bN z1}`~Pn~yD4{T+PCCF3rZqxp{!CD~KoUj;V-=@sQNm4JtEYB^lft+=2dhDUMyeY<^& zi;}NL&Cg*|;KHVIGYv*B(BrA{_fqAj!?&7;YrNxkBz^?p$l)4qKUdrI3imxq+edLu zveggCx^|bwX26fldjB&(Gsqp`oGPim$M3 z+-!%@n~^N4_|;VL_u>1qDi3>BX?}wmy)2iOgV$wN!*vfxVK8W zxj9U)8vRt|@GHbZdRk`x?HP z=xLFx@ulB+Zfy4!^7nW8Oh@+=+Jtjb^H0P|dRpbmk*Q?NR>}AVXO}Mw!R8<_b_Bm* zN4Yr$qYKWc;Ac?5zlCo#Eo&3a4-eK6@ZUJMd|?Rxtt*oKoJFrC5>F_RzQY;HUm~1r z_{9?8l zDj}!h^km{N=??Izci8P@9F~uv1=0FUweTfYo14>M^t^ogPdZy2Ke)5i;j6ulF#XMw z_!PVn6=NEmCVyBbOJ^eXxZ4<6$&{&N{Y)k6EJPvKbBkwK>}>pw)#0Wt49^AsII~i| zrn&eB%|$)bPDoCh}V14zt?x%q@>s0 zJfo6wG0sntQo$=wStGc!#@sZ4(UbBCP0GhKDNW(~Uz}u`Oor#|Qn!Vu0L)3orHGRx zqk`|~$*_9(;W<5Vfl9_@IKO~m`ILO*_(*Z`;atqb+U8-eA_*VB!m6XUGDX&K$YNkqxN2Zi~UMYD4 z&L$s#_I2I~>+JmR&L&`;;KMp|(*;HsbOROiZ7OJ2_*U}+P#*wC*P9TJd;sd>m??Re zD0#c#q_Wm)gF|?2UxIbVQPzW-o-n$wYpAeqP+@z)x0-9c5xOJk4-kp0^@dBP#QcR4 z^H!Yh0{0q=X~b=>;ScOFOo-Q`^~O=whnv1Ix|pw0F<+r#_J?oP7uXl7jd?J87{SCv zF#eN>{la$y9e`-=^mECSpf4&x2jXgU2G6M*kEpkz;IEM{~qA~=S3>&3slsh z@XhekA+bxBO-GpAoym>Il6M_`Ar|8%4@Pejo}%JDNyW{FZ#BKv+%s%P%DWN8P|xG8gjvbmrmDPK!7r7D zV{o!dMDH1In@A3ECD67y|E~`=0~m!~Y5}}hAvZ-Zx}3AAoR3jC$HKRoHx-tF8wifH zaYQ6H74~&?RZg$h`l=E+fz!&FC87t?tsoyO_*f~9urhAO!RW$Hr@}r=g&hyy>YZ7l zMeS&LAA*oGOSHpOzpL$LljY=GJ2ILO27MYDmj}>jwjuM z^*Ma$;{+UI6SD)=B(a58+Wc{W)};EsqtMjUcBS&9RdF`e0DtCWln;biii z@hMws-xMz{Ey!n6;K8PHGYv);b37IEUMl8v_-3LjRaB|hQt@p7;$r`ECwxcJM-YvC zXS^pR71nmPqu0}oUnyZ9#VN^NaO7&w-!<4TyEJDsn*kp-lbcyET-xNnWQS@jm9~UR zI~%^4*b9za?)em_5+0IGm&yypk@;~%M)rd9a&(1GuUoZ73H=04O8TwjqywFjz~;b% z&E;kuj4pFNm3cIk`6>8jqTfnnPB;NoQe=VQNc=RSBK=mAHd6w>r38Kkrz8TC9<^9x z$L7O>E#PJ$j4p6C75FYH@U!sEgupR(wy9V!-ji}0PmABJ7urcIk}*SD$SleJ1T zyd-8v!a(wUg{#^mGEY(xLFOO zHw3+?)VENn*T6Ru`*@RaYH*PHsvUS|7htZ3ASE~Q_ss0<_Tg{{0sgXO<{sw`_(e6|aS4lqq#A-c?=N-f* zrQ|y}o9z0^eztrHlUx+fHo}8#;$}09UYt8pIj^H~Zh>z#cYQs>cQpMSqLE!+Pd8my ztDR0f-!&aDKlVIC~3se2(-Q6~B-wegRed3;33hj&vn=Cv$ou zeDCkkIOz!DpBcW%Ve_u)X4bJ5~!o$191G4WcjJH&Awl1&{?>C+}r9DVYVsqCn^ zGZ7NeUWJ8arF^qHb{rn;1UDyP^dei6%3OoWT(fSqcho$?cceW9(a4UPr<*Hm7TOW3 zIbWV7c&8HfRGgA@)JWQ$l#Bi%s|7z+o14>M^iuro*L03AesJgb!Z#BgHK!rv_1`JM z(YSakU$T73=9F&EH=v&5UQ4HZ>%lh@(@|-UL5mJsup&B}2BiW(CmZJ?UNQr+g70K1DIck% zoQLygiEE3zQ%b(rptywh-10HoKPrCTtH@cjf^B42eSD2I;HDvr-u8S!lk+)E&V}%O zCIj8MN(?XAGdcOV2qBhMS`Rlb{64+vt<+ysUM@x)bi_j>qhB#zWx*QZAZyG`6Bu3n zPpJAIQ}vs|H-Hfj8o8tKr3i$Mcu)^rNvpdQ&k>J3O3BM`HhCc>JF2)fjWvS@YtBsz z7+ubfsGNVIa<+tTb&q(&^29z)WCJZn(<>2;ypVcQQeo41iuzY2>{U3WETVkI>ws7` zT1GJiwG|Gs*4#v4bWPu98>pIZQ#HH7x0*|4YUGZVHz5#N zGE+S=rR094WH+46r_Yw1Ga9?m>+9mW!=3furY8*7Hu*34Y<~^a_6@3SFZgD<&nBWv zV?~@C=%EY$oD}>3@%r@HJVbGml3qvpZz?Ib;{4xpyZi2yEb2Uz?1!n z=&5*>rs5TvivIAe`l^*eH5oWY9#1D9?v@~?N_LuE7)SO2h|PO5B-b-jVt=8;9*DD& zjVy`SYFwMQ)0luY2%c;(H$z}_#b2a~zd#iq3g1j@WJwfPBm0SDV3m|T1d zvh-IWQwjJ=CE!k+n#>^XR-CKe8Wrs}aCCOOgbjlW8_vxL7+v{isq%}c^4ajs#0+Bo zatQgZsAx`tM+C{QGhZ*46>Upa8hd~^T8~6rWCpQ^9~Bwru^HC$92q^NM9#rE<;W<1 z2}d1TaWM=Eirr-$uGc{ievBcu9pSHkqB zW&B-9I0olx?b#~Rg&|m4R8Ts)+vr%%m;@`pS6Cr8MKF4~olT{Ej7mEezOQ7UV@Fzy z-2CiOMa79yY;znPos2Li8DS-x4nI&Q8F9p2QYnGlB&B!h{8}X`ffz_@P6xkY*yE)r z5fhhvRtis6#?3ewJvY;7ZXTw&84uq~wB~g9PXs0&T-l_=AIr(aeTb5@=Kk)PO29WN z0r%t7m$`*NUTl(czoOz5y92YaTgwDEvWeVGg3OUF2^D|I4i-xq=2>{V;-|L)_ox#8A)L8I%HS5CJ&bvC?(0Mc7bUXuVr&Y0 z*;H<(!RXEYc&h)sRR8Jlt@;Dog!4p940Yr2p%Yp{4n&qELrX3#%W4yk<+Z`(fewM& zp*dN21d-<3eZfrxAKk;hR+n@uD=00C$2u3q%CIF$L90vpm5szE3b)3_C(CeW&u0+- zQi*sJC%;sloDAw<*U)J1{86Jz?}>5CX26fl7hgK$ zlmg+%{WxNZRZOf)UG;&~ZIdEokxtRx}>zz;a9!>Rr3cmjn(?eVm zNA#x=SozaK+;33j(;0>NPAUHk&VH5K&XKFkz>;h+=9?e`nQT73z!q?`5JqqEv#I)b zQT3mN@3IV(c5=y0lw_+m$L%Fm^2+NC=_KYk#9UMfY24(b*AY6QlJh(wkS{3Wmw;mR ze&Z;8LC#{hu_fFrh0!a-P@0n4X-Zy%@1q$=NhKN}e+EbKmk^SCCy~Fet25t&$Lhw) zv!(x!()neam-KhYjk6qI>Juw0#^UW|aAeE5SplOL{{B?yepKmK;hTy6j$6v3qMsQp zOvYtX=zXCa>0d*Pq`%|q?TVjXA+K4xMvWz>K*Q5s$C=438EJv|UO!lN$oHeg<4nHI z%S|!7jyld(;wx+wH>+XvH1wirxP_)+4SX|kOGertz6lbE5SzY?Oh#yv5DQQzHE$wr za!Y3My-X$PRF$N+5QEo?O0YRJ-cT0ji$mAKg{|XeJ&fK8b)`x9K26F7_y+i*5;uNF z>)#+8x%&p4>f-vj+9qdvSG}WITZ#J)PI^XR0`o`;@<+0b_=#=eW;2XlxI0oEucJC{ zfp45l3H&dvt&x#Biv12JzE%E87ssw?_FAlXy3*!7{CT-?wcj)W@uEI)m~F*Z*fwsq z!{`Muiwbx(74UudR`bTyc07*EA0Rxrakbs|^juWEm(El!K12)`i`xS=k-1+iUYMUq z@Yfcx9dKYfx!DDyE8mhTe+5K#V!jb#Wh-pMQUb?td zp8;`}68A4SBk6Dg9p}Re06iAdyTRECQyChuHS{rXu?iTMpq zCr4J~bwd-BK1DhLXLgjEV=#LA&8W6#P;I}3Z#9psR7B!P{ci*&M^-BO230l^}L5O+c8d{FCtGsi{Dv#VYP|}}@ zGt0Y`lub46$S>i$D6?8{VYRtA4Ms2O-~NM69LEpt#Bumm^WBPf{EotBA{_ZzMQ=Y> zT;8DA-K=cVV7sc4w_ztVXOVgW+5>Alb~5$*2~R3|UzB69Dym-uSrCMvx?&4nsa=OGAL z3HW1m{NtS&ZGt#lSOabv!swOY3!0bDX;QLZ$OK-{`>!@USl`O}eh)xc!LBxgjy10o+uWUC}iD`=f$dt1R_E(P% zF3rcDyzTHM)}EUVFnV^j(CoZRv(pj2+GDs%t{fhhpD4>NNR*c4<`?tz!+83i8ym%6 ze&t;B%Xnh&-I9zywt)<9z97`wa0T4`pZ<3Za@?yNu-I?-a3c51>JGG zI?lOQ?SwC}&fIi?(UY`+Ch2XOq^|INJ+oCPCqBNUw0KlJyJYnE=$P1eECCTQ>h*|^ zCM1_KUtL*NCs#KibdoD8mGoR$-Sc|ps=3NlH$>5#-gvl=P5H`e`slPfTv-opdcx=# zT0=AR2F*|}`2I8l87i{hLNIv)<;&ry{{w_I+KSuN+jrWC(O)AIsN&rtYQeV9{>OQ2rx ztBZI)p8J3C5~XBp6;3Xz2+m2#9f(zq4^{LHHyPG7#&gNzRVo>G;_R|ZD@Uh#7xUG5 zY#0u);oOXX(WQTuO23FopAFyY?b7ODJED$66tYXJAJ-+cx+r_j+i0yM%)z-X5)B@$ zMf_c4SoXwnah%1t$%D~#e2VJ$B-Jq=zEi5Vb@vF~QS)xZGTfh#N}A57Wg8{w7_OE$ zVXxa*0spa(n<5xp!P!*7$Ebp1;hU(QhtVojN3S@}+*|!FQ}Sdfc@p^h-cRZHT)9|0 zdTR`CdBE0=rEp|r+>C?a!X^JD7uijx!aYod8xP+MKc(YyPvNM(?L|y0-jEQ9zFVPb0qE z3gKPR(_15RgA)B2oVVP|FyCAc-2gTpj%)!p3t@EGv#IQNQQ4n`?|EsTW@3cl&;i6-L!;yzFE|xG?jG?C0ZYAdc9tAujot z&l}hkIla}wU6shMVHL2PJ&A5O!90RHoUfnBp|V0A`K{O_CVTh_Ym z#Xo+3%j-?Ae`5cHDJ$de_C4#7x)<%6HR{FxJGOVhj~?heVA*B+9@%t3&98UQJ#+nI zji2vx<-!|Y`b+(b&j0PCZ#KpDjM!iM*4e+$d8^aiZ`>Gv`TAde(K+(YZ`wUN?zUgP z^6J}(&im^RUGZ|y+fSYH>jkA7Kb@TWt8Jg&{C~6GJbikj1wXm+gSR3*5a}6+>y+hd z#$VTR&x*Th^~7)F3$Dd|2ZF6}+K>8V-(4KXfAWj?e{L$vFUVy-8W6)%6Wp4>qsAHd za7O-5ej>d?BSoK7DQfn`Z@3%=)S%En4K|>L_(2T|4b*T0YJ?wDZfKxl22`FOQ~?g0 zgBqqP8n2-I6DgE`Qq4$nP3YQc*8qULdk}=<|F}Sv^G<0p#sm;R0*XrHBCUt;wL*0kr}p7foE!_gi@KB zC7_H<&9Q|#{r!LcaN~-P{_%Wt%1eRdX!xb^<8Cyn@JWaGTfEgC&?ZnxM4mlVGJM7utB zeDFkMu7rB!#veUUZ|9lU*PJJyc&6mN46jy^`Ly+qF)QD`g zg<5s|vA>=2z^I=zx##+y?wx+!yN!38@@8z!C5`VI+GXCx$74+%p1p&n zSu4)^unf1bob#)e<-lqAVCcas`C30futQ~)Dzpr=489ln4{`qG& zOleWS^NKA;=RH*Xvv>b>bHDvR8fYH463r@9CzqfT|Vg$g`VJtUOMR8IjVi{1A`4>Hm_ zG*EpEsJ;S<*D0PY2^Se;3l(_r8!Vwz@f#wbjN&)U7Ao-KH(Wxg;x|G-$<|K|$miNZ z1)iyxgi@Kx6Hqc!3aY>sD)3AdN+^}7A^~M&sx&lEWd_tZ0;OH2CfGs+Ui>CXC{_F> z2`E|oM2lV{GQ}1u@FA(G5=sq8O%qVKrK%z869yEGf z>x$Y7)^wY^<+ML8FZuPF=RSO-#lg#G-}u|}H|AVf?~X;0Z4&C_$LyS4`;XpGbGv{t zu2VZ~p#s17?vzmK;=9WaYIkU$_83rm1r#lM$vU;q7Ao*MwO>N1I(2|RaTqm5aWFJc zhYYC00!ofia4`Of9I=H8yiOgJP^wNH6HrF+J02RS69&{tKd4%#TRxu(yiV0dq{-(~ zs!pAT-|**C#&zm!Td2T$6m=w&>QU4sP)==fF2a%eworlBsRj~C)v1O8%DDJ8vV{t~ z_%)VLs`xb#P_p%t_f(N)p@C{{K(!!Hy!dfA{)w~-4OD9bDoUVevmR*|8mRULR0lt( zPN9M7Y(RDKgX(Sz6?p5{Lqe(6ucv@ATEE`5P=U98eI%4>{rUp;Vn}D4>iw)yNhq@Z#54LaElTiGY%=pSquFW(yT~rkYDAm8lj2%E(l!&_J~| zprU?I?Qp<*32J-!N7NG34&smSbkk3y6AmoGZ~ph2(9RM{mEkS~ilcgw+$Q2Z*Vp!V591)lEx z5=y1}0D;mnb8mPL<$P`Z4Nb0!*9Izud{^;JX3Wfl*&|H0VRtcZvpuyQa?0M z4GgG;1d5IeL>k#b1z!9bODNU)H4#uo>(?waP|Xdf7Jg8zY@q_LQ>`VGs#8$`CF_(L zJZu*lsP+a_2Li?Gl!EGH3l(^s>MWsDo$4Z>j5^ib7Ao-3n;sHMjo$PWP<-@8W+~aE z_qK%!yiWCzP^wP#6;Q_g%OG2*z>D8t38jkP5CLTrzhR+)8g4+1@PoV9gRfHE$=6G8(u(SVwi0>v|yEPhjLp#pEx zr%EW*q)#JIv|dGK*g^%~q|cO4s!5+Epo}^-#}+E^OwE;0DpT_W6t7bpjAx5~BJ*vb z0?*U}38gZ%P(T@(T5Jmyc&3&}D3z(D0!p@iPM(mdWwua(H|fhIlxosfq(G_Sx6&3W z@Jy|eP%2ZaQ=n9))`kXZodLC;Kxqxd#?U}*GN3jSDD676)fOu7)^D4HQmx;10cEs) zJ8Yo>uTwiEl&Vv^1e9@;xZ4&g@J#KIP%2Y<1(eK`yrqxq3k}qM1L{BulxqDBh6d`8 z0d?39>WD2=;C1S#gi>|tn1GT!3RV1$+d>6ir%p&HRi{o0C|Rde@vC*F<@2ed*?+x! zLcv+RCXRgUnw95l`~4L~11HqJx!J$|v#4RW9>=cgl6y(ZKfZAGJN;)*AAHS>AMAdl z*299wEqLgqCnDFJbL0BPE$iKM=cdx{pYq#CZA6-UK6Ul- z+YY?8bj6{Xr{OpJ`IPJ)DX6n;p#slT9SNl}RaZb6nW}FK6?mO$AfZ&9YAB$L>r^9K zsK7JTSVE~xH4#uorkaHYs<{Ex!VjudXrNjfP*Fdqb~xZY7pT4bBWf;C2k}SbbwRZ@ zop4|geyVUTP~a7_vxHI=vkQUJy87L1p#ra%JtUN>m^}rQteENw-a9leMh>sKD#ga0#XA)Cd7(TsZ5O%P_p$?b!tLrpe7nnll-8jga&G=0X5AJYDQ?FW*Shl zQlQkucMcAC_qFEAKcf0t^TZ!9`dagGU=d1mg?+8Sr>QKEP->dWLIGt=Q(0^a6?hZ6 zL_(=1bg6(cn$TsTfm&`rt?+|dX$uwjXvr!GrAA9u3#hZ?1ws5bvep(V@Zz^lLaE}n zUO*YeZ)0enHW^Tx2^8&bMYe_pYMTMIT|mjsqk4hMj?h5uG@y0~D5Lo8wuK7(I<-ea zsq55U0cBjL_Sr%O-can9P^zIgAfSv)9khiCe4fA|38m%<98Q6fEqmmMEmYve@2G@Q z#qXGaGK$}ETd2Tq%1%fqbyIdyKp8h>wQxCJguGSQp$#0WHX=<~AB5j{uMe_?3cR7H zBcW77QCC124MqLXKs7L+8WJepNN_m*i8Qi>3cUC=mQborH4#uoooW^usOAP#3qPn< zworlBsn!xo)v2g}GU`-2Td2T`Uwa9qieCo-WfZ?op@HgbKy~qh>TU}ac#ooogi<|< zo&rj?dQRJi)~~lMRN%$0kAzaiudjeIir*kxsK6VF!4gU}6hj1*(NGKv4b*T0Y6O9j zMK5{r&9#LJy!gc=lq!CC0?H_U1)+f|G@y$7ph`mnRc1hq^Mjgz1KtDj6XhRK1M-u^ zA2FKHDLAkQrMbfUm%v+_sS--HHq!_cFUN9dDl#K9P%{mvSprJJsByMAwork$HghGE zYHj8TD5JHRZwnQ8@mnCFRPkFVpp1*%Vq2)dGqprQsZ1>uP)4Sfg$8Q50ky&pYNahy z;Kgs1gi^(CwSY33^tHB7fscr;lTd0zbUlHRPo9%~t&O%&f#1Jul2GdYWix@|F!B@G zY6}&3L$OUlsfJ>^fHE429kx(`XKJT}QkmK%pp3EW-L_DHXKIgxQkmK-po~oI!vXIO zp+r~Mf&A&P|J0tAbw)|n|Fw@?{e1DFdrz4({GVB4hIAXS zd*QEsIpOmmH48h9SWx@H4kr_D4SVRx`#(H>`V-%MIy|S-#&0HEwe#ygp1CI89&>%DBx>{i#dK6d`pC1>2( ze&DZu67Bfvt6L*Sm#&Q*l2CKjUR!J1Uw@NR^RR&8Ee%&kej-O~p#r}y9F zp;Vn}D4>kiuTf~A8XHhe2o!Jq6bDjJt!$wJZzx(zD0Kyo3Mk_W z-Yzsy?G307DNw3O?-UxS&IVMM6exbJ;-5(O&_MMtpnCd2^|plyyh-mPp;VLJS3nuv zq(Py98f-uf@q-#>3l(_lH(Wxg)^CJ>GFrb}Td2T`Ura)&;+H3&jN(^d3l(^#3MG`v zRFQx(GF55|6?mq~B$Ue3I00p3YJx3P;F+2zp;V?O2`D2|Q*5CE&(u^2r7|^5KpB~u zVG9*_re;bgm8n?*%E;6lTd2S@HCIBZOwAKeym!vCrTTvJLj$$IfLbV^I1ta4y7gEb z8mJ`()KUVa-A^sEg$le*EtgQLPOT77Mx9z|3l(^sS|y=WomwrRjMi_hEmYu{S|_1Y zrq&B6BU2kg1GUM3+Uy6l)fOu7;f1sEUi=zJC{_F#3MixaH3|(>V*{#53Y5AjYi0`-_>7L`5=zbJXd$4C86B-` zp#rZ{ttFJIQ&9nBT*2Fg2CBUQ)xi&{Q)r+%8&F;Rpt^?!s)qs9(+{e5XrTHSP<{QN z2H8Rdew`XDq11J1h=4M#Q^P_7HQaz2;Rls#3l(^i9+Ob2NzW5dSZA(%A_bv=Dm0*q z1e9@|Dz$|Qe2Q|Jgi=$K#}O!=DmBbI!4@j;;x|!3sp2<@KxxCgQ*glhPIIdKBkE3b z8u=r<#Zk)4z=1{h#sB`D=1d8tn$TGS%4kC8ga&G^0X5GLYJO;-78p-eC(B zcx$s$LaEkfmw@8w=EFZK-Mej}0N!Y@Zxt=LaE|+Oh6gM@3<{g;F&rhp;V?$ z3Mk${a4Oi2hOmzwkRA&RKiyu^XTd2T$6g?!A>QVF*P)3iUcW9vc7*Kuvpaz8oYOnz{#1Cqi zEmYvQ9>XP+y7d@Apm+yLej>THP=Q~kViHPSr}6|8?@?&2Ux6)D;0;Bggi;Mfk$^H9 ziqg(mknrRvmD z0mbVQ2a})3GFzy?GqqeosZ6a9P)4R!h6ZYt0kzr>YOO6);Kgs9gi^(Cy?~NUIetuj zA{+7le4Yo%KjJ8L4kWi`&Hxy7jLs}VbWD6B|rW#8qm8m8I%E(kR zTd2S@)m%cUOtlbDvM#A^Kr36Qz%$iaLa9te1(cDgcAz2H8Rde!nnSLaFIb#V7Ao-8Z@Gk0 Zt=|d(#aln^aoft!K&>*MR{KDm_5VxaVEzCA diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.dll b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.dll index aba3100b14b7567dc22f98c31ce5e4cf6922c852..45152aa09b0dae3e852a60107c3caf7579f5dce2 100644 GIT binary patch literal 20480 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 N9A)_{D67a`_J6~gDBl18 delta 3166 zcmZWreQ;FO6+idx+mE+zH=EDhd}osl5FjCu&=530z6b?_3L)Y^D1i`2geF3Q7_00i zVPO&mA-<@LV2uJO7s%j>N>Z#wr%cU`)$-ITvuO5 z6DU8#<;C?&s-bJ0;BN5Bt?k^{dpWMvgPB*#U;p!`gEyaUJlDRt>xd+>t@8awRpBe( zvz(}e5>W5~i-DN{8#V%UKpbENTmbv9X1j0TAAuk`i+r>cIv+?kupTa3NzygwFQKmr zL8C&_Q7P!Ol;p7p%CJbf2>o~H)rz1NMbZiAv(S63f}XQVT4WbgXP4Bd3Tjg&U2zJ! z=9F|v6ZC;5^#dXhydo9)48ywfv(f^Kl@OX{;3x$4iZyYzbIK?E9r_8&6y$l5PlGLq z+~_#k-*j+Z7L%O6Pd0IGKgGn^o@(N3Pcw10^D3HbkL?*jQw2L@nm9XTnF8WvmMcd%+V?-U-|TyU+0NH+YKS|ER%J4S$?L zG#mbDhW}a<=Z#&<`Dcf8IPhXFj=)P9#s@s2Idq3VWAIGaBl$CU7C6t)Cg5lA&o;hi zUV>$sYw%d`xh5WDhf-8bH5`_J&qFxVOds59;>TdW4}6BnzYKh)iO&bmH+U)h%MogU z!3)4E?(jT{M@1DPo^;?XvIqg0`C>{xUF;|pm@Uo*TN@4^w4gw^5jK#f1aIp zIX5e)O69C2MaoBkyT+D9P&X(yXPYaD*a_Z;Prg=z@$dv(ZWp%&*5 z$_>sDlvipaC@uF#NHZnw~{T;(Wlbu~hsa)ltTyM`c>BPZkOPUn7$*Iw1$);6oD z!`-08BnD;_RaW*4_WW9Rcyhd0Q^JNDCG@g%I7rAY=@qe3FZX!$6S2t;_Kf!m{{uCP zFVA_h^W6=X?)|c;>EuWA+7JJ(@#{Hn%eT(GGV783SvJgyVh==BUPL)EqbgddMwuGW zZ+WtU7SY?1ii=0M&~J@`+hB&op_M9m7t1c2@QX48f&C>C;ZY(TSZcCMUD5n_YxB;# zhcVv!w*Oey(3ySDfBI2U$8g%R*s;`E;kP$YO~llB$qPFN@0z_Kfdd>QCG9`oQ)Z?=DnY$Byqw zSuxuFp?0xmY$7G_V(kI3;a`^`?O3BdTcfSo3^m zsm^a!9?IOcAaS;aa^m-ajS0Exg0;`+0Tl#y`}Yx@@1i&-3-?i`vI8)ckhgXvX=1l+WHj zV;k28;(bEVhvOfY?^yNhgeip!q{GXvtuorBQJJ*(AaJPpIdc(_F0n@wB_24OLw!fW zf*>Xf8%`lVm2i6Rze9wq!lfp=unL?=Gq<2I&k#xCKJlaojmhqi=zUi9UXi;`%J3c; z{=h3@#9f1OM;Am#bw%x6^BCT?cdmbF#hQ%#LpR1})?NE{di(6=r`~d=#~0mne^OX~ ze8HdI+?AsjCi+xNpNL0-XXp+0xi{^hLN*0ybNcMnnY&2{oR`TrsI)$94*QsLB_y-h;XFL?)J zJ)-|H(OoV2`=gEM?Y_cb|H=Nd{)auO!$*FxzU_c^@;~*jZoWD6#Seo?-#psUFL$OL zJMS#w<1Q~&#jT6%kxyc5NJbH#l(=vxN&?%X(!e3-#5?AU&DFOXZvM~={P(6?S2Z!iHgP!aFMHdXG From 57d4bb3adba19ce1f3c312109ac0fdcc0be8ffae Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 31 Oct 2019 05:09:27 -0400 Subject: [PATCH 32/36] added some tests for model, controller, and DAL --- .../Controllers/RestaurantsController.cs | 4 +- .../Controllers/ReviewsController.cs | 4 +- .../RestaurantReview/DAL/RestaurantsDAL.cs | 31 +++-- .../RestaurantReview/DAL/ReviewsDAL.cs | 10 +- .../RestaurantReview/DAL/UserDAL.cs | 60 -------- .../RestaurantReview/Models/GetReview.cs | 12 +- .../RestaurantReview/Models/PostReview.cs | 16 ++- .../RestaurantReview/Models/UpdateReview.cs | 5 + .../RestaurantReview/Models/User.cs | 5 + .../RestaurantReview/RestaurantReview.csproj | 2 +- .../RestaurantReview.csproj.user | 8 ++ .../netcoreapp2.2/RestaurantReview.deps.json | 128 +++++++++--------- .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 20480 -> 20992 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 6752 -> 7112 bytes .../RestaurantReview.assets.cache | Bin 182608 -> 182608 bytes ...aurantReview.csprojAssemblyReference.cache | Bin 424 -> 8787 bytes .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 20480 -> 20992 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 6752 -> 7112 bytes .../obj/RestaurantReview.csproj.nuget.cache | 2 +- .../RestaurantReview.csproj.nuget.dgspec.json | 2 +- .../RestaurantReview/obj/project.assets.json | 98 +++++++------- .../RestaurantsControllerTests.cs | 50 ++++++- .../ControllerTests/ReviewsControllerTests.cs | 115 ++++++++++++++++ .../DALTests/RestaurantsDALTests.cs | 40 ++++++ .../DALTests/ReviewsDALTests.cs | 74 ++++++++++ .../DALTests/UsersDALTests.cs | 33 +++++ .../ModelTests/GetReviewTests.cs | 43 ++++++ .../ModelTests/PostReviewTests.cs | 43 ++++++ ...aurantModelTests.cs => RestaurantTests.cs} | 2 +- .../ModelTests/UpdateReviewTests.cs | 27 ++++ .../ModelTests/UserTests.cs | 41 ++++++ .../RestaurantReviewTests.csproj | 4 - 32 files changed, 647 insertions(+), 212 deletions(-) create mode 100644 RestaurantReview/RestaurantReviewTests/ControllerTests/ReviewsControllerTests.cs create mode 100644 RestaurantReview/RestaurantReviewTests/DALTests/RestaurantsDALTests.cs create mode 100644 RestaurantReview/RestaurantReviewTests/DALTests/ReviewsDALTests.cs create mode 100644 RestaurantReview/RestaurantReviewTests/DALTests/UsersDALTests.cs create mode 100644 RestaurantReview/RestaurantReviewTests/ModelTests/GetReviewTests.cs create mode 100644 RestaurantReview/RestaurantReviewTests/ModelTests/PostReviewTests.cs rename RestaurantReview/RestaurantReviewTests/ModelTests/{RestaurantModelTests.cs => RestaurantTests.cs} (96%) create mode 100644 RestaurantReview/RestaurantReviewTests/ModelTests/UpdateReviewTests.cs create mode 100644 RestaurantReview/RestaurantReviewTests/ModelTests/UserTests.cs diff --git a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs index de52ee65..0b7bace6 100644 --- a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs @@ -33,7 +33,7 @@ public IActionResult Get(string city) } var dal = new RestaurantsDAL(connection.AWSconnstring()).GetRestaurants() .FindAll(restaurant => restaurant.City.ToLower().Equals(city.ToLower())); - if (dal.Count >= 1) { return Ok(dal); } else { return StatusCode(404, "There are no results for this city"); } + if (dal.Count >= 1) { return Ok(dal); } else { return NotFound("There are no results for this city"); } } // POST api/Restaurants - must send in a restaurant body with it @@ -49,7 +49,7 @@ public IActionResult Post([FromBody] Restaurant restaurant) } var dal = new RestaurantsDAL(connection.AWSconnstring()).PostRestaurant(restaurant); - if (dal.IsSuccessful) { return (Ok(dal.toreturn)); } else { return StatusCode(304, dal.toreturn); } + if (dal.IsSuccessful) { return (Ok(dal.toreturn)); } else { return StatusCode(404, dal.toreturn); } } } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs index 17befd47..26c83e6f 100644 --- a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs @@ -26,7 +26,7 @@ public IActionResult Get(string username) var list = new ReviewsDAL(connection.AWSconnstring()).GetAllReviews() .FindAll(review => review.User.UserName.ToLower().Equals(username.ToLower())); - if (list.Count >= 1) { return Ok(list); } else { return StatusCode(404, "There are no results for this user"); } + if (list.Count > 0) { return Ok(list); } else { return StatusCode(404, "There are no results for this user"); } } // POST api/Reviews - must send in a Review Json object @@ -50,7 +50,7 @@ public IActionResult Put([FromBody] UpdateReview updateReview) public IActionResult Delete(int id) { bool IsSuccessful = new ReviewsDAL(connection.AWSconnstring()).DeleteReview(id); - if (IsSuccessful) { return (Ok()); } else { return StatusCode(304); } + if (IsSuccessful) { return (Ok()); } else { return StatusCode(404); } } diff --git a/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs index e8a1f9a0..425fc820 100644 --- a/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs @@ -45,16 +45,17 @@ public List GetRestaurants() { bool IsSuccessful; Restaurant toreturn = new Restaurant(); - using (SqlConnection conn = new SqlConnection(connectionstring)) + try { - conn.Open(); - SqlCommand SelectAll = new SqlCommand($"INSERT INTO RESTAURANTS VALUES(@Name, @City);", conn); - try + using (SqlConnection conn = new SqlConnection(connectionstring)) { + conn.Open(); + SqlCommand SelectAll = new SqlCommand($"INSERT INTO RESTAURANTS VALUES(@Name, @City);", conn); + toreturn.Name = restaurant.Name; toreturn.City = restaurant.City; - if (!(restaurant.ValidateName() && restaurant.ValidateCity())) throw new HttpResponseException(HttpStatusCode.NotModified); + if (!(restaurant.ValidateName() && restaurant.ValidateCity())) throw new Exception(); SelectAll.Parameters.AddWithValue("@Name", restaurant.Name); SelectAll.Parameters.AddWithValue("@City", restaurant.City); @@ -62,18 +63,18 @@ public List GetRestaurants() SelectAll.ExecuteNonQuery(); IsSuccessful = true; } - catch (HttpResponseException e) + } + catch (Exception e) + { + if (!restaurant.ValidateCity()) { - if (!restaurant.ValidateCity()) - { - toreturn.City = "City is incorrect " + e.Message; - } + toreturn.City = "City is incorrect " + e.Message; + } - IsSuccessful = false; - if (!restaurant.ValidateName()) - { - toreturn.Name = "Name is too short " + e.Message + " name must be at least 1 character"; - } + IsSuccessful = false; + if (!restaurant.ValidateName()) + { + toreturn.Name = "Name is too short " + e.Message + " name must be at least 1 character"; } } return (IsSuccessful, toreturn); diff --git a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs index d4e494e0..cee9dc84 100644 --- a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs @@ -110,7 +110,15 @@ public bool DeleteReview(int id) conn.Open(); SqlCommand SelectAll = new SqlCommand($"Delete FROM Reviews WHERE Reviews.ReviewId = @ReviewId", conn); SelectAll.Parameters.AddWithValue("@ReviewId", id); - SelectAll.ExecuteNonQuery(); + try + { + var num = SelectAll.ExecuteNonQuery(); + if (!num.Equals(1)) throw new Exception(); + } + catch + { + return false; + } } } catch diff --git a/RestaurantReview/RestaurantReview/DAL/UserDAL.cs b/RestaurantReview/RestaurantReview/DAL/UserDAL.cs index db74381e..8bcb2c91 100644 --- a/RestaurantReview/RestaurantReview/DAL/UserDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/UserDAL.cs @@ -54,65 +54,5 @@ public List GetUsers() } return (IsSuccessful, usermatch); } - - //public (bool IsSuccessful, Restaurant toreturn) PostRestaurant(Restaurant restaurant) - //{ - // bool IsSuccessful; - // Restaurant toreturn = new Restaurant(); - // using (SqlConnection conn = new SqlConnection(connectionstring)) - // { - // conn.Open(); - // SqlCommand SelectAll = new SqlCommand($"INSERT INTO RESTAURANTS VALUES(@Name, @City);", conn); - // try - // { - // if (!(restaurant.ValidateName() && restaurant.ValidateCity())) throw new HttpResponseException(HttpStatusCode.NotModified); - // SelectAll.Parameters.AddWithValue("@Name", restaurant.Name); - // SelectAll.Parameters.AddWithValue("@City", restaurant.City); - // toreturn.Name = restaurant.Name; - // toreturn.City = restaurant.City; - // SelectAll.ExecuteNonQuery(); - // IsSuccessful = true; - // } - // catch (HttpResponseException e) - // { - // if (!restaurant.ValidateCity()) - // { - // toreturn.City = "City is incorrect " + e.Message; - // } - - // IsSuccessful = false; - // if (!restaurant.ValidateName()) - // { - // toreturn.Name = "Name is too short " + e.Message + " name must be at least 1 character"; - // } - - // if (toreturn.Name is null) toreturn.Name = restaurant.Name; - // if (toreturn.City is null) toreturn.City = restaurant.City; - // } - // } - // return (IsSuccessful, toreturn); - //} - //public (bool IsSuccesssful, Review toreturn) PostReview(Review review) - //{ - // bool IsSuccessful; - // try - // { - // using (SqlConnection conn = new SqlConnection(connectionstring)) - // { - // if (!review.ValidateUserNameFormat()) throw new HttpResponseException(HttpStatusCode.NotModified); - // conn.Open(); - // SqlCommand SelectAll = new SqlCommand($"INSERT INTO Reviews VALUES(@RestaurantId, @UserId, @ReviewText);", conn); - // SelectAll.Parameters.AddWithValue("@RestaurantId", review.Restaurant.RestaurantId); - // SelectAll.Parameters.AddWithValue("@UserId", review.User.UserId); - // SelectAll.Parameters.AddWithValue("@ReviewText", review.ReviewText); - // SelectAll.ExecuteNonQuery(); - // } - // } - // catch - // { - // IsSuccessful = false; - // } - - //} } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/GetReview.cs b/RestaurantReview/RestaurantReview/Models/GetReview.cs index d75525f6..45dd8fa3 100644 --- a/RestaurantReview/RestaurantReview/Models/GetReview.cs +++ b/RestaurantReview/RestaurantReview/Models/GetReview.cs @@ -1,4 +1,5 @@ -using System.ComponentModel.DataAnnotations; +using System; +using System.ComponentModel.DataAnnotations; using System.Text.RegularExpressions; namespace RestaurantReview.Models @@ -22,5 +23,14 @@ public bool ValidateUserNameFormat() return matches.Count == 1; } + public bool IsValidId() + { + return this.ReviewId > 0; + } + + public bool IsValidReviewText() + { + return this.ReviewText.Split(" ").Length > 1; + } } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/PostReview.cs b/RestaurantReview/RestaurantReview/Models/PostReview.cs index a831793f..c552564a 100644 --- a/RestaurantReview/RestaurantReview/Models/PostReview.cs +++ b/RestaurantReview/RestaurantReview/Models/PostReview.cs @@ -16,14 +16,16 @@ public class PostReview [Required] public string ReviewText { get; set; } + + public bool IsValidId() + { + return this.RestaurantId > 0; + } - //public bool ValidateUserNameFormat() - //{ - // MatchCollection matches; - // Regex defaultRegex = new Regex(@"^[A-Za-z]{4, 15}+$"); - // matches = defaultRegex.Matches(this.UserName); + public bool IsValidReviewText() + { + return this.ReviewText.Split(" ").Length > 1; + } - // return matches.Count == 1; - //} } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/UpdateReview.cs b/RestaurantReview/RestaurantReview/Models/UpdateReview.cs index d401e8be..7c9eca27 100644 --- a/RestaurantReview/RestaurantReview/Models/UpdateReview.cs +++ b/RestaurantReview/RestaurantReview/Models/UpdateReview.cs @@ -8,5 +8,10 @@ public class UpdateReview public int ReviewId { get; set; } [Required] public string ReviewText { get; set; } + + public bool IsValidReviewText() + { + return this.ReviewText.Split(" ").Length > 1; + } } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/User.cs b/RestaurantReview/RestaurantReview/Models/User.cs index 40c6cc1a..1d996b05 100644 --- a/RestaurantReview/RestaurantReview/Models/User.cs +++ b/RestaurantReview/RestaurantReview/Models/User.cs @@ -8,5 +8,10 @@ public class User public int UserId { get; set; } [Required] public string UserName { get; set; } + + public bool IsValidUser() + { + return this.UserName.Length > 7; + } } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/RestaurantReview.csproj b/RestaurantReview/RestaurantReview/RestaurantReview.csproj index bc2083f7..17284e7f 100644 --- a/RestaurantReview/RestaurantReview/RestaurantReview.csproj +++ b/RestaurantReview/RestaurantReview/RestaurantReview.csproj @@ -9,7 +9,7 @@ - + diff --git a/RestaurantReview/RestaurantReview/RestaurantReview.csproj.user b/RestaurantReview/RestaurantReview/RestaurantReview.csproj.user index 5df420f5..8406f5bf 100644 --- a/RestaurantReview/RestaurantReview/RestaurantReview.csproj.user +++ b/RestaurantReview/RestaurantReview/RestaurantReview.csproj.user @@ -2,5 +2,13 @@ false + ApiControllerEmptyScaffolder + root/Controller + 600 + True + False + True + + False \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.deps.json b/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.deps.json index 3c1c766d..27d9d08a 100644 --- a/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.deps.json +++ b/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.deps.json @@ -28,7 +28,7 @@ "Microsoft.AspNetCore.App": "2.2.0", "Microsoft.AspNetCore.Razor.Design": "2.2.0", "Microsoft.NETCore.App": "2.2.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Design": "2.2.3" + "Microsoft.VisualStudio.Web.CodeGeneration.Design": "2.2.4" }, "runtime": { "RestaurantReview.dll": {} @@ -101,120 +101,120 @@ "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} } }, - "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration/2.2.4": { "dependencies": { "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.3" + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.4" }, "runtime": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" + "assemblyVersion": "2.2.4.0", + "fileVersion": "2.2.4.0" } }, "compile": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} } }, - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.4": { "dependencies": { "Newtonsoft.Json": "11.0.2" }, "runtime": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" + "assemblyVersion": "2.2.4.0", + "fileVersion": "2.2.4.0" } }, "compile": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} } }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.4": { "dependencies": { "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.3", + "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.4", "Newtonsoft.Json": "11.0.2" }, "runtime": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" + "assemblyVersion": "2.2.4.0", + "fileVersion": "2.2.4.0" } }, "compile": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} } }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.4": { "dependencies": { - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.3" + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.4" }, "runtime": { "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" + "assemblyVersion": "2.2.4.0", + "fileVersion": "2.2.4.0" } }, "compile": { "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} } }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.4": { "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.3" + "Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.4" }, "runtime": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" + "assemblyVersion": "2.2.4.0", + "fileVersion": "2.2.4.0" } }, "compile": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} } }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.4": { "dependencies": { "Microsoft.AspNetCore.Razor.Language": "2.2.0", "Microsoft.CodeAnalysis.CSharp": "2.8.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.3" + "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.4" }, "runtime": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" + "assemblyVersion": "2.2.4.0", + "fileVersion": "2.2.4.0" } }, "compile": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} } }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.4": { "dependencies": { "Microsoft.CodeAnalysis.CSharp.Workspaces": "2.8.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.3", + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.4", "Newtonsoft.Json": "11.0.2", "NuGet.Frameworks": "4.7.0" }, "runtime": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" + "assemblyVersion": "2.2.4.0", + "fileVersion": "2.2.4.0" } }, "compile": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} } }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.4": { "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration": "2.2.3" + "Microsoft.VisualStudio.Web.CodeGeneration": "2.2.4" }, "runtime": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.2.3.0" + "assemblyVersion": "2.2.4.0", + "fileVersion": "2.2.4.0" } }, "compile": { @@ -3592,61 +3592,61 @@ "path": "microsoft.codeanalysis.workspaces.common/2.8.0", "hashPath": "microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512" }, - "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration/2.2.4": { "type": "package", "serviceable": true, - "sha512": "sha512-wc71c9HWTeXy9/w9O4Yr2LKmdJjVyIoJ/XQX8/6uma4EAVU25RLtUWlvhA0gpgFw9Kf1TkCv70x+CbKnRw/d8Q==", - "path": "microsoft.visualstudio.web.codegeneration/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.2.2.3.nupkg.sha512" + "sha512": "sha512-yBKo8R7q5fWe0PSLbLJNbgjh055y/OIM/ZwFW3iToyS9X9bfzfsTIL1LnCf3joSBbcsAS5+aIeyNlIiikXzhnw==", + "path": "microsoft.visualstudio.web.codegeneration/2.2.4", + "hashPath": "microsoft.visualstudio.web.codegeneration.2.2.4.nupkg.sha512" }, - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.4": { "type": "package", "serviceable": true, - "sha512": "sha512-wXlpxDfRD5aPypa0p0UE97tkRQvAz9D9FfA2GITzr+LlGIpybyGnxkwGVp0Vha1Ibr0kJG0HdnqfeHME/WuAcQ==", - "path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.contracts.2.2.3.nupkg.sha512" + "sha512": "sha512-eHH/NtOAagGRFU3sPA4YLHgpBF//DR+MQrndh23VT88KOu39E3brliQ+xMpHaXU4Sg3RRXmHIJ01CEhFrf072w==", + "path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.4", + "hashPath": "microsoft.visualstudio.web.codegeneration.contracts.2.2.4.nupkg.sha512" }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.4": { "type": "package", "serviceable": true, - "sha512": "sha512-APdPavBUYcGPBaW4rjxBVRePWmg0ZzhIRymOzvLFWUtzfvJKw1+8PaCzsH7Uvl+felm0L1UVQwBx1Do0R7j7Xg==", - "path": "microsoft.visualstudio.web.codegeneration.core/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.core.2.2.3.nupkg.sha512" + "sha512": "sha512-BmDLlopXEWbQl4q2+2poW/rdpFKPXvEkLFsRTdA6A2H+WiNov81WS+nKZYgr9le4QO1XyuGcuksMfq0XMAVtgQ==", + "path": "microsoft.visualstudio.web.codegeneration.core/2.2.4", + "hashPath": "microsoft.visualstudio.web.codegeneration.core.2.2.4.nupkg.sha512" }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.4": { "type": "package", "serviceable": true, - "sha512": "sha512-xH50cYOU+infRq4KikBuu2qeXcwW4tE0D5TDfKLuLrEtDm90aXI+0qygPsqyISf+lOW7L7rQ64BH/dRYkK3c3Q==", - "path": "microsoft.visualstudio.web.codegeneration.design/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.design.2.2.3.nupkg.sha512" + "sha512": "sha512-X/hZMw8xTuiYt0CYLTLo8ikAO4fE4I6AuM2RcMEgcUIk8bbH05OeZI2W+5eNM/IhPAMSf3adbIgjcYa2cW+vJQ==", + "path": "microsoft.visualstudio.web.codegeneration.design/2.2.4", + "hashPath": "microsoft.visualstudio.web.codegeneration.design.2.2.4.nupkg.sha512" }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.4": { "type": "package", "serviceable": true, - "sha512": "sha512-N9S7TeFZjXzNY9OVbz4OFw9cM9oEeMaCnuLFhetNioy/wPwZbgglrctAEYxfDbvocQ17YCAVR2EMRbYHNDHyVg==", - "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.3.nupkg.sha512" + "sha512": "sha512-6aWoPy22KTE+DWLFJMp5BCS3b/dz7ptdCXBnKOj8g3Zswk+p1Q43d0meZPRBGqfwLwPKVbVjy8A1g4MaHymmkQ==", + "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.4", + "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.4.nupkg.sha512" }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.4": { "type": "package", "serviceable": true, - "sha512": "sha512-sW2lHnOoL1xFnSm/2zSedeUoQPlbhPfWjSuUYsxYUj/N5QmLmH98ZLaqP26k6Om/heR6Gux/veXI96yM1Parow==", - "path": "microsoft.visualstudio.web.codegeneration.templating/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.templating.2.2.3.nupkg.sha512" + "sha512": "sha512-MPPC1ID2FrS7TGTTb58WxNPhLN57MigZ/agflH8E7S9ZJ3UbSmkp679QetsrnRzehItww3B2yvqYSADJfQclrg==", + "path": "microsoft.visualstudio.web.codegeneration.templating/2.2.4", + "hashPath": "microsoft.visualstudio.web.codegeneration.templating.2.2.4.nupkg.sha512" }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.4": { "type": "package", "serviceable": true, - "sha512": "sha512-/r/y+XpOpbCwN/M/HopjfGTDRlmixTd4G6HG6FaBkD/YF3T1u+4WMRVtuB6zz7aw571HmX+6UokEa6HJSwkPDA==", - "path": "microsoft.visualstudio.web.codegeneration.utils/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegeneration.utils.2.2.3.nupkg.sha512" + "sha512": "sha512-CWsZ1FCKScLHOO6jHluXAYqJvqCWn35xt3tz5I2gkb1XZ37+QOZ58XDguPExISiOyXTBxwUhSEtc00OcEwvgpw==", + "path": "microsoft.visualstudio.web.codegeneration.utils/2.2.4", + "hashPath": "microsoft.visualstudio.web.codegeneration.utils.2.2.4.nupkg.sha512" }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.4": { "type": "package", "serviceable": true, - "sha512": "sha512-0gVuA4KUCHFM4M/9SjG+7j7BzZ7SW/BufF97Q78i2VV8JBbQXc/5Rf6YUG1VGW2fwSEOl9+S26utEGS+86GGGw==", - "path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.3", - "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.2.2.3.nupkg.sha512" + "sha512": "sha512-NFflOxpi1ueszxM/f4yaejbSNI93IennOLD2VNQGkcP/pXm1AlcWro7lB0OeDaVtnJpufoME8Fm2ai0CUfKfow==", + "path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.4", + "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.2.2.4.nupkg.sha512" }, "NuGet.Frameworks/4.7.0": { "type": "package", diff --git a/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.dll b/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.dll index 45152aa09b0dae3e852a60107c3caf7579f5dce2..2034bf88ff9cb312833819769263ad514a6933f9 100644 GIT binary patch delta 8552 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 LkWtUa)iL@n4CU4E delta 2988 zcmZuzdsGzH8UOC=?C$JiW?6Q5EDPC19wHCL06swxC=m(?f(Sh|1&U~58mWK^NsbFa zHw{71j!j!@&M`?%)f{4vo*J8DZ6bdpm1s?yHZ@HxqCH}3O*Bc>zS7^F9XuoHob$Wi z_q*TYe)lnV=AHTD`8)Gh588-Qwi0#OiS`oox~`5#H>~S~N>L6Xk@wZtkr#Rm*B_{_ zD1%%B{%-}mrXS?JZKe=4FrHBHHPJtPl${@5d~^6GioynbPe*KkV`F$sx1Qj7t(1J zXs^WRkR;F>c1G{m1aY%NMN^l*=K1DBxB zG;nUuFmOqYF{g#1?q=k^*%U=)eZ*PdvwHI#1C3SAZ{tzhC!%*uVwoRXR_EogcY8e$I=@hm(a; z@$eZfGw>mu-v>KiV!mD69suV{ycQ?{PuAl(FQr6E)p-aW6KLGo3@J!ua0bT)~W#EwH7oZq>2F9R>lR$nFi#KWGvHx7 zSkSDIu>aTZh7VsM?$2L7qBc#xC#Sl@R=@_-QCmgnt0Lcbm*(?Z3y8oUZ0o|vrv!{j5h<^~xlrP7dai=PcX!GS}vq)#eZcXon{(&iI z73s&;Vzld|UbORU`_R5+dlPMeeH`ug>_JJSI!Cc&qEl!^I_Btwe%{#&{axoiv|p9S z(UYl+L-#9W6RAm7f)J`wjP`9sUE-)bI_NkiHe8+6c%`}E+<*3u{rz_@cx#S!Ju=do z^mwYRuhb(N{TDEO40Usk4 zZDTY~lpK^NU;)vED@5qAupldpWpYh>XIE|8=11GM%x>+JS34AMN@i|JN&nxry&s%? zXmiJvqK4+uKUNJlZ2V0^`S7JD%pX1b>l^Ja-=5t1`ekigTQDNhG~v{$P@i-M66M;q z&aReC9W5KWrlsCqpBq{syAx|n6H?`-RsmN`5>c=#;!j2t+ZH2NfqvyP2yf2{h4uSV}%^EK<{ zlOw5rt@KAyCRs=oJsvf~Qx!eH`VKP2p1#AvFR}1(79Lf@o?uaUGJGxg`OU_w=a;+Ry43ybXBP{ioAdc8%y8LojSD!Ld4h!dROo3otCu`m8ZZ>g z!RpTxB?~PO6u$7C_^S{kD}6)Y`ye7HC`d9I+~i9{+=uu_Dx|FrDilp|R4Cv+O%!n{ zcm=#)NNu8kdcwPGk*4DFpe4ZPA3To5u*K{N*88#0cb)bBK0$vKI*n>$6Jyur1dQZnP_r1lj zey^SHYuU1@d$u+_IdC}GGAEq-tC;!=*(Xjm*`3i7#odJumo4n;@r>+vv325{uYwnx ztV}Ps&Y`{=*UFq~Zv69(=T5V}GWOhM46D8uUr^{6j0;Y5ZMS)56s2497Z1O3@h{b$ z<=^+6cD;RLev11u*ZCWtYMbnyN*l+w4>MRLt0lhbKoN;vP`@+4SnumXzR+)Nmy(bs%9zz-!@OLw;^D89v@3cAjz>zRX$`aq3t?9*a`HNXT>G!ep5^ VeKmrlUhoCf)qXpRR@eEP{|Cq>$Oixb diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.assets.cache b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.assets.cache index 235f1f88fd0899b1db3dcaf66f1505a638ee1b12..dd3345f2a2504971b52a3bb1d556d59008e45e8d 100644 GIT binary patch delta 316 zcmcaGiTlDNZjAtMcSkM;28K3`J3rUDKkt`5FCJy(#kk~#*!(4XX4V{!@0y#o_C(z8 zjT+zYGMY?3c$v{^a>8Sl$#M54B6IcbPebN1KbXvDGI^rD$mG=z_9013e`n4pJbA4o z&*b9|+o9sqKlCsOO`iRz3!!c*gz383`U(3>gfPqW#t)FgoiE$A^74LL~%Zv*cO|}EQ+p`TQ{xOnH3l5yC9f8_zPXMB-1@yU#nl>>T4lB(dpX z=NVVSEmxavbAfRKvNXsA)9o&T)PQ{hwtl+VCB{VvRlL&`E;BA*G~N#MZqGKL_{V4_ Rx#(=;u8unM}c@)+%)*#>CYx*Pi@_3GHc*Xbxi zFvKJTNQl=2e+CgCo?`5V@ z5M_wSmSKiU{9%6)#l zw)c`h&jc6&xWU5!Lkz-+h_?&iSF`j(FI&dctPa6V5JowkUxFRO(1Z|(clbnqYAb`N zr$z~2(%O<#Q?t}eNqQkmtyG@K6C_JnDpzK0Qe_3AF{_}chO~#KCD~ADmg>|b7&wXQ zmTFC9Op>E}40A$;d#5_3PAQ(!)O1Rx7PE-15L4-tI#Ly)w%KNrj@j$LYy!+)UNO7T zHaj$J7RQUEXqte&Jl+I18il(IR0N>K1_L!rCgmpO`NkK`3{T2-JR<<}V1r@eu#gQM z9$?vG^975>64S8l6sLj+qTbpHhwfF-*0NA!R~^Gsm4y0M^X zO;XdB(P5$R`FKtYw^v(Ej>EE~NP~>gTw0qNfq8r5O%~O0A;zVTN5RqeP4lsD!uGm( z8eB&r!ZJKecELIw?}*3xI39gN@LcZ$HT>xKv5DunT^FB9tNA>DHKMX|nk7wzcn3nEQ(VjH6z94BmW zB%s46@Z~4``3cJp11Ol$NS1}^vP-nPR0kdtOzQ0u40987ED8`5t^V= zd7_#@!jhI5QdtrQRs?(I3xi-pRCBq4onM7bnj`r+My#ljD$@Ry9axc%DDPmkm^s zL_0xIWjk3+QfpUi`}Vm!U+rzx+KtVIckIA{Wk1Ejg>W`dx!rN(TjFXkA+ABO76dY6 zx7*+(@HHg*$43m>2u)%hJT}IK1AD>PS72;@e0gl*9Rvx)$2`u8{n2PN(I2(*-l#Y4 zjXHU6bUN>i=H`?4M(w;e3VCnToA*ZN#RD!Y5g`ix?B(ZWs8Vp*K>5KPv z_9+UX7j*y#5e1L)JkB`05CbXIj|&rIu@m};aTHx>W4htU;y;7IfTJt07cM@96C52j zr9JTTb4{caYk)>@I9&rogkC^=pv&OENK4oUrRwyr)PrRqSu7`lk-Q4E0a za`c{?qj%jLT?)F-G>M~9`7>XNT;)$h7zDieIR&Oc1Z}{eVou`_lz_8%eKKL>X}FRxHYj(0m+hK?L@4+(U37V9f{DqshS-7eE4d?)U!Hfz8i;d+8@Huk3&D z=q>w>m>-X{+`V}D&-Z4Z{rj&U4~*S5FnaKupYQ%~8UNe&`y+4NcjgnrYaYG$x$l-P zKkcJifB%sFu=8ke)BRt_Z?50{+9l@m{fB=UXnp^^u6rgoAAa$rci6zur8gXUe&~At zzPArpAN+K?^6KY5UHh_t5{vl=;{Xeq1M&Q;M*d!h41P{Kx{4`t5!%9c z74v$ptC-}^=ql!}wXR}LT7ndi^GrEddVXdo};uWDSd{=h?O0TP!l+NfX z=1{e+j>ES_Xbay}Ox?V$Vjef6tC)q;7Pd)}95MTq5K)?+EY*_@V diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.dll b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.dll index 45152aa09b0dae3e852a60107c3caf7579f5dce2..2034bf88ff9cb312833819769263ad514a6933f9 100644 GIT binary patch delta 8552 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 LkWtUa)iL@n4CU4E delta 2988 zcmZuzdsGzH8UOC=?C$JiW?6Q5EDPC19wHCL06swxC=m(?f(Sh|1&U~58mWK^NsbFa zHw{71j!j!@&M`?%)f{4vo*J8DZ6bdpm1s?yHZ@HxqCH}3O*Bc>zS7^F9XuoHob$Wi z_q*TYe)lnV=AHTD`8)Gh588-Qwi0#OiS`oox~`5#H>~S~N>L6Xk@wZtkr#Rm*B_{_ zD1%%B{%-}mrXS?JZKe=4FrHBHHPJtPl${@5d~^6GioynbPe*KkV`F$sx1Qj7t(1J zXs^WRkR;F>c1G{m1aY%NMN^l*=K1DBxB zG;nUuFmOqYF{g#1?q=k^*%U=)eZ*PdvwHI#1C3SAZ{tzhC!%*uVwoRXR_EogcY8e$I=@hm(a; z@$eZfGw>mu-v>KiV!mD69suV{ycQ?{PuAl(FQr6E)p-aW6KLGo3@J!ua0bT)~W#EwH7oZq>2F9R>lR$nFi#KWGvHx7 zSkSDIu>aTZh7VsM?$2L7qBc#xC#Sl@R=@_-QCmgnt0Lcbm*(?Z3y8oUZ0o|vrv!{j5h<^~xlrP7dai=PcX!GS}vq)#eZcXon{(&iI z73s&;Vzld|UbORU`_R5+dlPMeeH`ug>_JJSI!Cc&qEl!^I_Btwe%{#&{axoiv|p9S z(UYl+L-#9W6RAm7f)J`wjP`9sUE-)bI_NkiHe8+6c%`}E+<*3u{rz_@cx#S!Ju=do z^mwYRuhb(N{TDEO40Usk4 zZDTY~lpK^NU;)vED@5qAupldpWpYh>XIE|8=11GM%x>+JS34AMN@i|JN&nxry&s%? zXmiJvqK4+uKUNJlZ2V0^`S7JD%pX1b>l^Ja-=5t1`ekigTQDNhG~v{$P@i-M66M;q z&aReC9W5KWrlsCqpBq{syAx|n6H?`-RsmN`5>c=#;!j2t+ZH2NfqvyP2yf2{h4uSV}%^EK<{ zlOw5rt@KAyCRs=oJsvf~Qx!eH`VKP2p1#AvFR}1(79Lf@o?uaUGJGxg`OU_w=a;+Ry43ybXBP{ioAdc8%y8LojSD!Ld4h!dROo3otCu`m8ZZ>g z!RpTxB?~PO6u$7C_^S{kD}6)Y`ye7HC`d9I+~i9{+=uu_Dx|FrDilp|R4Cv+O%!n{ zcm=#)NNu8kdcwPGk*4DFpe4ZPA3To5u*K{N*88#0cb)bBK0$vKI*n>$6Jyur1dQZnP_r1lj zey^SHYuU1@d$u+_IdC}GGAEq-tC;!=*(Xjm*`3i7#odJumo4n;@r>+vv325{uYwnx ztV}Ps&Y`{=*UFq~Zv69(=T5V}GWOhM46D8uUr^{6j0;Y5ZMS)56s2497Z1O3@h{b$ z<=^+6cD;RLev11u*ZCWtYMbnyN*l+w4>MRLt0lhbKoN;vP`@+4SnumXzR+)Nmy(bs%9zz-!@OLw;^D89v@3cAjz>zRX$`aq3t?9*a`HNXT>G!ep5^ VeKmrlUhoCf)qXpRR@eEP{|Cq>$Oixb diff --git a/RestaurantReview/RestaurantReview/obj/RestaurantReview.csproj.nuget.cache b/RestaurantReview/RestaurantReview/obj/RestaurantReview.csproj.nuget.cache index 17458f65..31f88e03 100644 --- a/RestaurantReview/RestaurantReview/obj/RestaurantReview.csproj.nuget.cache +++ b/RestaurantReview/RestaurantReview/obj/RestaurantReview.csproj.nuget.cache @@ -1,5 +1,5 @@ { "version": 1, - "dgSpecHash": "DYX97yh8R7WAxgOB0UR9i3+/ezJgvw9VUSrUaid9iJTJt2T+cYn4wqm89YJ7aOW+GSHdFQkA2sGoEVnHw2isHg==", + "dgSpecHash": "etVzMRYPC3RwChAx01ImBEnqJMz9DtN9X+K8r6fxgHjNznJ1ErpLdFqmLk4uO1mjAYsm2q72+C8U6V9jb1QofA==", "success": true } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/obj/RestaurantReview.csproj.nuget.dgspec.json b/RestaurantReview/RestaurantReview/obj/RestaurantReview.csproj.nuget.dgspec.json index d24fd56b..15dccee4 100644 --- a/RestaurantReview/RestaurantReview/obj/RestaurantReview.csproj.nuget.dgspec.json +++ b/RestaurantReview/RestaurantReview/obj/RestaurantReview.csproj.nuget.dgspec.json @@ -64,7 +64,7 @@ }, "Microsoft.VisualStudio.Web.CodeGeneration.Design": { "target": "Package", - "version": "[2.2.3, )" + "version": "[2.2.4, )" } }, "imports": [ diff --git a/RestaurantReview/RestaurantReview/obj/project.assets.json b/RestaurantReview/RestaurantReview/obj/project.assets.json index 42bb488f..cc7991d2 100644 --- a/RestaurantReview/RestaurantReview/obj/project.assets.json +++ b/RestaurantReview/RestaurantReview/obj/project.assets.json @@ -2729,11 +2729,11 @@ "lib/netstandard1.0/_._": {} } }, - "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration/2.2.4": { "type": "package", "dependencies": { "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.3" + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.4" }, "compile": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} @@ -2742,7 +2742,7 @@ "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} } }, - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.4": { "type": "package", "dependencies": { "Newtonsoft.Json": "11.0.2" @@ -2754,11 +2754,11 @@ "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} } }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.4": { "type": "package", "dependencies": { "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.3", + "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.4", "Newtonsoft.Json": "11.0.2" }, "compile": { @@ -2768,10 +2768,10 @@ "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} } }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.4": { "type": "package", "dependencies": { - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.3" + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.4" }, "compile": { "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} @@ -2780,10 +2780,10 @@ "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} } }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.4": { "type": "package", "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.3" + "Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.4" }, "compile": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} @@ -2792,12 +2792,12 @@ "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} } }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.4": { "type": "package", "dependencies": { "Microsoft.AspNetCore.Razor.Language": "2.2.0", "Microsoft.CodeAnalysis.CSharp": "2.8.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.3" + "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.4" }, "compile": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} @@ -2806,11 +2806,11 @@ "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} } }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.4": { "type": "package", "dependencies": { "Microsoft.CodeAnalysis.CSharp.Workspaces": "2.8.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.3", + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.4", "Newtonsoft.Json": "11.0.2", "NuGet.Frameworks": "4.7.0" }, @@ -2821,10 +2821,10 @@ "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} } }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.4": { "type": "package", "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration": "2.2.3" + "Microsoft.VisualStudio.Web.CodeGeneration": "2.2.4" }, "compile": { "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} @@ -7509,49 +7509,49 @@ "version.txt" ] }, - "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { - "sha512": "wc71c9HWTeXy9/w9O4Yr2LKmdJjVyIoJ/XQX8/6uma4EAVU25RLtUWlvhA0gpgFw9Kf1TkCv70x+CbKnRw/d8Q==", + "Microsoft.VisualStudio.Web.CodeGeneration/2.2.4": { + "sha512": "yBKo8R7q5fWe0PSLbLJNbgjh055y/OIM/ZwFW3iToyS9X9bfzfsTIL1LnCf3joSBbcsAS5+aIeyNlIiikXzhnw==", "type": "package", - "path": "microsoft.visualstudio.web.codegeneration/2.2.3", + "path": "microsoft.visualstudio.web.codegeneration/2.2.4", "files": [ ".nupkg.metadata", ".signature.p7s", "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll", "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.xml", - "microsoft.visualstudio.web.codegeneration.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.2.2.4.nupkg.sha512", "microsoft.visualstudio.web.codegeneration.nuspec" ] }, - "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { - "sha512": "wXlpxDfRD5aPypa0p0UE97tkRQvAz9D9FfA2GITzr+LlGIpybyGnxkwGVp0Vha1Ibr0kJG0HdnqfeHME/WuAcQ==", + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.4": { + "sha512": "eHH/NtOAagGRFU3sPA4YLHgpBF//DR+MQrndh23VT88KOu39E3brliQ+xMpHaXU4Sg3RRXmHIJ01CEhFrf072w==", "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.3", + "path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.4", "files": [ ".nupkg.metadata", ".signature.p7s", "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll", "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.xml", - "microsoft.visualstudio.web.codegeneration.contracts.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.contracts.2.2.4.nupkg.sha512", "microsoft.visualstudio.web.codegeneration.contracts.nuspec" ] }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { - "sha512": "APdPavBUYcGPBaW4rjxBVRePWmg0ZzhIRymOzvLFWUtzfvJKw1+8PaCzsH7Uvl+felm0L1UVQwBx1Do0R7j7Xg==", + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.4": { + "sha512": "BmDLlopXEWbQl4q2+2poW/rdpFKPXvEkLFsRTdA6A2H+WiNov81WS+nKZYgr9le4QO1XyuGcuksMfq0XMAVtgQ==", "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.core/2.2.3", + "path": "microsoft.visualstudio.web.codegeneration.core/2.2.4", "files": [ ".nupkg.metadata", ".signature.p7s", "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll", "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml", - "microsoft.visualstudio.web.codegeneration.core.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.core.2.2.4.nupkg.sha512", "microsoft.visualstudio.web.codegeneration.core.nuspec" ] }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { - "sha512": "xH50cYOU+infRq4KikBuu2qeXcwW4tE0D5TDfKLuLrEtDm90aXI+0qygPsqyISf+lOW7L7rQ64BH/dRYkK3c3Q==", + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.4": { + "sha512": "X/hZMw8xTuiYt0CYLTLo8ikAO4fE4I6AuM2RcMEgcUIk8bbH05OeZI2W+5eNM/IhPAMSf3adbIgjcYa2cW+vJQ==", "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.design/2.2.3", + "path": "microsoft.visualstudio.web.codegeneration.design/2.2.4", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -7559,7 +7559,7 @@ "lib/net461/dotnet-aspnet-codegenerator-design.xml", "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll", "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.xml", - "microsoft.visualstudio.web.codegeneration.design.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.design.2.2.4.nupkg.sha512", "microsoft.visualstudio.web.codegeneration.design.nuspec", "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.exe", "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.xml", @@ -7571,50 +7571,50 @@ "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.xml" ] }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { - "sha512": "N9S7TeFZjXzNY9OVbz4OFw9cM9oEeMaCnuLFhetNioy/wPwZbgglrctAEYxfDbvocQ17YCAVR2EMRbYHNDHyVg==", + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.4": { + "sha512": "6aWoPy22KTE+DWLFJMp5BCS3b/dz7ptdCXBnKOj8g3Zswk+p1Q43d0meZPRBGqfwLwPKVbVjy8A1g4MaHymmkQ==", "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.3", + "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.4", "files": [ ".nupkg.metadata", ".signature.p7s", "Templates/DbContext/NewLocalDbContext.cshtml", "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll", "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml", - "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.4.nupkg.sha512", "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec" ] }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { - "sha512": "sW2lHnOoL1xFnSm/2zSedeUoQPlbhPfWjSuUYsxYUj/N5QmLmH98ZLaqP26k6Om/heR6Gux/veXI96yM1Parow==", + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.4": { + "sha512": "MPPC1ID2FrS7TGTTb58WxNPhLN57MigZ/agflH8E7S9ZJ3UbSmkp679QetsrnRzehItww3B2yvqYSADJfQclrg==", "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.templating/2.2.3", + "path": "microsoft.visualstudio.web.codegeneration.templating/2.2.4", "files": [ ".nupkg.metadata", ".signature.p7s", "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll", "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml", - "microsoft.visualstudio.web.codegeneration.templating.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.templating.2.2.4.nupkg.sha512", "microsoft.visualstudio.web.codegeneration.templating.nuspec" ] }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { - "sha512": "/r/y+XpOpbCwN/M/HopjfGTDRlmixTd4G6HG6FaBkD/YF3T1u+4WMRVtuB6zz7aw571HmX+6UokEa6HJSwkPDA==", + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.4": { + "sha512": "CWsZ1FCKScLHOO6jHluXAYqJvqCWn35xt3tz5I2gkb1XZ37+QOZ58XDguPExISiOyXTBxwUhSEtc00OcEwvgpw==", "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.utils/2.2.3", + "path": "microsoft.visualstudio.web.codegeneration.utils/2.2.4", "files": [ ".nupkg.metadata", ".signature.p7s", "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll", "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml", - "microsoft.visualstudio.web.codegeneration.utils.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.utils.2.2.4.nupkg.sha512", "microsoft.visualstudio.web.codegeneration.utils.nuspec" ] }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { - "sha512": "0gVuA4KUCHFM4M/9SjG+7j7BzZ7SW/BufF97Q78i2VV8JBbQXc/5Rf6YUG1VGW2fwSEOl9+S26utEGS+86GGGw==", + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.4": { + "sha512": "NFflOxpi1ueszxM/f4yaejbSNI93IennOLD2VNQGkcP/pXm1AlcWro7lB0OeDaVtnJpufoME8Fm2ai0CUfKfow==", "type": "package", - "path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.3", + "path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.4", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -7892,7 +7892,7 @@ "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml", "lib/netstandard2.0/bootstrap3_identitygeneratorfilesconfig.json", "lib/netstandard2.0/bootstrap4_identitygeneratorfilesconfig.json", - "microsoft.visualstudio.web.codegenerators.mvc.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegenerators.mvc.2.2.4.nupkg.sha512", "microsoft.visualstudio.web.codegenerators.mvc.nuspec" ] }, @@ -12960,7 +12960,7 @@ "Microsoft.AspNetCore.App >= 2.2.0", "Microsoft.AspNetCore.Razor.Design >= 2.2.0", "Microsoft.NETCore.App >= 2.2.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Design >= 2.2.3" + "Microsoft.VisualStudio.Web.CodeGeneration.Design >= 2.2.4" ] }, "packageFolders": { @@ -13027,7 +13027,7 @@ }, "Microsoft.VisualStudio.Web.CodeGeneration.Design": { "target": "Package", - "version": "[2.2.3, )" + "version": "[2.2.4, )" } }, "imports": [ diff --git a/RestaurantReview/RestaurantReviewTests/ControllerTests/RestaurantsControllerTests.cs b/RestaurantReview/RestaurantReviewTests/ControllerTests/RestaurantsControllerTests.cs index 6b8e42ca..0349faba 100644 --- a/RestaurantReview/RestaurantReviewTests/ControllerTests/RestaurantsControllerTests.cs +++ b/RestaurantReview/RestaurantReviewTests/ControllerTests/RestaurantsControllerTests.cs @@ -1,16 +1,18 @@ using Microsoft.AspNetCore.Mvc; using RestaurantReview.Controllers; +using RestaurantReview.Models; using RestaurantReview.Services; +using System.Net; using Xunit; -namespace RestaurantReviewTests +namespace RestaurantReviewTests.ControllerTests { public class RestaurantsControllerTests { public IConn connection = new Conn(); [Fact] - public void RestaurantsControllerTest() + public void GetTest_ReturnsValid() { //Arrange var RC = new RestaurantsController(connection); @@ -21,5 +23,47 @@ public void RestaurantsControllerTest() //Assert Assert.IsType(result); } + + [Fact] + public void GetTest_RejectsInValid() + { + //Arrange + var RC = new RestaurantsController(connection); + + //Act + var result = RC.Get("HocusPocus"); + + //Assert + Assert.IsType(result); + } + + [Fact] + public void PostTest_SuccessReturnsOK() + { + var RC = new RestaurantsController(connection); + + var restaurant = new Restaurant(); + restaurant.Name = "My Test Restaurant"; + restaurant.City = "Pittsburgh"; + + var result = RC.Post(restaurant); + + Assert.IsType(result); + } + + [Fact] + public void PostTest_FailedReturnsNotFound() + { + var RC = new RestaurantsController(connection); + + var restaurant = new Restaurant(); + restaurant.City = "bad!!! city1234"; + restaurant.Name = "good name"; + + var result = RC.Post(restaurant); + + Assert.IsType(result); + } } -} \ No newline at end of file +} + diff --git a/RestaurantReview/RestaurantReviewTests/ControllerTests/ReviewsControllerTests.cs b/RestaurantReview/RestaurantReviewTests/ControllerTests/ReviewsControllerTests.cs new file mode 100644 index 00000000..b4176a2b --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/ControllerTests/ReviewsControllerTests.cs @@ -0,0 +1,115 @@ +using Microsoft.AspNetCore.Mvc; +using RestaurantReview.Controllers; +using RestaurantReview.DAL; +using RestaurantReview.Models; +using RestaurantReview.Services; +using System.Linq; +using System.Net; +using Xunit; + +namespace RestaurantReviewTests.ControllerTests +{ + public class ReviewsControllerTests + { + public IConn connection = new Conn(); + + [Fact] + public void GetTest_ReturnsValid() + { + //Arrange + var RC = new ReviewsController(connection); + + //Act + var result = RC.Get("user1"); + + //Assert + Assert.IsType(result); + } + + [Fact] + public void GetTest_RejectsInValid() + { + //Arrange + var RC = new ReviewsController(connection); + + //Act + var result = RC.Get("HocusPocus"); + + //Assert + Assert.IsType(result); + } + + [Fact] + public void PostTest_SuccessReturnsOK() + { + var RC = new ReviewsController(connection); + + var review = new PostReview(); + review.UserId = 1; + review.RestaurantId = 1; + review.ReviewText = "Please submit this review. the restaurant is great"; + + var result = RC.Post(review); + + Assert.IsType(result); + } + [Fact] + public void PostTest_FailureReturnsObject() + { + var RC = new ReviewsController(connection); + + var review = new PostReview(); + review.RestaurantId = 1; + review.ReviewText = "Please submit this review. the restaurant is great"; + + var result = RC.Post(review); + + Assert.IsType(result); + } + + [Fact] + public void UpdateTest_SuccessReturnsOK() + { + var RC = new ReviewsController(connection); + + var review = new UpdateReview(); + review.ReviewId = 1; + review.ReviewText = "Please update this review. the restaurant is great"; + + var result = RC.Put(review); + + Assert.IsType(result); + } + [Fact] + public void UpdateTest_FailureReturnsObject() + { + var RC = new ReviewsController(connection); + + var review = new PostReview(); + review.RestaurantId = 1; + review.ReviewText = ""; + + var result = RC.Post(review); + + Assert.IsType(result); + } + [Fact] + public void DeleteTest_SuccessReturnsOK() + { + var RC = new ReviewsController(connection); + var review = new ReviewsDAL(connection.AWSconnstring()).GetAllReviews().LastOrDefault(); + var result = RC.Delete(review.ReviewId); + Assert.IsType(result); + } + + [Fact] + public void DeleteTest_FailureReturnsObject() + { + + var RC = new ReviewsController(connection); + var review = new ReviewsDAL(connection.AWSconnstring()).GetAllReviews().LastOrDefault(); + var result = RC.Delete(review.ReviewId + 100); + Assert.IsType(result); + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/DALTests/RestaurantsDALTests.cs b/RestaurantReview/RestaurantReviewTests/DALTests/RestaurantsDALTests.cs new file mode 100644 index 00000000..79a2b02b --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/DALTests/RestaurantsDALTests.cs @@ -0,0 +1,40 @@ +using Microsoft.AspNetCore.Mvc; +using RestaurantReview.Controllers; +using RestaurantReview.DAL; +using RestaurantReview.Models; +using RestaurantReview.Services; +using System.Collections.Generic; +using System.Net; +using Xunit; + +namespace RestaurantReviewTests.DALTests +{ + public class RestaurantsDALTests + { + + [Fact] + public void PostRestaurant_AddsNewRestaurant() + { + var restaurant = new Restaurant + { + City = "Boston", + Name = "The ultimate test restaurant" + }; + + var dal = new RestaurantsDAL(new Conn().AWSconnstring()); + var listcount = dal.GetRestaurants().Count; + var post = dal.PostRestaurant(restaurant); + var listCountAfterPost = dal.GetRestaurants().Count; + Assert.True(listCountAfterPost == listcount + 1); + } + + [Fact] + public void GetRestaurants_ReturnsList() + { + var dal = new RestaurantsDAL(new Conn().AWSconnstring()); + var list = dal.GetRestaurants(); + + Assert.True(list.Count > 1); + } + } +} diff --git a/RestaurantReview/RestaurantReviewTests/DALTests/ReviewsDALTests.cs b/RestaurantReview/RestaurantReviewTests/DALTests/ReviewsDALTests.cs new file mode 100644 index 00000000..526a54a4 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/DALTests/ReviewsDALTests.cs @@ -0,0 +1,74 @@ +using RestaurantReview.DAL; +using RestaurantReview.Models; +using RestaurantReview.Services; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using Xunit; + +namespace RestaurantReviewTests.DALTests +{ + public class ReviewsDALTests + { + [Fact] + public void PostReview_AddsNewReview() + { + var review = new PostReview + { + RestaurantId = 1, + UserId = 2, + ReviewText = "add this review. restaurant was great." + }; + + var dal = new ReviewsDAL(new Conn().AWSconnstring()); + var result = dal.PostReview(review); + Assert.True(result.IsSuccessful); + } + + [Fact] + public void GetReviews_ReturnsList() + { + var dal = new ReviewsDAL(new Conn().AWSconnstring()); + var list = dal.GetAllReviews(); + + Assert.True(list.Count > 1); + } + + [Fact] + public void UpdateReview_ReturnsTrue() + { + var dal = new ReviewsDAL(new Conn().AWSconnstring()); + var review = dal.GetAllReviews().FirstOrDefault(); + var updatedReview = new UpdateReview + { + ReviewId = review.ReviewId, + ReviewText = "my updated text" + }; + bool updated = dal.UpdateReview(updatedReview).IsSuccessful; + Assert.True(updated); + } + [Fact] + public void DeletesReview_LastIdChangedAfterDeletion() + { + var dal = new ReviewsDAL(new Conn().AWSconnstring()); + var review = dal.GetAllReviews().FirstOrDefault(); + + dal.DeleteReview(review.ReviewId); + var currentFirstReview = dal.GetAllReviews().FirstOrDefault(); + + Assert.True(!review.ReviewId.Equals(currentFirstReview.ReviewId)); + } + + [Fact] + public void DeletesReview_ReturnsTrue() + { + var dal = new ReviewsDAL(new Conn().AWSconnstring()); + var review = dal.GetAllReviews().FirstOrDefault(); + + bool deleted = dal.DeleteReview(review.ReviewId); + + Assert.True(deleted); + } + } +} diff --git a/RestaurantReview/RestaurantReviewTests/DALTests/UsersDALTests.cs b/RestaurantReview/RestaurantReviewTests/DALTests/UsersDALTests.cs new file mode 100644 index 00000000..a0f764a0 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/DALTests/UsersDALTests.cs @@ -0,0 +1,33 @@ +using RestaurantReview.DAL; +using RestaurantReview.Models; +using RestaurantReview.Services; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using Xunit; + +namespace RestaurantReviewTests.DALTests +{ + public class UsersDALTests + { + + [Fact] + public void GetUsers_ReturnsList() + { + var dal = new UserDAL(new Conn().AWSconnstring()); + var result = dal.GetUsers(); + Assert.True(result.Count > 1); + } + + [Fact] + public void GetUser_ReturnsSingleUser() + { + var dal = new UserDAL(new Conn().AWSconnstring()); + + var result = dal.GetUsers().FirstOrDefault(); + + Assert.IsType(result); + } + } +} diff --git a/RestaurantReview/RestaurantReviewTests/ModelTests/GetReviewTests.cs b/RestaurantReview/RestaurantReviewTests/ModelTests/GetReviewTests.cs new file mode 100644 index 00000000..3e943ef7 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/ModelTests/GetReviewTests.cs @@ -0,0 +1,43 @@ +using RestaurantReview.Models; +using System; +using System.Collections.Generic; +using System.Text; +using Xunit; + +namespace RestaurantReviewTests.ModelTests +{ + public class GetReviewTests + { + [Fact] + public void GetReview_ReviewIdCannotBeNegative() + { + //Arrange + var sut = new GetReview + { + ReviewId = -1 + }; + + //Act + var testId = sut.IsValidId(); + + //Assert + Assert.False(testId, "should be false"); + } + + [Fact] + public void GetReview_ReviewsNeedAtLeastTwoWords() + { + //Arrange + var sut = new GetReview + { + ReviewText = "Hello" + }; + + //Act + var testText = sut.IsValidReviewText(); + + //Assert + Assert. False(testText, "should be false"); + } + } +} diff --git a/RestaurantReview/RestaurantReviewTests/ModelTests/PostReviewTests.cs b/RestaurantReview/RestaurantReviewTests/ModelTests/PostReviewTests.cs new file mode 100644 index 00000000..04a6dd55 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/ModelTests/PostReviewTests.cs @@ -0,0 +1,43 @@ +using RestaurantReview.Models; +using System; +using System.Collections.Generic; +using System.Text; +using Xunit; + +namespace RestaurantReviewTests.ModelTests +{ + public class PostReviewTests + { + [Fact] + public void PostReview_ReviewIdCannotBeNegative() + { + //Arrange + var sut = new PostReview + { + ReviewId = -1 + }; + + //Act + var testId = sut.IsValidId(); + + //Assert + Assert.False(testId, "should be false"); + } + + [Fact] + public void PostReview_ReviewsNeedAtLeastTwoWords() + { + //Arrange + var sut = new PostReview + { + ReviewText = "Hello" + }; + + //Act + var testText = sut.IsValidReviewText(); + + //Assert + Assert.False(testText, "should be false"); + } + } +} diff --git a/RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantModelTests.cs b/RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantTests.cs similarity index 96% rename from RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantModelTests.cs rename to RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantTests.cs index 689c51f5..70b0b4f6 100644 --- a/RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantModelTests.cs +++ b/RestaurantReview/RestaurantReviewTests/ModelTests/RestaurantTests.cs @@ -3,7 +3,7 @@ namespace RestaurantReviewTests.ModelTests { - public class RestaurantModelTests + public class RestaurantTests { [Fact] public void RestaurantModel_CityWithSpaceValid() diff --git a/RestaurantReview/RestaurantReviewTests/ModelTests/UpdateReviewTests.cs b/RestaurantReview/RestaurantReviewTests/ModelTests/UpdateReviewTests.cs new file mode 100644 index 00000000..fbca3483 --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/ModelTests/UpdateReviewTests.cs @@ -0,0 +1,27 @@ +using RestaurantReview.Models; +using System; +using System.Collections.Generic; +using System.Text; +using Xunit; + +namespace RestaurantReviewTests.ModelTests +{ + public class UpdateReviewTests + { + [Fact] + public void UpdateReview_ReviewTextShouldBeALeastTwoWords() + { + //Arrange + var sut = new UpdateReview + { + ReviewText = "hello" + }; + + //Act + var testText = sut.IsValidReviewText(); + + //Assert + Assert.False(testText, "should be false"); + } + } +} diff --git a/RestaurantReview/RestaurantReviewTests/ModelTests/UserTests.cs b/RestaurantReview/RestaurantReviewTests/ModelTests/UserTests.cs new file mode 100644 index 00000000..deb1ab4a --- /dev/null +++ b/RestaurantReview/RestaurantReviewTests/ModelTests/UserTests.cs @@ -0,0 +1,41 @@ +using RestaurantReview.Models; +using System; +using System.Collections.Generic; +using System.Text; +using Xunit; + +namespace RestaurantReviewTests.ModelTests +{ + public class UserTests + { + public void User_UserNameLengthSHouldBeGreaterThan7() + { + //Arrange + var sut = new User + { + UserName = "myself" + }; + + //Act + var validuser = sut.IsValidUser(); + + //Assert + Assert.False(validuser, "should be false"); + } + + public void User_UserNameLengthGreaterThan7IsValid() + { + //Arrange + var sut = new User + { + UserName = "myself123" + }; + + //Act + var validuser = sut.IsValidUser(); + + //Assert + Assert.True(validuser, "should be true"); + } + } +} diff --git a/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj b/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj index 561173e7..b1073ffb 100644 --- a/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj +++ b/RestaurantReview/RestaurantReviewTests/RestaurantReviewTests.csproj @@ -24,8 +24,4 @@ - - - - From c1a3613dc90b139d1f9293bba9f2dfbe4e418e6e Mon Sep 17 00:00:00 2001 From: tzvi-seliger Date: Thu, 31 Oct 2019 05:18:37 -0400 Subject: [PATCH 33/36] Update README.md --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index c06e51f4..48a89da3 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,18 @@ The Problem We are in the midst of building a mobile application that will let restaurant patrons rate the restaurant in which they are eating. As part of the build, we need to develop a web API that will accept and store the ratings and other sundry data from a publicly accessible interface. *Project Tracking is at https://trello.com/b/y0AEDhOj/softwriters-restaurantreviews* +***For the Purpose of API Testing, there are 4 users that currently exist.*** +-user1 +-user2 +-user3 +-user4 +***There are Restaurants in the database in the following Locations:*** +-Boston +-Pittsburgh +-New York +-Chicago +-Los Angeles **Restaurants API** - POST - `https://localhost:44353/api/Restaurants` - send JSON object in request body - for example: ```json From ad884f81e395c5ed68b7e4f9d15ec789e1c5913f Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 31 Oct 2019 05:27:26 -0400 Subject: [PATCH 34/36] saving --- .../Controllers/RestaurantsController.cs | 14 ++++++++++++++ .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 20992 -> 20992 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 7112 -> 7240 bytes .../Debug/netcoreapp2.2/RestaurantReview.dll | Bin 20992 -> 20992 bytes .../Debug/netcoreapp2.2/RestaurantReview.pdb | Bin 7112 -> 7240 bytes 5 files changed, 14 insertions(+) diff --git a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs index 0b7bace6..d4d420f2 100644 --- a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs @@ -18,6 +18,20 @@ public RestaurantsController(IConn conn) { this.connection = conn; } + [HttpGet] + public IActionResult Get() + { + try + { + if (!ModelState.IsValid) throw new Exception(); + } + catch + { + + } + var dal = new RestaurantsDAL(connection.AWSconnstring()).GetRestaurants(); + if (dal.Count >= 1) { return Ok(dal); } else { return NotFound("There are no results for this city"); } + } // GET api/Restaurants [HttpGet("{city}")] diff --git a/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.dll b/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.dll index 2034bf88ff9cb312833819769263ad514a6933f9..33288c4802716a65439eb1b87f54c7cdc4ecfc06 100644 GIT binary patch delta 5041 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 delta 4870 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 delta 602 zcmX?Mal(9pNlXM61A}rM1A_xM1H%FaAUn9EC^Ij;7|3LJ02E^ZiG>C;JOQ!;Ky3F= zPZuCln1=IWtJ)3_s$+9}O0@ZpmC^4vmoxs451?2kxZPS4A z1%P~CB>qw$-w(*whRS4ng7z0r_DJ@^E<>AU^_VD@;9z z9|bg3Z}LTs=actw?qPb%JGq9-MdAkwE5m7C3szQ!>3kJH@-*)ZFgf`KSAZ@vLjkV? zCksO|Zvv2f#Jhl#nc*Pc0w8-6-vJ=`jqd@F)Z%C0Vqu8e9L;^6*WOr<-IvkoIp1~b zmi)bPU(PQr6*bepzmaXXzjjfC$Qe;lphGkSIoTN)nSfpqXW{^{D#Q4I!n_QOl9LUj zG$y~7G~s1tWMpg%WC{WXCZiTmbS_ixugT}7EEokQb4Zsk3Qn$-Hf9u>yb(wWPkt&L P&ZQi}1~kJ`+K&MM)9Y+U diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.dll b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.dll index 2034bf88ff9cb312833819769263ad514a6933f9..33288c4802716a65439eb1b87f54c7cdc4ecfc06 100644 GIT binary patch delta 5041 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 delta 4870 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 delta 602 zcmX?Mal(9pNlXM61A}rM1A_xM1H%FaAUn9EC^Ij;7|3LJ02E^ZiG>C;JOQ!;Ky3F= zPZuCln1=IWtJ)3_s$+9}O0@ZpmC^4vmoxs451?2kxZPS4A z1%P~CB>qw$-w(*whRS4ng7z0r_DJ@^E<>AU^_VD@;9z z9|bg3Z}LTs=actw?qPb%JGq9-MdAkwE5m7C3szQ!>3kJH@-*)ZFgf`KSAZ@vLjkV? zCksO|Zvv2f#Jhl#nc*Pc0w8-6-vJ=`jqd@F)Z%C0Vqu8e9L;^6*WOr<-IvkoIp1~b zmi)bPU(PQr6*bepzmaXXzjjfC$Qe;lphGkSIoTN)nSfpqXW{^{D#Q4I!n_QOl9LUj zG$y~7G~s1tWMpg%WC{WXCZiTmbS_ixugT}7EEokQb4Zsk3Qn$-Hf9u>yb(wWPkt&L P&ZQi}1~kJ`+K&MM)9Y+U From 835e0fd0edcf351f4947d6bc3c874c635787cf05 Mon Sep 17 00:00:00 2001 From: tzvi-seliger Date: Thu, 31 Oct 2019 05:30:08 -0400 Subject: [PATCH 35/36] Update README.md --- README.md | 47 +++++++++++++++++++++++++++++++++++++---------- 1 file changed, 37 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 48a89da3..a5a45b28 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ + RestaurantReviews ================= @@ -7,17 +8,19 @@ We are in the midst of building a mobile application that will let restaurant pa *Project Tracking is at https://trello.com/b/y0AEDhOj/softwriters-restaurantreviews* ***For the Purpose of API Testing, there are 4 users that currently exist.*** --user1 --user2 --user3 --user4 +- user1 +- user2 +- user3 +- user4 ***There are Restaurants in the database in the following Locations:*** --Boston --Pittsburgh --New York --Chicago --Los Angeles + + - Boston + - Pittsburgh + - New York +- Chicago +- Los Angeles + **Restaurants API** - POST - `https://localhost:44353/api/Restaurants` - send JSON object in request body - for example: ```json @@ -26,7 +29,7 @@ We are in the midst of building a mobile application that will let restaurant pa "City": "Boston" } ``` - - GET - `https://localhost:44353/api/Restaurants/{city}` + - GET - `https://localhost:44353/api/Restaurants/{city}` example `https://localhost:44353/api/Restaurants/Boston` - Response: @@ -48,6 +51,30 @@ We are in the midst of building a mobile application that will let restaurant pa "city": "Boston" } ] +``` + - GET - `https://localhost:44353/api/Restaurants` + example + `https://localhost:44353/api/Restaurants` + This endpoint will return an unfiltered set of Restaurants. + - Response: +```json +[ + { + "restaurantId": 1, + "name": "Tonys", + "city": "Boston" + }, + { + "restaurantId": 2, + "name": "Max", + "city": "Boston" + }, + { + "restaurantId": 11, + "name": "Sams", + "city": "Boston" + } +] ``` **Reviews API** - GET - `https://localhost:44353/api/Reviews/{username}` From 712fdb2dd0e84c5ed598d9ea7cb4bd6ef26576d1 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 31 Oct 2019 05:32:26 -0400 Subject: [PATCH 36/36] edited md and formatted --- .../Controllers/RestaurantsController.cs | 4 +--- .../Controllers/ReviewsController.cs | 3 --- .../RestaurantReview/DAL/RestaurantsDAL.cs | 2 -- .../RestaurantReview/DAL/ReviewsDAL.cs | 2 +- .../RestaurantReview/Models/GetReview.cs | 7 +++++-- .../RestaurantReview/Models/PostReview.cs | 7 ++----- .../RestaurantReview/Models/UpdateReview.cs | 1 + .../RestaurantReview/Models/User.cs | 1 + .../RestaurantReview/Services/APIResponse.cs | 6 ++---- ...aurantReview.csprojAssemblyReference.cache | Bin 8787 -> 269664 bytes .../RestaurantsControllerTests.cs | 6 ++---- .../ControllerTests/ReviewsControllerTests.cs | 5 +++-- .../DALTests/RestaurantsDALTests.cs | 9 ++------- .../DALTests/ReviewsDALTests.cs | 6 ++---- .../DALTests/UsersDALTests.cs | 6 +----- .../ModelTests/GetReviewTests.cs | 7 ++----- .../ModelTests/PostReviewTests.cs | 5 +---- .../ModelTests/UpdateReviewTests.cs | 5 +---- .../ModelTests/UserTests.cs | 5 +---- 19 files changed, 28 insertions(+), 59 deletions(-) diff --git a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs index d4d420f2..20dc567a 100644 --- a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs @@ -18,6 +18,7 @@ public RestaurantsController(IConn conn) { this.connection = conn; } + [HttpGet] public IActionResult Get() { @@ -27,7 +28,6 @@ public IActionResult Get() } catch { - } var dal = new RestaurantsDAL(connection.AWSconnstring()).GetRestaurants(); if (dal.Count >= 1) { return Ok(dal); } else { return NotFound("There are no results for this city"); } @@ -43,7 +43,6 @@ public IActionResult Get(string city) } catch { - } var dal = new RestaurantsDAL(connection.AWSconnstring()).GetRestaurants() .FindAll(restaurant => restaurant.City.ToLower().Equals(city.ToLower())); @@ -60,7 +59,6 @@ public IActionResult Post([FromBody] Restaurant restaurant) } catch { - } var dal = new RestaurantsDAL(connection.AWSconnstring()).PostRestaurant(restaurant); if (dal.IsSuccessful) { return (Ok(dal.toreturn)); } else { return StatusCode(404, dal.toreturn); } diff --git a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs index 26c83e6f..53b934ca 100644 --- a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs +++ b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs @@ -42,7 +42,6 @@ public IActionResult Put([FromBody] UpdateReview updateReview) { var dal = new ReviewsDAL(connection.AWSconnstring()).UpdateReview(updateReview); if (dal.IsSuccessful) { return (Ok(dal.toreturn)); } else { return StatusCode(304, dal.toreturn); } - } // DELETE api/Reviews/{id} @@ -52,7 +51,5 @@ public IActionResult Delete(int id) bool IsSuccessful = new ReviewsDAL(connection.AWSconnstring()).DeleteReview(id); if (IsSuccessful) { return (Ok()); } else { return StatusCode(404); } } - - } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs index 425fc820..1cd42f9b 100644 --- a/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs @@ -3,8 +3,6 @@ using System; using System.Collections.Generic; using System.Data.SqlClient; -using System.Net; -using System.Web.Http; namespace RestaurantReview.DAL { diff --git a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs index cee9dc84..34d0359f 100644 --- a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs +++ b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs @@ -9,6 +9,7 @@ namespace RestaurantReview.DAL public class ReviewsDAL { private readonly string connectionstring; + public ReviewsDAL(string connString) { this.connectionstring = new Conn().AWSconnstring(); @@ -98,7 +99,6 @@ public List GetAllReviews() IsSuccessful = false; } return (IsSuccessful, toreturn); - } public bool DeleteReview(int id) diff --git a/RestaurantReview/RestaurantReview/Models/GetReview.cs b/RestaurantReview/RestaurantReview/Models/GetReview.cs index 45dd8fa3..af93c5c3 100644 --- a/RestaurantReview/RestaurantReview/Models/GetReview.cs +++ b/RestaurantReview/RestaurantReview/Models/GetReview.cs @@ -1,5 +1,4 @@ -using System; -using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations; using System.Text.RegularExpressions; namespace RestaurantReview.Models @@ -8,10 +7,13 @@ public class GetReview { [Required] public int ReviewId { get; set; } + [Required] public Restaurant Restaurant { get; set; } + [Required] public User User { get; set; } + [Required] public string ReviewText { get; set; } @@ -23,6 +25,7 @@ public bool ValidateUserNameFormat() return matches.Count == 1; } + public bool IsValidId() { return this.ReviewId > 0; diff --git a/RestaurantReview/RestaurantReview/Models/PostReview.cs b/RestaurantReview/RestaurantReview/Models/PostReview.cs index c552564a..b96a5c19 100644 --- a/RestaurantReview/RestaurantReview/Models/PostReview.cs +++ b/RestaurantReview/RestaurantReview/Models/PostReview.cs @@ -1,22 +1,20 @@ using System.ComponentModel.DataAnnotations; -using System.Text.RegularExpressions; namespace RestaurantReview.Models { public class PostReview { - public int? ReviewId { get; set; } [Required] public int? RestaurantId { get; set; } [Required] - public int UserId{ get; set; } + public int UserId { get; set; } [Required] public string ReviewText { get; set; } - + public bool IsValidId() { return this.RestaurantId > 0; @@ -26,6 +24,5 @@ public bool IsValidReviewText() { return this.ReviewText.Split(" ").Length > 1; } - } } \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/UpdateReview.cs b/RestaurantReview/RestaurantReview/Models/UpdateReview.cs index 7c9eca27..c48ac85c 100644 --- a/RestaurantReview/RestaurantReview/Models/UpdateReview.cs +++ b/RestaurantReview/RestaurantReview/Models/UpdateReview.cs @@ -6,6 +6,7 @@ public class UpdateReview { [Required] public int ReviewId { get; set; } + [Required] public string ReviewText { get; set; } diff --git a/RestaurantReview/RestaurantReview/Models/User.cs b/RestaurantReview/RestaurantReview/Models/User.cs index 1d996b05..6528e4f6 100644 --- a/RestaurantReview/RestaurantReview/Models/User.cs +++ b/RestaurantReview/RestaurantReview/Models/User.cs @@ -6,6 +6,7 @@ public class User { [Required] public int UserId { get; set; } + [Required] public string UserName { get; set; } diff --git a/RestaurantReview/RestaurantReview/Services/APIResponse.cs b/RestaurantReview/RestaurantReview/Services/APIResponse.cs index 3c3857c5..35197a6a 100644 --- a/RestaurantReview/RestaurantReview/Services/APIResponse.cs +++ b/RestaurantReview/RestaurantReview/Services/APIResponse.cs @@ -1,8 +1,4 @@ using Newtonsoft.Json; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; namespace RestaurantReview.Services { @@ -25,8 +21,10 @@ private static string GetDefaultMessageForStatusCode(int statusCode) { case 404: return "Resource not found"; + case 500: return "An unhandled error occurred"; + default: return null; } diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csprojAssemblyReference.cache b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csprojAssemblyReference.cache index a3b0ef3813e5333d733cf8452ee913a0bcc6bab2..51ff3b955958f6e53fe1e24883c98d17f34136c5 100644 GIT binary patch literal 269664 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�h zd7ca1b5jsCs<2Gn+kS`Pc`)ZBk%7JSD7Q%*yq{5~xSfwQNmWTYIPP`?e(cdSzWSgH z%Ist=PJz&a!&#K&MU>^!pqq-SlJxNSQutVW{&2dm&8DiX5S-(J(_t&ADl2@$bw*NE zW!+QY46+8e@(V=&du40<8r%P)SGJykENFAA!b0e=Gr3pAY4*2+&xa0=qNu(Qg?Dp>U$JPssh=Wzy4RY7qv{_O2Gm`N1Sn;nCT=H^F> zi}*q16SA>$6!#j(*!g&wUBJbK{8xELSapVD)Gtx$mrJ0#Aq7Ia^_N4<9!@@!X^UkXwFOV7F))}We~a-XHhTCq+Yxd zy4pg!YOXFNy~2cT7TV#Q@p{MWFg}-j(jBP)uH(0>V7>Qo=oP%0Du*pp4!as=$SoHM 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 vl#>i)7CvGVX&!;CEDtD9lP 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 ZE>fBuoenXrATp#NdwQ)5UKleP{SUN6ni&89 delta 1963 zcmZWpU2GIp6u$TF&a|@yc9*X0B2?N^t)=O9+imDBrP?j4P!&smY^!wbPe72M-EI>I z4_XLH;*$x3Ili>S#8gZa2{9<>!&YC6nizwT2cz+a#0L@+5>0%o=bPDCXS$QzZ|=GK zedn8d?>YPH&CspP)j_HLsWXS<8Afu^)^4)55tDdAm)n zUr)xq%f6$*CO10d!_F3QKo+}dCRa+m!)7-*Y=?}4Ec@sOZSq6w$QzmkgJ zy-Hd5B=o!7D}&9pFk>&B?U%g`Mhnl4oq$&S=8Q$2_a3&Jw3c)>;d$G;0(*?3%Aj#+o+Fum$AWd`tDyjs--#3(K|uaMt_D> zacliZhVro;_X_$;Q{6ooUNIg6JPv|0EXNye$4}jk1I+u_KGK`I%4$z=e3I^IDnWx4 zYG33@(result); } } -} - +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/ControllerTests/ReviewsControllerTests.cs b/RestaurantReview/RestaurantReviewTests/ControllerTests/ReviewsControllerTests.cs index b4176a2b..8980bb27 100644 --- a/RestaurantReview/RestaurantReviewTests/ControllerTests/ReviewsControllerTests.cs +++ b/RestaurantReview/RestaurantReviewTests/ControllerTests/ReviewsControllerTests.cs @@ -4,7 +4,6 @@ using RestaurantReview.Models; using RestaurantReview.Services; using System.Linq; -using System.Net; using Xunit; namespace RestaurantReviewTests.ControllerTests @@ -53,6 +52,7 @@ public void PostTest_SuccessReturnsOK() Assert.IsType(result); } + [Fact] public void PostTest_FailureReturnsObject() { @@ -80,6 +80,7 @@ public void UpdateTest_SuccessReturnsOK() Assert.IsType(result); } + [Fact] public void UpdateTest_FailureReturnsObject() { @@ -93,6 +94,7 @@ public void UpdateTest_FailureReturnsObject() Assert.IsType(result); } + [Fact] public void DeleteTest_SuccessReturnsOK() { @@ -105,7 +107,6 @@ public void DeleteTest_SuccessReturnsOK() [Fact] public void DeleteTest_FailureReturnsObject() { - var RC = new ReviewsController(connection); var review = new ReviewsDAL(connection.AWSconnstring()).GetAllReviews().LastOrDefault(); var result = RC.Delete(review.ReviewId + 100); diff --git a/RestaurantReview/RestaurantReviewTests/DALTests/RestaurantsDALTests.cs b/RestaurantReview/RestaurantReviewTests/DALTests/RestaurantsDALTests.cs index 79a2b02b..297d521c 100644 --- a/RestaurantReview/RestaurantReviewTests/DALTests/RestaurantsDALTests.cs +++ b/RestaurantReview/RestaurantReviewTests/DALTests/RestaurantsDALTests.cs @@ -1,17 +1,12 @@ -using Microsoft.AspNetCore.Mvc; -using RestaurantReview.Controllers; -using RestaurantReview.DAL; +using RestaurantReview.DAL; using RestaurantReview.Models; using RestaurantReview.Services; -using System.Collections.Generic; -using System.Net; using Xunit; namespace RestaurantReviewTests.DALTests { public class RestaurantsDALTests { - [Fact] public void PostRestaurant_AddsNewRestaurant() { @@ -37,4 +32,4 @@ public void GetRestaurants_ReturnsList() Assert.True(list.Count > 1); } } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/DALTests/ReviewsDALTests.cs b/RestaurantReview/RestaurantReviewTests/DALTests/ReviewsDALTests.cs index 526a54a4..8abe9d7f 100644 --- a/RestaurantReview/RestaurantReviewTests/DALTests/ReviewsDALTests.cs +++ b/RestaurantReview/RestaurantReviewTests/DALTests/ReviewsDALTests.cs @@ -1,10 +1,7 @@ using RestaurantReview.DAL; using RestaurantReview.Models; using RestaurantReview.Services; -using System; -using System.Collections.Generic; using System.Linq; -using System.Text; using Xunit; namespace RestaurantReviewTests.DALTests @@ -48,6 +45,7 @@ public void UpdateReview_ReturnsTrue() bool updated = dal.UpdateReview(updatedReview).IsSuccessful; Assert.True(updated); } + [Fact] public void DeletesReview_LastIdChangedAfterDeletion() { @@ -71,4 +69,4 @@ public void DeletesReview_ReturnsTrue() Assert.True(deleted); } } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/DALTests/UsersDALTests.cs b/RestaurantReview/RestaurantReviewTests/DALTests/UsersDALTests.cs index a0f764a0..779c8cc1 100644 --- a/RestaurantReview/RestaurantReviewTests/DALTests/UsersDALTests.cs +++ b/RestaurantReview/RestaurantReviewTests/DALTests/UsersDALTests.cs @@ -1,17 +1,13 @@ using RestaurantReview.DAL; using RestaurantReview.Models; using RestaurantReview.Services; -using System; -using System.Collections.Generic; using System.Linq; -using System.Text; using Xunit; namespace RestaurantReviewTests.DALTests { public class UsersDALTests { - [Fact] public void GetUsers_ReturnsList() { @@ -30,4 +26,4 @@ public void GetUser_ReturnsSingleUser() Assert.IsType(result); } } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/ModelTests/GetReviewTests.cs b/RestaurantReview/RestaurantReviewTests/ModelTests/GetReviewTests.cs index 3e943ef7..da61012b 100644 --- a/RestaurantReview/RestaurantReviewTests/ModelTests/GetReviewTests.cs +++ b/RestaurantReview/RestaurantReviewTests/ModelTests/GetReviewTests.cs @@ -1,7 +1,4 @@ using RestaurantReview.Models; -using System; -using System.Collections.Generic; -using System.Text; using Xunit; namespace RestaurantReviewTests.ModelTests @@ -37,7 +34,7 @@ public void GetReview_ReviewsNeedAtLeastTwoWords() var testText = sut.IsValidReviewText(); //Assert - Assert. False(testText, "should be false"); + Assert.False(testText, "should be false"); } } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/ModelTests/PostReviewTests.cs b/RestaurantReview/RestaurantReviewTests/ModelTests/PostReviewTests.cs index 04a6dd55..81c5f21c 100644 --- a/RestaurantReview/RestaurantReviewTests/ModelTests/PostReviewTests.cs +++ b/RestaurantReview/RestaurantReviewTests/ModelTests/PostReviewTests.cs @@ -1,7 +1,4 @@ using RestaurantReview.Models; -using System; -using System.Collections.Generic; -using System.Text; using Xunit; namespace RestaurantReviewTests.ModelTests @@ -40,4 +37,4 @@ public void PostReview_ReviewsNeedAtLeastTwoWords() Assert.False(testText, "should be false"); } } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/ModelTests/UpdateReviewTests.cs b/RestaurantReview/RestaurantReviewTests/ModelTests/UpdateReviewTests.cs index fbca3483..bb6e04b6 100644 --- a/RestaurantReview/RestaurantReviewTests/ModelTests/UpdateReviewTests.cs +++ b/RestaurantReview/RestaurantReviewTests/ModelTests/UpdateReviewTests.cs @@ -1,7 +1,4 @@ using RestaurantReview.Models; -using System; -using System.Collections.Generic; -using System.Text; using Xunit; namespace RestaurantReviewTests.ModelTests @@ -24,4 +21,4 @@ public void UpdateReview_ReviewTextShouldBeALeastTwoWords() Assert.False(testText, "should be false"); } } -} +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewTests/ModelTests/UserTests.cs b/RestaurantReview/RestaurantReviewTests/ModelTests/UserTests.cs index deb1ab4a..8400a679 100644 --- a/RestaurantReview/RestaurantReviewTests/ModelTests/UserTests.cs +++ b/RestaurantReview/RestaurantReviewTests/ModelTests/UserTests.cs @@ -1,7 +1,4 @@ using RestaurantReview.Models; -using System; -using System.Collections.Generic; -using System.Text; using Xunit; namespace RestaurantReviewTests.ModelTests @@ -38,4 +35,4 @@ public void User_UserNameLengthGreaterThan7IsValid() Assert.True(validuser, "should be true"); } } -} +} \ No newline at end of file

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 aO5D1`XLX?CGrl!lOD>*xA$J1t{ro>i2z{ym literal 0 HcmV?d00001 diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll new file mode 100644 index 0000000000000000000000000000000000000000..a68484e4d8d1e152b366bfde6714278baa11005d GIT binary patch literal 31984 zcmeIb2V7Ih_b5I$2>}9xj!F$6h)B7iBZBlIQWO+X5CRDhg#?q(L=;f5V#SIDRO~DE zuBh01uPgR~z4!9Y+$4ayyWjo&-*-RX?|c7uckkReXU@!=nK^Uj%$W&B^`C<12q6Z% z-@hZY6~6fKr^3GuN+FqTv7L=Js-LjjO7uKo8J{JTa&jf&ObIWClg<-~#4=8rfFsEh zafBjHa7-L0N6Z&EX=$-KDvFK`L8vD|M}>msd&=5wA}fvtK_cV^7&ST8uQz--@TS6x zkPa26$@#_z%s=(iKnQrR(+Jw-KN^$b|69Kb5ToFE)C-{)97#neO9e+1j~_xW;6$q`&pyw6IQ*s{tI|CZm%~P$&a9*aZSequL65w|zLkm6Jp&Ne3jwTPj4D z@Or@8=JAK&a*_zL#XyL8#XRFaK;7VN^Y|ka*aoDc=D1(s!MxFs3d*%b=yYd<)G2Ih z;1BIDZ3X`{W=^xyLx^P$Uwy@wf$fw5tk8ru zfSoxm4Q3yM$|~tVhoP~+INSs|u1gCJb8nAKNCH8p!TdzJG%*K=CqmSO)udwEgbeIq zRG}_v&VqhnBRUKT0it1N36yp)5MAuMf}q%0w}3dYV+*7d7N)(i)CRCE(zAeO2hz== z(Mz;|51NX!6F?;zIL;^m0c6nZy1-}veKAZU2K3}`m<9|x;D?!q+mA7b5sGLFtV2ebcWat^HQNm)1Xnj$!n*I01B9QFdwkkK_AgkSNKBD>e7l~ zJ}?{zdqj7n8+6g3OTwT>C6TyWftJOh6=Uw1V&I5G2a`k%erW5ephm zn2-z<@=LjP4v_PY3uo9l{);MF>L9zy>u{0tBX)v}xGnn777#?xF1Rh2Rk1TJlWD{h zlMoSeA+UvUr{*&q!SteJ!vGqFJD0A9sLr!x+BeBD)VR=!@i2;Aa0#vuD3Vx!R3y16 zlkEFSdO>fM;^CBx!!b;SyILtMEF%novS~$0q%eGA)@-=#N(ki04m3BF?5p^~O2o2X zD%XNEJCH?I2}}?WSbrP^Rmh;*1wfQx2O6Gb-@`5lKJ+}Ok`M<&)Yd+XbK8NwRb}p8vFBtQOn15GvFitr+Xa zMdC1AB`iR3Jpu`=t>J;mg7V#*NGDg)l?#1@B_tcdc&N*IIIOwwy$sA*$H^o@QKl4A z%m&@E7PN(RpEwi_8UT`!by%MWXe8%eSr8YYGZ)CG}Xu}DK5%0izAR|IPh zu00lBEN55`MZ*iK9f3F@U=zy1Eu&B*wd~@2IF7&2QB)d^Lmlv_s^K`MIHw4aFuk^Jj6Pz%|e4{_W_>;sm4H$bBUk?D>RI8N!1G7)V`u&g&xwbXfV+JcqJB+@ye6^Ob(U7^T|o~9Ovd}uM6fv8G7Mw5+(z_{QsuEzn$0fEXu0;6G6 zyeWtPb$cFqJ^~;RQb_aAPSeC`40v_WQ8tDcAm^nZELRke7M1p#g497OG39&~rc_7m zC@4fdO|uLjV+tBf!)ZFmk%Gij4LZn~g61mH+$gA0k>*7~Td5j!kS_&2p=!`U{uC6Z zk*3)UWd>8wMMYW|qC<Gc_`$0;$C`L5}!dwUmG)PMXVP{4@gy)H32xS_j5H2D{L%2qJEQG?SsfQD<=(imv80(zphl%|3z70@fR3OJ}%K?kb=$%quhlB(uVl zQ_)7+4Vn>JPC@sHNm`F-?a}5I=rzq49cY2R(#+5~3X=0;fvzdiMiET91-h<)lC(7G z9CWu0r6qdO0vXXQkpXB{=xa4ShAq7#GF3q1>D^FAYfl~9nJ&pT5omP_QAW#4mMgfKZt%E}b=zAJy9c+=h(rKW(vsrkbET(91DuMo|^oL=?MMGDC zWdaqe>*&zX9jY9AFiL4CLmT7e@k9o$SB}BF(GbQEXcSN?IXq8b{8=!R>7Y|FzB5I0 z4Y;Kt2@_+kQEimRS5xf@gIZ{4KSke>YV~f42TVzzFI1~xx`Ah@cIi1rWVxX*v-^B27mp2I4&Je#Bm4E3A}ffQMv)N5gG7LnOgG7t)q$ z4}wrv6NlThb0O@gnM(|zwbL#jifH4A5(rC~qlhb150ufi(k6hd$UwfZN~)ny2sKd* zO%Elb{xl96487$9BmJ4~1a=97;RL%)YY4581B6}BS`{bciXK4dgPegf2z7%n67_&E zj=~RsFbJii{>*eFMX3wi1fM|p%p$@XC36>~A zMvN;U{gdc7AlyoYDOz_RuBP(@!oloUFf&bHUeJ&!Xc8JS1F5AUbC5+EvVeBbpm()E zdiz5QqR?bijV_``$cf7@|i|Fgc@3@aC{nZpCb5?PHxBk zh%1BH^mASMQ^ystq^$ah^z%4tLo zs!C89Ef3&8>&fY;2*jrm4A3Dz<5EDQ{ER#D2XzbuZT54$CRG3F!8qzuV~H31eK4C6 z!E2I;$-DWbr=$c6rMcO>qM&S^RO*pJ{)+U($S{E{nwKxkhkji4Sd9n<#B*!T#4ub)FUam|a zaZ;k=1d@DVxYI|_zd8!m+;kw79$M?J+nJ__LT zQG_%=Di!3UWf%1pWC$bzQM!PSq?EHDK_Y}2@HmO3fP_+e=ZR#(96=P-C`47Oh|7Qj zMO5D8e`^a-Zvn_kx&XyXa2O#H%7naZ;ZQ+OVTJ&6r05hR7mEmyRK|mb$T@878084U zz-5ZWQkgJa>O_?&?>9NQA}*!666Jtg@iGM{j+Y^b5ao*p3s9?6VL`#2gCz_p`X(L( zBb+DV112IAj&KA8V##0yBI73*dK8m~O2jz|ik1-*NySh?ra+bw4P^iuSd6HsoUu@0 zHb_6D!0e$$uLS`|N4Wxttf&Q%p(Mqnh2~{vQ&W!0ti%-c0udBu2nBpBNv-MWcyhK- z;xr0SO3V)oP=K;>3Q#mg(J?4aAdAV9rHg^-J}`i|G$oAr2+EUy^!?srp zej49Uu>|)YmQ3m^!$6y|g7UIuc@hDV3uYis3Ic@Nha(EHMnU47T<9PPH8DV?@B?HZ z{AqbI0cwf$!6MKCpk>+R^0NPwDo8BK5N75{D7w}{C>0~( zWlI&Uh!?k}$vck9&|8qrE2Lu5)^sIzu@X?9>9W>@SRPD+0EvWG)QVFQ<3f3&HVF#h zq3|+cnlKxBqBUDcp&%WPRJ^1JWPnoPia69t%>p@2DVB1mw;)HH-&Tt#^@5@@Cq*}b zzZCRjW&%$l!qIrK+=u#Cnk`-|&XzhU#T(}WzVMvGV-(AiWnoy^SPF(gPw6QTWkS;5 zSrf4Qwg?G|=Sc@6T>PI*;GVoRK{h4xctXmdzf;TKUU_2D2EmdF3nWzYcMATW(*Fxa z_}SUYvFn$Ujik_*5wJunaHxk^C_(|bxrMR3^uaKNLkeXA5uPRp1g8}U&dzQH@OUW{ zW`YouZl0_)4eJ+JI~2ACUhS1pg*It52b2kaVy7Tci&3Mbqy#~nPE8}!CzlVp2w2BT zD_)F8UA`{$R8mliObjMKp)4XNH(QVcx>KH4p?1T-fsfZnIWmAUXb?~SQEFyEhQcC} zFRa)m!uCO{!GM)^Fc=n~A4GE73Gvg~0P^uvng}6<>4IErU@4bPP|%=yVnnS8GH8ih z9b?6W6dIa}!&IZbQLvr~Bvdq~HL9G@@@&}xo+vL@IrgwL41vQu`HYVeitthqorg<7 zIX^%kB)tVZKH$N8#GeRgpA4UiK=JuPjFC&+FX#w)Q(DMCOyt@iFi)6Gl|&g5${vj3 zi9p_RINknnOr;ZdufJS&p(rvTbo zbjm8BH=N|%p&$}SBw~po4h>YqU<%~sDS`MF)({pw1xW#ADgIA2fRmzgD5gVj-B{hq zBQOB+2o~IYo($5Q(&Zub5le)baWX#8C|lE}1OFByf2~@Sr7D*MY9$osDvj@-ljVz{ zK+=*9-Pby4rAThHNfo982pm?KQWOMo33kz%IdC?w(!-f)3ZXc>M1+`_`tz#(-b z3k!`h4l<*RQrkr(K*^tiK2FAy$f5-W%EhL)xB$WO$HQN+II*Qj?N^m{Q_G$Q38ig1 zSCm}@^9#!z#Z4%zbz(^oWg{u$FbU)oSTci!5?InOiNcJ;>wQ3)SR%ulJz0^meQ{u8 zVgnp+mlboXh?-9F&2S3}q0&oHNC<8(2@-<~OpG#+3^}2`fRlndl?Mm&ae&D~e87ky zB_0VNMFt1y*^nv&dNJh9fs`1Oh6X`uI$)y!%ZGS2;DaG24@$xLq*N&)a4B+t=AWz= zl|J}qD^NBp8X5;D+bEOj4%|s1Xfo~^9@Wf$zMI= zZteDT7GcU%rR()%n?iA>ra+>X%%2ZB|?<03OR5I=D-xV zQEBGj7nj$r7oj(Vrlms=X6A@u#~d8mbSj3E^pa^>t(3i>NJG6cLmJyu0~%teS3=WA z`UDhR0w^^O4L}`zLKWD=c&L^QEVJ2c6@>K4I;bN$Td&NFZDy*XO6Zl=s&Ej5&{j3b z0Wmc-D5=a6XCj~g;NDa(8HjOaM>P(iSJqjt^cJ+4rp5#cz0#Ld2`@20=}UaJf>D^- z7t+=A%D5C6{?JTK%}mwSc260hdx6!pv!EK+o1!7< z_OW!vi2b(;bS58EEr{v-(1ktik;;?14=wl9J%9L;pVU)x`rcJ@?2^+QRtg-A2ZqqB>WdOAs>Xz;Wfx{C3WcUD~$hLyOJc5j!V6!nRFzwj# zkOlm(^-8ZmexRV_O-^}BA!E1Hp+4wAEMd4UrB7AtFw1m1#8$IYvTcXira)XY+&hB< zWq8c7EXC7|@O~;<+`4fE+fQ5|C4dgg9ztd1aBpeYU+*EDq6M-bu|&|~50W}?V)N3n zh3RnK;7gJ&ZX|x(yr_@293n{%(uG1O(%oI$UER2@Tue#faSXqnd~OEM-80>dC*XT$ zkUUoxftMSPM`rK@8GMp2@D_Mw@I82fbgv9A&x|zE)ziZx-OJT2-P_ySg)2yNaZM9= zdh__+e0P3&I+xFfxQnX?*VTnfx_Fahnx~6vdWN?b>Fw^Bk?tnodU|q6uZ(mL($mw^ zEyD%McXc5J-YxI3J^1OQ zx2vn08{ZxH^oHB29t13s(IN3*KZ^J~3Ex5CxAV>CI=RCrvJF}`4cJ2ghfS1QI*dSp zf5%t#*MkdJFG1;m=TpD~Z!*#X0pj9&nD8H5A|#LsR~}^$AT27?bxlJ8nNrsQ;%Vv; za_bz9RS@cRXjo>q)71rh$>Q>~_9fM0`;Pp!GHtW!GEt0p#jTrPI%F4rvEUE1N!(Pa^+F(Xo2l<7rD~Sijxwuh(6Lb(h_~ za?X&oXO@bK=3kCYIy_yn@X>&ydv9Di_c7(`{HB+~tGTlmhGKaRWSlyMh^SaB-SzMq z^nw@qSoz>q;Jcok;BADo#x`k~2HN$*(>pFWPW@}i(yUc|qR01*fBtZGlm;#%q-#<@ zQVKp3Npf{dk|x0~Gm;c;fTUkexD@jzNt`w)Nzv0uB7qDa?%?r;QBL~bA4sQMej17k z4{&k!Knjj`A60OSdu3ddQ(TXfPOD8f&)BTjyS0%HIL>K>+s2f?2$ADpVnkLkkU?UxFg z1FRwC!%~6E_pp78Ln#o3z-Ay0ZhOUmwVVRqXcQ{{)fL*sc>Ya(n?ZTU0M9f8_tNAK z13vOqOM!q-FuVkm$^(mAX`M%aMUJFOy4c z#=xEU%eEVDt0mM92yelpR5RC5d@6e=n8M>toe;Qg+aLce{JOvm7@}ny`cf@YItp-u zxNtAV2}VHqV%!?Iu}^?Ri4;8}g7L_1GaCO5ZBts;m|r`PW&-w(aMnw4iZ|Z5AU}9i zGT{!r3}`s;Zl>B5qrhVc#qCm#C5EWI=zoQ*wQZk#Zo~rL*zuD`If0^Exc%>$8zkKB zfm`E0@cFaEaob2*S4uVmU}i~S?C^dc@9a6Ch48#FAhIWu)rARn z;mbW~1f#}}>_)b0gV83{=>)1_ETWYn(y~oHhQaNXr0Of1hIP>k`Yv*9urr?@w5P15 z+;A*e&bUgJ)A!ZTX#{w5uxb9>$JZ~lK0?5uhT}P@)xsE|0xT3z9MStQnEJFnaa?^; zmkEHHJ}ZGI&4QC0nOMZtA=wzIst>yyevVkg=bDqI7{k&xY%#kzVB6-3?(BJ1wpk>E!}DN3OSA-@#}g`uUQTF(oDeKpIYGdWwMP2c%y@c**fSvP^{QAuy~?2`uJe4D zRi_V?1nlQnOgKQ_Sd{#rTYAhYi&Ht@+8MQXmKvUtok6AJe!GxC_nENtjG^8~dZ>ZR zx6x07E=I2uj^ARMnss5#$uncCL$lwqvTDXx7+g7j+TFlu%Dw|jk4~QZ)hyNMlAYP< z%Eukv1RuL~tDRa0D=YTy8FMf7{r$SVX4h_C-Ct@s4z95)%D#Kp$gR$e7_eeo^OFWw z--%`u+}D2%&Uik}ub|zDibDO;tj}Gnc+(E6&2YH8IOKZg4zIG3H+O4rYYv@tG|{F@ z)yO>Z?zyRR={CcPABV3!)F&uBx7^H|!Q<)&%O0M&v(T^$4FsK7Tu!J%kEoDl(Di0) zh7rS{%6wvznWL);y|NB<-aCBMh`x}FMa#^Z(VjFaHL!O3aHV%>F6*iP=lstbx~y$< z-=Iy#V*(3C6d6fI)P&W9R0L(oWVv0Pozo@RPB|_2Ez`w0&bfny80!q@qxf!;)VW0} z@F-H!3c~6HBxFCP8cbFd@P87Fo@5U)TnUr3if)Pu3JMDTr~1px)a$9fW_LWZ#LycnYZ`r*gS`txJ>ZDQaYqq~* z_5_0&3;lFc=$`49x1{ade$T1+EcaUMiSovbsJ9Ed?sHqaaO2jbEEQk7;X#SA5%w$C zqGr<-eyWLc?ZQ@;Xokd(>0+EQqohN_te}}a=12}Kc$3Mq=(6I%n!D9HJGx(%YTKF% zhn!mbT(6?TpiIl8_U3+bM=zsiPaOH2_h?D~F;h)GY5 z6;XBX-7yXu&Ek&vCR>|t9=Ukoo_jrRCT!UE!SUkwsVT?xPHJAKZ3!)WGq}3x!7+~I zeYp%?UbzuDKZMDwfbiTlBv3N4; zG9t*ZB_U)Gw=>xZ%Zi3Rr&U&3*BS5vgKiLWdJEIVTqDu|ld9-zxwwF{)wPS8tEaa+ z`GdYYru*>d*^Ng1h$Eg(u0}@Ndd_88kbQBL7K|7YG+qs8yo!+jk-h`b1;GV1mqL0u zx^f*sLP<*F^;fDR(0I`#=sYD18qe?VX}muvTlUjLrPSNV6|a`M9;hugJv*>;&66cd z8=LKt6Kt$2uiK~#b00jPz~2fj?* zb9;4&>&)bJUq4L>T_15fh}mKG=plvY7BpX*VHCi1%XJ8vxrkP-amnlh8PnO>CoFNA=d)RsPupco zF?Dv#8T?%%@7_wi>!0fP>u$Vh>C(SJ2K%t+9Ta+_z(y53mnqW)%=yWN4N(__1@(9^Fab8B?Ta+RH+-j>MK z8;j>^YfRZ}+@Cs&Orgv)mijc?anoNp@QDsabXd!{9kBJ-2C3e%)NvijE?Bha`W;)P zu(ufgo=^~oA6)l_%Z36@Kpxz3#P=I0+l(Z=TtRtpy3Yt^O-Z zYP}>esRPMxFq@mo;RMdfkIVKmxhOthtgPEr6gi|iO!ewln;Y}<#-3U!4IXi+?Aq&HuRN9Xz%KgGNtWaMZsqtns>D%&%ASJtf;I$!Oe@ok!{ z^X+`+`0EB_;)k=9X8xXCb;vW?x5mYH%86Pp=IEs8zU6lI zDlS_hFU6!kIO~}9GQ{`6YBlsOw06On0TXTG9u8gE<5lP>&u(4|HWnn+wOdemOm}kM zZhKd&r_j$S71%&fVEsvLtQqtP;yXiyq{F9;^7=zfqJinP84TDyRFHa1b;a()kYK1# z1%vV2f}>#r?dutC^f}w{Gj7dJ^;ympFYUJTvLo4{g~))$&@^X(XD|=;_(3S(2VKTq zU7qUSx6`b9Hu_)eZ?WQLB;H*jSDzMGeUc$HK{Wvt-T%HWYms*eh;}+iHl@Ylm0An5 zSU4F<1}kCEVqSkwi^+eWgC`80FHq{Q`U`&jp6Km2!Zx)2vDkl|%cen(+0LTn5$_+T z-hjSh2`q_u(!&Y{8^C z*WNDrq-U!x@Tz(_)S}0ZGq?IaJY6`mebNzkqm=8@%_1f_?*7d!*z}o>p)pFn?mocs z6Q(7UR8`iPgwy-KKeafMC9Csz>ge3= z@O_D=-W&0{ZkgpDd#|r_H4>P!$6wcJ;=d7}3_X9YU31ZX#>R7>9d1~RU$C0>S-+G2 zZ+Ac5S}`JYhiYn=Ak{y5ZQzsWryKH%F0sdJT2_Z$+1Vaw*SPIRPJ5uTTk;J^j%mz^R~`%osFKcY8M-Q$#SMD z=aBJ7?I|t_UvX1@jM zhsC>|j8oNq&t}YiG48mb;~PT#W&b?UUbBBoDo&AW7m&x58+Aw^?eCzA6&4Zk>R!$Zqi z!#|wWf33D9E~od#kSPnpQID_;-A>aUVxR zsl8W$_Fnc^+WQapy+3Ggofahw+8gvaBFkoD?QYE|n?jaVmKyw#`mIf0!u!X~i*lW! z-;8Q|)YSdfQ`+y1s=kxp{}`?Rw|45#*E+MtHzv`8J+3!z{H@^H$)a9S#5yP0kO4WG z`m0XvE}p#A>Ac>ei8*Oo6KKbxIr_14t`GIUov@?6-(1sMW<ECcr0s|K^*cH5TGZ-b-r zgO8&tj`!;OaDHx8_G<5*=ie1ItZY9tt@HCm)t%j#1;%Mde9dz#%3o+4a@cVyXv4ja zPf9l3S+ZQ_zBT&55Nkc#e2s3sCl2W!8f36@!-lm{nTHn!elIPuEL~toW;_hk8)$rZ zftBUypyn>kJKlsJcQ}99rL?E5eR#)|{*U@TU)nTh{?V@DU1gnQOxn)8N242jnU)Nd>!i(CvUxLd2iF& zqv;z9<5kWFIK{56T3c7RYD3M;JmV|V#^~o+IlC-Z6V(iuXwy*heAH3Pi;vA?j?8@) zaq~SP5RcO+IV?PUU-W3%tdrc%-`NKSBwda&slEKkc|mulK1PF&=r8`tEw^hT%k8d$ z$CrfZ_MdY@P(I*ayd0JHrY1S5F3Naj0`Rq zgUcCpKIaxlf?wD_KkJ;$x4#wlz?2MZQ-mhhjdZCoDAoJ*q^;JtwEdqMV{O+@aGf&X z##NYSKJ(#empRi<^zOTMR+`1kK1<7w7e<~%pr=TxEZ@3uq6?-jlG>od8l$Hj#o1R6u!2F}+l?*6>reT9QnA~%gU3vCtUZq}@ z`m~|uO3v%Wvj;z%S9T%UvHw2*k85`NyUt!2damE8F%QQbebep3)X@hzr;c%Hn#wrT zd*$7Gc?Xw_&>dcp^UB!YZtz&X#g`MaCQb^-Hy{T2nH~1gKeLNbwr2TepKn9C!BP85 zrg%@6UHf1%(B+ZTx3=82ge<3ZY#jk6x144OC|yeCCjH0O_&+{%Xd`jSWcyaG>0FH# zK$QS_Ymq1wt~Nd)fFl7e=?T}qy!!tlZ)Z8~pYjhC9y1S_awhLfeMwT9n9){Nz;B9W z^4T&Zy7j@;FBE_7QD)10gCsuI$>3#!_wS9CbiJ(oKv zPx`!ZvWCIrPLGS@3w9J`L~poUw7K}5G^=y}=wAIt9j$7g`rWK%|4ZX2tU3NEkC zu@s6r?(9X*QT@;^GuV#P9<{5O`u$qE@33<-j(>_Zj`7ZVay#zyM-#oL7e>7d&O2JL zx#qm?=eddP>h6%`9ecG-LI%Mt?-&3$-Eb+iZ*!}oYa%a^yG`Fyq=F3SF4QY%@V!2(6ld{G0^4r?ORoNnoc$4 zT4mt)_zs5igEoF$`am1gITnk}slS9l(A$ox2Cy{zA90@Ak+yO#iAAfI$@{v=aMx_zFFv-fXRl0-8@#gdiT>8J&rc$_~eeYJbzR#CLt{z3{l)#t9kpvUWuGOU%>^>DDRhss?MHuxB+MZSBg5lZI(y{)4+ zZ1g(HPCIBLi2SkBsZwiOZeCrd&MgWP7GDobkbaDMu$%vHCghkX~H_~K%oYTCTkg#7HV zL)B^KsOceg@ku9UeyzDyc6l>-G-%!H@IC88O_K-a+xJ^|{@JTHpTc`?;!RjPF`#+n z*7;N3d><63z0I$g{iNzkW$BK>JJ!nz2dvMr_?Wo2Wb+yCBSkkynx?X@`mR0m)T1Fp zwb{f&bkEmEg}&_kG8?_g_wyI)ZwToh#4W#idDNP1Yc2BLzB4Q7rR&-0;U@P{L*6H> zT=Qw%kR!9tF6htC-#xLh#Bk8mmj-WMU2*4by(amzG4Jr$>Ol>&Lk?xEzx4g&v?+Oa zAK$Myd)VY!r#%B^h$F=Pl7;q7agiS$9xZ;CZTOMiL0fn9%9yzgD-*7#9(+55^QPDG zxksDNJa!B7&HH5aq)+!j9lQtYH23d5>5X+Ex&GBsuVe0&D`zKm^xxVwbBSt7&9}=w z5&EAsZ#~t>85w)>#R$KfSJWO(wCoYEuj%om0ng}-W+Ku3c=wD<$uQ$bz28~wmvmo4 zma7hhWgt!IJ7G^bOZiTI(fnm&{}I&>{%yJH@7${T|J*^|x(I-60(TflcW=3u1#ZLx z$R#oOA77-(X}?}Npy5jgG`MsCb8gj(PZAwdr{6A%R+j5Txov;7xu502Kok4H&HZCn zZe@BIGa|N+Xw)>n?m76N-erv!Ui;=S*BXXHP0>20g${9u(@?5PdGTaqvDccSO5%6fe) z=XKYlTBA3i+i!aDSBv=Wg-dJFwH?p-PycYINmc7YQc+z*=LcH5YxE0tSNT5we5Xr) z9gC>Gc8i8eZt8X25;5@d)2BgGM_wsjUtD2w#c$ojX&DIe++iwjX z7IJrQqh#n!$%BqJ8baqBc)rgx;o8W`Cs7gPvQ?9AJQ=XC{>$~X8MpV&Dl2|^@oD6P zh|bIO?UpVp$t=A;KCLiiz4NF`3GWsO5F|MPot{vO1X+iXxnQM23)@08uwcMSM8?!a z)kIcA{QWZkn7%M?!A%dRSuKlQ3hA2S;zBKU1C@&#EOx!gSTb4(!(tcsXB$xYH4)`X z_ZQ{M$g+i)c@Cp&7FkwBmQ8K(!a32&vXNwWWpy;d$n~$P!;3dxoGyi%DZ(81^JD3` zQl~6g4(Z=g0F87rcj1_|x&E30mtVzjl@k8~xCpL><6jiZe{qVhx8h5^P8_p8T75HL zRn*PC8DC`Vbndb&)2doyrtYouX>$T+mYglpoU&Jt;^g4>p;2-sXXLlt-5;`!`ZR>C zSo~UeExp0Yy>3>rVAPb738ArlE^AI3cGfu3^mVtu3B6CR{W|!LpQ=;m>ifPXb>}yk z6;yfOZss2e_AMN0{aU|d=@i+>$~VVsX`%M}#_Q}@vO-0(`f1juETnXm-};(&6<1lot~b){+eAs$8Of_D7LT0E46VKEgD_g z-+pnx@#KI78za0~2U+_L{8=jAe_lktdkZ#sQwa_Gtt&R(B5E=wd{ zwnf(HufkkP*xUJ)ch`@~(Acvf>g}z`BTU7HB_Yf5@A=yc7B?pMPOE4%OZS*napUUi z53h`B=XSbvqHfmdXUXXScLu1=8{@|;V4h*F%d;@p&Esu)@%up&#_k&dhuC({ngq^I zX1%LTnt2&rtPS0j_C1%28l{hfKJ{P7r;MJHZrsSr zNuTO_W`5u3n1<2>tJ*?c7t5i~16b?2e_nokN%G#>vDFDf`bLL`>s_+QsmxNewAzR3r$k3jh4!RB5BQWY zpdz$ioaE-{j`!YdzI_lnY?m`Xw?Kf#1zRnm`F}3v3lCJL# zuC_bXOyBj8mGs&1(hBByJ^hk(o2D$NdEM~6Q%UZ;rl7MMm+=!!*B3oLKZY@~Q?Xtj zwP0q%O0)3o;-D4L_jST_RyO%bTo;_v^swTuvUSLlxb6#SWU`mgSaaw3kY zp%e@q@K}@+f#3%6gH^68$cUooQHd-%0T*3<^mQ;edk0UxGg<4-i0Pu~=aabcyr?jN z#f=>{wT4ZrMxEX5` zT{%y_=+AolX@sz9uqcwrdViNUo9FfpEC zc2Zq`(l8#GxQ-0gewjLURD6);rKqi5Y8wKtPhWjeN+#HrFAmW<{pf92*@=dZsV@Ce zLtpg^t8f`*F5_iRO(~0CcWQdiX?yoCO+LfZ7ug*&{#a4E;|A|b=-y6d9W(VL#+Kvj zBl+WE)7B+_EwJ!?k&w4~*Z9CF|6XUb=P~^)~^Yq_vA!JD(Y zmkpu&&R<+>DcG8MR-KSJ;ulV*UA*TbmVc&s_BZF?deej}i*P-PLZ0>yA`E+o6 zf?Ahe<-vNNx5Z67{w7s#eExBN|A6Y>liGbx`Z%zi`|OT=BW2G6bq?1zj5s*rm1jx+ z?xwHi6!n5Gw-A+BF*Ug-q*m>vXuZ&x{ z3tf72`r4=7`P=4ulU#SCrOdsS;NSf6nWxB`aUS@~QEj@7h#In=ROGdu9J z)^#hc&0N1MaM6)d9Ri|mR(!OdyI41aJhwyU5_u!N`0bqW&L)Q}>k~Jv`8~MXtk@x! zYR?|%b4S>eu=h+8x##Qg`%#~@8j@q0=bLx%a^88WpNi9St(sW(tIyRtnO@j1+}&Jl z`&Ex?=Tas&$;L+L!GiM=4hOEZ9uA-fvCTHsr|!+zPpv)=eqMe4vnsvK?^;|uxm@aK zK>oWH3jDvyDEOD_*X)R(`D3>Zo3g#Y^Iei|LZdaC9lvNL-|33+v$HGT+gJ-n?xCxk zKWSHx9@%N1^W~?shGnuoJ#G)Wcx8y#ZQ{0`UWec5+BOn9Eoq)l{qLwszwK^duI~E% z<&c1xWYD`u7yM1enD0@$WXTkMPmj##tbc?x=KP$cGu)={K597tJCe#ijyT< zQl7-zaP3(on`wE)(${AQDEdBKOBbW51P z3Ojw*Fyh&=fwB6+hCyll#&-2&-U)Tcd_E`mY{l#I89u)2XEye6Y`1@a^RqoStNeVX zdFrO9SU6Ol_NyFy@crcBA7sB#(S-%5$9%J z8(-C_F0x4+6ghkNxC4H9eb3&QblD(J?7kE=Q*|l{a3n%&xq&>+}6ab!myb(n-_y?;L5#u;{YE7gAPW5P$m&S!t z@0NQ#)ULROMXKTabo0{LwJq^cr9bgY{boaTlctDOwYlNqwELVfhO~XD(-+hZ@#%7R z#A?69haobb&90M2a(6b7MkQulc)zdwex~Z6m-doJi*IQcU*1xERI)Fz-GK|mmKXP0 zkJUIOG3{qCVeXNhJyxGwH)6=7w-WQe|zIQ7UyQ?bu3&7HT4pHDMp?)x5Bqq%VTp^-9^>wPapHiln` z+$G*vTtv_=b)KRz9GteL+k<-{YqcdN`lJLd-Moc~`jVQc)Bm%(N%_s2 zKQNBk`pwD-7t*-Jl>!&Ow0>}wkUu-ZG7AI)jFhf0=}E*bvc*jaFiZJkANwC>VJ z($wXZ3-^W3EBtNJ&M9prAC@S5sYoyTebT_4Gk1+Sn$!NBFjbs2!<1%ydBPaaqe;So zqhtAz>T4_u`WoImP|jI%u`E+%z@zDOli7y{1`Jv6=o?>k$ZC0X2gmBfDS6-0VpQTr zHakDwPJZccbEQ7nZ1?=v!R^N|eLcOhG<~<5Y3;apUbH=buEPiWsf6B0)!UcHT)vx7 zSaMk^$y+$*O75Ud16RK{sLtz_7Wp}$uYX|D&WWSjZ3*71TK&!F_fsFdUR=5GNf_kd z^=wUXmwn9ejw6n0@$9lz=FQ)gW8$_vp;6)BD)(x_N#; oAJ;1HL6d#;M~>pZr6o12wQS0I;xhm9pbw!#&vd|lxdoyB1wf~5Bme*a literal 0 HcmV?d00001 diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.deps.json b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.deps.json new file mode 100644 index 00000000..7893a10e --- /dev/null +++ b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.deps.json @@ -0,0 +1,3394 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v2.2", + "signature": "fe1a309370df8d4688ac7393a6836732d5a1f0c2" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v2.2": { + "R2/1.0.0": { + "dependencies": { + "MSTest.TestAdapter": "1.4.0", + "MSTest.TestFramework": "1.4.0", + "Microsoft.AspNetCore.Mvc.Core": "2.2.5", + "Microsoft.NET.Test.Sdk": "16.0.1", + "RestaurantReview": "1.0.0", + "System.Data.SqlClient": "4.8.0-preview1.19504.10" + }, + "runtime": { + "R2.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "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" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "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" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.0" + } + } + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "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.7.0-preview1.19504.10", + "System.Threading.Tasks.Extensions": "4.5.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": { + "assemblyVersion": "2.2.5.0", + "fileVersion": "2.2.5.19109" + } + } + }, + "Microsoft.AspNetCore.Razor.Language/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "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" + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": {}, + "Microsoft.CodeAnalysis.Common/2.8.0": { + "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.7.0-preview1.19504.10", + "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" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.0.62830" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/2.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "2.8.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.0.62830" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/2.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "2.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "2.8.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.0.62830" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "2.8.0", + "System.Composition": "1.0.31", + "System.Diagnostics.Contracts": "4.3.0", + "System.Linq.Parallel": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.0.62830" + } + } + }, + "Microsoft.CodeCoverage/16.0.1": { + "runtime": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "16.0.28223.3002" + } + } + }, + "Microsoft.DotNet.PlatformAbstractions/2.1.0": { + "dependencies": { + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "2.1.0.0" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.DependencyInjection/2.2.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0" + }, + "runtime": { + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.DependencyModel/2.1.0": { + "dependencies": { + "Microsoft.DotNet.PlatformAbstractions": "2.1.0", + "Newtonsoft.Json": "11.0.2", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Linq": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "2.1.0.0" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "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" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Options/2.2.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Primitives": "2.2.0", + "System.ComponentModel.Annotations": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Primitives/2.2.0": { + "dependencies": { + "System.Memory": "4.5.1", + "System.Runtime.CompilerServices.Unsafe": "4.7.0-preview1.19504.10" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0", + "System.Buffers": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.NET.Test.Sdk/16.0.1": { + "dependencies": { + "Microsoft.CodeCoverage": "16.0.1", + "Microsoft.TestPlatform.TestHost": "16.0.1" + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview1.19504.10": {}, + "Microsoft.TestPlatform.ObjectModel/16.0.1": { + "dependencies": { + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.ComponentModel.TypeConverter": "4.1.0", + "System.Diagnostics.Process": "4.1.0", + "System.Diagnostics.TextWriterTraceListener": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Reflection.Metadata": "1.4.2", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Runtime.Loader": "4.0.0", + "System.Runtime.Serialization.Json": "4.0.2", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Threading.Thread": "4.3.0", + "System.Xml.XPath.XmlDocument": "4.0.1" + }, + "runtime": { + "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + } + }, + "resources": { + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/16.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyModel": "2.1.0", + "Microsoft.TestPlatform.ObjectModel": "16.0.1", + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netstandard1.5/testhost.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + } + }, + "resources": { + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "dependencies": { + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.3", + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.3" + }, + "runtime": { + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "2.2.0", + "Microsoft.CodeAnalysis.CSharp": "2.8.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp.Workspaces": "2.8.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.3", + "Newtonsoft.Json": "11.0.2", + "NuGet.Frameworks": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration": "2.2.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview1.19504.10", + "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + } + } + }, + "MSTest.TestAdapter/1.4.0": { + "dependencies": { + "System.Diagnostics.TextWriterTraceListener": "4.3.0" + } + }, + "MSTest.TestFramework/1.4.0": { + "runtime": { + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": { + "assemblyVersion": "14.0.0.0", + "fileVersion": "14.0.3021.1" + }, + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": { + "assemblyVersion": "14.0.0.0", + "fileVersion": "14.0.3021.1" + } + } + }, + "Newtonsoft.Json/11.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.2.21924" + } + } + }, + "NuGet.Frameworks/4.7.0": { + "runtime": { + "lib/netstandard1.6/NuGet.Frameworks.dll": { + "assemblyVersion": "4.7.0.5", + "fileVersion": "4.7.0.5148" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/debian.8-x64/native/_._": { + "rid": "debian.8-x64", + "assetType": "native" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/fedora.23-x64/native/_._": { + "rid": "fedora.23-x64", + "assetType": "native" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/fedora.24-x64/native/_._": { + "rid": "fedora.24-x64", + "assetType": "native" + } + } + }, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0-preview1.19504.10": { + "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": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "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" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/opensuse.13.2-x64/native/_._": { + "rid": "opensuse.13.2-x64", + "assetType": "native" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/opensuse.42.1-x64/native/_._": { + "rid": "opensuse.42.1-x64", + "assetType": "native" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "runtimeTargets": { + "runtime/osx.10.10-x64/native/_._": { + "rid": "osx.10.10-x64", + "assetType": "native" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/osx.10.10-x64/native/_._": { + "rid": "osx.10.10-x64", + "assetType": "native" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/rhel.7-x64/native/_._": { + "rid": "rhel.7-x64", + "assetType": "native" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/ubuntu.14.04-x64/native/_._": { + "rid": "ubuntu.14.04-x64", + "assetType": "native" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/ubuntu.16.04-x64/native/_._": { + "rid": "ubuntu.16.04-x64", + "assetType": "native" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtimeTargets": { + "runtime/ubuntu.16.10-x64/native/_._": { + "rid": "ubuntu.16.10-x64", + "assetType": "native" + } + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.0": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "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" + } + }, + "System.Collections.Immutable/1.3.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.0.1": { + "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" + } + }, + "System.Collections.Specialized/4.0.1": { + "dependencies": { + "System.Collections.NonGeneric": "4.0.1", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.0.1": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Annotations/4.5.0": {}, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.ComponentModel.Primitives/4.1.0": { + "dependencies": { + "System.ComponentModel": "4.0.1", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.1.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Primitives": "4.1.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Composition/1.0.31": { + "dependencies": { + "System.Composition.AttributedModel": "1.0.31", + "System.Composition.Convention": "1.0.31", + "System.Composition.Hosting": "1.0.31", + "System.Composition.Runtime": "1.0.31", + "System.Composition.TypedParts": "1.0.31" + } + }, + "System.Composition.AttributedModel/1.0.31": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Composition.Convention/1.0.31": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.AttributedModel": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Convention.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Composition.Hosting/1.0.31": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.Runtime": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Hosting.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Composition.Runtime/1.0.31": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Runtime.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Composition.TypedParts/1.0.31": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.AttributedModel": "1.0.31", + "System.Composition.Hosting": "1.0.31", + "System.Composition.Runtime": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.SqlClient/4.8.0-preview1.19504.10": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0-preview1.19504.10", + "System.Diagnostics.DiagnosticSource": "4.7.0-preview1.19504.10", + "System.Security.Principal.Windows": "4.7.0-preview1.19504.10", + "System.Text.Encoding.CodePages": "4.7.0-preview1.19504.10", + "runtime.native.System.Data.SqlClient.sni": "4.7.0-preview1.19504.10" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.0", + "fileVersion": "4.700.19.50410" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.0", + "fileVersion": "4.700.19.50410" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.0", + "fileVersion": "4.700.19.50410" + } + } + }, + "System.Diagnostics.Contracts/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.7.0-preview1.19504.10": { + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.50410" + } + } + }, + "System.Diagnostics.FileVersionInfo/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "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.2", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Diagnostics.Process/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "Microsoft.Win32.Primitives": "4.0.1", + "Microsoft.Win32.Registry": "4.7.0-preview1.19504.10", + "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.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Thread": "4.3.0", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.3.0" + }, + "runtimeTargets": { + "runtime/linux/lib/_._": { + "rid": "linux", + "assetType": "runtime" + }, + "runtime/osx/lib/_._": { + "rid": "osx", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.2", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.TextWriterTraceListener/4.3.0": { + "dependencies": { + "System.Diagnostics.TraceSource": "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.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Collections": "4.3.0", + "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", + "runtime.native.System": "4.3.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Dynamic.Runtime/4.3.0": { + "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" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "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" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Buffers": "4.5.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" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "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" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "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" + } + }, + "System.Linq.Expressions/4.3.0": { + "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" + } + }, + "System.Linq.Parallel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "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.Threading.Tasks": "4.3.0" + } + }, + "System.Memory/4.5.1": {}, + "System.ObjectModel/4.3.0": { + "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" + } + }, + "System.Private.DataContractSerialization/4.1.1": { + "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.1.1", + "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.XmlDocument": "4.3.0", + "System.Xml.XmlSerializer": "4.0.11" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "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" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.4.2": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.1", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview1.19504.10": { + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "4.0.6.0", + "fileVersion": "4.700.19.50410" + } + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Reflection": "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" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Runtime.Loader/4.0.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Serialization.Json/4.0.2": { + "dependencies": { + "System.IO": "4.3.0", + "System.Private.DataContractSerialization": "4.1.1", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0-preview1.19504.10": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "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" + }, + "runtimeTargets": { + "runtime/osx/lib/_._": { + "rid": "osx", + "assetType": "runtime" + }, + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "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" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "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" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "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" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "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" + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "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" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Security.Principal.Windows/4.7.0-preview1.19504.10": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + } + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0-preview1.19504.10": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime.CompilerServices.Unsafe": "4.7.0-preview1.19504.10" + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.50410" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/4.5.0": { + "runtime": { + "lib/netstandard2.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.1": {}, + "System.Threading.Tasks.Parallel/4.3.0": { + "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" + } + }, + "System.Threading.Thread/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.ThreadPool/4.0.10": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.ValueTuple/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "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.5.1" + } + }, + "System.Xml.XDocument/4.3.0": { + "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" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "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" + } + }, + "System.Xml.XmlSerializer/4.0.11": { + "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" + } + }, + "System.Xml.XPath/4.3.0": { + "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" + } + }, + "System.Xml.XPath.XDocument/4.3.0": { + "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" + } + }, + "System.Xml.XPath.XmlDocument/4.0.1": { + "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.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XPath": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "1.0.24212.1" + } + } + }, + "RestaurantReview/1.0.0": { + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration.Design": "2.2.3" + }, + "runtime": { + "RestaurantReview.dll": {} + } + } + } + }, + "libraries": { + "R2/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", + "path": "microsoft.aspnetcore.authentication.core/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", + "path": "microsoft.aspnetcore.http/2.2.0", + "hashPath": "microsoft.aspnetcore.http.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", + "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", + "path": "microsoft.aspnetcore.mvc.core/2.2.5", + "hashPath": "microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IeyzVFXZdpUAnWKWoNYE0SsP1Eu7JLjZaC94jaI1VfGtK57QykROz/iGMc8D0VcqC8i02qYTPQN/wPKm6PfidA==", + "path": "microsoft.aspnetcore.razor.language/2.2.0", + "hashPath": "microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", + "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "path": "microsoft.aspnetcore.routing/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", + "path": "microsoft.codeanalysis.analyzers/1.1.0", + "hashPath": "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-06AzG7oOLKTCN1EnoVYL1bQz+Zwa10LMpUn7Kc+PdpN8CQXRqXTyhfxuKIz6t0qWfoatBNXdHD0OLcEYp5pOvQ==", + "path": "microsoft.codeanalysis.common/2.8.0", + "hashPath": "microsoft.codeanalysis.common.2.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RizcFXuHgGmeuZhxxE1qQdhFA9lGOHlk0MJlCUt6LOnYsevo72gNikPcbANFHY02YK8L/buNrihchY0TroGvXQ==", + "path": "microsoft.codeanalysis.csharp/2.8.0", + "hashPath": "microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EJWaxi2bI47iEZen/nZkJEDZCrP9Oj3PJtMwBv34Z0ZvvdSkpgsdqlHSud8d5vC53LnCXLfBLewfqHcILDVSDw==", + "path": "microsoft.codeanalysis.csharp.workspaces/2.8.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tJlJ99SD8bHBAXShOG/pXQ1K118cnsF01obEf9aAtdgLbw3yEPahZ7qvWeGMjrheUhvOsSkv/wTKYg9euKa8MQ==", + "path": "microsoft.codeanalysis.workspaces.common/2.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512" + }, + "Microsoft.CodeCoverage/16.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W7WI3iH6At2I/9x2ODgCIIMO0QfpA7ZCoHkeygMLAaz3Nms/GsugKz9N4hkTve2Lj66g2K4CAmbwe6utEH66lw==", + "path": "microsoft.codecoverage/16.0.1", + "hashPath": "microsoft.codecoverage.16.0.1.nupkg.sha512" + }, + "Microsoft.DotNet.PlatformAbstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==", + "path": "microsoft.dotnet.platformabstractions/2.1.0", + "hashPath": "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==", + "path": "microsoft.extensions.configuration.abstractions/2.2.0", + "hashPath": "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==", + "path": "microsoft.extensions.dependencyinjection/2.2.0", + "hashPath": "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==", + "path": "microsoft.extensions.dependencymodel/2.1.0", + "hashPath": "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==", + "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==", + "path": "microsoft.extensions.hosting.abstractions/2.2.0", + "hashPath": "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "path": "microsoft.extensions.objectpool/2.2.0", + "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==", + "path": "microsoft.extensions.options/2.2.0", + "hashPath": "microsoft.extensions.options.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==", + "path": "microsoft.extensions.primitives/2.2.0", + "hashPath": "microsoft.extensions.primitives.2.2.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "path": "microsoft.net.http.headers/2.2.0", + "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512" + }, + "Microsoft.NET.Test.Sdk/16.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ON7UIMIhAwrYb0ep+3ztoWVGvtfo88IhiHVnbyOiuVsi8bOMCdMPVcR+EX1WYGgKAd030pHRaxazMlkQ6uDyJQ==", + "path": "microsoft.net.test.sdk/16.0.1", + "hashPath": "microsoft.net.test.sdk.16.0.1.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bS52lVUR5Mb/yuorV8cLSvsPDEOms1LTQ+bN8s3/rrdaU3VSpfvWGorRk5xftj1kyrJ7Dxlw/GADyyekoOfDnQ==", + "path": "microsoft.netcore.platforms/3.1.0-preview1.19504.10", + "hashPath": "microsoft.netcore.platforms.3.1.0-preview1.19504.10.nupkg.sha512" + }, + "Microsoft.TestPlatform.ObjectModel/16.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AIQ9azu2b31R8nOuFnR32d7cdWidjjLl1dFyLC3LNifzAJoEdCUgkHWUpTTHKWcHhwa9E/NRcdzVple8pbKJ9Q==", + "path": "microsoft.testplatform.objectmodel/16.0.1", + "hashPath": "microsoft.testplatform.objectmodel.16.0.1.nupkg.sha512" + }, + "Microsoft.TestPlatform.TestHost/16.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H4bYjOjkK4FYQ23RnsHm8FcqR0te8Eky9i9sS1IjVFBlDh1MU7aIwmBUpKpaSAy5xNu7UTHku4RZTWzWHDzS7g==", + "path": "microsoft.testplatform.testhost/16.0.1", + "hashPath": "microsoft.testplatform.testhost.16.0.1.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wc71c9HWTeXy9/w9O4Yr2LKmdJjVyIoJ/XQX8/6uma4EAVU25RLtUWlvhA0gpgFw9Kf1TkCv70x+CbKnRw/d8Q==", + "path": "microsoft.visualstudio.web.codegeneration/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wXlpxDfRD5aPypa0p0UE97tkRQvAz9D9FfA2GITzr+LlGIpybyGnxkwGVp0Vha1Ibr0kJG0HdnqfeHME/WuAcQ==", + "path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.contracts.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-APdPavBUYcGPBaW4rjxBVRePWmg0ZzhIRymOzvLFWUtzfvJKw1+8PaCzsH7Uvl+felm0L1UVQwBx1Do0R7j7Xg==", + "path": "microsoft.visualstudio.web.codegeneration.core/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.core.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xH50cYOU+infRq4KikBuu2qeXcwW4tE0D5TDfKLuLrEtDm90aXI+0qygPsqyISf+lOW7L7rQ64BH/dRYkK3c3Q==", + "path": "microsoft.visualstudio.web.codegeneration.design/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.design.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N9S7TeFZjXzNY9OVbz4OFw9cM9oEeMaCnuLFhetNioy/wPwZbgglrctAEYxfDbvocQ17YCAVR2EMRbYHNDHyVg==", + "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sW2lHnOoL1xFnSm/2zSedeUoQPlbhPfWjSuUYsxYUj/N5QmLmH98ZLaqP26k6Om/heR6Gux/veXI96yM1Parow==", + "path": "microsoft.visualstudio.web.codegeneration.templating/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.templating.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/r/y+XpOpbCwN/M/HopjfGTDRlmixTd4G6HG6FaBkD/YF3T1u+4WMRVtuB6zz7aw571HmX+6UokEa6HJSwkPDA==", + "path": "microsoft.visualstudio.web.codegeneration.utils/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.utils.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0gVuA4KUCHFM4M/9SjG+7j7BzZ7SW/BufF97Q78i2VV8JBbQXc/5Rf6YUG1VGW2fwSEOl9+S26utEGS+86GGGw==", + "path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.2.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", + "path": "microsoft.win32.primitives/4.0.1", + "hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CXsd7k96HdyP0vV9T5mQQ0O1Lj00xJBHTQ+d8Y99mxu/GuTB9MYKeGE1b58AIaxF88maJOFMtt6WhiqEPC9ONw==", + "path": "microsoft.win32.registry/4.7.0-preview1.19504.10", + "hashPath": "microsoft.win32.registry.4.7.0-preview1.19504.10.nupkg.sha512" + }, + "MSTest.TestAdapter/1.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2/rL9DG+cVAgPs98OGm2sbZ4FTgn+MGEan5P9NRAgqMV3+nYRKG7/5R0jY7lBMq9ISms+84MSqTHWs6QnPt4A==", + "path": "mstest.testadapter/1.4.0", + "hashPath": "mstest.testadapter.1.4.0.nupkg.sha512" + }, + "MSTest.TestFramework/1.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kV/yZ0XLiOElsVeLT0GnNrsoKcPvVNOP6Cv2zkAiceJY0rpro0L+3t54bRApLwTg1mxlo4rLziBG7X6X69KcrQ==", + "path": "mstest.testframework/1.4.0", + "hashPath": "mstest.testframework.1.4.0.nupkg.sha512" + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "path": "newtonsoft.json/11.0.2", + "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512" + }, + "NuGet.Frameworks/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qbXaB76XYUVLocLBs8Z9TS/ERGK2wm797feO+0JEPFvT7o7MRadOR77mqaSD4J1k8G+DlZQyq+MlkCuxrkr3ag==", + "path": "nuget.frameworks/4.7.0", + "hashPath": "nuget.frameworks.4.7.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ITo7gZ7yGHMkNj1O6PRmK+i917jbWNs5CZN/jwVSh8hO+3+8C5roDkXJYbM1hA5LZAUagtm9ph5whvnDOTilDg==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0-preview1.19504.10", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0-preview1.19504.10.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b+V9JC/Ii3sR659flBeaBJww111425tgjcDS1k+hqV4sGh9FALRDBvJnDtQ895gAzpPTUOFDHdqaZ2Et7BpZMg==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "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.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", + "path": "system.buffers/4.5.0", + "hashPath": "system.buffers.4.5.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", + "path": "system.collections.immutable/1.3.1", + "hashPath": "system.collections.immutable.1.3.1.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==", + "path": "system.collections.nongeneric/4.0.1", + "hashPath": "system.collections.nongeneric.4.0.1.nupkg.sha512" + }, + "System.Collections.Specialized/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==", + "path": "system.collections.specialized/4.0.1", + "hashPath": "system.collections.specialized.4.0.1.nupkg.sha512" + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", + "path": "system.componentmodel/4.0.1", + "hashPath": "system.componentmodel.4.0.1.nupkg.sha512" + }, + "System.ComponentModel.Annotations/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", + "path": "system.componentmodel.annotations/4.5.0", + "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512" + }, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==", + "path": "system.componentmodel.eventbasedasync/4.0.11", + "hashPath": "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==", + "path": "system.componentmodel.primitives/4.1.0", + "hashPath": "system.componentmodel.primitives.4.1.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==", + "path": "system.componentmodel.typeconverter/4.1.0", + "hashPath": "system.componentmodel.typeconverter.4.1.0.nupkg.sha512" + }, + "System.Composition/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==", + "path": "system.composition/1.0.31", + "hashPath": "system.composition.1.0.31.nupkg.sha512" + }, + "System.Composition.AttributedModel/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==", + "path": "system.composition.attributedmodel/1.0.31", + "hashPath": "system.composition.attributedmodel.1.0.31.nupkg.sha512" + }, + "System.Composition.Convention/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==", + "path": "system.composition.convention/1.0.31", + "hashPath": "system.composition.convention.1.0.31.nupkg.sha512" + }, + "System.Composition.Hosting/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==", + "path": "system.composition.hosting/1.0.31", + "hashPath": "system.composition.hosting.1.0.31.nupkg.sha512" + }, + "System.Composition.Runtime/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==", + "path": "system.composition.runtime/1.0.31", + "hashPath": "system.composition.runtime.1.0.31.nupkg.sha512" + }, + "System.Composition.TypedParts/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==", + "path": "system.composition.typedparts/1.0.31", + "hashPath": "system.composition.typedparts.1.0.31.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6isAINOX/v56q7JLaC9XDXzc7T/yh62QR+pa+Jt0ayjmYmLRCmzyt4rTy5jWe15ZcQfS9yQNxIzwyO7yGs6Zbg==", + "path": "system.data.sqlclient/4.8.0-preview1.19504.10", + "hashPath": "system.data.sqlclient.4.8.0-preview1.19504.10.nupkg.sha512" + }, + "System.Diagnostics.Contracts/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==", + "path": "system.diagnostics.contracts/4.3.0", + "hashPath": "system.diagnostics.contracts.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.7.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CxeUzuw9Lz1+6gkPpQI83BeoUNxn6VnDF28qazxSRyRzWSzLzoeh9ObYG7LYqcPckgm0UaE9nQdd7oDq5ncMKg==", + "path": "system.diagnostics.diagnosticsource/4.7.0-preview1.19504.10", + "hashPath": "system.diagnostics.diagnosticsource.4.7.0-preview1.19504.10.nupkg.sha512" + }, + "System.Diagnostics.FileVersionInfo/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==", + "path": "system.diagnostics.fileversioninfo/4.3.0", + "hashPath": "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Process/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", + "path": "system.diagnostics.process/4.1.0", + "hashPath": "system.diagnostics.process.4.1.0.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "path": "system.diagnostics.stacktrace/4.3.0", + "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.TextWriterTraceListener/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==", + "path": "system.diagnostics.textwritertracelistener/4.3.0", + "hashPath": "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "path": "system.diagnostics.tracesource/4.3.0", + "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", + "path": "system.globalization.extensions/4.0.1", + "hashPath": "system.globalization.extensions.4.0.1.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Linq.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==", + "path": "system.linq.parallel/4.3.0", + "hashPath": "system.linq.parallel.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==", + "path": "system.memory/4.5.1", + "hashPath": "system.memory.4.5.1.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Private.DataContractSerialization/4.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==", + "path": "system.private.datacontractserialization/4.1.1", + "hashPath": "system.private.datacontractserialization.4.1.1.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/1.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KYPNMDrLB2R+G5JJiJ2fjBpihtktKVIjsirmyyv+VDo5rQkIR9BWeCYM1wDSzbQatWNZ/NQfPsQyTB1Ui3qBfQ==", + "path": "system.reflection.metadata/1.4.2", + "hashPath": "system.reflection.metadata.1.4.2.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zw6YIPYZNJdb5fVVlLLG0i9NO/p+10u8LM8ApWat+9oLo15xaCGC6XyYALrvc+DzmxkwWLxU6n8SNf71V+x3+Q==", + "path": "system.runtime.compilerservices.unsafe/4.7.0-preview1.19504.10", + "hashPath": "system.runtime.compilerservices.unsafe.4.7.0-preview1.19504.10.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", + "path": "system.runtime.interopservices.runtimeinformation/4.0.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512" + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", + "path": "system.runtime.loader/4.0.0", + "hashPath": "system.runtime.loader.4.0.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Json/4.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==", + "path": "system.runtime.serialization.json/4.0.2", + "hashPath": "system.runtime.serialization.json.4.0.2.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", + "path": "system.runtime.serialization.primitives/4.1.1", + "hashPath": "system.runtime.serialization.primitives.4.1.1.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGk/B6+DoaHlC4PAc7OWPmxI91JtH4zXHHmwlSQAOnL5sll3hgX8kVR9loCnVHfshSo1vP8vt15Xy84xyKiqKw==", + "path": "system.security.accesscontrol/4.7.0-preview1.19504.10", + "hashPath": "system.security.accesscontrol.4.7.0-preview1.19504.10.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Df++ZTMSEaRRyov1jZ7VSm8GemEu9cJJ+QY1y6wvF631OvS5dts98RhuoqcZxACVkNRIzl5ThIqd46qd7b+Vg==", + "path": "system.security.principal.windows/4.7.0-preview1.19504.10", + "hashPath": "system.security.principal.windows.4.7.0-preview1.19504.10.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0-preview1.19504.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aYpmMGgjDYpDYtDpUHwnSqSKgatkoZ4aSteVs6WKxo3/dRbHnL5rQ3QX9g7teACCIw8T2KW9OUxIg0b1kZEABg==", + "path": "system.text.encoding.codepages/4.7.0-preview1.19504.10", + "hashPath": "system.text.encoding.codepages.4.7.0-preview1.19504.10.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==", + "path": "system.text.encodings.web/4.5.0", + "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", + "path": "system.threading.tasks.extensions/4.5.1", + "hashPath": "system.threading.tasks.extensions.4.5.1.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==", + "path": "system.threading.tasks.parallel/4.3.0", + "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" + }, + "System.Threading.Thread/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", + "path": "system.threading.thread/4.3.0", + "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" + }, + "System.Threading.ThreadPool/4.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", + "path": "system.threading.threadpool/4.0.10", + "hashPath": "system.threading.threadpool.4.0.10.nupkg.sha512" + }, + "System.ValueTuple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==", + "path": "system.valuetuple/4.3.0", + "hashPath": "system.valuetuple.4.3.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlSerializer/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", + "path": "system.xml.xmlserializer/4.0.11", + "hashPath": "system.xml.xmlserializer.4.0.11.nupkg.sha512" + }, + "System.Xml.XPath/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", + "path": "system.xml.xpath/4.3.0", + "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==", + "path": "system.xml.xpath.xdocument/4.3.0", + "hashPath": "system.xml.xpath.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath.XmlDocument/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==", + "path": "system.xml.xpath.xmldocument/4.0.1", + "hashPath": "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512" + }, + "RestaurantReview/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.dll b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.dll new file mode 100644 index 0000000000000000000000000000000000000000..57325a97c23bfa330d15fd274cb72cdaea8326fa GIT binary patch literal 5632 zcmeHLU2Ggz6+W}OcAQP^#Lf?)O<}SwZ4$`Dc9N2WIPu1I5>v13de@FhjN;kZ>-99V zGn=`yP7DH)Dg`Pc2#`t$Bq~uqq)?y_eMl)NCy6$wzeXFOp$O%m zcbxkJM4MV7VskSanlZ7HsL)LRu)bb5T}ie9KiM?K2*iZ|`1LdZc*@tvZeXhDM6-r3 zeG8bfZ2+BC)DG09G63rhUpO8FIb<}8%DOh8HkARQV@;^)UgEf-ux$xyq33m?CB$3< zj>@zBPbE#eGKn295S@)Z3EGX((9=nYucArG_28siee|myRwlh}%{^^@0(ReyPGCE_ z)WETX+=$NCctorWdXDA4cuZ54g?=vVGkT1@J$ri(vWYF^04~Ar?yqBwv8hYg)ZO{O zx81U2iC|5*_T5u?x*YdUOpOeIca3q(*L}?KiY$x*Robb|iMF+jyrb=gJw2Jc3KaSr7bt(t75w-kJn29xXQD%7-6r?x)PN`KMP;8qmerQit# zZz}i>rITqoMSq3lw$y8h4tieOndqWaayr>TeAq63uZn-_hQ#~6DX-A==?Rk zhEY|(4(dy>WD7>IP4_au2)1wo-GsyY6{Z2(koseiu_P?qmaNc(&a&U9JBf3k<`wqM zt^LrSpqUV(gDJ+IUdChn&m`AUe^SFXVEIo1rfDbO2I^Jtpn_QiM-+Ti!N(Ld0bA*u zf|nGu6?_WNpr@!iwU3^oCn!fR(X%+EzgJv?*3o$~Xd|u!gYKhe0K4fr;AiO#z`gV) z;1}pEz(IN!@DWAN0}j$@TC2^{SwM>{z|A;1sf*#dQoVcvy%anSSC}yBn&M%X*UM@8 zHsZSc(4MAgMT^IU!g=0I(8lL5EG2qTbyAoimOV|sRci-E)(ULTofNX>1hc&~YD;b= z`{;1aE7crvgz}3r5EWz4a~z?BrEx;I!nZBT*_Q7~Z!R#hvN|S$LC+UPZo#60kU@Uv zk!&sSl&l$u(jcyFnyk5jT@i)FsyJ!7B}dQ+5ioY#_bL%3nlKWj5jo<@z;rD!KF5;p zJ1b1|g_=4if_bl$4RCIYwLs92DAvklv*?HhEi0v{6rII_9W;{*re7ApaXdcayyu@? zDSzB{#I*1wqPCJb;?8+~#pIBh&ihIYdhVQEuK7x?p=8jjRBcBQCxv5PP(9h;b5I8z zQ#O%eCnkI>mK8K)V+QLq-NgnYimIXqcF}h1pozOY^hV?XF2AOrPusF)I{BbhvOR-s zDtMkFjVad-82b?62{_0xQX}hO{vh@B5#zr9yg@X-hlpKeaZ7>9ZlZI%+-i=Di znYK$KSPwVe=96MB+U8_|9PW6+`3Oubm>Wn42R@$#pA0MT{CMDyZI)dR{#&w1d{Qjf z;=GX;{(@}@84E|NfE~+AF8n$_+^L8myD15qaTRSU1a)0a2Xn>5xjZk4#5}RltEgL@ zDJhIMAJ8Vf#5>DxrZh!_Cu@=ooyVhgj69MQ0J^wxUjNRmsb?>Ke&7c?{`0M$zOn9y zl+rb=Evb{%f=*{Aqa9n^Gq0i`pf{sn~?L1`5s$(vW;S%Ao z30$X?)~H3TE)oxD>_y&zUr1L7o`Lv&Cc5WE2z8t*k|!7H zeu&21`3&g;D|LKK`9DM;q4u7RuPDxOC&I6(rg_3F-R055^sEBr`40jZ=WhKcTRAD(}+tCzC<+a%4WIudfV`o z=zxk#7O{}9y@FM6V6~1NuslMIF&roCgF&KyVh!VR`{kR5k6x%a`a+mG_GfVCXLR9O zUJ0*#e`cz1eD{Hj&WUcxbUat|XBLIb96i#WZciUZ(x;MD9V%SepQ-uoA!*HviYa$j z;v{^xY8cBAz+N zwp1c&;5yIj2{i5%@1NHo;8* literal 0 HcmV?d00001 diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.pdb b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.pdb new file mode 100644 index 0000000000000000000000000000000000000000..4498fae816e01f08ad6e3e3e01aea73a4c9e8845 GIT binary patch literal 1112 zcmZWpU1(HC6rLG3*M$6S%ui!&b;II=LC0)MgIGbb8!JkF_wJe(QE%>!+soeEySX!) z7>Ok}wnUq16%`FaiwF{bP{9cC!Jij@P#*+AC>8ot5QOF_r9p~4XR~P_88~;&_nn#V z%$%9IQGIum5=yX@fpxV;Ljw`slqZNrhLHmcccprfdkJ&%3T7pZ? z0vA9osgn!fqfmHfa#t(#&j6odfTOmHVxh@Z7prGj%THH7);|4v?xcV1;dL0I_0+QB z5{QGJ*I!ZaQ5U&tu=0YB7)=Ai2J#4@-J0*n_sHefggR(NU^r+DzGooH8712p12hFJ zY8(JG1}t*(a;UKaW-j1OfCGR7g*dJW8;+)=622^-6HzhPbBdX92M0iB1my^c$A~9n z&Q^(`tSGqo03nsHHXNI-s*aA04_5qe{zlzDz1`cNtbAQ{N+*vxFSARN@%_2SryuN? znhu@o|1*A{X!?*;qK{F^Vq1%nQh2f=Zdiwf9nyturG=+)CzlqgIBS?0BQ0cIpJjTk zbPp=-2*s6J;D#N=xH|-gH z+?1tzODk%^jbHBW?h&Ck?y9-imb%HOZ`U-w_$3&eZTWfM`|fv@pU)n?^!ECRA4_4c zG_Vaz%IX)TTV%FFs2F7B?E~h<#lRj*<_ud`xs>JRlP6r)mOSZL3YP*`@UuAdM$R)F z6&C}R800b6QJ!ntP>xTQ1>4<}u;uDyye_-}%M|j{`I>?V2$;%p9m#hJM|hT5S_mb? zA+_MQSx$f50{<-(Ed@*B2}5RN&9WS=Ep4@hv8{$OxZZEaY)d#QOh+Ekk>9AVQ9n%m zuPLQ|lKNTd4^#gb^?#-QlqTJrXNn?EWL;UcR9gm@GA#Z@*+Q8ja7;lwCjT#g*8ebC zKDu_aAvDq1aP7v?Z^r+xmr$~q6_=5< e41N|{8Qk$UMyd#9LmI82-Sh}P!}T@rc>e>SC?U@P literal 0 HcmV?d00001 diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.runtimeconfig.dev.json b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.runtimeconfig.dev.json new file mode 100644 index 00000000..48c7390d --- /dev/null +++ b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.runtimeconfig.dev.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\Raizel Seliger\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\Raizel Seliger\\.nuget\\packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ] + } +} \ No newline at end of file diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.runtimeconfig.json b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.runtimeconfig.json new file mode 100644 index 00000000..49dbda4c --- /dev/null +++ b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/R2.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "netcoreapp2.2", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "2.2.0" + } + } +} \ No newline at end of file diff --git a/RestaurantReview/R2/bin/Debug/netcoreapp2.2/RestaurantReview.dll b/RestaurantReview/R2/bin/Debug/netcoreapp2.2/RestaurantReview.dll new file mode 100644 index 0000000000000000000000000000000000000000..57d3980d48cfce4686584d523df8b4301166ddba GIT binary patch literal 14848 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 literal 0 HcmV?d00001 diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.AssemblyInfo.cs b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.AssemblyInfo.cs new file mode 100644 index 00000000..3d0b242b --- /dev/null +++ b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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: System.Reflection.AssemblyCompanyAttribute("R2")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("R2")] +[assembly: System.Reflection.AssemblyTitleAttribute("R2")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.AssemblyInfoInputs.cache b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.AssemblyInfoInputs.cache new file mode 100644 index 00000000..8c9b3759 --- /dev/null +++ b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +4fca5ae81b87f96b37c5787a6f6892d1522c2062 diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.assets.cache b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..eed156342135d30babf9b1f0d508a4a45d84aec0 GIT binary patch literal 87003 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�H|X$hN7S-KI^a#TMi lN4;XQRZPtZ(tx%T`&y$g>?2KRX$dzJjvR=e7;!_~|9>9jo(cc} literal 0 HcmV?d00001 diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.CopyComplete b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.CopyComplete new file mode 100644 index 00000000..e69de29b diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.CoreCompileInputs.cache b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.CoreCompileInputs.cache new file mode 100644 index 00000000..bfaa1d4a --- /dev/null +++ b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +8c31b0a80a8f0c08070e7f4a8ab4509bc917ec52 diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.FileListAbsolute.txt b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.FileListAbsolute.txt new file mode 100644 index 00000000..35edb6b4 --- /dev/null +++ b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csproj.FileListAbsolute.txt @@ -0,0 +1,17 @@ +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\R2.deps.json +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\R2.runtimeconfig.json +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\R2.runtimeconfig.dev.json +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\R2.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\RestaurantReview.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\RestaurantReview.pdb +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\obj\Debug\netcoreapp2.2\R2.csprojAssemblyReference.cache +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\obj\Debug\netcoreapp2.2\R2.csproj.CoreCompileInputs.cache +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\obj\Debug\netcoreapp2.2\R2.AssemblyInfoInputs.cache +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\obj\Debug\netcoreapp2.2\R2.AssemblyInfo.cs +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\obj\Debug\netcoreapp2.2\R2.csproj.CopyComplete +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\bin\Debug\netcoreapp2.2\R2.pdb +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\obj\Debug\netcoreapp2.2\R2.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\R2\obj\Debug\netcoreapp2.2\R2.pdb diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csprojAssemblyReference.cache b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.csprojAssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..17fdd8a4e632c637d3b8c43c40bf410de239c7ac GIT binary patch literal 154331 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 literal 0 HcmV?d00001 diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.dll b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.dll new file mode 100644 index 0000000000000000000000000000000000000000..57325a97c23bfa330d15fd274cb72cdaea8326fa GIT binary patch literal 5632 zcmeHLU2Ggz6+W}OcAQP^#Lf?)O<}SwZ4$`Dc9N2WIPu1I5>v13de@FhjN;kZ>-99V zGn=`yP7DH)Dg`Pc2#`t$Bq~uqq)?y_eMl)NCy6$wzeXFOp$O%m zcbxkJM4MV7VskSanlZ7HsL)LRu)bb5T}ie9KiM?K2*iZ|`1LdZc*@tvZeXhDM6-r3 zeG8bfZ2+BC)DG09G63rhUpO8FIb<}8%DOh8HkARQV@;^)UgEf-ux$xyq33m?CB$3< zj>@zBPbE#eGKn295S@)Z3EGX((9=nYucArG_28siee|myRwlh}%{^^@0(ReyPGCE_ z)WETX+=$NCctorWdXDA4cuZ54g?=vVGkT1@J$ri(vWYF^04~Ar?yqBwv8hYg)ZO{O zx81U2iC|5*_T5u?x*YdUOpOeIca3q(*L}?KiY$x*Robb|iMF+jyrb=gJw2Jc3KaSr7bt(t75w-kJn29xXQD%7-6r?x)PN`KMP;8qmerQit# zZz}i>rITqoMSq3lw$y8h4tieOndqWaayr>TeAq63uZn-_hQ#~6DX-A==?Rk zhEY|(4(dy>WD7>IP4_au2)1wo-GsyY6{Z2(koseiu_P?qmaNc(&a&U9JBf3k<`wqM zt^LrSpqUV(gDJ+IUdChn&m`AUe^SFXVEIo1rfDbO2I^Jtpn_QiM-+Ti!N(Ld0bA*u zf|nGu6?_WNpr@!iwU3^oCn!fR(X%+EzgJv?*3o$~Xd|u!gYKhe0K4fr;AiO#z`gV) z;1}pEz(IN!@DWAN0}j$@TC2^{SwM>{z|A;1sf*#dQoVcvy%anSSC}yBn&M%X*UM@8 zHsZSc(4MAgMT^IU!g=0I(8lL5EG2qTbyAoimOV|sRci-E)(ULTofNX>1hc&~YD;b= z`{;1aE7crvgz}3r5EWz4a~z?BrEx;I!nZBT*_Q7~Z!R#hvN|S$LC+UPZo#60kU@Uv zk!&sSl&l$u(jcyFnyk5jT@i)FsyJ!7B}dQ+5ioY#_bL%3nlKWj5jo<@z;rD!KF5;p zJ1b1|g_=4if_bl$4RCIYwLs92DAvklv*?HhEi0v{6rII_9W;{*re7ApaXdcayyu@? zDSzB{#I*1wqPCJb;?8+~#pIBh&ihIYdhVQEuK7x?p=8jjRBcBQCxv5PP(9h;b5I8z zQ#O%eCnkI>mK8K)V+QLq-NgnYimIXqcF}h1pozOY^hV?XF2AOrPusF)I{BbhvOR-s zDtMkFjVad-82b?62{_0xQX}hO{vh@B5#zr9yg@X-hlpKeaZ7>9ZlZI%+-i=Di znYK$KSPwVe=96MB+U8_|9PW6+`3Oubm>Wn42R@$#pA0MT{CMDyZI)dR{#&w1d{Qjf z;=GX;{(@}@84E|NfE~+AF8n$_+^L8myD15qaTRSU1a)0a2Xn>5xjZk4#5}RltEgL@ zDJhIMAJ8Vf#5>DxrZh!_Cu@=ooyVhgj69MQ0J^wxUjNRmsb?>Ke&7c?{`0M$zOn9y zl+rb=Evb{%f=*{Aqa9n^Gq0i`pf{sn~?L1`5s$(vW;S%Ao z30$X?)~H3TE)oxD>_y&zUr1L7o`Lv&Cc5WE2z8t*k|!7H zeu&21`3&g;D|LKK`9DM;q4u7RuPDxOC&I6(rg_3F-R055^sEBr`40jZ=WhKcTRAD(}+tCzC<+a%4WIudfV`o z=zxk#7O{}9y@FM6V6~1NuslMIF&roCgF&KyVh!VR`{kR5k6x%a`a+mG_GfVCXLR9O zUJ0*#e`cz1eD{Hj&WUcxbUat|XBLIb96i#WZciUZ(x;MD9V%SepQ-uoA!*HviYa$j z;v{^xY8cBAz+N zwp1c&;5yIj2{i5%@1NHo;8* literal 0 HcmV?d00001 diff --git a/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.pdb b/RestaurantReview/R2/obj/Debug/netcoreapp2.2/R2.pdb new file mode 100644 index 0000000000000000000000000000000000000000..4498fae816e01f08ad6e3e3e01aea73a4c9e8845 GIT binary patch literal 1112 zcmZWpU1(HC6rLG3*M$6S%ui!&b;II=LC0)MgIGbb8!JkF_wJe(QE%>!+soeEySX!) z7>Ok}wnUq16%`FaiwF{bP{9cC!Jij@P#*+AC>8ot5QOF_r9p~4XR~P_88~;&_nn#V z%$%9IQGIum5=yX@fpxV;Ljw`slqZNrhLHmcccprfdkJ&%3T7pZ? z0vA9osgn!fqfmHfa#t(#&j6odfTOmHVxh@Z7prGj%THH7);|4v?xcV1;dL0I_0+QB z5{QGJ*I!ZaQ5U&tu=0YB7)=Ai2J#4@-J0*n_sHefggR(NU^r+DzGooH8712p12hFJ zY8(JG1}t*(a;UKaW-j1OfCGR7g*dJW8;+)=622^-6HzhPbBdX92M0iB1my^c$A~9n z&Q^(`tSGqo03nsHHXNI-s*aA04_5qe{zlzDz1`cNtbAQ{N+*vxFSARN@%_2SryuN? znhu@o|1*A{X!?*;qK{F^Vq1%nQh2f=Zdiwf9nyturG=+)CzlqgIBS?0BQ0cIpJjTk zbPp=-2*s6J;D#N=xH|-gH z+?1tzODk%^jbHBW?h&Ck?y9-imb%HOZ`U-w_$3&eZTWfM`|fv@pU)n?^!ECRA4_4c zG_Vaz%IX)TTV%FFs2F7B?E~h<#lRj*<_ud`xs>JRlP6r)mOSZL3YP*`@UuAdM$R)F z6&C}R800b6QJ!ntP>xTQ1>4<}u;uDyye_-}%M|j{`I>?V2$;%p9m#hJM|hT5S_mb? zA+_MQSx$f50{<-(Ed@*B2}5RN&9WS=Ep4@hv8{$OxZZEaY)d#QOh+Ekk>9AVQ9n%m zuPLQ|lKNTd4^#gb^?#-QlqTJrXNn?EWL;UcR9gm@GA#Z@*+Q8ja7;lwCjT#g*8ebC zKDu_aAvDq1aP7v?Z^r+xmr$~q6_=5< e41N|{8Qk$UMyd#9LmI82-Sh}P!}T@rc>e>SC?U@P literal 0 HcmV?d00001 diff --git a/RestaurantReview/R2/obj/R2.csproj.nuget.cache b/RestaurantReview/R2/obj/R2.csproj.nuget.cache new file mode 100644 index 00000000..f32d449f --- /dev/null +++ b/RestaurantReview/R2/obj/R2.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "pFMwNsfquGsIR5dqoIfRg4n4osu+kqczmXfSlp9kSI/x2hUIKoCPg0PiFpHOXutSfyXqyd/i0CbqRfalqNgpOA==", + "success": true +} \ No newline at end of file diff --git a/RestaurantReview/R2/obj/R2.csproj.nuget.dgspec.json b/RestaurantReview/R2/obj/R2.csproj.nuget.dgspec.json new file mode 100644 index 00000000..aff44e91 --- /dev/null +++ b/RestaurantReview/R2/obj/R2.csproj.nuget.dgspec.json @@ -0,0 +1,151 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\R2\\R2.csproj": {} + }, + "projects": { + "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\R2\\R2.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\R2\\R2.csproj", + "projectName": "R2", + "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\R2\\R2.csproj", + "packagesPath": "C:\\Users\\Raizel Seliger\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\R2\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Raizel Seliger\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp2.2" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp2.2": { + "projectReferences": { + "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj": { + "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp2.2": { + "dependencies": { + "MSTest.TestAdapter": { + "target": "Package", + "version": "[1.4.0, )" + }, + "MSTest.TestFramework": { + "target": "Package", + "version": "[1.4.0, )" + }, + "Microsoft.AspNetCore.Mvc.Core": { + "target": "Package", + "version": "[2.2.5, )" + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[16.0.1, )" + }, + "Microsoft.NETCore.App": { + "suppressParent": "All", + "target": "Package", + "version": "[2.2.0, )", + "autoReferenced": true + }, + "System.Data.SqlClient": { + "target": "Package", + "version": "[4.8.0-preview1.19504.10, )" + } + }, + "imports": [ + "net461" + ], + "assetTargetFallback": true, + "warn": true + } + } + }, + "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj", + "projectName": "RestaurantReview", + "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj", + "packagesPath": "C:\\Users\\Raizel Seliger\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Raizel Seliger\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp2.2" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "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 + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design": { + "target": "Package", + "version": "[2.2.3, )" + } + }, + "imports": [ + "net461" + ], + "assetTargetFallback": true, + "warn": true + } + } + } + } +} \ No newline at end of file diff --git a/RestaurantReview/R2/obj/R2.csproj.nuget.g.props b/RestaurantReview/R2/obj/R2.csproj.nuget.g.props new file mode 100644 index 00000000..a26bb4b5 --- /dev/null +++ b/RestaurantReview/R2/obj/R2.csproj.nuget.g.props @@ -0,0 +1,24 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Raizel Seliger\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 5.1.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + + C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.codeanalysis.analyzers\1.1.0 + + \ No newline at end of file diff --git a/RestaurantReview/R2/obj/R2.csproj.nuget.g.targets b/RestaurantReview/R2/obj/R2.csproj.nuget.g.targets new file mode 100644 index 00000000..d48dc196 --- /dev/null +++ b/RestaurantReview/R2/obj/R2.csproj.nuget.g.targets @@ -0,0 +1,12 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + \ No newline at end of file diff --git a/RestaurantReview/R2/obj/project.assets.json b/RestaurantReview/R2/obj/project.assets.json new file mode 100644 index 00000000..3f3ef9bf --- /dev/null +++ b/RestaurantReview/R2/obj/project.assets.json @@ -0,0 +1,9677 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v2.2": { + "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.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.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.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.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.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.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.Core/2.2.5": { + "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.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.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.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.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.CSharp.Workspaces/2.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "[2.8.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[2.8.0]" + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[2.8.0]", + "System.Composition": "1.0.31", + "System.Diagnostics.Contracts": "4.3.0", + "System.Linq.Parallel": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} + } + }, + "Microsoft.CodeCoverage/16.0.1": { + "type": "package", + "compile": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard1.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard1.0/Microsoft.CodeCoverage.targets": {} + } + }, + "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.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.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.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.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.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.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.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.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.NET.Test.Sdk/16.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "16.0.1", + "Microsoft.TestPlatform.TestHost": "16.0.1" + }, + "build": { + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props": {}, + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} + } + }, + "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/3.1.0-preview1.19504.10": { + "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.TestPlatform.ObjectModel/16.0.1": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.ComponentModel.TypeConverter": "4.1.0", + "System.Diagnostics.Process": "4.1.0", + "System.Diagnostics.TextWriterTraceListener": "4.0.0", + "System.Diagnostics.TraceSource": "4.0.0", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Runtime.Loader": "4.0.0", + "System.Runtime.Serialization.Json": "4.0.2", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Threading.Thread": "4.0.0", + "System.Xml.XPath.XmlDocument": "4.0.1" + }, + "compile": { + "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "resource": { + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/16.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyModel": "1.0.3", + "Microsoft.TestPlatform.ObjectModel": "16.0.1", + "Newtonsoft.Json": "9.0.1" + }, + "compile": { + "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netstandard1.5/testhost.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netstandard1.5/testhost.dll": {} + }, + "resource": { + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.3", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} + }, + "runtime": { + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "2.2.0", + "Microsoft.CodeAnalysis.CSharp": "2.8.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp.Workspaces": "2.8.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.3", + "Newtonsoft.Json": "11.0.2", + "NuGet.Frameworks": "4.7.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview1.19504.10", + "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "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" + } + } + }, + "MSTest.TestAdapter/1.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Diagnostics.TextWriterTraceListener": "4.3.0" + }, + "build": { + "build/netcoreapp1.0/MSTest.TestAdapter.props": {} + } + }, + "MSTest.TestFramework/1.4.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {}, + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {}, + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {} + } + }, + "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": {} + } + }, + "NuGet.Frameworks/4.7.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.6/NuGet.Frameworks.dll": {} + }, + "runtime": { + "lib/netstandard1.6/NuGet.Frameworks.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.7.0-preview1.19504.10": { + "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.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.1", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.ComponentModel.Primitives/4.1.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Primitives": "4.1.0", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Composition/1.0.31": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "1.0.31", + "System.Composition.Convention": "1.0.31", + "System.Composition.Hosting": "1.0.31", + "System.Composition.Runtime": "1.0.31", + "System.Composition.TypedParts": "1.0.31" + } + }, + "System.Composition.AttributedModel/1.0.31": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.AttributedModel.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.AttributedModel.dll": {} + } + }, + "System.Composition.Convention/1.0.31": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.AttributedModel": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.Convention.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Convention.dll": {} + } + }, + "System.Composition.Hosting/1.0.31": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.Runtime": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.Hosting.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Hosting.dll": {} + } + }, + "System.Composition.Runtime/1.0.31": { + "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.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Runtime.dll": {} + } + }, + "System.Composition.TypedParts/1.0.31": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.AttributedModel": "1.0.31", + "System.Composition.Hosting": "1.0.31", + "System.Composition.Runtime": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.TypedParts.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.TypedParts.dll": {} + } + }, + "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.8.0-preview1.19504.10": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0-preview1.19504.10", + "System.Diagnostics.DiagnosticSource": "4.7.0-preview1.19504.10", + "System.Security.Principal.Windows": "4.7.0-preview1.19504.10", + "System.Text.Encoding.CodePages": "4.7.0-preview1.19504.10", + "runtime.native.System.Data.SqlClient.sni": "4.7.0-preview1.19504.10" + }, + "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.7.0-preview1.19504.10": { + "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.Process/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "Microsoft.Win32.Registry": "4.0.0", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.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.TextWriterTraceListener/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.TraceSource": "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" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.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.TraceSource/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.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "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.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.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "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.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.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.Parallel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "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.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Parallel.dll": {} + } + }, + "System.Memory/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "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.1.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "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/_._": {} + }, + "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/_._": {} + }, + "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.4.2": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.1", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/netstandard1.1/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.7.0-preview1.19504.10": { + "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.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "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.Json/4.0.2": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.AccessControl/4.7.0-preview1.19504.10": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Security.Principal.Windows": "4.7.0-preview1.19504.10" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "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.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/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.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.Principal.Windows/4.7.0-preview1.19504.10": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/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.7.0-preview1.19504.10": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview1.19504.10", + "System.Runtime.CompilerServices.Unsafe": "4.7.0-preview1.19504.10" + }, + "compile": { + "lib/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.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.1": { + "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/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.ValueTuple/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "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.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1" + }, + "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/System.Xml.XPath.dll": {} + }, + "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": {} + } + }, + "System.Xml.XPath.XmlDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XPath": "4.0.1", + "System.Xml.XmlDocument": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + } + }, + "RestaurantReview/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v2.2", + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration.Design": "2.2.3" + }, + "compile": { + "bin/placeholder/RestaurantReview.dll": {} + }, + "runtime": { + "bin/placeholder/RestaurantReview.dll": {} + } + } + } + }, + "libraries": { + "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.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.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.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.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.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.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.Core/2.2.5": { + "sha512": "/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.core/2.2.5", + "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.5.nupkg.sha512", + "microsoft.aspnetcore.mvc.core.nuspec" + ] + }, + "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.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.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.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.CSharp.Workspaces/2.8.0": { + "sha512": "EJWaxi2bI47iEZen/nZkJEDZCrP9Oj3PJtMwBv34Z0ZvvdSkpgsdqlHSud8d5vC53LnCXLfBLewfqHcILDVSDw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.workspaces/2.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { + "sha512": "tJlJ99SD8bHBAXShOG/pXQ1K118cnsF01obEf9aAtdgLbw3yEPahZ7qvWeGMjrheUhvOsSkv/wTKYg9euKa8MQ==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.common/2.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.dll", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.pdb", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.xml", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.xml", + "microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.common.nuspec" + ] + }, + "Microsoft.CodeCoverage/16.0.1": { + "sha512": "W7WI3iH6At2I/9x2ODgCIIMO0QfpA7ZCoHkeygMLAaz3Nms/GsugKz9N4hkTve2Lj66g2K4CAmbwe6utEH66lw==", + "type": "package", + "path": "microsoft.codecoverage/16.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard1.0/CodeCoverage/CodeCoverage.config", + "build/netstandard1.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll", + "build/netstandard1.0/CodeCoverage/covrun32.dll", + "build/netstandard1.0/CodeCoverage/msdia140.dll", + "build/netstandard1.0/Microsoft.CodeCoverage.props", + "build/netstandard1.0/Microsoft.CodeCoverage.targets", + "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.16.0.1.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "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.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.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.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.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.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.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.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.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.NET.Test.Sdk/16.0.1": { + "sha512": "ON7UIMIhAwrYb0ep+3ztoWVGvtfo88IhiHVnbyOiuVsi8bOMCdMPVcR+EX1WYGgKAd030pHRaxazMlkQ6uDyJQ==", + "type": "package", + "path": "microsoft.net.test.sdk/16.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net40/Microsoft.NET.Test.Sdk.props", + "build/net40/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets", + "build/uap10.0/Microsoft.NET.Test.Sdk.props", + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", + "microsoft.net.test.sdk.16.0.1.nupkg.sha512", + "microsoft.net.test.sdk.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/3.1.0-preview1.19504.10": { + "sha512": "bS52lVUR5Mb/yuorV8cLSvsPDEOms1LTQ+bN8s3/rrdaU3VSpfvWGorRk5xftj1kyrJ7Dxlw/GADyyekoOfDnQ==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0-preview1.19504.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0-preview1.19504.10.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.TestPlatform.ObjectModel/16.0.1": { + "sha512": "AIQ9azu2b31R8nOuFnR32d7cdWidjjLl1dFyLC3LNifzAJoEdCUgkHWUpTTHKWcHhwa9E/NRcdzVple8pbKJ9Q==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/16.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.4/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard1.4/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard1.4/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "microsoft.testplatform.objectmodel.16.0.1.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/16.0.1": { + "sha512": "H4bYjOjkK4FYQ23RnsHm8FcqR0te8Eky9i9sS1IjVFBlDh1MU7aIwmBUpKpaSAy5xNu7UTHku4RZTWzWHDzS7g==", + "type": "package", + "path": "microsoft.testplatform.testhost/16.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "build/uap10.0/Microsoft.TestPlatform.TestHost.props", + "build/uap10.0/Microsoft.TestPlatform.TestHost.targets", + "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/x64/msdia140.dll", + "build/uap10.0/x86/msdia140.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/_._", + "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll", + "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/testhost.deps.json", + "lib/netstandard1.5/testhost.dll", + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/x64/msdia140.dll", + "lib/netstandard1.5/x86/msdia140.dll", + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/uap10.0/testhost.dll", + "microsoft.testplatform.testhost.16.0.1.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { + "sha512": "wc71c9HWTeXy9/w9O4Yr2LKmdJjVyIoJ/XQX8/6uma4EAVU25RLtUWlvhA0gpgFw9Kf1TkCv70x+CbKnRw/d8Q==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.xml", + "microsoft.visualstudio.web.codegeneration.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "sha512": "wXlpxDfRD5aPypa0p0UE97tkRQvAz9D9FfA2GITzr+LlGIpybyGnxkwGVp0Vha1Ibr0kJG0HdnqfeHME/WuAcQ==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.xml", + "microsoft.visualstudio.web.codegeneration.contracts.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.contracts.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "sha512": "APdPavBUYcGPBaW4rjxBVRePWmg0ZzhIRymOzvLFWUtzfvJKw1+8PaCzsH7Uvl+felm0L1UVQwBx1Do0R7j7Xg==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.core/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml", + "microsoft.visualstudio.web.codegeneration.core.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.core.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "sha512": "xH50cYOU+infRq4KikBuu2qeXcwW4tE0D5TDfKLuLrEtDm90aXI+0qygPsqyISf+lOW7L7rQ64BH/dRYkK3c3Q==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.design/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/dotnet-aspnet-codegenerator-design.exe", + "lib/net461/dotnet-aspnet-codegenerator-design.xml", + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll", + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.xml", + "microsoft.visualstudio.web.codegeneration.design.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.design.nuspec", + "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.exe", + "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.xml", + "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.exe", + "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.xml", + "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.exe", + "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.xml", + "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.exe", + "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.xml" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "sha512": "N9S7TeFZjXzNY9OVbz4OFw9cM9oEeMaCnuLFhetNioy/wPwZbgglrctAEYxfDbvocQ17YCAVR2EMRbYHNDHyVg==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Templates/DbContext/NewLocalDbContext.cshtml", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml", + "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "sha512": "sW2lHnOoL1xFnSm/2zSedeUoQPlbhPfWjSuUYsxYUj/N5QmLmH98ZLaqP26k6Om/heR6Gux/veXI96yM1Parow==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.templating/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml", + "microsoft.visualstudio.web.codegeneration.templating.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.templating.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "sha512": "/r/y+XpOpbCwN/M/HopjfGTDRlmixTd4G6HG6FaBkD/YF3T1u+4WMRVtuB6zz7aw571HmX+6UokEa6HJSwkPDA==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.utils/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml", + "microsoft.visualstudio.web.codegeneration.utils.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.utils.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "sha512": "0gVuA4KUCHFM4M/9SjG+7j7BzZ7SW/BufF97Q78i2VV8JBbQXc/5Rf6YUG1VGW2fwSEOl9+S26utEGS+86GGGw==", + "type": "package", + "path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Generators/ParameterDefinitions/area.json", + "Generators/ParameterDefinitions/controller.json", + "Generators/ParameterDefinitions/identity.json", + "Generators/ParameterDefinitions/razorpage.json", + "Generators/ParameterDefinitions/view.json", + "Templates/ControllerGenerator/ApiControllerWithActions.cshtml", + "Templates/ControllerGenerator/ApiControllerWithContext.cshtml", + "Templates/ControllerGenerator/ApiEmptyController.cshtml", + "Templates/ControllerGenerator/ControllerWithActions.cshtml", + "Templates/ControllerGenerator/EmptyController.cshtml", + "Templates/ControllerGenerator/MvcControllerWithContext.cshtml", + "Templates/Identity/Data/ApplicationDbContext.cshtml", + "Templates/Identity/Data/ApplicationUser.cshtml", + "Templates/Identity/IdentityHostingStartup.cshtml", + "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml", + "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml", + "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml", + "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", + "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Lockout.cshtml", + "Templates/Identity/Pages/Account/Account.Login.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Login.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml", + "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Logout.cshtml", + "Templates/Identity/Pages/Account/Account.Register.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Register.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml", + "Templates/Identity/Pages/Account/Account._ViewImports.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", + "Templates/Identity/Pages/Error.cs.cshtml", + "Templates/Identity/Pages/Error.cshtml", + "Templates/Identity/Pages/_Layout.cshtml", + "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml", + "Templates/Identity/Pages/_ViewImports.cshtml", + "Templates/Identity/Pages/_ViewStart.cshtml", + "Templates/Identity/ScaffoldingReadme.cshtml", + "Templates/Identity/SupportPages._CookieConsentPartial.cshtml", + "Templates/Identity/SupportPages._ViewImports.cshtml", + "Templates/Identity/SupportPages._ViewStart.cshtml", + "Templates/Identity/_LoginPartial.cshtml", + "Templates/Identity/wwwroot/css/site.css", + "Templates/Identity/wwwroot/favicon.ico", + "Templates/Identity/wwwroot/js/site.js", + "Templates/Identity/wwwroot/lib/bootstrap/LICENSE", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map", + "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", + "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", + "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", + "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", + "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt", + "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js", + "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js", + "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map", + "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml", + "Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml", + "Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml", + "Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml", + "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml", + "Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map", + "Templates/MvcLayout/Error.cshtml", + "Templates/MvcLayout/_Layout.cshtml", + "Templates/RazorPageGenerator/Create.cshtml", + "Templates/RazorPageGenerator/CreatePageModel.cshtml", + "Templates/RazorPageGenerator/Delete.cshtml", + "Templates/RazorPageGenerator/DeletePageModel.cshtml", + "Templates/RazorPageGenerator/Details.cshtml", + "Templates/RazorPageGenerator/DetailsPageModel.cshtml", + "Templates/RazorPageGenerator/Edit.cshtml", + "Templates/RazorPageGenerator/EditPageModel.cshtml", + "Templates/RazorPageGenerator/Empty.cshtml", + "Templates/RazorPageGenerator/EmptyPageModel.cshtml", + "Templates/RazorPageGenerator/List.cshtml", + "Templates/RazorPageGenerator/ListPageModel.cshtml", + "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Empty.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/EmptyPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml", + "Templates/Startup/ReadMe.cshtml", + "Templates/Startup/Startup.cshtml", + "Templates/ViewGenerator/Create.cshtml", + "Templates/ViewGenerator/Delete.cshtml", + "Templates/ViewGenerator/Details.cshtml", + "Templates/ViewGenerator/Edit.cshtml", + "Templates/ViewGenerator/Empty.cshtml", + "Templates/ViewGenerator/List.cshtml", + "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml", + "lib/netstandard2.0/bootstrap3_identitygeneratorfilesconfig.json", + "lib/netstandard2.0/bootstrap4_identitygeneratorfilesconfig.json", + "microsoft.visualstudio.web.codegenerators.mvc.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegenerators.mvc.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.1": { + "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", + "type": "package", + "path": "microsoft.win32.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.0.1.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/4.7.0-preview1.19504.10": { + "sha512": "CXsd7k96HdyP0vV9T5mQQ0O1Lj00xJBHTQ+d8Y99mxu/GuTB9MYKeGE1b58AIaxF88maJOFMtt6WhiqEPC9ONw==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0-preview1.19504.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0-preview1.19504.10.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/net472/Microsoft.Win32.Registry.dll", + "ref/net472/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/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MSTest.TestAdapter/1.4.0": { + "sha512": "t2/rL9DG+cVAgPs98OGm2sbZ4FTgn+MGEan5P9NRAgqMV3+nYRKG7/5R0jY7lBMq9ISms+84MSqTHWs6QnPt4A==", + "type": "package", + "path": "mstest.testadapter/1.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll", + "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll", + "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", + "build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/net45/MSTest.TestAdapter.props", + "build/net45/MSTest.TestAdapter.targets", + "build/netcoreapp1.0/MSTest.TestAdapter.props", + "build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", + "build/uap10.0/MSTest.TestAdapter.props", + "build/uap10.0/MSTest.TestAdapter.targets", + "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", + "mstest.testadapter.1.4.0.nupkg.sha512", + "mstest.testadapter.nuspec" + ] + }, + "MSTest.TestFramework/1.4.0": { + "sha512": "kV/yZ0XLiOElsVeLT0GnNrsoKcPvVNOP6Cv2zkAiceJY0rpro0L+3t54bRApLwTg1mxlo4rLziBG7X6X69KcrQ==", + "type": "package", + "path": "mstest.testframework/1.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML", + "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", + "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.XML", + "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML", + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML", + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "mstest.testframework.1.4.0.nupkg.sha512", + "mstest.testframework.nuspec" + ] + }, + "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" + ] + }, + "NuGet.Frameworks/4.7.0": { + "sha512": "qbXaB76XYUVLocLBs8Z9TS/ERGK2wm797feO+0JEPFvT7o7MRadOR77mqaSD4J1k8G+DlZQyq+MlkCuxrkr3ag==", + "type": "package", + "path": "nuget.frameworks/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/NuGet.Frameworks.dll", + "lib/net40/NuGet.Frameworks.xml", + "lib/net46/NuGet.Frameworks.dll", + "lib/net46/NuGet.Frameworks.xml", + "lib/netstandard1.6/NuGet.Frameworks.dll", + "lib/netstandard1.6/NuGet.Frameworks.xml", + "nuget.frameworks.4.7.0.nupkg.sha512", + "nuget.frameworks.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": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "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.7.0-preview1.19504.10": { + "sha512": "ITo7gZ7yGHMkNj1O6PRmK+i917jbWNs5CZN/jwVSh8hO+3+8C5roDkXJYbM1hA5LZAUagtm9ph5whvnDOTilDg==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0-preview1.19504.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.7.0-preview1.19504.10.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", + ".signature.p7s", + "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", + ".signature.p7s", + "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", + ".signature.p7s", + "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": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "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": "T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "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": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "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.3.1": { + "sha512": "n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", + "type": "package", + "path": "system.collections.immutable/1.3.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.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.3.1.nupkg.sha512", + "system.collections.immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.1": { + "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==", + "type": "package", + "path": "system.collections.nongeneric/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.1.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.0.1": { + "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==", + "type": "package", + "path": "system.collections.specialized/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.1.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.0.1": { + "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", + "type": "package", + "path": "system.componentmodel/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.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.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.0.1.nupkg.sha512", + "system.componentmodel.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.ComponentModel.EventBasedAsync/4.0.11": { + "sha512": "Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==", + "type": "package", + "path": "system.componentmodel.eventbasedasync/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.EventBasedAsync.dll", + "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.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.ComponentModel.EventBasedAsync.dll", + "ref/netcore50/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll", + "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512", + "system.componentmodel.eventbasedasync.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.1.0": { + "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==", + "type": "package", + "path": "system.componentmodel.primitives/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.1.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.1.0": { + "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.1.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Composition/1.0.31": { + "sha512": "I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==", + "type": "package", + "path": "system.composition/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "system.composition.1.0.31.nupkg.sha512", + "system.composition.nuspec" + ] + }, + "System.Composition.AttributedModel/1.0.31": { + "sha512": "NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==", + "type": "package", + "path": "system.composition.attributedmodel/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.AttributedModel.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll", + "system.composition.attributedmodel.1.0.31.nupkg.sha512", + "system.composition.attributedmodel.nuspec" + ] + }, + "System.Composition.Convention/1.0.31": { + "sha512": "GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==", + "type": "package", + "path": "system.composition.convention/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.Convention.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll", + "system.composition.convention.1.0.31.nupkg.sha512", + "system.composition.convention.nuspec" + ] + }, + "System.Composition.Hosting/1.0.31": { + "sha512": "fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==", + "type": "package", + "path": "system.composition.hosting/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.Hosting.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll", + "system.composition.hosting.1.0.31.nupkg.sha512", + "system.composition.hosting.nuspec" + ] + }, + "System.Composition.Runtime/1.0.31": { + "sha512": "0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==", + "type": "package", + "path": "system.composition.runtime/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll", + "system.composition.runtime.1.0.31.nupkg.sha512", + "system.composition.runtime.nuspec" + ] + }, + "System.Composition.TypedParts/1.0.31": { + "sha512": "0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==", + "type": "package", + "path": "system.composition.typedparts/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.TypedParts.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll", + "system.composition.typedparts.1.0.31.nupkg.sha512", + "system.composition.typedparts.nuspec" + ] + }, + "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.8.0-preview1.19504.10": { + "sha512": "6isAINOX/v56q7JLaC9XDXzc7T/yh62QR+pa+Jt0ayjmYmLRCmzyt4rTy5jWe15ZcQfS9yQNxIzwyO7yGs6Zbg==", + "type": "package", + "path": "system.data.sqlclient/4.8.0-preview1.19504.10", + "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/net461/System.Data.SqlClient.xml", + "lib/netcoreapp2.1/System.Data.SqlClient.dll", + "lib/netcoreapp2.1/System.Data.SqlClient.xml", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.xml", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.xml", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.xml", + "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/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", + "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/net461/System.Data.SqlClient.xml", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", + "system.data.sqlclient.4.8.0-preview1.19504.10.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.7.0-preview1.19504.10": { + "sha512": "CxeUzuw9Lz1+6gkPpQI83BeoUNxn6VnDF28qazxSRyRzWSzLzoeh9ObYG7LYqcPckgm0UaE9nQdd7oDq5ncMKg==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.7.0-preview1.19504.10", + "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.7.0-preview1.19504.10.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.Process/4.1.0": { + "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", + "type": "package", + "path": "system.diagnostics.process/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.Process.dll", + "lib/net461/System.Diagnostics.Process.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.Process.dll", + "ref/net461/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.xml", + "ref/netstandard1.3/de/System.Diagnostics.Process.xml", + "ref/netstandard1.3/es/System.Diagnostics.Process.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.3/it/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml", + "ref/netstandard1.4/System.Diagnostics.Process.dll", + "ref/netstandard1.4/System.Diagnostics.Process.xml", + "ref/netstandard1.4/de/System.Diagnostics.Process.xml", + "ref/netstandard1.4/es/System.Diagnostics.Process.xml", + "ref/netstandard1.4/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.4/it/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win/lib/net46/System.Diagnostics.Process.dll", + "runtimes/win/lib/net461/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win7/lib/netcore50/_._", + "system.diagnostics.process.4.1.0.nupkg.sha512", + "system.diagnostics.process.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.TextWriterTraceListener/4.3.0": { + "sha512": "F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==", + "type": "package", + "path": "system.diagnostics.textwritertracelistener/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TextWriterTraceListener.dll", + "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TextWriterTraceListener.dll", + "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll", + "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/de/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/es/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/it/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TextWriterTraceListener.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512", + "system.diagnostics.textwritertracelistener.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.TraceSource/4.3.0": { + "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "type": "package", + "path": "system.diagnostics.tracesource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "system.diagnostics.tracesource.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.0.1": { + "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", + "type": "package", + "path": "system.globalization.extensions/4.0.1", + "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.0.1.nupkg.sha512", + "system.globalization.extensions.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.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.Parallel/4.3.0": { + "sha512": "td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==", + "type": "package", + "path": "system.linq.parallel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Parallel.dll", + "lib/netstandard1.3/System.Linq.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.Linq.Parallel.dll", + "ref/netcore50/System.Linq.Parallel.xml", + "ref/netcore50/de/System.Linq.Parallel.xml", + "ref/netcore50/es/System.Linq.Parallel.xml", + "ref/netcore50/fr/System.Linq.Parallel.xml", + "ref/netcore50/it/System.Linq.Parallel.xml", + "ref/netcore50/ja/System.Linq.Parallel.xml", + "ref/netcore50/ko/System.Linq.Parallel.xml", + "ref/netcore50/ru/System.Linq.Parallel.xml", + "ref/netcore50/zh-hans/System.Linq.Parallel.xml", + "ref/netcore50/zh-hant/System.Linq.Parallel.xml", + "ref/netstandard1.1/System.Linq.Parallel.dll", + "ref/netstandard1.1/System.Linq.Parallel.xml", + "ref/netstandard1.1/de/System.Linq.Parallel.xml", + "ref/netstandard1.1/es/System.Linq.Parallel.xml", + "ref/netstandard1.1/fr/System.Linq.Parallel.xml", + "ref/netstandard1.1/it/System.Linq.Parallel.xml", + "ref/netstandard1.1/ja/System.Linq.Parallel.xml", + "ref/netstandard1.1/ko/System.Linq.Parallel.xml", + "ref/netstandard1.1/ru/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.parallel.4.3.0.nupkg.sha512", + "system.linq.parallel.nuspec" + ] + }, + "System.Memory/4.5.1": { + "sha512": "sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==", + "type": "package", + "path": "system.memory/4.5.1", + "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/_._", + "ref/netstandard1.1/System.Memory.dll", + "ref/netstandard1.1/System.Memory.xml", + "ref/netstandard2.0/System.Memory.dll", + "ref/netstandard2.0/System.Memory.xml", + "system.memory.4.5.1.nupkg.sha512", + "system.memory.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.1.1": { + "sha512": "lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==", + "type": "package", + "path": "system.private.datacontractserialization/4.1.1", + "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.1.1.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", + ".signature.p7s", + "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.4.2": { + "sha512": "KYPNMDrLB2R+G5JJiJ2fjBpihtktKVIjsirmyyv+VDo5rQkIR9BWeCYM1wDSzbQatWNZ/NQfPsQyTB1Ui3qBfQ==", + "type": "package", + "path": "system.reflection.metadata/1.4.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.4.2.nupkg.sha512", + "system.reflection.metadata.nuspec" + ] + }, + "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.7.0-preview1.19504.10": { + "sha512": "Zw6YIPYZNJdb5fVVlLLG0i9NO/p+10u8LM8ApWat+9oLo15xaCGC6XyYALrvc+DzmxkwWLxU6n8SNf71V+x3+Q==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.7.0-preview1.19504.10", + "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.7.0-preview1.19504.10.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.0.0": { + "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "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.0.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0": { + "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", + "type": "package", + "path": "system.runtime.loader/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net462/_._", + "lib/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.xml", + "ref/netstandard1.5/de/System.Runtime.Loader.xml", + "ref/netstandard1.5/es/System.Runtime.Loader.xml", + "ref/netstandard1.5/fr/System.Runtime.Loader.xml", + "ref/netstandard1.5/it/System.Runtime.Loader.xml", + "ref/netstandard1.5/ja/System.Runtime.Loader.xml", + "ref/netstandard1.5/ko/System.Runtime.Loader.xml", + "ref/netstandard1.5/ru/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml", + "system.runtime.loader.4.0.0.nupkg.sha512", + "system.runtime.loader.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.Json/4.0.2": { + "sha512": "+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==", + "type": "package", + "path": "system.runtime.serialization.json/4.0.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Serialization.Json.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Json.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.Runtime.Serialization.Json.dll", + "ref/netcore50/System.Runtime.Serialization.Json.xml", + "ref/netcore50/de/System.Runtime.Serialization.Json.xml", + "ref/netcore50/es/System.Runtime.Serialization.Json.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Json.xml", + "ref/netcore50/it/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Json.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Json.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.json.4.0.2.nupkg.sha512", + "system.runtime.serialization.json.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.1.1", + "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.1.1.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Security.AccessControl/4.7.0-preview1.19504.10": { + "sha512": "PGk/B6+DoaHlC4PAc7OWPmxI91JtH4zXHHmwlSQAOnL5sll3hgX8kVR9loCnVHfshSo1vP8vt15Xy84xyKiqKw==", + "type": "package", + "path": "system.security.accesscontrol/4.7.0-preview1.19504.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "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/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.7.0-preview1.19504.10.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "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": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "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.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.Principal.Windows/4.7.0-preview1.19504.10": { + "sha512": "3Df++ZTMSEaRRyov1jZ7VSm8GemEu9cJJ+QY1y6wvF631OvS5dts98RhuoqcZxACVkNRIzl5ThIqd46qd7b+Vg==", + "type": "package", + "path": "system.security.principal.windows/4.7.0-preview1.19504.10", + "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/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "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/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/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/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0-preview1.19504.10.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.7.0-preview1.19504.10": { + "sha512": "aYpmMGgjDYpDYtDpUHwnSqSKgatkoZ4aSteVs6WKxo3/dRbHnL5rQ3QX9g7teACCIw8T2KW9OUxIg0b1kZEABg==", + "type": "package", + "path": "system.text.encoding.codepages/4.7.0-preview1.19504.10", + "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/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.4.7.0-preview1.19504.10.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.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.1": { + "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.1", + "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/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.1.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.Threading.ThreadPool/4.0.10": { + "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", + "type": "package", + "path": "system.threading.threadpool/4.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.0.10.nupkg.sha512", + "system.threading.threadpool.nuspec" + ] + }, + "System.ValueTuple/4.3.0": { + "sha512": "cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==", + "type": "package", + "path": "system.valuetuple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/.xml", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/.xml", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "system.valuetuple.4.3.0.nupkg.sha512", + "system.valuetuple.nuspec" + ] + }, + "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.0.11": { + "sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", + "type": "package", + "path": "system.xml.xmlserializer/4.0.11", + "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.0.11.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", + ".signature.p7s", + "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" + ] + }, + "System.Xml.XPath.XmlDocument/4.0.1": { + "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==", + "type": "package", + "path": "system.xml.xpath.xmldocument/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512", + "system.xml.xpath.xmldocument.nuspec" + ] + }, + "RestaurantReview/1.0.0": { + "type": "project", + "path": "../RestaurantReview/RestaurantReview.csproj", + "msbuildProject": "../RestaurantReview/RestaurantReview.csproj" + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v2.2": [ + "MSTest.TestAdapter >= 1.4.0", + "MSTest.TestFramework >= 1.4.0", + "Microsoft.AspNetCore.Mvc.Core >= 2.2.5", + "Microsoft.NET.Test.Sdk >= 16.0.1", + "Microsoft.NETCore.App >= 2.2.0", + "RestaurantReview >= 1.0.0", + "System.Data.SqlClient >= 4.8.0-preview1.19504.10" + ] + }, + "packageFolders": { + "C:\\Users\\Raizel Seliger\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\R2\\R2.csproj", + "projectName": "R2", + "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\R2\\R2.csproj", + "packagesPath": "C:\\Users\\Raizel Seliger\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\R2\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Raizel Seliger\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp2.2" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp2.2": { + "projectReferences": { + "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj": { + "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp2.2": { + "dependencies": { + "MSTest.TestAdapter": { + "target": "Package", + "version": "[1.4.0, )" + }, + "MSTest.TestFramework": { + "target": "Package", + "version": "[1.4.0, )" + }, + "Microsoft.AspNetCore.Mvc.Core": { + "target": "Package", + "version": "[2.2.5, )" + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[16.0.1, )" + }, + "Microsoft.NETCore.App": { + "suppressParent": "All", + "target": "Package", + "version": "[2.2.0, )", + "autoReferenced": true + }, + "System.Data.SqlClient": { + "target": "Package", + "version": "[4.8.0-preview1.19504.10, )" + } + }, + "imports": [ + "net461" + ], + "assetTargetFallback": true, + "warn": true + } + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview.sln b/RestaurantReview/RestaurantReview.sln new file mode 100644 index 00000000..1adcdd89 --- /dev/null +++ b/RestaurantReview/RestaurantReview.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29009.5 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RestaurantReview", "RestaurantReview\RestaurantReview.csproj", "{8360EA5F-0352-4385-8CAD-7404D91D7B0A}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RestaurantReviewTests", "RestaurantReviewTests\RestaurantReviewTests.csproj", "{81113AFA-4B8B-43CA-9632-2787FEF30F5A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8360EA5F-0352-4385-8CAD-7404D91D7B0A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8360EA5F-0352-4385-8CAD-7404D91D7B0A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8360EA5F-0352-4385-8CAD-7404D91D7B0A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8360EA5F-0352-4385-8CAD-7404D91D7B0A}.Release|Any CPU.Build.0 = Release|Any CPU + {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {81113AFA-4B8B-43CA-9632-2787FEF30F5A}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {876CA238-341F-46DB-BD6C-AE2A4DDBB5F8} + EndGlobalSection +EndGlobal diff --git a/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs new file mode 100644 index 00000000..5c7d4115 --- /dev/null +++ b/RestaurantReview/RestaurantReview/Controllers/RestaurantsController.cs @@ -0,0 +1,38 @@ +using Microsoft.AspNetCore.Cors; +using Microsoft.AspNetCore.Mvc; +using RestaurantReview.DAL; +using RestaurantReview.Models; +using RestaurantReview.Services; + +namespace RestaurantReview.Controllers +{ + [EnableCors("CorsPolicy")] + [Route("api/[controller]")] + [ApiController] + public class RestaurantsController : ControllerBase + { + public IConn connection; + + public RestaurantsController(IConn conn) + { + this.connection = conn; + } + + // GET api/Restaurants + [HttpGet("{city}")] + public IActionResult Get(string city) + { + var dal = new RestaurantsDAL(connection.AWSconnstring()).GetRestaurants() + .FindAll(restaurant => restaurant.City.ToLower().Equals(city.ToLower())); + if (dal.Count >= 1) { return Ok(dal); } else { return StatusCode(404, "There are no results for this city"); } + } + + // POST api/Restaurants - must send in a restaurant body with it + [HttpPost] + public IActionResult Post([FromBody] Restaurant restaurant) + { + var dal = new RestaurantsDAL(connection.AWSconnstring()).PostRestaurant(restaurant); + if (dal.IsSuccessful) { return (Ok(dal.toreturn)); } else { return StatusCode(304, dal.toreturn); } + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs new file mode 100644 index 00000000..8ffa4af4 --- /dev/null +++ b/RestaurantReview/RestaurantReview/Controllers/ReviewsController.cs @@ -0,0 +1,51 @@ +using Microsoft.AspNetCore.Mvc; +using RestaurantReview.DAL; +using RestaurantReview.Models; +using RestaurantReview.Services; + +namespace RestaurantReview.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class ReviewsController : ControllerBase + { + public IConn connection; + + public ReviewsController(IConn conn) + { + this.connection = conn; + } + + // GET api/Reviews/{username} + [HttpGet("{username}")] + public IActionResult Get(string username) + { + var usermatch = new UserDAL(connection.AWSconnstring()).GetUser(username); + if (!usermatch.IsSuccessful) return StatusCode(404, "User was not found"); + var list = new ReviewsDAL(connection.AWSconnstring()).GetAllReviews() + .FindAll(review => review.User.UserName.ToLower().Equals(username.ToLower())); + + if (list.Count >= 1) { return Ok(list); } else { return StatusCode(404, "There are no results for this user"); } + } + + // POST api/Reviews - must send in a Review Json object + [HttpPost] + public void Post([FromBody] Review review) + { + new ReviewsDAL(connection.AWSconnstring()).PostReview(review); + } + + [HttpPut] + public void Put([FromBody] UpdateReview updateReview) + { + new ReviewsDAL(connection.AWSconnstring()).UpdateReview(updateReview); + } + + // DELETE api/Reviews/{id} + [HttpDelete("{id}")] + public void Delete(int id) + { + new ReviewsDAL(connection.AWSconnstring()).DeleteReview(id); + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs new file mode 100644 index 00000000..64f84840 --- /dev/null +++ b/RestaurantReview/RestaurantReview/DAL/RestaurantsDAL.cs @@ -0,0 +1,82 @@ +using RestaurantReview.Models; +using RestaurantReview.Services; +using System; +using System.Collections.Generic; +using System.Data.SqlClient; +using System.Net; +using System.Web.Http; + +namespace RestaurantReview.DAL +{ + public class RestaurantsDAL + { + private readonly string connectionstring; + + public RestaurantsDAL(string connString) + { + this.connectionstring = new Conn().AWSconnstring(); + } + + public List GetRestaurants() + { + List restaurants = new List(); + + using (SqlConnection conn = new SqlConnection(connectionstring)) + { + conn.Open(); + SqlCommand SelectAll = new SqlCommand("select * from Restaurants", conn); + SqlDataReader reader = SelectAll.ExecuteReader(); + while (reader.Read()) + { + Restaurant restaurant = new Restaurant + { + RestaurantId = Convert.ToInt32(reader["RestaurantId"]), + City = Convert.ToString(reader["City"]), + Name = Convert.ToString(reader["Name"]) + }; + if (restaurant.ValidateCity() && restaurant.ValidateName()) + restaurants.Add(restaurant); + } + } + return restaurants; + } + + public (bool IsSuccessful, Restaurant toreturn) PostRestaurant(Restaurant restaurant) + { + bool IsSuccessful; + Restaurant toreturn = new Restaurant(); + using (SqlConnection conn = new SqlConnection(connectionstring)) + { + conn.Open(); + SqlCommand SelectAll = new SqlCommand($"INSERT INTO RESTAURANTS VALUES(@Name, @City);", conn); + try + { + if (!(restaurant.ValidateName() && restaurant.ValidateCity())) throw new HttpResponseException(HttpStatusCode.NotModified); + SelectAll.Parameters.AddWithValue("@Name", restaurant.Name); + SelectAll.Parameters.AddWithValue("@City", restaurant.City); + toreturn.Name = restaurant.Name; + toreturn.City = restaurant.City; + SelectAll.ExecuteNonQuery(); + IsSuccessful = true; + } + catch (HttpResponseException e) + { + if (!restaurant.ValidateCity()) + { + toreturn.City = "City is incorrect " + e.Message; + } + + IsSuccessful = false; + if (!restaurant.ValidateName()) + { + toreturn.Name = "Name is too short " + e.Message + " name must be at least 1 character"; + } + + if (toreturn.Name is null) toreturn.Name = restaurant.Name; + if (toreturn.City is null) toreturn.City = restaurant.City; + } + } + return (IsSuccessful, toreturn); + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs new file mode 100644 index 00000000..a2b8a6c7 --- /dev/null +++ b/RestaurantReview/RestaurantReview/DAL/ReviewsDAL.cs @@ -0,0 +1,136 @@ +using RestaurantReview.Models; +using RestaurantReview.Services; +using System; +using System.Collections.Generic; +using System.Data.SqlClient; + +namespace RestaurantReview.DAL +{ + public class ReviewsDAL + { + private readonly string connectionstring; + + public ReviewsDAL(string connString) + { + this.connectionstring = new Conn().AWSconnstring(); + } + + public List GetAllReviews() + { + List reviews = new List(); + using (SqlConnection conn = new SqlConnection(connectionstring)) + { + conn.Open(); + SqlCommand SelectAll = new SqlCommand("SELECT * FROM Reviews " + + "JOIN Restaurants on Reviews.RestaurantId = Restaurants.RestaurantId " + + "JOIN Users on Reviews.UserId = Users.UserId", conn); + SqlDataReader reader = SelectAll.ExecuteReader(); + while (reader.Read()) + { + reviews.Add(new Review + { + Restaurant = new Restaurant + { + RestaurantId = Convert.ToInt32(reader["RestaurantId"]), + City = Convert.ToString(reader["City"]), + Name = Convert.ToString(reader["Name"]) + }, + ReviewId = Convert.ToInt32(reader["ReviewId"]), + ReviewText = Convert.ToString(reader["ReviewText"]), + User = new User + { + UserId = Convert.ToInt32(reader["UserId"]), + UserName = Convert.ToString(reader["UserName"]) + } + }); + } + } + return reviews; + } + + //public (bool IsSuccessful, Restaurant toreturn) PostRestaurant(Restaurant restaurant) + //{ + // bool IsSuccessful; + // Restaurant toreturn = new Restaurant(); + // using (SqlConnection conn = new SqlConnection(connectionstring)) + // { + // conn.Open(); + // SqlCommand SelectAll = new SqlCommand($"INSERT INTO RESTAURANTS VALUES(@Name, @City);", conn); + // try + // { + // if (!(restaurant.ValidateName() && restaurant.ValidateCity())) throw new HttpResponseException(HttpStatusCode.NotModified); + // SelectAll.Parameters.AddWithValue("@Name", restaurant.Name); + // SelectAll.Parameters.AddWithValue("@City", restaurant.City); + // toreturn.Name = restaurant.Name; + // toreturn.City = restaurant.City; + // SelectAll.ExecuteNonQuery(); + // IsSuccessful = true; + // } + // catch (HttpResponseException e) + // { + // if (!restaurant.ValidateCity()) + // { + // toreturn.City = "City is incorrect " + e.Message; + // } + + // IsSuccessful = false; + // if (!restaurant.ValidateName()) + // { + // toreturn.Name = "Name is too short " + e.Message + " name must be at least 1 character"; + // } + + // if (toreturn.Name is null) toreturn.Name = restaurant.Name; + // if (toreturn.City is null) toreturn.City = restaurant.City; + // } + // } + // return (IsSuccessful, toreturn); + //} + public (bool IsSuccesssful, Review toreturn) PostReview(Review review) + { + Review toreturn = new Review(); + bool IsSuccessful; + try + { + using (SqlConnection conn = new SqlConnection(connectionstring)) + { + //if (!review.ValidateUserNameFormat()) throw new HttpResponseException(HttpStatusCode.NotModified); + conn.Open(); + SqlCommand SelectAll = new SqlCommand($"INSERT INTO Reviews VALUES(@RestaurantId, @UserId, @ReviewText);", conn); + SelectAll.Parameters.AddWithValue("@RestaurantId", review.Restaurant.RestaurantId); + SelectAll.Parameters.AddWithValue("@UserId", review.User.UserId); + SelectAll.Parameters.AddWithValue("@ReviewText", review.ReviewText); + SelectAll.ExecuteNonQuery(); + IsSuccessful = true; + } + } + catch + { + IsSuccessful = false; + } + return (IsSuccessful, toreturn); + } + + public void UpdateReview(UpdateReview updateReview) + { + using (SqlConnection conn = new SqlConnection(connectionstring)) + { + conn.Open(); + SqlCommand updateReviewCmd = new SqlCommand($"UPDATE Reviews SET ReviewText = @reviewText WHERE ReviewId = @id;", conn); + updateReviewCmd.Parameters.AddWithValue("@id", updateReview.ReviewId); + updateReviewCmd.Parameters.AddWithValue("@reviewText", updateReview.ReviewText); + updateReviewCmd.ExecuteNonQuery(); + } + } + + public void DeleteReview(int id) + { + using (SqlConnection conn = new SqlConnection(connectionstring)) + { + conn.Open(); + SqlCommand SelectAll = new SqlCommand($"Delete FROM Reviews WHERE Reviews.ReviewId = @ReviewId", conn); + SelectAll.Parameters.AddWithValue("@ReviewId", id); + SelectAll.ExecuteNonQuery(); + } + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/DAL/UserDAL.cs b/RestaurantReview/RestaurantReview/DAL/UserDAL.cs new file mode 100644 index 00000000..db74381e --- /dev/null +++ b/RestaurantReview/RestaurantReview/DAL/UserDAL.cs @@ -0,0 +1,118 @@ +using RestaurantReview.Models; +using RestaurantReview.Services; +using System; +using System.Collections.Generic; +using System.Data.SqlClient; +using System.Linq; + +namespace RestaurantReview.DAL +{ + public class UserDAL + { + private readonly string connectionstring; + + public UserDAL(string connString) + { + this.connectionstring = new Conn().AWSconnstring(); + } + + public List GetUsers() + { + List users = new List(); + using (SqlConnection conn = new SqlConnection(connectionstring)) + { + conn.Open(); + SqlCommand SelectAll = new SqlCommand("SELECT * FROM Users ", conn); + SqlDataReader reader = SelectAll.ExecuteReader(); + while (reader.Read()) + { + users.Add(new User + { + UserName = Convert.ToString(reader["UserName"]), + UserId = Convert.ToInt32(reader["UserId"]) + }); + } + } + return users; + } + + public (bool IsSuccessful, User usertoreturn) GetUser(string username) + { + bool IsSuccessful; + User usermatch; + try + { + usermatch = GetUsers().FirstOrDefault(user => user.UserName.ToLower().Equals(username.ToLower())); + IsSuccessful = true; + if (usermatch.UserName is null) throw new Exception(); + } + catch + { + IsSuccessful = false; + usermatch = new User(); + usermatch.UserName = "none"; + } + return (IsSuccessful, usermatch); + } + + //public (bool IsSuccessful, Restaurant toreturn) PostRestaurant(Restaurant restaurant) + //{ + // bool IsSuccessful; + // Restaurant toreturn = new Restaurant(); + // using (SqlConnection conn = new SqlConnection(connectionstring)) + // { + // conn.Open(); + // SqlCommand SelectAll = new SqlCommand($"INSERT INTO RESTAURANTS VALUES(@Name, @City);", conn); + // try + // { + // if (!(restaurant.ValidateName() && restaurant.ValidateCity())) throw new HttpResponseException(HttpStatusCode.NotModified); + // SelectAll.Parameters.AddWithValue("@Name", restaurant.Name); + // SelectAll.Parameters.AddWithValue("@City", restaurant.City); + // toreturn.Name = restaurant.Name; + // toreturn.City = restaurant.City; + // SelectAll.ExecuteNonQuery(); + // IsSuccessful = true; + // } + // catch (HttpResponseException e) + // { + // if (!restaurant.ValidateCity()) + // { + // toreturn.City = "City is incorrect " + e.Message; + // } + + // IsSuccessful = false; + // if (!restaurant.ValidateName()) + // { + // toreturn.Name = "Name is too short " + e.Message + " name must be at least 1 character"; + // } + + // if (toreturn.Name is null) toreturn.Name = restaurant.Name; + // if (toreturn.City is null) toreturn.City = restaurant.City; + // } + // } + // return (IsSuccessful, toreturn); + //} + //public (bool IsSuccesssful, Review toreturn) PostReview(Review review) + //{ + // bool IsSuccessful; + // try + // { + // using (SqlConnection conn = new SqlConnection(connectionstring)) + // { + // if (!review.ValidateUserNameFormat()) throw new HttpResponseException(HttpStatusCode.NotModified); + // conn.Open(); + // SqlCommand SelectAll = new SqlCommand($"INSERT INTO Reviews VALUES(@RestaurantId, @UserId, @ReviewText);", conn); + // SelectAll.Parameters.AddWithValue("@RestaurantId", review.Restaurant.RestaurantId); + // SelectAll.Parameters.AddWithValue("@UserId", review.User.UserId); + // SelectAll.Parameters.AddWithValue("@ReviewText", review.ReviewText); + // SelectAll.ExecuteNonQuery(); + // } + // } + // catch + // { + // IsSuccessful = false; + // } + + //} + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/DB/dbsetup.sql b/RestaurantReview/RestaurantReview/DB/dbsetup.sql new file mode 100644 index 00000000..c544c2f6 --- /dev/null +++ b/RestaurantReview/RestaurantReview/DB/dbsetup.sql @@ -0,0 +1,35 @@ +use master; +IF DB_ID('RestaurantReviewManager') IS NOT NULL + DROP database RestaurantReviewManager + +create database RestaurantReviewManager; +IF DB_ID('RestaurantReviewManager') IS NOT NULL + use RestaurantReviewManager; + + +CREATE TABLE Restaurants( + RestaurantId int identity(1,1) NOT NULL, + Name VARCHAR(50) NOT NULL, + City VARCHAR(50) NOT NULL, + + CONSTRAINT PK_RestaurantId PRIMARY KEY (RestaurantId) +); + +CREATE TABLE Users( + UserId INT IDENTITY(1,1) NOT NULL, + UserName VARCHAR(50) NOT NULL, + + CONSTRAINT PK_UserId PRIMARY KEY (UserId) +); + +CREATE TABLE Reviews( + ReviewId int identity(1,1) NOT NULL, + RestaurantId INT NOT NULL, + UserId INT NOT NULL, + ReviewText VARCHAR(100) NOT NULL, + + CONSTRAINT PK_ReviewId PRIMARY KEY (ReviewId), + CONSTRAINT FK_Reviews_RestaurantId FOREIGN KEY (RestaurantId) REFERENCES Restaurants(RestaurantId), + CONSTRAINT FK_Reviews_UserId FOREIGN KEY (UserId) REFERENCES Users(UserId) + +); \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/DB/queryDB.sql b/RestaurantReview/RestaurantReview/DB/queryDB.sql new file mode 100644 index 00000000..3ab163d0 --- /dev/null +++ b/RestaurantReview/RestaurantReview/DB/queryDB.sql @@ -0,0 +1,7 @@ +SELECT * FROM Restaurants +SELECT * FROM Users +SELECT * FROM Reviews + +SELECT * FROM Reviews +JOIN Restaurants on Reviews.RestaurantId = Restaurants.RestaurantId +JOIN Users on Reviews.UserId = Users.UserId diff --git a/RestaurantReview/RestaurantReview/DB/seedDB.sql b/RestaurantReview/RestaurantReview/DB/seedDB.sql new file mode 100644 index 00000000..544db485 --- /dev/null +++ b/RestaurantReview/RestaurantReview/DB/seedDB.sql @@ -0,0 +1,66 @@ +INSERT INTO RESTAURANTS VALUES('Tonys', 'Boston'); +INSERT INTO RESTAURANTS VALUES('Max', 'Boston'); +INSERT INTO RESTAURANTS VALUES('Joint', 'New York'); +INSERT INTO RESTAURANTS VALUES('Hut', 'New York'); +INSERT INTO RESTAURANTS VALUES('The Cow', 'Pittsburgh'); +INSERT INTO RESTAURANTS VALUES('Curds', 'Pittsburgh'); +INSERT INTO RESTAURANTS VALUES('Dunkin Nonuts', 'Chicago'); +INSERT INTO RESTAURANTS VALUES('Flippin Pancakes', 'Chicago'); +INSERT INTO RESTAURANTS VALUES('Deli', 'Los Angeles'); +INSERT INTO RESTAURANTS VALUES('Pizzeria', 'Los Angeles'); + +INSERT INTO USERS(UserName) VALUES('user1') +INSERT INTO USERS(UserName) VALUES('user2') +INSERT INTO USERS(UserName) VALUES('user3') +INSERT INTO USERS(UserName) VALUES('user4') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(1, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(1, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(1, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(1, 4, 'Restaurant is subpar') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(2, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(2, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(2, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(2, 4, 'Restaurant is subpar') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(3, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(3, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(3, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(3, 4, 'Restaurant is subpar') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(4, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(4, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(4, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(4, 4, 'Restaurant is subpar') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(5, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(5, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(5, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(5, 4, 'Restaurant is subpar') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(6, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(6, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(6, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(6, 4, 'Restaurant is subpar') + + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(7, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(7, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(7, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(7, 4, 'Restaurant is subpar') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(8, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(8, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(8, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(8, 4, 'Restaurant is subpar') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(9, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(9, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(9, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(9, 4, 'Restaurant is subpar') + +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(10, 1, 'Restaurant is awesome') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(10, 2, 'Restaurant is horrible') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(10, 3, 'Restaurant is ok') +INSERT INTO REVIEWS (RestaurantId, UserId, ReviewText) VALUES(10, 4, 'Restaurant is subpar') \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Exceptions.cs b/RestaurantReview/RestaurantReview/Exceptions.cs new file mode 100644 index 00000000..159c3369 --- /dev/null +++ b/RestaurantReview/RestaurantReview/Exceptions.cs @@ -0,0 +1,11 @@ +using System; + +namespace RestaurantReview +{ + public class IsTooShort : Exception + { + public IsTooShort(string message) : base(message) + { + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/Restaurant.cs b/RestaurantReview/RestaurantReview/Models/Restaurant.cs new file mode 100644 index 00000000..f38179ca --- /dev/null +++ b/RestaurantReview/RestaurantReview/Models/Restaurant.cs @@ -0,0 +1,24 @@ +using System.Text.RegularExpressions; + +namespace RestaurantReview.Models +{ + public class Restaurant + { + public int RestaurantId { get; set; } + public string Name { get; set; } + public string City { get; set; } + + public bool ValidateCity() + { + MatchCollection matches; + Regex defaultRegex = new Regex(@"^([a-zA-Z]+|[a-zA-Z]+\s[a-zA-Z]+)$"); + matches = defaultRegex.Matches(this.City); + return matches.Count == 1; + } + + public bool ValidateName() + { + return this.Name.Length < 40 && this.Name.Length >= 1; + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/Review.cs b/RestaurantReview/RestaurantReview/Models/Review.cs new file mode 100644 index 00000000..1681ea9a --- /dev/null +++ b/RestaurantReview/RestaurantReview/Models/Review.cs @@ -0,0 +1,26 @@ +using System.Text.RegularExpressions; + +namespace RestaurantReview.Models +{ + public class Review + { + public int ReviewId { get; set; } + public Restaurant Restaurant { get; set; } + public User User { get; set; } + public string ReviewText { get; set; } + + public bool ValidateUserNameFormat() + { + MatchCollection matches; + Regex defaultRegex = new Regex(@"^[A-Za-z]{4, 15}+$"); + matches = defaultRegex.Matches(this.User.UserName); + + return matches.Count == 1; + } + + //public bool ValidateName() + //{ + // return this.Name.Length < 40 && this.Name.Length >= 1; + //} + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/UpdateReview.cs b/RestaurantReview/RestaurantReview/Models/UpdateReview.cs new file mode 100644 index 00000000..523deb72 --- /dev/null +++ b/RestaurantReview/RestaurantReview/Models/UpdateReview.cs @@ -0,0 +1,8 @@ +namespace RestaurantReview.Models +{ + public class UpdateReview + { + public int ReviewId { get; set; } + public string ReviewText { get; set; } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Models/User.cs b/RestaurantReview/RestaurantReview/Models/User.cs new file mode 100644 index 00000000..56103309 --- /dev/null +++ b/RestaurantReview/RestaurantReview/Models/User.cs @@ -0,0 +1,8 @@ +namespace RestaurantReview.Models +{ + public class User + { + public int UserId { get; set; } + public string UserName { get; set; } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Program.cs b/RestaurantReview/RestaurantReview/Program.cs new file mode 100644 index 00000000..d06351c4 --- /dev/null +++ b/RestaurantReview/RestaurantReview/Program.cs @@ -0,0 +1,17 @@ +using Microsoft.AspNetCore; +using Microsoft.AspNetCore.Hosting; + +namespace RestaurantReview +{ + public class Program + { + public static void Main(string[] args) + { + CreateWebHostBuilder(args).Build().Run(); + } + + public static IWebHostBuilder CreateWebHostBuilder(string[] args) => + WebHost.CreateDefaultBuilder(args) + .UseStartup(); + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Properties/launchSettings.json b/RestaurantReview/RestaurantReview/Properties/launchSettings.json new file mode 100644 index 00000000..c33de320 --- /dev/null +++ b/RestaurantReview/RestaurantReview/Properties/launchSettings.json @@ -0,0 +1,30 @@ +{ + "$schema": "http://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:50083", + "sslPort": 44353 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "api/values", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "RestaurantReview": { + "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/RestaurantReview/RestaurantReview/RestaurantReview.csproj b/RestaurantReview/RestaurantReview/RestaurantReview.csproj new file mode 100644 index 00000000..bc2083f7 --- /dev/null +++ b/RestaurantReview/RestaurantReview/RestaurantReview.csproj @@ -0,0 +1,15 @@ + + + + netcoreapp2.2 + InProcess + + + + + + + + + + diff --git a/RestaurantReview/RestaurantReview/RestaurantReview.csproj.user b/RestaurantReview/RestaurantReview/RestaurantReview.csproj.user new file mode 100644 index 00000000..5df420f5 --- /dev/null +++ b/RestaurantReview/RestaurantReview/RestaurantReview.csproj.user @@ -0,0 +1,6 @@ + + + + false + + \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Services/Conn.cs b/RestaurantReview/RestaurantReview/Services/Conn.cs new file mode 100644 index 00000000..ea0eeed4 --- /dev/null +++ b/RestaurantReview/RestaurantReview/Services/Conn.cs @@ -0,0 +1,15 @@ +namespace RestaurantReview.Services +{ + public class Conn : IConn + { + public string AWSconnstring() + { + return @"Data Source=restaurantreviewsdb.cur7afppexfe.us-east-2.rds.amazonaws.com,1433; Initial Catalog=RestaurantReviewManager;User ID=admin;Password=Whatthe770!"; + } + + public string connstring() + { + return @"Data Source=DESKTOP-B54NHFS ; Initial Catalog=RestaurantReviewManager; Integrated Security=SSPI;"; + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Services/IConn.cs b/RestaurantReview/RestaurantReview/Services/IConn.cs new file mode 100644 index 00000000..ae9826ad --- /dev/null +++ b/RestaurantReview/RestaurantReview/Services/IConn.cs @@ -0,0 +1,9 @@ +namespace RestaurantReview.Services +{ + public interface IConn + { + string connstring(); + + string AWSconnstring(); + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/Startup.cs b/RestaurantReview/RestaurantReview/Startup.cs new file mode 100644 index 00000000..83e35a68 --- /dev/null +++ b/RestaurantReview/RestaurantReview/Startup.cs @@ -0,0 +1,50 @@ +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Hosting; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using RestaurantReview.Services; + +namespace RestaurantReview +{ + 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.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); + services.AddScoped(); + + services.AddCors(options => + { + options.AddPolicy("CorsPolicy", + builder => builder.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader()); + }); + } + + // 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(); + app.UseCors(); + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/appsettings.Development.json b/RestaurantReview/RestaurantReview/appsettings.Development.json new file mode 100644 index 00000000..f999bc20 --- /dev/null +++ b/RestaurantReview/RestaurantReview/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Debug", + "System": "Information", + "Microsoft": "Information" + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/appsettings.json b/RestaurantReview/RestaurantReview/appsettings.json new file mode 100644 index 00000000..ba5b9074 --- /dev/null +++ b/RestaurantReview/RestaurantReview/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Warning" + } + }, + "AllowedHosts": "*" +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.deps.json b/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.deps.json new file mode 100644 index 00000000..3a57fec8 --- /dev/null +++ b/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.deps.json @@ -0,0 +1,5682 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v2.2", + "signature": "7443a509236c83b5b3930ae7ddda6974ae3cce7f" + }, + "compilationOptions": { + "defines": [ + "TRACE", + "DEBUG", + "NETCOREAPP", + "NETCOREAPP2_2" + ], + "languageVersion": "", + "platform": "", + "allowUnsafe": false, + "warningsAsErrors": false, + "optimize": false, + "keyFile": "", + "emitEntryPoint": true, + "xmlDoc": false, + "debugType": "portable" + }, + "targets": { + ".NETCoreApp,Version=v2.2": { + "RestaurantReview/1.0.0": { + "dependencies": { + "Microsoft.AspNet.WebApi.Core": "5.2.7", + "Microsoft.AspNetCore.App": "2.2.0", + "Microsoft.AspNetCore.Razor.Design": "2.2.0", + "Microsoft.NETCore.App": "2.2.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Design": "2.2.3" + }, + "runtime": { + "RestaurantReview.dll": {} + }, + "compile": { + "RestaurantReview.dll": {} + } + }, + "Microsoft.AspNet.WebApi.Client/5.2.7": { + "dependencies": { + "Newtonsoft.Json": "11.0.2", + "Newtonsoft.Json.Bson": "1.0.1" + }, + "runtime": { + "lib/netstandard2.0/System.Net.Http.Formatting.dll": { + "assemblyVersion": "5.2.7.0", + "fileVersion": "5.2.61128.0" + } + }, + "compile": { + "lib/netstandard2.0/System.Net.Http.Formatting.dll": {} + } + }, + "Microsoft.AspNet.WebApi.Core/5.2.7": { + "dependencies": { + "Microsoft.AspNet.WebApi.Client": "5.2.7" + }, + "runtime": { + "lib/net45/System.Web.Http.dll": { + "assemblyVersion": "5.2.7.0", + "fileVersion": "5.2.61128.0" + } + }, + "compile": { + "lib/net45/System.Web.Http.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/2.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "2.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "2.8.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.0.62830" + } + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "2.8.0", + "System.Composition": "1.0.31", + "System.Diagnostics.Contracts": "4.3.0", + "System.Linq.Parallel": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.0.62830" + } + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "dependencies": { + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.3", + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.3" + }, + "runtime": { + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + }, + "compile": { + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "2.2.0", + "Microsoft.CodeAnalysis.CSharp": "2.8.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp.Workspaces": "2.8.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.3", + "Newtonsoft.Json": "11.0.2", + "NuGet.Frameworks": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration": "2.2.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { + "assemblyVersion": "2.2.3.0", + "fileVersion": "2.2.3.0" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} + } + }, + "NuGet.Frameworks/4.7.0": { + "dependencies": { + "NETStandard.Library": "2.0.3" + }, + "runtime": { + "lib/netstandard1.6/NuGet.Frameworks.dll": { + "assemblyVersion": "4.7.0.5", + "fileVersion": "4.7.0.5148" + } + }, + "compile": { + "lib/netstandard1.6/NuGet.Frameworks.dll": {} + } + }, + "System.Composition/1.0.31": { + "dependencies": { + "System.Composition.AttributedModel": "1.0.31", + "System.Composition.Convention": "1.0.31", + "System.Composition.Hosting": "1.0.31", + "System.Composition.Runtime": "1.0.31", + "System.Composition.TypedParts": "1.0.31" + } + }, + "System.Composition.AttributedModel/1.0.31": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + }, + "compile": { + "lib/netstandard1.0/System.Composition.AttributedModel.dll": {} + } + }, + "System.Composition.Convention/1.0.31": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.AttributedModel": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Convention.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + }, + "compile": { + "lib/netstandard1.0/System.Composition.Convention.dll": {} + } + }, + "System.Composition.Hosting/1.0.31": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.Runtime": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Hosting.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + }, + "compile": { + "lib/netstandard1.0/System.Composition.Hosting.dll": {} + } + }, + "System.Composition.Runtime/1.0.31": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Runtime.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + }, + "compile": { + "lib/netstandard1.0/System.Composition.Runtime.dll": {} + } + }, + "System.Composition.TypedParts/1.0.31": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.AttributedModel": "1.0.31", + "System.Composition.Hosting": "1.0.31", + "System.Composition.Runtime": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + }, + "compile": { + "lib/netstandard1.0/System.Composition.TypedParts.dll": {} + } + }, + "System.Linq.Parallel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "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.Threading.Tasks": "4.3.0" + } + }, + "Microsoft.AspNetCore/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Antiforgery/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.App/2.2.0": { + "dependencies": { + "Microsoft.AspNet.WebApi.Client": "5.2.7", + "Microsoft.AspNetCore": "2.2.0", + "Microsoft.AspNetCore.Antiforgery": "2.2.0", + "Microsoft.AspNetCore.Authentication": "2.2.0", + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authentication.Cookies": "2.2.0", + "Microsoft.AspNetCore.Authentication.Core": "2.2.0", + "Microsoft.AspNetCore.Authentication.Facebook": "2.2.0", + "Microsoft.AspNetCore.Authentication.Google": "2.2.0", + "Microsoft.AspNetCore.Authentication.JwtBearer": "2.2.0", + "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "2.2.0", + "Microsoft.AspNetCore.Authentication.OAuth": "2.2.0", + "Microsoft.AspNetCore.Authentication.OpenIdConnect": "2.2.0", + "Microsoft.AspNetCore.Authentication.Twitter": "2.2.0", + "Microsoft.AspNetCore.Authentication.WsFederation": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.AspNetCore.CookiePolicy": "2.2.0", + "Microsoft.AspNetCore.Cors": "2.2.0", + "Microsoft.AspNetCore.Cryptography.Internal": "2.2.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.2.0", + "Microsoft.AspNetCore.DataProtection": "2.2.0", + "Microsoft.AspNetCore.DataProtection.Abstractions": "2.2.0", + "Microsoft.AspNetCore.DataProtection.Extensions": "2.2.0", + "Microsoft.AspNetCore.Diagnostics": "2.2.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "2.2.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "2.2.0", + "Microsoft.AspNetCore.HostFiltering": "2.2.0", + "Microsoft.AspNetCore.Hosting": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Html.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Connections": "1.1.0", + "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.AspNetCore.HttpOverrides": "2.2.0", + "Microsoft.AspNetCore.HttpsPolicy": "2.2.0", + "Microsoft.AspNetCore.Identity": "2.2.0", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "2.2.0", + "Microsoft.AspNetCore.Identity.UI": "2.2.0", + "Microsoft.AspNetCore.JsonPatch": "2.2.0", + "Microsoft.AspNetCore.Localization": "2.2.0", + "Microsoft.AspNetCore.Localization.Routing": "2.2.0", + "Microsoft.AspNetCore.MiddlewareAnalysis": "2.2.0", + "Microsoft.AspNetCore.Mvc": "2.2.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Mvc.Analyzers": "2.2.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.2.0", + "Microsoft.AspNetCore.Mvc.Core": "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.Formatters.Xml": "2.2.0", + "Microsoft.AspNetCore.Mvc.Localization": "2.2.0", + "Microsoft.AspNetCore.Mvc.Razor": "2.2.0", + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.2.0", + "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation": "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.NodeServices": "2.2.0", + "Microsoft.AspNetCore.Owin": "2.2.0", + "Microsoft.AspNetCore.Razor": "2.2.0", + "Microsoft.AspNetCore.Razor.Design": "2.2.0", + "Microsoft.AspNetCore.Razor.Language": "2.2.0", + "Microsoft.AspNetCore.Razor.Runtime": "2.2.0", + "Microsoft.AspNetCore.ResponseCaching": "2.2.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0", + "Microsoft.AspNetCore.ResponseCompression": "2.2.0", + "Microsoft.AspNetCore.Rewrite": "2.2.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Server.HttpSys": "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.Core": "2.2.0", + "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.2.0", + "Microsoft.AspNetCore.Session": "2.2.0", + "Microsoft.AspNetCore.SignalR": "1.1.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.AspNetCore.SpaServices": "2.2.0", + "Microsoft.AspNetCore.SpaServices.Extensions": "2.2.0", + "Microsoft.AspNetCore.StaticFiles": "2.2.0", + "Microsoft.AspNetCore.WebSockets": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.CodeAnalysis.Razor": "2.2.0", + "Microsoft.EntityFrameworkCore": "2.2.0", + "Microsoft.EntityFrameworkCore.Abstractions": "2.2.0", + "Microsoft.EntityFrameworkCore.Analyzers": "2.2.0", + "Microsoft.EntityFrameworkCore.Design": "2.2.0", + "Microsoft.EntityFrameworkCore.InMemory": "2.2.0", + "Microsoft.EntityFrameworkCore.Relational": "2.2.0", + "Microsoft.EntityFrameworkCore.SqlServer": "2.2.0", + "Microsoft.EntityFrameworkCore.Tools": "2.2.0", + "Microsoft.Extensions.Caching.Abstractions": "2.2.0", + "Microsoft.Extensions.Caching.Memory": "2.2.0", + "Microsoft.Extensions.Caching.SqlServer": "2.2.0", + "Microsoft.Extensions.Configuration": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", + "Microsoft.Extensions.Configuration.Binder": "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.Ini": "2.2.0", + "Microsoft.Extensions.Configuration.Json": "2.2.0", + "Microsoft.Extensions.Configuration.KeyPerFile": "2.2.0", + "Microsoft.Extensions.Configuration.UserSecrets": "2.2.0", + "Microsoft.Extensions.Configuration.Xml": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.DiagnosticAdapter": "2.2.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "2.2.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Composite": "2.2.0", + "Microsoft.Extensions.FileProviders.Embedded": "2.2.0", + "Microsoft.Extensions.FileProviders.Physical": "2.2.0", + "Microsoft.Extensions.FileSystemGlobbing": "2.2.0", + "Microsoft.Extensions.Hosting": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0", + "Microsoft.Extensions.Http": "2.2.0", + "Microsoft.Extensions.Identity.Core": "2.2.0", + "Microsoft.Extensions.Identity.Stores": "2.2.0", + "Microsoft.Extensions.Localization": "2.2.0", + "Microsoft.Extensions.Localization.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "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", + "Microsoft.Extensions.Logging.TraceSource": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "2.2.0", + "Microsoft.Extensions.Options.DataAnnotations": "2.2.0", + "Microsoft.Extensions.Primitives": "2.2.0", + "Microsoft.Extensions.WebEncoders": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Cookies/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Facebook/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.OAuth": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Google/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.OAuth": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication": "2.2.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.MicrosoftAccount/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.OAuth": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.OAuth/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication": "2.2.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.OpenIdConnect/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.OAuth": "2.2.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Twitter/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.OAuth": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.WsFederation/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.CookiePolicy/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cors/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": { + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": { + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Extensions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.DataProtection": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": { + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.EntityFrameworkCore.Relational": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HostFiltering/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Html.Abstractions/2.2.0": { + "dependencies": { + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpOverrides/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpsPolicy/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Identity/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Identity.UI/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.JsonPatch/2.2.0": { + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization.Routing/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Localization": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.MiddlewareAnalysis/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Analyzers/2.2.0": { + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Core": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Cors/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Cors": "2.2.0", + "Microsoft.AspNetCore.Mvc.Core": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "2.2.0", + "Microsoft.AspNetCore.Mvc.Core": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Core": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Localization/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Razor/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "2.2.0", + "Microsoft.CodeAnalysis.Razor": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting": "2.2.0", + "Microsoft.AspNetCore.Mvc.RazorPages": "2.2.0" + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.RazorPages/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.NodeServices/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Owin/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Html.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor.Design/2.2.0": { + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor.Language/2.2.0": { + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor.Runtime/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Html.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Razor": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCompression/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Rewrite/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.HttpSys/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IIS/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IISIntegration/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Session/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections": "1.1.0", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SpaServices/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SpaServices.Extensions/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.StaticFiles/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "compileOnly": true + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "compileOnly": true + }, + "Microsoft.CodeAnalysis.Common/2.8.0": { + "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.5.0", + "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.6.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.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.5.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": {} + }, + "compileOnly": true + }, + "Microsoft.CodeAnalysis.CSharp/2.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "2.8.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "compileOnly": true + }, + "Microsoft.CodeAnalysis.Razor/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.CSharp/4.5.0": { + "compileOnly": true + }, + "Microsoft.DotNet.PlatformAbstractions/2.1.0": { + "dependencies": { + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.EntityFrameworkCore/2.2.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "2.2.0", + "Microsoft.EntityFrameworkCore.Analyzers": "2.2.0", + "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": {} + }, + "compileOnly": true + }, + "Microsoft.EntityFrameworkCore.Abstractions/2.2.0": { + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.EntityFrameworkCore.Analyzers/2.2.0": { + "compileOnly": true + }, + "Microsoft.EntityFrameworkCore.Design/2.2.0": { + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.EntityFrameworkCore.Relational": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {} + }, + "compileOnly": true + }, + "Microsoft.EntityFrameworkCore.InMemory/2.2.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll": {} + }, + "compileOnly": true + }, + "Microsoft.EntityFrameworkCore.Relational/2.2.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {} + }, + "compileOnly": true + }, + "Microsoft.EntityFrameworkCore.SqlServer/2.2.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "2.2.0", + "System.Data.SqlClient": "4.6.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {} + }, + "compileOnly": true + }, + "Microsoft.EntityFrameworkCore.Tools/2.2.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "2.2.0" + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Memory/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.SqlServer/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Binder/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.CommandLine/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "2.2.0", + "Microsoft.Extensions.FileProviders.Physical": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Ini/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "2.2.0", + "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Json/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.KeyPerFile/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "2.2.0", + "Microsoft.Extensions.FileProviders.Physical": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.KeyPerFile.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.UserSecrets/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Json": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Xml/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyInjection/2.2.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyModel/2.1.0": { + "dependencies": { + "Microsoft.DotNet.PlatformAbstractions": "2.1.0", + "Newtonsoft.Json": "11.0.2", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Linq": "4.3.0" + }, + "compile": { + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DiagnosticAdapter/2.2.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "4.5.0" + }, + "compile": { + "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/2.2.0": { + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Composite/2.2.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Embedded/2.2.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Physical/2.2.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.FileSystemGlobbing": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileSystemGlobbing/2.2.0": { + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Http/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Core/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Stores/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization.Abstractions/2.2.0": { + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Configuration/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "2.2.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Console/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Debug/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventSource/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "2.2.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.TraceSource/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.DataAnnotations/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Primitives/2.2.0": { + "dependencies": { + "System.Memory": "4.5.1", + "System.Runtime.CompilerServices.Unsafe": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.WebEncoders/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.IdentityModel.JsonWebTokens/5.3.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "5.3.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + }, + "compileOnly": true + }, + "Microsoft.IdentityModel.Logging/5.3.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.IdentityModel.Protocols/5.3.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.3.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "5.3.0", + "Newtonsoft.Json": "11.0.2", + "System.Dynamic.Runtime": "4.3.0", + "System.IdentityModel.Tokens.Jwt": "5.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + }, + "compileOnly": true + }, + "Microsoft.IdentityModel.Protocols.WsFederation/5.3.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.IdentityModel.Tokens/5.3.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "5.3.0", + "Newtonsoft.Json": "11.0.2", + "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": {} + }, + "compileOnly": true + }, + "Microsoft.IdentityModel.Tokens.Saml/5.3.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "5.3.0", + "Microsoft.IdentityModel.Xml": "5.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.IdentityModel.Xml/5.3.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "5.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.NETCore.App/2.2.0": { + "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": {} + }, + "compileOnly": true + }, + "Microsoft.NETCore.DotNetAppHost/2.2.0": { + "compileOnly": true + }, + "Microsoft.NETCore.DotNetHostPolicy/2.2.0": { + "dependencies": { + "Microsoft.NETCore.DotNetHostResolver": "2.2.0" + }, + "compileOnly": true + }, + "Microsoft.NETCore.DotNetHostResolver/2.2.0": { + "dependencies": { + "Microsoft.NETCore.DotNetAppHost": "2.2.0" + }, + "compileOnly": true + }, + "Microsoft.NETCore.Platforms/2.2.0": { + "compileOnly": true + }, + "Microsoft.NETCore.Targets/2.0.0": { + "compileOnly": true + }, + "Microsoft.Win32.Registry/4.5.0": { + "dependencies": { + "System.Security.AccessControl": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "compileOnly": true + }, + "NETStandard.Library/2.0.3": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0" + }, + "compileOnly": true + }, + "Newtonsoft.Json/11.0.2": { + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "compileOnly": true + }, + "Newtonsoft.Json.Bson/1.0.1": { + "dependencies": { + "NETStandard.Library": "2.0.3", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {} + }, + "compileOnly": true + }, + "Remotion.Linq/2.2.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Linq.Queryable": "4.0.1", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/Remotion.Linq.dll": {} + }, + "compileOnly": true + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "compileOnly": true + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "compileOnly": true + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "compileOnly": true + }, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0" + }, + "compileOnly": true + }, + "runtime.native.System.Data.SqlClient.sni/4.5.0": { + "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" + }, + "compileOnly": true + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0" + }, + "compileOnly": true + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0" + }, + "compileOnly": true + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compileOnly": true + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "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" + }, + "compileOnly": true + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "compileOnly": true + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "compileOnly": true + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "compileOnly": true + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "compileOnly": true + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "compileOnly": true + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "compileOnly": true + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "compileOnly": true + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "compileOnly": true + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "compileOnly": true + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "compileOnly": true + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "compileOnly": true + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Buffers/4.5.0": { + "compileOnly": true + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Collections.Concurrent/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Collections.Immutable/1.5.0": { + "compileOnly": true + }, + "System.Collections.NonGeneric/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Collections.Specialized/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.ComponentModel.Annotations/4.5.0": { + "compileOnly": true + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compileOnly": true + }, + "System.Data.SqlClient/4.6.0": { + "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": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Contracts/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Diagnostics.DiagnosticSource/4.5.0": { + "compileOnly": true + }, + "System.Diagnostics.FileVersionInfo/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.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.6.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compileOnly": true + }, + "System.Diagnostics.StackTrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.6.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Dynamic.Runtime/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.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" + }, + "compileOnly": true + }, + "System.IdentityModel.Tokens.Jwt/5.3.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "5.3.0", + "Microsoft.IdentityModel.Tokens": "5.3.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + }, + "compileOnly": true + }, + "System.Interactive.Async/3.2.0": { + "compile": { + "lib/netstandard2.0/System.Interactive.Async.dll": {} + }, + "compileOnly": true + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compileOnly": true + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "System.Buffers": "4.5.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" + }, + "compileOnly": true + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.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" + }, + "compileOnly": true + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.IO.Pipelines/4.5.2": { + "compile": { + "ref/netstandard1.3/System.IO.Pipelines.dll": {} + }, + "compileOnly": true + }, + "System.Linq/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Linq.Expressions/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Linq.Queryable/4.0.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Memory/4.5.1": { + "compileOnly": true + }, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.5.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" + }, + "compileOnly": true + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compileOnly": true + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "compile": { + "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll": {} + }, + "compileOnly": true + }, + "System.Numerics.Vectors/4.5.0": { + "compileOnly": true + }, + "System.ObjectModel/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Private.DataContractSerialization/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Reflection.Emit/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Reflection.Metadata/1.6.0": { + "compileOnly": true + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0" + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.Unsafe/4.5.1": { + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Xml/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Security.AccessControl/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Claims/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.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" + }, + "compileOnly": true + }, + "System.Security.Cryptography.Cng/4.5.0": { + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.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" + }, + "compileOnly": true + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.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" + }, + "compileOnly": true + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Security.Cryptography.Pkcs/4.5.0": { + "dependencies": { + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compileOnly": true + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.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.5.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" + }, + "compileOnly": true + }, + "System.Security.Cryptography.Xml/4.5.0": { + "dependencies": { + "System.Security.Cryptography.Pkcs": "4.5.0", + "System.Security.Permissions": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Cryptography.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security.Permissions/4.5.0": { + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Permissions.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Security.Principal.Windows/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Text.Encoding.CodePages/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.1" + }, + "compileOnly": true + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compileOnly": true + }, + "System.Text.Encodings.Web/4.5.0": { + "compile": { + "lib/netstandard2.0/System.Text.Encodings.Web.dll": {} + }, + "compileOnly": true + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compileOnly": true + }, + "System.Threading.Channels/4.5.0": { + "compile": { + "lib/netcoreapp2.1/System.Threading.Channels.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.2.0", + "Microsoft.NETCore.Targets": "2.0.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "compileOnly": true + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Threading.Thread/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.ValueTuple/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compileOnly": true + }, + "System.Xml.ReaderWriter/4.3.0": { + "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.5.1" + }, + "compileOnly": true + }, + "System.Xml.XDocument/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Xml.XmlDocument/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Xml.XmlSerializer/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Xml.XPath/4.3.0": { + "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" + }, + "compileOnly": true + }, + "System.Xml.XPath.XDocument/4.3.0": { + "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" + }, + "compileOnly": true + } + } + }, + "libraries": { + "RestaurantReview/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNet.WebApi.Client/5.2.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/76fAHknzvFqbznS6Uj2sOyE9rJB3PltY+f53TH8dX9RiGhk02EhuFCWljSj5nnqKaTsmma8DFR50OGyQ4yJ1g==", + "path": "microsoft.aspnet.webapi.client/5.2.7", + "hashPath": "microsoft.aspnet.webapi.client.5.2.7.nupkg.sha512" + }, + "Microsoft.AspNet.WebApi.Core/5.2.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gM2QzApnHdy1FbKUJ/ROGJSm69P2G+HMoVd/t5Vq1O/zZ5TI4IKC9PX6nUfRt/NHgebZOIWHpB4/4K4inuy4yQ==", + "path": "microsoft.aspnet.webapi.core/5.2.7", + "hashPath": "microsoft.aspnet.webapi.core.5.2.7.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EJWaxi2bI47iEZen/nZkJEDZCrP9Oj3PJtMwBv34Z0ZvvdSkpgsdqlHSud8d5vC53LnCXLfBLewfqHcILDVSDw==", + "path": "microsoft.codeanalysis.csharp.workspaces/2.8.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tJlJ99SD8bHBAXShOG/pXQ1K118cnsF01obEf9aAtdgLbw3yEPahZ7qvWeGMjrheUhvOsSkv/wTKYg9euKa8MQ==", + "path": "microsoft.codeanalysis.workspaces.common/2.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wc71c9HWTeXy9/w9O4Yr2LKmdJjVyIoJ/XQX8/6uma4EAVU25RLtUWlvhA0gpgFw9Kf1TkCv70x+CbKnRw/d8Q==", + "path": "microsoft.visualstudio.web.codegeneration/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wXlpxDfRD5aPypa0p0UE97tkRQvAz9D9FfA2GITzr+LlGIpybyGnxkwGVp0Vha1Ibr0kJG0HdnqfeHME/WuAcQ==", + "path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.contracts.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-APdPavBUYcGPBaW4rjxBVRePWmg0ZzhIRymOzvLFWUtzfvJKw1+8PaCzsH7Uvl+felm0L1UVQwBx1Do0R7j7Xg==", + "path": "microsoft.visualstudio.web.codegeneration.core/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.core.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xH50cYOU+infRq4KikBuu2qeXcwW4tE0D5TDfKLuLrEtDm90aXI+0qygPsqyISf+lOW7L7rQ64BH/dRYkK3c3Q==", + "path": "microsoft.visualstudio.web.codegeneration.design/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.design.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N9S7TeFZjXzNY9OVbz4OFw9cM9oEeMaCnuLFhetNioy/wPwZbgglrctAEYxfDbvocQ17YCAVR2EMRbYHNDHyVg==", + "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sW2lHnOoL1xFnSm/2zSedeUoQPlbhPfWjSuUYsxYUj/N5QmLmH98ZLaqP26k6Om/heR6Gux/veXI96yM1Parow==", + "path": "microsoft.visualstudio.web.codegeneration.templating/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.templating.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/r/y+XpOpbCwN/M/HopjfGTDRlmixTd4G6HG6FaBkD/YF3T1u+4WMRVtuB6zz7aw571HmX+6UokEa6HJSwkPDA==", + "path": "microsoft.visualstudio.web.codegeneration.utils/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegeneration.utils.2.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0gVuA4KUCHFM4M/9SjG+7j7BzZ7SW/BufF97Q78i2VV8JBbQXc/5Rf6YUG1VGW2fwSEOl9+S26utEGS+86GGGw==", + "path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.3", + "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.2.2.3.nupkg.sha512" + }, + "NuGet.Frameworks/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qbXaB76XYUVLocLBs8Z9TS/ERGK2wm797feO+0JEPFvT7o7MRadOR77mqaSD4J1k8G+DlZQyq+MlkCuxrkr3ag==", + "path": "nuget.frameworks/4.7.0", + "hashPath": "nuget.frameworks.4.7.0.nupkg.sha512" + }, + "System.Composition/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==", + "path": "system.composition/1.0.31", + "hashPath": "system.composition.1.0.31.nupkg.sha512" + }, + "System.Composition.AttributedModel/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==", + "path": "system.composition.attributedmodel/1.0.31", + "hashPath": "system.composition.attributedmodel.1.0.31.nupkg.sha512" + }, + "System.Composition.Convention/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==", + "path": "system.composition.convention/1.0.31", + "hashPath": "system.composition.convention.1.0.31.nupkg.sha512" + }, + "System.Composition.Hosting/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==", + "path": "system.composition.hosting/1.0.31", + "hashPath": "system.composition.hosting.1.0.31.nupkg.sha512" + }, + "System.Composition.Runtime/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==", + "path": "system.composition.runtime/1.0.31", + "hashPath": "system.composition.runtime.1.0.31.nupkg.sha512" + }, + "System.Composition.TypedParts/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==", + "path": "system.composition.typedparts/1.0.31", + "hashPath": "system.composition.typedparts.1.0.31.nupkg.sha512" + }, + "System.Linq.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==", + "path": "system.linq.parallel/4.3.0", + "hashPath": "system.linq.parallel.4.3.0.nupkg.sha512" + }, + "Microsoft.AspNetCore/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bs75iht4lXS8uVWy/Cbsr9i0m2jRtnrfPEWU+6t0dQTZcJEfF9b7G2F7XvstLFWkAKSgYRzFkAwi/KypY0Qtew==", + "path": "microsoft.aspnetcore/2.2.0", + "hashPath": "microsoft.aspnetcore.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Antiforgery/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fVQsSXNZz38Ysx8iKwwqfOLHhLrAeKEMBS5Ia3Lh7BJjOC2vPV28/yk08AovOMsB3SNQPGnE7bv+lsIBTmAkvw==", + "path": "microsoft.aspnetcore.antiforgery/2.2.0", + "hashPath": "microsoft.aspnetcore.antiforgery.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.App/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L3W3kgOOU5+2Tdtnzywcs4/a3XFbwcM7Ghvr2uWnhLUvBithluWlGI+0/lXFrDysXaRMLSRJdExSLuSJJQYuTg==", + "path": "microsoft.aspnetcore.app/2.2.0", + "hashPath": "microsoft.aspnetcore.app.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b0R9X7L6zMqNsssKDvhYHuNi5x0s4DyHTeXybIAyGaitKiW1Q5aAGKdV2codHPiePv9yHfC9hAMyScXQ/xXhPw==", + "path": "microsoft.aspnetcore.authentication/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Cookies/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Iar9VFlBHkZGdSG9ZUTmn6Q8Qg+6CtW5G/TyJI2F8B432TOH+nZlkU7O0W0byow6xsxqOYeTviSHz4cCJ3amfQ==", + "path": "microsoft.aspnetcore.authentication.cookies/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.cookies.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", + "path": "microsoft.aspnetcore.authentication.core/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Facebook/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SOc/wjoBntSWVZ6uG0R/TqQ0xmxu2H1PhkuYxINYpkUB7s3cQQuRDyZtJIdQonzpWVwBRj0ImwktiMaBF/7ihQ==", + "path": "microsoft.aspnetcore.authentication.facebook/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.facebook.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Google/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-norGVE0KRIT0pdNKhlLlsMi/7O69ACpx2RSj8rMHCoMRETCYH4PTqUbHI1kkfAGNUtcuQ8VIGIXSa1ZdGKWcdA==", + "path": "microsoft.aspnetcore.authentication.google/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.google.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FnyoLdiIo8KDobVcDuUYYFSbQYp1OR8vSMIOcW6M5+dtF9TC6XvCCS8Ook+DSbqUj6HPxwOIKa5BeIZm1/EpMw==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.MicrosoftAccount/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-troBjvJAMK7P2Vb5sDOzCztq9vR8BJtajDznam2XuQai7kLh5z7cmkB+2zMin+K/HzNjqItJSuSyuaK2PoZ8nA==", + "path": "microsoft.aspnetcore.authentication.microsoftaccount/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.microsoftaccount.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.OAuth/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i33SSdJd0g3ENRnHczgzrOlru3ciPsyYHMgAh90sbURS8wuBx0Y4xXfRQcYfu1W0/uiHQO832KNb/ICINWqLzA==", + "path": "microsoft.aspnetcore.authentication.oauth/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.oauth.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.OpenIdConnect/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y4iu3vMFnkMTaqT9mCJhD3XUMfavNP0CoOeNOHd7ArqZfgzs3GqAPcBc8Ld6mK2u5OOva8C6bhnQfRu9z0qJKQ==", + "path": "microsoft.aspnetcore.authentication.openidconnect/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.openidconnect.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Twitter/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wKfJeBL+13duv0o4q9zp4pW7UopBHaLafnq2GiIJTcu1x3RR/1N4sRIIppLSIJdulgM1XfNOivlIE2FEfZpmog==", + "path": "microsoft.aspnetcore.authentication.twitter/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.twitter.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.WsFederation/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TIBkO7Tx8uWXNL5Z7/6+iKdhTS+D9dpJMNcmiVxrAJUqxL4EWGHNqJyUp5yqI76GmbrT4GD23T3cUsSuCi7E0A==", + "path": "microsoft.aspnetcore.authentication.wsfederation/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.wsfederation.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.CookiePolicy/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Kn9CvhNsxRup/5SJfD4/YP3AbFwLJX8u3tKKyQszjUIvjE7M6lU93W44zlqBxltS94gTdLmo2ixPWDNeZthi1w==", + "path": "microsoft.aspnetcore.cookiepolicy/2.2.0", + "hashPath": "microsoft.aspnetcore.cookiepolicy.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cors/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LFlTM3ThS3ZCILuKnjy8HyK9/IlDh3opogdbCVx6tMGyDzTQBgMPXLjGDLtMk5QmLDCcP3l1TO3z/+1viA8GUg==", + "path": "microsoft.aspnetcore.cors/2.2.0", + "hashPath": "microsoft.aspnetcore.cors.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GXmMD8/vuTLPLvKzKEPz/4vapC5e0cwx1tUVd83ePRyWF9CCrn/pg4/1I+tGkQqFLPvi3nlI2QtPtC6MQN8Nww==", + "path": "microsoft.aspnetcore.cryptography.internal/2.2.0", + "hashPath": "microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NCY0PH3nrFYbhqiq72rwWsUXlV4OAE0MOukvGvIBOTnEPMC1yVL42k1DXLnaIu+c0yfMAxIIG9Iuaykp9BQQQw==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/2.2.0", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.DataProtection/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G6dvu5Nd2vjpYbzazZ//qBFbSEf2wmBUbyAR7E4AwO3gWjhoJD5YxpThcGJb7oE3VUcW65SVMXT+cPCiiBg8Sg==", + "path": "microsoft.aspnetcore.dataprotection/2.2.0", + "hashPath": "microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-seANFXmp8mb5Y12m1ShiElJ3ZdOT3mBN3wA1GPhHJIvZ/BxOCPyqEOR+810OWsxEZwA5r5fDRNpG/CqiJmQnJg==", + "path": "microsoft.aspnetcore.dataprotection.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.DataProtection.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Goo1xU9WJnEJ0dKDgYFF+hFQqRMLKjf9zc8Bu3PaBdGncR7QwDMeFIkO7FEM6izaC38QjYrs1Q5AsmljkPyOrw==", + "path": "microsoft.aspnetcore.dataprotection.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.dataprotection.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Diagnostics/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RobNuZecn/eefWVApOE+OWAZXCdgfzm8pB7tBvJkahsjWfn1a+bLM9I2cuKlp/9aFBok1O/oDXlgYSvaQYu/yg==", + "path": "microsoft.aspnetcore.diagnostics/2.2.0", + "hashPath": "microsoft.aspnetcore.diagnostics.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pva9ggfUDtnJIKzv0+wxwTX7LduDx6xLSpMqWwdOJkW52L0t31PI78+v+WqqMpUtMzcKug24jGs3nTFpAmA/2g==", + "path": "microsoft.aspnetcore.diagnostics.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xAIXyVmrTcVIJ38/j0TVMRlChC25k+cEAeSYotWhAnho3urzf1EfhoyyNdVytZbbBskue5i6XBL8gA1vlp5KGg==", + "path": "microsoft.aspnetcore.diagnostics.entityframeworkcore/2.2.0", + "hashPath": "microsoft.aspnetcore.diagnostics.entityframeworkcore.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RNmdLy9yncTprony49cuwhyTKoROpVflGM+pKlHA1671F00QUsjoY1Oi6xoa9XsUrfRDRYlxbt2CHYCMLzMh7Q==", + "path": "microsoft.aspnetcore.diagnostics.healthchecks/2.2.0", + "hashPath": "microsoft.aspnetcore.diagnostics.healthchecks.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.HostFiltering/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JSX6ZlVWDkokZ+xCKDhUVQNqbmFn1lHQNzJc8K4Y/uTUocZS83+b/8Q7y/yx3oJ362etGMVy0keAvmCdqbP8nA==", + "path": "microsoft.aspnetcore.hostfiltering/2.2.0", + "hashPath": "microsoft.aspnetcore.hostfiltering.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7t4RbUGugpHtQmzAkc9fpDdYJg6t/jcB2VVnjensVYbZFnLDU8pNrG0hrekk1DQG7P2UzpSqKLzDsFF0/lkkbw==", + "path": "microsoft.aspnetcore.hosting/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Html.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y4rs5aMEXY8G7wJo5S3EEt6ltqyOTr/qOeZzfn+hw/fuQj5GppGckMY5psGLETo1U9hcT5MmAhaT5xtusM1b5g==", + "path": "microsoft.aspnetcore.html.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", + "path": "microsoft.aspnetcore.http/2.2.0", + "hashPath": "microsoft.aspnetcore.http.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==", + "path": "microsoft.aspnetcore.http.connections/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mYk5QUUjyXQmlyDHWDjkLYDArt97plwe6KsDsNVhDEQ+HgZMKGjISyM6YSA7BERQNR25kXBTbIYfSy1vePGQgg==", + "path": "microsoft.aspnetcore.http.connections.common/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.HttpOverrides/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pOlLQyNKQduGbtbgB55RyTHFeshSfKi3DmofrVjk+UBQjyp+Tm0RNNJFQf+sv34hlFsel+VnD79QyO9Zk/c3oA==", + "path": "microsoft.aspnetcore.httpoverrides/2.2.0", + "hashPath": "microsoft.aspnetcore.httpoverrides.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.HttpsPolicy/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0EmmwzAkWEPCC8rpg9nGfcOiitIOYkZ13f+b5ED7AAZvz/ZwkdWbeMarGf77lSyA+Mb9O/iAt4LWup0RRMVOJw==", + "path": "microsoft.aspnetcore.httpspolicy/2.2.0", + "hashPath": "microsoft.aspnetcore.httpspolicy.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-F16BKeS96wKhyIyhaFR7m8kRIwIvPUW9Dx7IlGWmu2IIwnUDCdo+2z7IrWKA8r77pZQ1UE9kYcBPg5456YdAIA==", + "path": "microsoft.aspnetcore.identity/2.2.0", + "hashPath": "microsoft.aspnetcore.identity.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGJ8f8sE9vbnyPJpSCMYAjh1itkM8uL9QnkO5lQSSJGeyG4b1+zNoLS+leJgjGnlkTzgWPffc4OuqH7wsYahWw==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/2.2.0", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.UI/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T4B/Uaqd4u7jN6XDHbEBTZO002HquQKU49V+PvWEGKoiJBgZ96JskDr/NsfgVin8n8/bRSx+4A1WwlkMDKcNBg==", + "path": "microsoft.aspnetcore.identity.ui/2.2.0", + "hashPath": "microsoft.aspnetcore.identity.ui.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.JsonPatch/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-o9BB9hftnCsyJalz9IT0DUFxz8Xvgh3TOfGWolpuf19duxB4FySq7c25XDYBmBMS+sun5/PsEUAi58ra4iJAoA==", + "path": "microsoft.aspnetcore.jsonpatch/2.2.0", + "hashPath": "microsoft.aspnetcore.jsonpatch.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Localization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+PGX1mEfq19EVvskBBb9XBQrXZpZrh6hYhX0x3FkPTEqr+rDM2ZmsEwAAMRmzcidmlDM1/7cyDSU/WhkecU8tA==", + "path": "microsoft.aspnetcore.localization/2.2.0", + "hashPath": "microsoft.aspnetcore.localization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Localization.Routing/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kjheDUpXWaGOH8bUQafFAkUvw74xoe0Y2hojgeYaAg5LKvaFUwupkz8wgyhfSbLdejxEQJ6PsA7Zq/AcdPoIUQ==", + "path": "microsoft.aspnetcore.localization.routing/2.2.0", + "hashPath": "microsoft.aspnetcore.localization.routing.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.MiddlewareAnalysis/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GISp0KoVyJ4llqkmUOWFbOb7g/rOABlsf0Nt8a4eanY71XfUCM0dqBaMct3IUE3KWUvjhKPACQimxgMjPcF7pA==", + "path": "microsoft.aspnetcore.middlewareanalysis/2.2.0", + "hashPath": "microsoft.aspnetcore.middlewareanalysis.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-noun9xcrEvOs/ubczt2OluY9/bOOM2erv1D/gyyYtfS2sfyx2uGknUIAWoqmqc401TvQDysyx8S4M9j5zPIVBw==", + "path": "microsoft.aspnetcore.mvc/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", + "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Analyzers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wxxt1rFVHITp4MDaGQP/wyl+ROVVVeQCTWI6C8hxI8X66C4u6gcxvelqgnmsn+dISMCdE/7FQOwgiMx1HxuZqA==", + "path": "microsoft.aspnetcore.mvc.analyzers/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.analyzers.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iSREQct43Xg2t3KiQ2648e064al/HSLPXpI5yO9VPeTGDspWKHW23XFHRKPN1YjIQHHfBj8ytXbiF0XcSxp5pg==", + "path": "microsoft.aspnetcore.mvc.apiexplorer/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.apiexplorer.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ALiY4a6BYsghw8PT5+VU593Kqp911U3w9f/dH9/ZoI3ezDsDAGiObqPu/HP1oXK80Ceu0XdQ3F0bx5AXBeuN/Q==", + "path": "microsoft.aspnetcore.mvc.core/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Cors/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oINjMqhU7yzT2T9AMuvktlWlMd40i0do8E1aYslJS+c5fof+EMhjnwTh6cHN1dfrgjkoXJ/gutxn5Qaqf/81Kg==", + "path": "microsoft.aspnetcore.mvc.cors/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.cors.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WOw4SA3oT47aiU7ZjN/88j+b79YU6VftmHmxK29Km3PTI7WZdmw675QTcgWfsjEX4joCB82v7TvarO3D0oqOyw==", + "path": "microsoft.aspnetcore.mvc.dataannotations/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.dataannotations.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ScWwXrkAvw6PekWUFkIr5qa9NKn4uZGRvxtt3DvtUrBYW5Iu2y4SS/vx79JN0XDHNYgAJ81nVs+4M7UE1Y/O+g==", + "path": "microsoft.aspnetcore.mvc.formatters.json/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4pUhKtqhaNqSeMRRyEw1kGjg/pNLczzd4VAsanMGI539sCdkl1JBaoFojZb1helVdUvX9a1Jo+lYXq0lnwB/GQ==", + "path": "microsoft.aspnetcore.mvc.formatters.xml/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.formatters.xml.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Localization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H1L4pP124mrN6duwOtNVIJUqy4CczC2/ah4MXarRt9ZRpJd2zNp1j3tJCgyEQpqai6zNVP6Vp2ZRMQcNDcNAKA==", + "path": "microsoft.aspnetcore.mvc.localization/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.localization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TXvEOjp3r6qDEjmDtv3pXjQr/Zia9PpoGkl1MyTEqKqrUehBTpAdCjA8APXFwun19lH20OuyU+e4zDYv9g134w==", + "path": "microsoft.aspnetcore.mvc.razor/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.razor.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Sei/0moqBDQKaAYT9PtOeRtvYgHQQLyw/jm3exHw2w9VdzejiMEqCQrN2d63Dk4y7IY0Irr/P9JUFkoVURRcNw==", + "path": "microsoft.aspnetcore.mvc.razor.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.razor.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dys8ggIDth3g5GBpCfeayU9sNg6Z9IbKFKOuaXbVaAiZQUd+Egk9op4NLHpqfR9Ey2HGw+u87LYC55bhEeOpag==", + "path": "microsoft.aspnetcore.mvc.razor.viewcompilation/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.razor.viewcompilation.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.RazorPages/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GsMs4QKCf5VgdGZq9/nfAVkMJ/8uE4ie0Iugv4FtxbHBmMdpPQQBfTFKoUpwMbgIRw7hzV8xy2HPPU5o58PsdQ==", + "path": "microsoft.aspnetcore.mvc.razorpages/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.razorpages.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hsrm/dLx7ztfWV+WEE7O8YqEePW7TmUwFwR7JsOUSTKaV9uSeghdmoOsYuk0HeoTiMhRxH8InQVE9/BgBj+jog==", + "path": "microsoft.aspnetcore.mvc.taghelpers/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.taghelpers.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dt7MGkzCFVTAD5oesI8UeVVeiSgaZ0tPdFstQjG6YLJSCiq1koOUSHMpf0PASGdOW/H9hxXkolIBhT5dWqJi7g==", + "path": "microsoft.aspnetcore.mvc.viewfeatures/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.viewfeatures.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.NodeServices/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ML+s+nv/ri3MxM4vXjTK3S4K925TGklSKH74VOkCqWQF9ki5yuYcyxaWTUsCyAXliw+N8HMNmW++uU81JngDDg==", + "path": "microsoft.aspnetcore.nodeservices/2.2.0", + "hashPath": "microsoft.aspnetcore.nodeservices.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Owin/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h9QIdnrH7fOTQgUwjz/v0fDk8j8JNtUB233gYFtngt7jLoVc7vfMEGs9rnOWh8ubz+JdrMt7UBrva07af4Smxw==", + "path": "microsoft.aspnetcore.owin/2.2.0", + "hashPath": "microsoft.aspnetcore.owin.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V54PIyDCFl8COnTp9gezNHpUNHk7F9UnerGeZy3UfbnwYvfzbo+ipqQmSgeoESH8e0JvKhRTyQyZquW2EPtCmg==", + "path": "microsoft.aspnetcore.razor/2.2.0", + "hashPath": "microsoft.aspnetcore.razor.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Design/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VLWK+ZtMMNukY6XjxYHc7mz33vkquoEzQJHm/LCF5REVxIaexLr+UTImljRRJBdUDJluDAQwU+59IX0rFDfURA==", + "path": "microsoft.aspnetcore.razor.design/2.2.0", + "hashPath": "microsoft.aspnetcore.razor.design.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IeyzVFXZdpUAnWKWoNYE0SsP1Eu7JLjZaC94jaI1VfGtK57QykROz/iGMc8D0VcqC8i02qYTPQN/wPKm6PfidA==", + "path": "microsoft.aspnetcore.razor.language/2.2.0", + "hashPath": "microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Runtime/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7YqK+H61lN6yj9RiQUko7oaOhKtRR9Q/kBcoWNRemhJdTIWOh1OmdvJKzZrMWOlff3BAjejkPQm+0V0qXk+B1w==", + "path": "microsoft.aspnetcore.razor.runtime/2.2.0", + "hashPath": "microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.ResponseCaching/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEBP1UwGD7X1vhO43LN5KhZDt4HMTX7u1YA0nq7HR6IDRhWczHczJPDu3GbL01IMdb03hyT/glJIv8PI5zKtnA==", + "path": "microsoft.aspnetcore.responsecaching/2.2.0", + "hashPath": "microsoft.aspnetcore.responsecaching.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", + "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.ResponseCompression/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RvSstOhebIMDdRLd4iWjA6z2o2kGGwEYGPajvTXwndOA3TZpWH3FOIV4L7mehN/HoKrbTbX5vZ54ZFDwWoAFKA==", + "path": "microsoft.aspnetcore.responsecompression/2.2.0", + "hashPath": "microsoft.aspnetcore.responsecompression.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Rewrite/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jztwQxyn4CcWZj/1mQtFiZ5+pIWYltHIXk5ykyrXMjO6qaKVvc+mlffSUCQ0AOl3vH7vxsZnda8poHwVaT0QIA==", + "path": "microsoft.aspnetcore.rewrite/2.2.0", + "hashPath": "microsoft.aspnetcore.rewrite.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "path": "microsoft.aspnetcore.routing/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Server.HttpSys/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tei37PK4c6CKd7tGgAOkpbePwu8WLjqsEfiAfLbaMXnmp7o30bzcIxtraTrjvq2SpRAFA9p6WwUbmyqQxXPcfQ==", + "path": "microsoft.aspnetcore.server.httpsys/2.2.0", + "hashPath": "microsoft.aspnetcore.server.httpsys.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Server.IIS/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6NEwFAJFrnZ0f5eJB1ReIpgPM1ZRDj3IE3Rda01nD3vJANCyJFjZ4SGW3Ckn1AmMi225fGflWzpCKLb7/l43jw==", + "path": "microsoft.aspnetcore.server.iis/2.2.0", + "hashPath": "microsoft.aspnetcore.server.iis.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Server.IISIntegration/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iVjgAg+doTTrTFCOq6kZRpebXq94YGCx9efMIwO5QhwdY/sHAjfrVz2lXzji63G96YjJVK3ZRrlpgS2fd49ABw==", + "path": "microsoft.aspnetcore.server.iisintegration/2.2.0", + "hashPath": "microsoft.aspnetcore.server.iisintegration.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Server.Kestrel/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D0vGB8Tp0UNMiAhT+pwAVeqDDx2OFrfpu/plwm0WhA+1DZvTLc99eDwGISL6LAY8x7a12lhl9w7/m+VdoyDu8Q==", + "path": "microsoft.aspnetcore.server.kestrel/2.2.0", + "hashPath": "microsoft.aspnetcore.server.kestrel.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-F6/Vesd3ODq/ISbHfcvfRf7IzRtTvrNX8VA36Knm5e7bteJhoRA2GKQUVQ+neoO1njLvaQKnjcA3rdCZ6AF6cg==", + "path": "microsoft.aspnetcore.server.kestrel.core/2.2.0", + "hashPath": "microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nEH5mU6idUYS3/+9BKw2stMOM25ZdGwIH4P4kyj6PVkMPgQUTkBQ7l/ScPkepdhejcOlPa+g3+M4dYsSYPUJ8g==", + "path": "microsoft.aspnetcore.server.kestrel.https/2.2.0", + "hashPath": "microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j1ai2CG8BGp4mYf2TWSFjjy1pRgW9XbqhdR4EOVvrlFVbcpEPfXNIPEdjkcgK+txWCupGzkFnFF8oZsASMtmyw==", + "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qTACI0wePgAKCH+YKrMgChyfqJpjwgGZEtSuwBw6TjWLQ66THGasleia/7EZz2t2eAjwWxw8RA/D8ODrBqpj9A==", + "path": "microsoft.aspnetcore.server.kestrel.transport.sockets/2.2.0", + "hashPath": "microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Session/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lOjJVh293AKaOEPi1MIC1/G9gOVZMrve2a05o56oslK6bo0PMgMB17rmPomvqrJAjMdlWZ/MGdN2y78Z9wzWTw==", + "path": "microsoft.aspnetcore.session/2.2.0", + "hashPath": "microsoft.aspnetcore.session.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==", + "path": "microsoft.aspnetcore.signalr/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SpaServices/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hUAsOd45CQbUV47b/c5wp6uKM0Fa6MXekFHbRb+jEPjzmrxLPn9nAKK1dYmyMAqSBRL8c6zVCWQk+TOP7eGs/A==", + "path": "microsoft.aspnetcore.spaservices/2.2.0", + "hashPath": "microsoft.aspnetcore.spaservices.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SpaServices.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RvzzubzGPD+dGCfKVVtAvyIsnWpAWOA/x1n6fGLwICPER7Ze6budQGFPdZ7yuXTwtTMRvHa4O4AaGLG1XmoXGw==", + "path": "microsoft.aspnetcore.spaservices.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.spaservices.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.StaticFiles/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-byZDrjir6Co5EoWbraQyG0qbPCUG6XgGYQstipMF9lucOAjq/mqnIyt8B8iMWnin/ghZoOln9Y01af4rUAwOhA==", + "path": "microsoft.aspnetcore.staticfiles/2.2.0", + "hashPath": "microsoft.aspnetcore.staticfiles.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==", + "path": "microsoft.aspnetcore.websockets/2.2.0", + "hashPath": "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", + "path": "microsoft.codeanalysis.analyzers/1.1.0", + "hashPath": "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-06AzG7oOLKTCN1EnoVYL1bQz+Zwa10LMpUn7Kc+PdpN8CQXRqXTyhfxuKIz6t0qWfoatBNXdHD0OLcEYp5pOvQ==", + "path": "microsoft.codeanalysis.common/2.8.0", + "hashPath": "microsoft.codeanalysis.common.2.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RizcFXuHgGmeuZhxxE1qQdhFA9lGOHlk0MJlCUt6LOnYsevo72gNikPcbANFHY02YK8L/buNrihchY0TroGvXQ==", + "path": "microsoft.codeanalysis.csharp/2.8.0", + "hashPath": "microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Razor/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2qL0Qyu5qHzg6/JzF80mLgsqn9NP/Q0mQwjH+Z+DiqcuODJx8segjN4un2Tnz6bEAWv8FCRFNXR/s5wzlxqA8A==", + "path": "microsoft.codeanalysis.razor/2.2.0", + "hashPath": "microsoft.codeanalysis.razor.2.2.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "path": "microsoft.csharp/4.5.0", + "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512" + }, + "Microsoft.DotNet.PlatformAbstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==", + "path": "microsoft.dotnet.platformabstractions/2.1.0", + "hashPath": "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xfDHe+J94oz2d+ESDU8u+96iSfsiPwpgYGPRSp/bato0Ekjz5kYs61u9mS0GN5t8n/wxc5P3uEJm1x7TfROxhQ==", + "path": "microsoft.entityframeworkcore/2.2.0", + "hashPath": "microsoft.entityframeworkcore.2.2.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/js/H09B8MQGoPDFzJoaAealyL66g4vKf7DVcdBYcxgKztkttjZbRzSWKF9PZZFyfBl9Ia/BiStM70t7kjgMpg==", + "path": "microsoft.entityframeworkcore.abstractions/2.2.0", + "hashPath": "microsoft.entityframeworkcore.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/1rw3toRCal80Ch51lIjuf/0WfW9ZGB4eRY1y6GOcOoOvnMXXXt+4xMRw/0k0kIwHsWUNXUpw73jf40/Pe+ZYA==", + "path": "microsoft.entityframeworkcore.analyzers/2.2.0", + "hashPath": "microsoft.entityframeworkcore.analyzers.2.2.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mcsUEzg1bWvPgj/isz7aabDy41x+x8WBTmSF+JFsDGe3K5ZElWT2FSr3LLmkXk/5BLWJ3f9SDe0YR55u3ZgHrw==", + "path": "microsoft.entityframeworkcore.design/2.2.0", + "hashPath": "microsoft.entityframeworkcore.design.2.2.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.InMemory/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WxvRXUwCGdY1Ze8GfZteWadsxrxpFRfZN8WJ1jcXZKp5eYo5WwmiBq5e3xIZR8cHxznqlqczJ3NpXjqyYpNK9w==", + "path": "microsoft.entityframeworkcore.inmemory/2.2.0", + "hashPath": "microsoft.entityframeworkcore.inmemory.2.2.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CRJHHp/GqmXByeeODgbDgMDWId9kKT9TDRzHF8voWHFNTajBQl0U4jaMrHxjIP6hJ2olF8n+5GYmQv+v3bUVKQ==", + "path": "microsoft.entityframeworkcore.relational/2.2.0", + "hashPath": "microsoft.entityframeworkcore.relational.2.2.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.SqlServer/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rCGBF6Hab9633Dh2xtiAcJnDxf2CjaBrGyoagoCoYHH5Ftbdw5zX/e9ABgif5ngzh7DsrBcgxK/3gHBZ2n+TGA==", + "path": "microsoft.entityframeworkcore.sqlserver/2.2.0", + "hashPath": "microsoft.entityframeworkcore.sqlserver.2.2.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Tools/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-F253CmzpL7eXFKpK++/GIVbyVMZyXYq388osdkggsA1eL7c8ZGwHho0jE3LGA+L6WuXm6KbwQMtnt15zZAqzzA==", + "path": "microsoft.entityframeworkcore.tools/2.2.0", + "hashPath": "microsoft.entityframeworkcore.tools.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-spsJkYo8gGJapaxTSQFN/wqA+ghpJMLwB4ZyTB+fSdpd7AmMFP/YSpIcGmczcw4KggpxLGhLk7lCkSIlgvHaqQ==", + "path": "microsoft.extensions.caching.abstractions/2.2.0", + "hashPath": "microsoft.extensions.caching.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yFs44RzB2Pzfoj4uk+mEz3MTTQKyeWb8gDhv5GyVPfHnLv0eQhGwzbw/5WpxAcVyOgG/H3/0ULY6g0/7/B+r7w==", + "path": "microsoft.extensions.caching.memory/2.2.0", + "hashPath": "microsoft.extensions.caching.memory.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.SqlServer/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDAunudTCNyVb22W+ctToi9T3mcrix2L+GfnuhbIcbzgXVyUGMULUJmb2D5ElIJKkcGxkC/lM1aBMgHsSFFZcA==", + "path": "microsoft.extensions.caching.sqlserver/2.2.0", + "hashPath": "microsoft.extensions.caching.sqlserver.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nOP8R1mVb/6mZtm2qgAJXn/LFm/2kMjHDAg/QJLFG6CuWYJtaD3p1BwQhufBVvRzL9ceJ/xF0SQ0qsI2GkDQAA==", + "path": "microsoft.extensions.configuration/2.2.0", + "hashPath": "microsoft.extensions.configuration.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==", + "path": "microsoft.extensions.configuration.abstractions/2.2.0", + "hashPath": "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vJ9xvOZCnUAIHcGC3SU35r3HKmHTVIeHzo6u/qzlHAqD8m6xv92MLin4oJntTvkpKxVX3vI1GFFkIQtU3AdlsQ==", + "path": "microsoft.extensions.configuration.binder/2.2.0", + "hashPath": "microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.CommandLine/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4kJIGOSRqD1Ccqerst4t/zsNs51plR7BIxbdKO1J/9rL+2DuNT+ieAuEv+HROelqTam3yOpKFR7TtHBt3oLpOA==", + "path": "microsoft.extensions.configuration.commandline/2.2.0", + "hashPath": "microsoft.extensions.configuration.commandline.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gIqt9PkKO01hZ0zmHnWrZ1E45MDreZTVoyDbL1kMWKtDgxxWTJpYtESTEcgpvR1uB1iex1zKGYzJpOMgmuP5TQ==", + "path": "microsoft.extensions.configuration.environmentvariables/2.2.0", + "hashPath": "microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H1qCpWBC8Ed4tguTR/qYkbb3F6DI5Su3t8xyFo3/5MzAd8PwPpHzgX8X04KbBxKmk173Pb64x7xMHarczVFQUA==", + "path": "microsoft.extensions.configuration.fileextensions/2.2.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Ini/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uEDasBxY7m0GJseqHD8QhfiznxDMhxN9YE3j01Es6eks42rRm3yL8ZMbRxuEjyKqGZqjjt+Vr297/nKcg0eOow==", + "path": "microsoft.extensions.configuration.ini/2.2.0", + "hashPath": "microsoft.extensions.configuration.ini.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jUDdmLyFmLf9V3mqnMzSAzAv4QigJ67tZh5Q7HBXeBnESL2UyeesNG6jSBti+b63JpxZf+EDyn+anx3gyrNxug==", + "path": "microsoft.extensions.configuration.json/2.2.0", + "hashPath": "microsoft.extensions.configuration.json.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.KeyPerFile/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qK7vVxtUrpxdQPhvjF3RVYkcV86q/QfMBWqvvXAKYYkQ+H/4GXxk5cbPaSWdMZB5YU1GBEFBuZg9MZxDRvPJkg==", + "path": "microsoft.extensions.configuration.keyperfile/2.2.0", + "hashPath": "microsoft.extensions.configuration.keyperfile.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.UserSecrets/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2/N2xo6/sNbVshnKktmq5lwaQbsAR2SrzCVrJEeMP8OKZVI7SzT8P6/WXZF8/YC7dTYsMe3nrHzgl1cF9i5ZKQ==", + "path": "microsoft.extensions.configuration.usersecrets/2.2.0", + "hashPath": "microsoft.extensions.configuration.usersecrets.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Xml/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-toCFesKf2KZgRtb6T7tulnJv3IBVL+Gqd4KE3ebQZ20wA2Z5Rp6A44MsRGZ1ollmihzkxxBDavVfgufFeji3Sw==", + "path": "microsoft.extensions.configuration.xml/2.2.0", + "hashPath": "microsoft.extensions.configuration.xml.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==", + "path": "microsoft.extensions.dependencyinjection/2.2.0", + "hashPath": "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==", + "path": "microsoft.extensions.dependencymodel/2.1.0", + "hashPath": "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.DiagnosticAdapter/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Av0QGyboU9hYcprPduZg8Ny4mtp1Z0xOfZGCiBhYMh6a0loNomZ74U1P9EJUBksT2ZJd0+hh/pOQIVdAJ8+AbA==", + "path": "microsoft.extensions.diagnosticadapter/2.2.0", + "hashPath": "microsoft.extensions.diagnosticadapter.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p9njfetdebuplBCkIJPqyxsUIOBf/7B/RhPXZnFjh+/wqWNRqhP/1s18q1me9XP0l8uCD8TqJRPC+L0MCoUGRA==", + "path": "microsoft.extensions.diagnostics.healthchecks/2.2.0", + "hashPath": "microsoft.extensions.diagnostics.healthchecks.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cO6f4csTakJXuLWnU/p5mfQInyNq5sSi4mS2YtQZcGoHynU6P/TD6gjqt1TRnVfwuZLw3tmmw2ipFrHbBUqWew==", + "path": "microsoft.extensions.diagnostics.healthchecks.abstractions/2.2.0", + "hashPath": "microsoft.extensions.diagnostics.healthchecks.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==", + "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Composite/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Az/RxWB+UlyVN/TvQFaGXx8XAXVZN5WQnnuJOsjwBzghSJc1i8zqNjIypPHOedcuIXs2XSWgOSL6YQ3BlCnoJA==", + "path": "microsoft.extensions.fileproviders.composite/2.2.0", + "hashPath": "microsoft.extensions.fileproviders.composite.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Embedded/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6e22jnVntG9JLLowjY40UBPLXkKTRlDpFHmo2evN8lwZIpO89ZRGz6JRdqhnVYCaavq5KeFU2W5VKPA5y5farA==", + "path": "microsoft.extensions.fileproviders.embedded/2.2.0", + "hashPath": "microsoft.extensions.fileproviders.embedded.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tbDHZnBJkjYd9NjlRZ9ondDiv1Te3KYCTW2RWpR1B0e1Z8+EnFRo7qNnHkkSCixLdlPZzhjlX24d/PixQ7w2dA==", + "path": "microsoft.extensions.fileproviders.physical/2.2.0", + "hashPath": "microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZSsHZp3PyW6vk37tDEdypjgGlNtpJ0EixBMOfUod2Thx7GtwfFSAQXUQx8a8BN8vfWKGGMbp7jPWdoHx/At4wQ==", + "path": "microsoft.extensions.filesystemglobbing/2.2.0", + "hashPath": "microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PxZPd5QbWr8+3JN2segEaD7IAYI+mR8ZmMqgo6GOk+E+UKnRcbC3RSQgJrZYuWVQwJCvdxesO5e64LSHC1zC8g==", + "path": "microsoft.extensions.hosting/2.2.0", + "hashPath": "microsoft.extensions.hosting.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==", + "path": "microsoft.extensions.hosting.abstractions/2.2.0", + "hashPath": "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hZ8mz6FgxSeFtkHzw+Ad0QOt2yjjpq4WaG9itnkyChtXYTrDlbkw3af2WJ9wdEAAyYqOlQaVDB6MJSEo8dd/vw==", + "path": "microsoft.extensions.http/2.2.0", + "hashPath": "microsoft.extensions.http.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/C+Valwg8IeUwDIunusittHivA9iyf82Jr1yeUFWO2zH2mDMMeYgjRyDLZqfL/7Vq94PEQsgv1XAaDfAX8msMw==", + "path": "microsoft.extensions.identity.core/2.2.0", + "hashPath": "microsoft.extensions.identity.core.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WY6os4m5LcG7XXHQK1vQggjdNFs7h6CsidVLOzPjG7Cb1zwRYKzfRT/pSUD40JNGvVp4oNENjLPvu/30ufIGNw==", + "path": "microsoft.extensions.identity.stores/2.2.0", + "hashPath": "microsoft.extensions.identity.stores.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Localization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3nBQLeBrcd4Rgd9vQi4gF5NgAWxnQrHekjjwlgww4wyLNfJDizjiex2resOLoAuAgy3y2IIAWjOpbr0UKR2ykw==", + "path": "microsoft.extensions.localization/2.2.0", + "hashPath": "microsoft.extensions.localization.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Localization.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FQzXG/lYR9UOM2zHpqsjTRpp3EghIYo3FCsQpfmtbp+glPaU0WXZfNmMjyqBRmMj1Sq93fPnC+G9zzYRauuRQA==", + "path": "microsoft.extensions.localization.abstractions/2.2.0", + "hashPath": "microsoft.extensions.localization.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxqhadc9FCmFHzU+fz3oc8sFlE6IadViYg8dfUdGzJZ2JUxnCsRghBhhOWdM4B2zSZqEc+0BjliBh/oNdRZuig==", + "path": "microsoft.extensions.logging/2.2.0", + "hashPath": "microsoft.extensions.logging.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ukU1mQGX9+xBsEzpNd13yl4deFVYI+fxxnmKpOhvNZsF+/trCrAUQh+9QM5pPGHbfYkz3lLQ4BXfKCP0502dLw==", + "path": "microsoft.extensions.logging.configuration/2.2.0", + "hashPath": "microsoft.extensions.logging.configuration.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1eGgcOJ++PMxW6sn++j6U7wsWvhEBm/5ScqBUUBGLRE8M7AHahi9tsxivDMqEXVM3F0/pshHl3kEpMXtw4BeFg==", + "path": "microsoft.extensions.logging.console/2.2.0", + "hashPath": "microsoft.extensions.logging.console.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JjqWtshxUujSnxslFccCRAaH8uFOciqXkYdRw+h5MwpC4sUc+ju9yZzvVi6PA5vW09ckv26EkasEvXrofGiaJg==", + "path": "microsoft.extensions.logging.debug/2.2.0", + "hashPath": "microsoft.extensions.logging.debug.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventSource/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oOa5H+vdNgpsxE6vgtX4U/godKtX2edVi+QjlWb2PBQfavGIQ3WxtjxN+B0DQAjwBNdV4mW8cgOiDEZ8KdR7Ig==", + "path": "microsoft.extensions.logging.eventsource/2.2.0", + "hashPath": "microsoft.extensions.logging.eventsource.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.TraceSource/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2laIg/Mf1OhhduUKVN3//j+sYceyUocgGC/ySx6cnZFeNf2mezs32TmRZyzfkQAZQ6azlo/0wTxi8BgIVUyRYA==", + "path": "microsoft.extensions.logging.tracesource/2.2.0", + "hashPath": "microsoft.extensions.logging.tracesource.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "path": "microsoft.extensions.objectpool/2.2.0", + "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==", + "path": "microsoft.extensions.options/2.2.0", + "hashPath": "microsoft.extensions.options.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d4WS6yVXaw43ffiUnHj8oG1t2B6RbDDiQcgdA+Eq//NlPa3Wd+GTJFKj4OM4eDF3GjVumGr/CEVRS/jcYoF5LA==", + "path": "microsoft.extensions.options.configurationextensions/2.2.0", + "hashPath": "microsoft.extensions.options.configurationextensions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.DataAnnotations/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xk7okx/u+ZQb8xvz71FwVmfZjwDh2DWrovhtQXprWE16KqaP8bs6A8wb0h9nTSFh9rcFDVeo42d47iduu01XvQ==", + "path": "microsoft.extensions.options.dataannotations/2.2.0", + "hashPath": "microsoft.extensions.options.dataannotations.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==", + "path": "microsoft.extensions.primitives/2.2.0", + "hashPath": "microsoft.extensions.primitives.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.WebEncoders/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V8XcqYcpcdBAxUhLeyYcuKmxu4CtNQA9IphTnARpQGhkop4A93v2XgM3AtaVVJo3H2cDWxWM6aeO8HxkifREqw==", + "path": "microsoft.extensions.webencoders/2.2.0", + "hashPath": "microsoft.extensions.webencoders.2.2.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/5.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5LW5VYvGZLvrbEGxyaE6dSQhT1B5frnpwX/c4/PWrNXeuJ6GkYmiOPf2u5Iwk1qQXPTvDedwEfnBg+i/0cFAyA==", + "path": "microsoft.identitymodel.jsonwebtokens/5.3.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.5.3.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/5.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-o+bBauEMOi6ZI0MlJEC69Sw9UPwKLFmN+lD942g9UCx5pfiLFvJBKp8OPmxtGFL02ZxzXCIUyhyKn85izBDsnQ==", + "path": "microsoft.identitymodel.logging/5.3.0", + "hashPath": "microsoft.identitymodel.logging.5.3.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/5.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-o2Fx9cYQHKtOyVrCXB41kEmny1Zvm+fqXNTD5heB9yPY0C+qYm7fo1yCvtHaH2JPEersGW0iS2dE0s65kWkVEw==", + "path": "microsoft.identitymodel.protocols/5.3.0", + "hashPath": "microsoft.identitymodel.protocols.5.3.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NihXp2JT3fRbTq6AOQhEQT8TuJzhUNg9TOeK+TxlkkvanllWFF0gfXH5hTRn9Qn68HJQXtp/mtLbCWzi+4bCSg==", + "path": "microsoft.identitymodel.protocols.openidconnect/5.3.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.5.3.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.WsFederation/5.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6nGUoC+foCQ2UTsRD/Z6TLgsghuX10tunLXxuLE+LljW9H1oANqAQWrP8DNP++nfXke+qu1zVi6yBl6MMK/Dfg==", + "path": "microsoft.identitymodel.protocols.wsfederation/5.3.0", + "hashPath": "microsoft.identitymodel.protocols.wsfederation.5.3.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/5.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/piauST4FL0qzVI6oqLWxqhFReg12KwVGy0jRlnVOpGMeOVSKdtNVtHsN/hARc25hOOPEp9WKMce5ILzyMx/tQ==", + "path": "microsoft.identitymodel.tokens/5.3.0", + "hashPath": "microsoft.identitymodel.tokens.5.3.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens.Saml/5.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XS6zgN7jKG7QDqG3fV9BRADs8HmRJ6vJDKVBPFFly9MCkS6KMFps4hBdBJ5ycPrXtPBfnISCLiGLHP54blCvWw==", + "path": "microsoft.identitymodel.tokens.saml/5.3.0", + "hashPath": "microsoft.identitymodel.tokens.saml.5.3.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Xml/5.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i4uFRjipeRXGhyfHmJaZ3PkOQIWhwxBJABNDWNaxcwUvramMCWYRLE1P3g4sLjiw8zXehH6eZwxww8F+dB7/+g==", + "path": "microsoft.identitymodel.xml/5.3.0", + "hashPath": "microsoft.identitymodel.xml.5.3.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "path": "microsoft.net.http.headers/2.2.0", + "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512" + }, + "Microsoft.NETCore.App/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7z5l8Jp324S8bU8+yyWeYHXUFYvKyiI5lqS1dXgTzOx1H69Qbf6df12kCKlNX45LpMfCMd4U3M6p7Rl5Zk7SLA==", + "path": "microsoft.netcore.app/2.2.0", + "hashPath": "microsoft.netcore.app.2.2.0.nupkg.sha512" + }, + "Microsoft.NETCore.DotNetAppHost/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DrhaKInRKKvN6Ns2VNIlC7ZffLOp9THf8cO6X4fytPRJovJUbF49/zzx4WfgX9E44FMsw9hT8hrKiIqDSHvGvA==", + "path": "microsoft.netcore.dotnetapphost/2.2.0", + "hashPath": "microsoft.netcore.dotnetapphost.2.2.0.nupkg.sha512" + }, + "Microsoft.NETCore.DotNetHostPolicy/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FJie7IoPZFaPgNDxhZGmDBQP/Bs5vPdfca/G2Wf9gd6LIvMYkZcibtmJwB4tcf4KXkaOYfIOo4Cl9sEPMsSzkw==", + "path": "microsoft.netcore.dotnethostpolicy/2.2.0", + "hashPath": "microsoft.netcore.dotnethostpolicy.2.2.0.nupkg.sha512" + }, + "Microsoft.NETCore.DotNetHostResolver/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-spDm3AJYmebthDNhzY17YLPtvbc+Y1lCLVeiIH1uLJ/hZaM+40pBiPefFR8J1u66Ndkqi8ipR2tEbqPnYnjRhw==", + "path": "microsoft.netcore.dotnethostresolver/2.2.0", + "hashPath": "microsoft.netcore.dotnethostresolver.2.2.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/J+XZo+YheFTJh8/4uoeJDdz5qOmOMkjg6/VL8mHJ9AnP8+fmV/kcbxeXsob0irRNiChf+V0ig1MCRLp/+Kog==", + "path": "microsoft.netcore.platforms/2.2.0", + "hashPath": "microsoft.netcore.platforms.2.2.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-odP/tJj1z6GylFpNo7pMtbd/xQgTC3Ex2If63dRTL38bBNMwsBnJ+RceUIyHdRBC0oik/3NehYT+oECwBhIM3Q==", + "path": "microsoft.netcore.targets/2.0.0", + "hashPath": "microsoft.netcore.targets.2.0.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==", + "path": "microsoft.win32.registry/4.5.0", + "hashPath": "microsoft.win32.registry.4.5.0.nupkg.sha512" + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", + "path": "netstandard.library/2.0.3", + "hashPath": "netstandard.library.2.0.3.nupkg.sha512" + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "path": "newtonsoft.json/11.0.2", + "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==", + "path": "newtonsoft.json.bson/1.0.1", + "hashPath": "newtonsoft.json.bson.1.0.1.nupkg.sha512" + }, + "Remotion.Linq/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fK/76UmpC0FXBlGDFVPLJHQlDLYnGC+XY3eoDgCgbtrhi0vzbXDQ3n/IYHhqSKqXQfGw/u04A1drWs7rFVkRjw==", + "path": "remotion.linq/2.2.0", + "hashPath": "remotion.linq.2.2.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AJfX7owAAkMjWQYhoml5IBfXh8UyYPjktn8pK0BFGAdKgBS7HqMz1fw5vdzfZUWfhtTPDGCjgNttt46ZyEmSjg==", + "path": "runtime.native.system.data.sqlclient.sni/4.5.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.5.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b+V9JC/Ii3sR659flBeaBJww111425tgjcDS1k+hqV4sGh9FALRDBvJnDtQ895gAzpPTUOFDHdqaZ2Et7BpZMg==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "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.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", + "path": "system.buffers/4.5.0", + "hashPath": "system.buffers.4.5.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==", + "path": "system.collections.immutable/1.5.0", + "hashPath": "system.collections.immutable.1.5.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", + "path": "system.componentmodel.annotations/4.5.0", + "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.SqlClient/4.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gwItUWW1BMCckicFO85c8frFaMK8SGqYn5IeA3GSX4Lmid+CjXETfoHz7Uv+Vx6L0No7iRc/7cBL8gd6o9k9/g==", + "path": "system.data.sqlclient/4.6.0", + "hashPath": "system.data.sqlclient.4.6.0.nupkg.sha512" + }, + "System.Diagnostics.Contracts/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==", + "path": "system.diagnostics.contracts/4.3.0", + "hashPath": "system.diagnostics.contracts.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIHRELiYDQvsMToML81QFkXEEYXUSUT2F28t1SGrevWqP+epFdw80SyAXIKTXOHrIEXReFOEnEr7XlGiC2GgOg==", + "path": "system.diagnostics.diagnosticsource/4.5.0", + "hashPath": "system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512" + }, + "System.Diagnostics.FileVersionInfo/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==", + "path": "system.diagnostics.fileversioninfo/4.3.0", + "hashPath": "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "path": "system.diagnostics.stacktrace/4.3.0", + "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/5.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EdcMk+36u9gQtbwTiPQ7ckIfiADBwOmCZ6rGD2rfkaozIdW1t7vbXk/FPVAu2r9KgCQZ5245Z+P0YMM/0Q0G2g==", + "path": "system.identitymodel.tokens.jwt/5.3.0", + "hashPath": "system.identitymodel.tokens.jwt.5.3.0.nupkg.sha512" + }, + "System.Interactive.Async/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C07p0dAA5lGqYUPiPCK3paR709gqS4aMDDsje0v0pvffwzLaxmsn5YQTfZbyNG5qrudPx+BCxTqISnncQ3wIoQ==", + "path": "system.interactive.async/3.2.0", + "hashPath": "system.interactive.async.3.2.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "path": "system.io.pipelines/4.5.2", + "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Linq.Queryable/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", + "path": "system.linq.queryable/4.0.1", + "hashPath": "system.linq.queryable.4.0.1.nupkg.sha512" + }, + "System.Memory/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==", + "path": "system.memory/4.5.1", + "hashPath": "system.memory.4.5.1.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==", + "path": "system.net.websockets.websocketprotocol/4.5.1", + "hashPath": "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Private.DataContractSerialization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==", + "path": "system.private.datacontractserialization/4.3.0", + "hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "path": "system.reflection.metadata/1.6.0", + "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zh8t8oqolRaFa9vmOZfdQm/qKejdqz0J9kr7o2Fu0vPeoH3BL1EOXipKWwkWtLT1JPzjByrF19fGuFlNbmPpiw==", + "path": "system.runtime.compilerservices.unsafe/4.5.1", + "hashPath": "system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Xml/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nUQx/5OVgrqEba3+j7OdiofvVq9koWZAC7Z3xGI8IIViZqApWnZ5+lLcwYgTlbkobrl/Rat+Jb8GeD4WQESD2A==", + "path": "system.runtime.serialization.xml/4.3.0", + "hashPath": "system.runtime.serialization.xml.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "path": "system.security.accesscontrol/4.5.0", + "hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512" + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "path": "system.security.claims/4.3.0", + "hashPath": "system.security.claims.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TGQX51gxpY3K3I6LJlE2LAftVlIMqJf0cBGhz68Y89jjk3LJCB6SrwiD+YN1fkqemBvWGs+GjyMJukl6d6goyQ==", + "path": "system.security.cryptography.pkcs/4.5.0", + "hashPath": "system.security.cryptography.pkcs.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Xml/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i2Jn6rGXR63J0zIklImGRkDIJL4b1NfPSEbIVHBlqoIb12lfXIigCbDRpDmIEzwSo/v1U5y/rYJdzZYSyCWxvg==", + "path": "system.security.cryptography.xml/4.5.0", + "hashPath": "system.security.cryptography.xml.4.5.0.nupkg.sha512" + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "path": "system.security.permissions/4.5.0", + "hashPath": "system.security.permissions.4.5.0.nupkg.sha512" + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "path": "system.security.principal/4.3.0", + "hashPath": "system.security.principal.4.3.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "path": "system.security.principal.windows/4.5.0", + "hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S0wEUiKcLvRlkFUXca8uio1UQ5bYQzYgOmOKtCqaBQC3GR9AJjh43otcM32IGsAyvadFTaAMw9Irm6dS4Evfng==", + "path": "system.text.encoding.codepages/4.5.0", + "hashPath": "system.text.encoding.codepages.4.5.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==", + "path": "system.text.encodings.web/4.5.0", + "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", + "path": "system.threading.tasks.extensions/4.5.1", + "hashPath": "system.threading.tasks.extensions.4.5.1.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==", + "path": "system.threading.tasks.parallel/4.3.0", + "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" + }, + "System.Threading.Thread/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", + "path": "system.threading.thread/4.3.0", + "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" + }, + "System.ValueTuple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==", + "path": "system.valuetuple/4.3.0", + "hashPath": "system.valuetuple.4.3.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==", + "path": "system.xml.xmlserializer/4.3.0", + "hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", + "path": "system.xml.xpath/4.3.0", + "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==", + "path": "system.xml.xpath.xdocument/4.3.0", + "hashPath": "system.xml.xpath.xdocument.4.3.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.dll b/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.dll new file mode 100644 index 0000000000000000000000000000000000000000..8413e972152aafbfd243c89563c6dcfe82b5cd34 GIT binary patch literal 18432 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 C6Bxh% literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.pdb b/RestaurantReview/RestaurantReview/bin/Debug/netcoreapp2.2/RestaurantReview.pdb new file mode 100644 index 0000000000000000000000000000000000000000..d37d25b7c812883db632008f08b672638af8732e GIT binary patch literal 5780 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 literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.AssemblyInfo.cs b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.AssemblyInfo.cs new file mode 100644 index 00000000..282f1a81 --- /dev/null +++ b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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: System.Reflection.AssemblyCompanyAttribute("RestaurantReview")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("RestaurantReview")] +[assembly: System.Reflection.AssemblyTitleAttribute("RestaurantReview")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.AssemblyInfoInputs.cache b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.AssemblyInfoInputs.cache new file mode 100644 index 00000000..d73fa372 --- /dev/null +++ b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +062ec963dce2187c1638c392af97ddba395712c5 diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.RazorAssemblyInfo.cache b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.RazorAssemblyInfo.cache new file mode 100644 index 00000000..c516a267 --- /dev/null +++ b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.RazorAssemblyInfo.cache @@ -0,0 +1 @@ +8844231b9bc3026debb43c5590d120cdd6a7e1e3 diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.RazorAssemblyInfo.cs b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.RazorAssemblyInfo.cs new file mode 100644 index 00000000..fc62fed7 --- /dev/null +++ b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.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("RestaurantReview.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/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.RazorTargetAssemblyInfo.cache b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.RazorTargetAssemblyInfo.cache new file mode 100644 index 00000000..afc34b5c --- /dev/null +++ b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.RazorTargetAssemblyInfo.cache @@ -0,0 +1 @@ +753d87e54f4331a06b6629828054d0fff154a31b diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.assets.cache b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..1f048b03897226511276b8f5ceb2f9d81d0970f6 GIT binary patch literal 123254 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 literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csproj.CoreCompileInputs.cache b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csproj.CoreCompileInputs.cache new file mode 100644 index 00000000..fea71b5b --- /dev/null +++ b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +200aee51dd565d0042e93d9a3912a10130b847c3 diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csproj.FileListAbsolute.txt b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csproj.FileListAbsolute.txt new file mode 100644 index 00000000..5bd8cfa4 --- /dev/null +++ b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\bin\Debug\netcoreapp2.2\RestaurantReview.deps.json +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\bin\Debug\netcoreapp2.2\RestaurantReview.runtimeconfig.json +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\bin\Debug\netcoreapp2.2\RestaurantReview.runtimeconfig.dev.json +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\bin\Debug\netcoreapp2.2\RestaurantReview.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\bin\Debug\netcoreapp2.2\RestaurantReview.pdb +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\obj\Debug\netcoreapp2.2\RestaurantReview.csproj.CoreCompileInputs.cache +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\obj\Debug\netcoreapp2.2\RestaurantReview.RazorAssemblyInfo.cache +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\obj\Debug\netcoreapp2.2\RestaurantReview.RazorAssemblyInfo.cs +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\obj\Debug\netcoreapp2.2\RestaurantReview.AssemblyInfoInputs.cache +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\obj\Debug\netcoreapp2.2\RestaurantReview.AssemblyInfo.cs +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\obj\Debug\netcoreapp2.2\RestaurantReview.RazorTargetAssemblyInfo.cache +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\obj\Debug\netcoreapp2.2\RestaurantReview.dll +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\obj\Debug\netcoreapp2.2\RestaurantReview.pdb +C:\Users\Raizel Seliger\source\repos\RestaurantReviews\RestaurantReview\RestaurantReview\obj\Debug\netcoreapp2.2\RestaurantReview.csprojAssemblyReference.cache diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csprojAssemblyReference.cache b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.csprojAssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..7604c16689e22510360e9096980739943e773cbb GIT binary patch literal 258011 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 C6Bxh% literal 0 HcmV?d00001 diff --git a/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.pdb b/RestaurantReview/RestaurantReview/obj/Debug/netcoreapp2.2/RestaurantReview.pdb new file mode 100644 index 0000000000000000000000000000000000000000..d37d25b7c812883db632008f08b672638af8732e GIT binary patch literal 5780 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 uv<(GlC{!Eh + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Raizel Seliger\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 5.1.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + + + + + C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.codeanalysis.analyzers\1.1.0 + C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.entityframeworkcore.tools\2.2.0 + C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.razor.design\2.2.0 + + \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/obj/RestaurantReview.csproj.nuget.g.targets b/RestaurantReview/RestaurantReview/obj/RestaurantReview.csproj.nuget.g.targets new file mode 100644 index 00000000..0fe0a07c --- /dev/null +++ b/RestaurantReview/RestaurantReview/obj/RestaurantReview.csproj.nuget.g.targets @@ -0,0 +1,17 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + + + + + + \ No newline at end of file diff --git a/RestaurantReview/RestaurantReview/obj/project.assets.json b/RestaurantReview/RestaurantReview/obj/project.assets.json new file mode 100644 index 00000000..cf8d61c1 --- /dev/null +++ b/RestaurantReview/RestaurantReview/obj/project.assets.json @@ -0,0 +1,13053 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v2.2": { + "Microsoft.AspNet.WebApi.Client/5.2.7": { + "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.AspNet.WebApi.Core/5.2.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.WebApi.Client": "5.2.7" + }, + "compile": { + "lib/net45/System.Web.Http.dll": {} + }, + "runtime": { + "lib/net45/System.Web.Http.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.CSharp.Workspaces/2.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "[2.8.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[2.8.0]" + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.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.CodeAnalysis.Workspaces.Common/2.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[2.8.0]", + "System.Composition": "1.0.31", + "System.Diagnostics.Contracts": "4.3.0", + "System.Linq.Parallel": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.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.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "2.2.0", + "Microsoft.EntityFrameworkCore.Analyzers": "2.2.0", + "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.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/2.2.0": { + "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.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "2.2.0" + }, + "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.VisualStudio.Web.CodeGeneration/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.3", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} + }, + "runtime": { + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "2.2.0", + "Microsoft.CodeAnalysis.CSharp": "2.8.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp.Workspaces": "2.8.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.3", + "Newtonsoft.Json": "11.0.2", + "NuGet.Frameworks": "4.7.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "type": "package", + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration": "2.2.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} + } + }, + "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": {} + } + }, + "NuGet.Frameworks/4.7.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.6/NuGet.Frameworks.dll": {} + }, + "runtime": { + "lib/netstandard1.6/NuGet.Frameworks.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.Composition/1.0.31": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "1.0.31", + "System.Composition.Convention": "1.0.31", + "System.Composition.Hosting": "1.0.31", + "System.Composition.Runtime": "1.0.31", + "System.Composition.TypedParts": "1.0.31" + } + }, + "System.Composition.AttributedModel/1.0.31": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.AttributedModel.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.AttributedModel.dll": {} + } + }, + "System.Composition.Convention/1.0.31": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.AttributedModel": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.Convention.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Convention.dll": {} + } + }, + "System.Composition.Hosting/1.0.31": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.Runtime": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.Hosting.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Hosting.dll": {} + } + }, + "System.Composition.Runtime/1.0.31": { + "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.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Runtime.dll": {} + } + }, + "System.Composition.TypedParts/1.0.31": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.AttributedModel": "1.0.31", + "System.Composition.Hosting": "1.0.31", + "System.Composition.Runtime": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Composition.TypedParts.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Composition.TypedParts.dll": {} + } + }, + "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.Parallel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "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.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Parallel.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.1": { + "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.1": { + "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.1": { + "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.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "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.7": { + "sha512": "/76fAHknzvFqbznS6Uj2sOyE9rJB3PltY+f53TH8dX9RiGhk02EhuFCWljSj5nnqKaTsmma8DFR50OGyQ4yJ1g==", + "type": "package", + "path": "microsoft.aspnet.webapi.client/5.2.7", + "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.7.nupkg.sha512", + "microsoft.aspnet.webapi.client.nuspec" + ] + }, + "Microsoft.AspNet.WebApi.Core/5.2.7": { + "sha512": "gM2QzApnHdy1FbKUJ/ROGJSm69P2G+HMoVd/t5Vq1O/zZ5TI4IKC9PX6nUfRt/NHgebZOIWHpB4/4K4inuy4yQ==", + "type": "package", + "path": "microsoft.aspnet.webapi.core/5.2.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Content/web.config.transform", + "lib/net45/System.Web.Http.dll", + "lib/net45/System.Web.Http.xml", + "microsoft.aspnet.webapi.core.5.2.7.nupkg.sha512", + "microsoft.aspnet.webapi.core.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.CSharp.Workspaces/2.8.0": { + "sha512": "EJWaxi2bI47iEZen/nZkJEDZCrP9Oj3PJtMwBv34Z0ZvvdSkpgsdqlHSud8d5vC53LnCXLfBLewfqHcILDVSDw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.workspaces/2.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.workspaces.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.CodeAnalysis.Workspaces.Common/2.8.0": { + "sha512": "tJlJ99SD8bHBAXShOG/pXQ1K118cnsF01obEf9aAtdgLbw3yEPahZ7qvWeGMjrheUhvOsSkv/wTKYg9euKa8MQ==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.common/2.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.dll", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.pdb", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.xml", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net46/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.xml", + "microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.common.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.0": { + "sha512": "xfDHe+J94oz2d+ESDU8u+96iSfsiPwpgYGPRSp/bato0Ekjz5kYs61u9mS0GN5t8n/wxc5P3uEJm1x7TfROxhQ==", + "type": "package", + "path": "microsoft.entityframeworkcore/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.2.2.0.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/2.2.0": { + "sha512": "/js/H09B8MQGoPDFzJoaAealyL66g4vKf7DVcdBYcxgKztkttjZbRzSWKF9PZZFyfBl9Ia/BiStM70t7kjgMpg==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.2.2.0.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/2.2.0": { + "sha512": "/1rw3toRCal80Ch51lIjuf/0WfW9ZGB4eRY1y6GOcOoOvnMXXXt+4xMRw/0k0kIwHsWUNXUpw73jf40/Pe+ZYA==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "microsoft.entityframeworkcore.analyzers.2.2.0.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.0": { + "sha512": "CRJHHp/GqmXByeeODgbDgMDWId9kKT9TDRzHF8voWHFNTajBQl0U4jaMrHxjIP6hJ2olF8n+5GYmQv+v3bUVKQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.2.2.0.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.VisualStudio.Web.CodeGeneration/2.2.3": { + "sha512": "wc71c9HWTeXy9/w9O4Yr2LKmdJjVyIoJ/XQX8/6uma4EAVU25RLtUWlvhA0gpgFw9Kf1TkCv70x+CbKnRw/d8Q==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.xml", + "microsoft.visualstudio.web.codegeneration.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": { + "sha512": "wXlpxDfRD5aPypa0p0UE97tkRQvAz9D9FfA2GITzr+LlGIpybyGnxkwGVp0Vha1Ibr0kJG0HdnqfeHME/WuAcQ==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.xml", + "microsoft.visualstudio.web.codegeneration.contracts.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.contracts.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": { + "sha512": "APdPavBUYcGPBaW4rjxBVRePWmg0ZzhIRymOzvLFWUtzfvJKw1+8PaCzsH7Uvl+felm0L1UVQwBx1Do0R7j7Xg==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.core/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml", + "microsoft.visualstudio.web.codegeneration.core.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.core.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": { + "sha512": "xH50cYOU+infRq4KikBuu2qeXcwW4tE0D5TDfKLuLrEtDm90aXI+0qygPsqyISf+lOW7L7rQ64BH/dRYkK3c3Q==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.design/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/dotnet-aspnet-codegenerator-design.exe", + "lib/net461/dotnet-aspnet-codegenerator-design.xml", + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll", + "lib/netstandard2.0/dotnet-aspnet-codegenerator-design.xml", + "microsoft.visualstudio.web.codegeneration.design.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.design.nuspec", + "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.exe", + "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.xml", + "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.exe", + "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.xml", + "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.exe", + "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.xml", + "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.exe", + "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.xml" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": { + "sha512": "N9S7TeFZjXzNY9OVbz4OFw9cM9oEeMaCnuLFhetNioy/wPwZbgglrctAEYxfDbvocQ17YCAVR2EMRbYHNDHyVg==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Templates/DbContext/NewLocalDbContext.cshtml", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml", + "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": { + "sha512": "sW2lHnOoL1xFnSm/2zSedeUoQPlbhPfWjSuUYsxYUj/N5QmLmH98ZLaqP26k6Om/heR6Gux/veXI96yM1Parow==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.templating/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml", + "microsoft.visualstudio.web.codegeneration.templating.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.templating.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": { + "sha512": "/r/y+XpOpbCwN/M/HopjfGTDRlmixTd4G6HG6FaBkD/YF3T1u+4WMRVtuB6zz7aw571HmX+6UokEa6HJSwkPDA==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.utils/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml", + "microsoft.visualstudio.web.codegeneration.utils.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.utils.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": { + "sha512": "0gVuA4KUCHFM4M/9SjG+7j7BzZ7SW/BufF97Q78i2VV8JBbQXc/5Rf6YUG1VGW2fwSEOl9+S26utEGS+86GGGw==", + "type": "package", + "path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Generators/ParameterDefinitions/area.json", + "Generators/ParameterDefinitions/controller.json", + "Generators/ParameterDefinitions/identity.json", + "Generators/ParameterDefinitions/razorpage.json", + "Generators/ParameterDefinitions/view.json", + "Templates/ControllerGenerator/ApiControllerWithActions.cshtml", + "Templates/ControllerGenerator/ApiControllerWithContext.cshtml", + "Templates/ControllerGenerator/ApiEmptyController.cshtml", + "Templates/ControllerGenerator/ControllerWithActions.cshtml", + "Templates/ControllerGenerator/EmptyController.cshtml", + "Templates/ControllerGenerator/MvcControllerWithContext.cshtml", + "Templates/Identity/Data/ApplicationDbContext.cshtml", + "Templates/Identity/Data/ApplicationUser.cshtml", + "Templates/Identity/IdentityHostingStartup.cshtml", + "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml", + "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml", + "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml", + "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", + "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Lockout.cshtml", + "Templates/Identity/Pages/Account/Account.Login.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Login.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml", + "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Logout.cshtml", + "Templates/Identity/Pages/Account/Account.Register.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Register.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml", + "Templates/Identity/Pages/Account/Account._ViewImports.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", + "Templates/Identity/Pages/Error.cs.cshtml", + "Templates/Identity/Pages/Error.cshtml", + "Templates/Identity/Pages/_Layout.cshtml", + "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml", + "Templates/Identity/Pages/_ViewImports.cshtml", + "Templates/Identity/Pages/_ViewStart.cshtml", + "Templates/Identity/ScaffoldingReadme.cshtml", + "Templates/Identity/SupportPages._CookieConsentPartial.cshtml", + "Templates/Identity/SupportPages._ViewImports.cshtml", + "Templates/Identity/SupportPages._ViewStart.cshtml", + "Templates/Identity/_LoginPartial.cshtml", + "Templates/Identity/wwwroot/css/site.css", + "Templates/Identity/wwwroot/favicon.ico", + "Templates/Identity/wwwroot/js/site.js", + "Templates/Identity/wwwroot/lib/bootstrap/LICENSE", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map", + "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", + "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", + "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", + "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", + "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt", + "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js", + "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js", + "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map", + "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml", + "Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml", + "Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml", + "Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml", + "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml", + "Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js", + "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map", + "Templates/MvcLayout/Error.cshtml", + "Templates/MvcLayout/_Layout.cshtml", + "Templates/RazorPageGenerator/Create.cshtml", + "Templates/RazorPageGenerator/CreatePageModel.cshtml", + "Templates/RazorPageGenerator/Delete.cshtml", + "Templates/RazorPageGenerator/DeletePageModel.cshtml", + "Templates/RazorPageGenerator/Details.cshtml", + "Templates/RazorPageGenerator/DetailsPageModel.cshtml", + "Templates/RazorPageGenerator/Edit.cshtml", + "Templates/RazorPageGenerator/EditPageModel.cshtml", + "Templates/RazorPageGenerator/Empty.cshtml", + "Templates/RazorPageGenerator/EmptyPageModel.cshtml", + "Templates/RazorPageGenerator/List.cshtml", + "Templates/RazorPageGenerator/ListPageModel.cshtml", + "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/Empty.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/EmptyPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml", + "Templates/Startup/ReadMe.cshtml", + "Templates/Startup/Startup.cshtml", + "Templates/ViewGenerator/Create.cshtml", + "Templates/ViewGenerator/Delete.cshtml", + "Templates/ViewGenerator/Details.cshtml", + "Templates/ViewGenerator/Edit.cshtml", + "Templates/ViewGenerator/Empty.cshtml", + "Templates/ViewGenerator/List.cshtml", + "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml", + "lib/netstandard2.0/bootstrap3_identitygeneratorfilesconfig.json", + "lib/netstandard2.0/bootstrap4_identitygeneratorfilesconfig.json", + "microsoft.visualstudio.web.codegenerators.mvc.2.2.3.nupkg.sha512", + "microsoft.visualstudio.web.codegenerators.mvc.nuspec" + ] + }, + "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" + ] + }, + "NuGet.Frameworks/4.7.0": { + "sha512": "qbXaB76XYUVLocLBs8Z9TS/ERGK2wm797feO+0JEPFvT7o7MRadOR77mqaSD4J1k8G+DlZQyq+MlkCuxrkr3ag==", + "type": "package", + "path": "nuget.frameworks/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/NuGet.Frameworks.dll", + "lib/net40/NuGet.Frameworks.xml", + "lib/net46/NuGet.Frameworks.dll", + "lib/net46/NuGet.Frameworks.xml", + "lib/netstandard1.6/NuGet.Frameworks.dll", + "lib/netstandard1.6/NuGet.Frameworks.xml", + "nuget.frameworks.4.7.0.nupkg.sha512", + "nuget.frameworks.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": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "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", + ".signature.p7s", + "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", + ".signature.p7s", + "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", + ".signature.p7s", + "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": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "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": "T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "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": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "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": "LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", + "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": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "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.Composition/1.0.31": { + "sha512": "I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==", + "type": "package", + "path": "system.composition/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "system.composition.1.0.31.nupkg.sha512", + "system.composition.nuspec" + ] + }, + "System.Composition.AttributedModel/1.0.31": { + "sha512": "NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==", + "type": "package", + "path": "system.composition.attributedmodel/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.AttributedModel.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll", + "system.composition.attributedmodel.1.0.31.nupkg.sha512", + "system.composition.attributedmodel.nuspec" + ] + }, + "System.Composition.Convention/1.0.31": { + "sha512": "GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==", + "type": "package", + "path": "system.composition.convention/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.Convention.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll", + "system.composition.convention.1.0.31.nupkg.sha512", + "system.composition.convention.nuspec" + ] + }, + "System.Composition.Hosting/1.0.31": { + "sha512": "fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==", + "type": "package", + "path": "system.composition.hosting/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.Hosting.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll", + "system.composition.hosting.1.0.31.nupkg.sha512", + "system.composition.hosting.nuspec" + ] + }, + "System.Composition.Runtime/1.0.31": { + "sha512": "0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==", + "type": "package", + "path": "system.composition.runtime/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll", + "system.composition.runtime.1.0.31.nupkg.sha512", + "system.composition.runtime.nuspec" + ] + }, + "System.Composition.TypedParts/1.0.31": { + "sha512": "0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==", + "type": "package", + "path": "system.composition.typedparts/1.0.31", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Composition.TypedParts.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll", + "system.composition.typedparts.1.0.31.nupkg.sha512", + "system.composition.typedparts.nuspec" + ] + }, + "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.Parallel/4.3.0": { + "sha512": "td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==", + "type": "package", + "path": "system.linq.parallel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Parallel.dll", + "lib/netstandard1.3/System.Linq.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.Linq.Parallel.dll", + "ref/netcore50/System.Linq.Parallel.xml", + "ref/netcore50/de/System.Linq.Parallel.xml", + "ref/netcore50/es/System.Linq.Parallel.xml", + "ref/netcore50/fr/System.Linq.Parallel.xml", + "ref/netcore50/it/System.Linq.Parallel.xml", + "ref/netcore50/ja/System.Linq.Parallel.xml", + "ref/netcore50/ko/System.Linq.Parallel.xml", + "ref/netcore50/ru/System.Linq.Parallel.xml", + "ref/netcore50/zh-hans/System.Linq.Parallel.xml", + "ref/netcore50/zh-hant/System.Linq.Parallel.xml", + "ref/netstandard1.1/System.Linq.Parallel.dll", + "ref/netstandard1.1/System.Linq.Parallel.xml", + "ref/netstandard1.1/de/System.Linq.Parallel.xml", + "ref/netstandard1.1/es/System.Linq.Parallel.xml", + "ref/netstandard1.1/fr/System.Linq.Parallel.xml", + "ref/netstandard1.1/it/System.Linq.Parallel.xml", + "ref/netstandard1.1/ja/System.Linq.Parallel.xml", + "ref/netstandard1.1/ko/System.Linq.Parallel.xml", + "ref/netstandard1.1/ru/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.parallel.4.3.0.nupkg.sha512", + "system.linq.parallel.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.1": { + "sha512": "sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==", + "type": "package", + "path": "system.memory/4.5.1", + "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/_._", + "ref/netstandard1.1/System.Memory.dll", + "ref/netstandard1.1/System.Memory.xml", + "ref/netstandard2.0/System.Memory.dll", + "ref/netstandard2.0/System.Memory.xml", + "system.memory.4.5.1.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", + ".signature.p7s", + "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.1": { + "sha512": "Zh8t8oqolRaFa9vmOZfdQm/qKejdqz0J9kr7o2Fu0vPeoH3BL1EOXipKWwkWtLT1JPzjByrF19fGuFlNbmPpiw==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.5.1", + "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.1.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": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "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", + ".signature.p7s", + "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": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "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": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "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", + ".signature.p7s", + "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.1": { + "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.1", + "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/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.1.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.3.0": { + "sha512": "cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==", + "type": "package", + "path": "system.valuetuple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/.xml", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/.xml", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "system.valuetuple.4.3.0.nupkg.sha512", + "system.valuetuple.nuspec" + ] + }, + "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", + ".signature.p7s", + "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.AspNet.WebApi.Core >= 5.2.7", + "Microsoft.AspNetCore.App >= 2.2.0", + "Microsoft.AspNetCore.Razor.Design >= 2.2.0", + "Microsoft.NETCore.App >= 2.2.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Design >= 2.2.3" + ] + }, + "packageFolders": { + "C:\\Users\\Raizel Seliger\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj", + "projectName": "RestaurantReview", + "projectPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\RestaurantReview.csproj", + "packagesPath": "C:\\Users\\Raizel Seliger\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Raizel Seliger\\source\\repos\\RestaurantReviews\\RestaurantReview\\RestaurantReview\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Raizel Seliger\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp2.2" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp2.2": { + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp2.2": { + "dependencies": { + "Microsoft.AspNet.WebApi.Core": { + "target": "Package", + "version": "[5.2.7, )" + }, + "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 + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design": { + "target": "Package", + "version": "[2.2.3, )" + } + }, + "imports": [ + "net461" + ], + "assetTargetFallback": true, + "warn": true + } + } + }, + "logs": [ + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'Microsoft.AspNet.WebApi.Core 5.2.7' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.2'. This package may not be fully compatible with your project.", + "libraryId": "Microsoft.AspNet.WebApi.Core", + "targetGraphs": [ + ".NETCoreApp,Version=v2.2" + ] + } + ] +} \ No newline at end of file diff --git a/RestaurantReview/RestaurantReviewMSTests/.vs/RestaurantReviewMSTests/DesignTimeBuild/.dtbcache b/RestaurantReview/RestaurantReviewMSTests/.vs/RestaurantReviewMSTests/DesignTimeBuild/.dtbcache new file mode 100644 index 0000000000000000000000000000000000000000..d01622bc235545de3e779181d0d9ee4efedcb4b8 GIT binary patch literal 797898 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