From 78fb5d123c33aabd54665eef6a1f5a16cf840692 Mon Sep 17 00:00:00 2001 From: Johnathan Walker Date: Thu, 4 May 2017 14:32:53 -0400 Subject: [PATCH] initial commit --- Controllers/TestController.cs | 22 + Program.cs | 25 + Startup.cs | 55 + appsettings.Development.json | 10 + appsettings.json | 8 + bin/Debug/netcoreapp1.1/swaggerbug.deps.json | 4432 ++++++++ bin/Debug/netcoreapp1.1/swaggerbug.dll | Bin 0 -> 10752 bytes bin/Debug/netcoreapp1.1/swaggerbug.pdb | Bin 0 -> 1444 bytes .../swaggerbug.runtimeconfig.dev.json | 7 + .../swaggerbug.runtimeconfig.json | 11 + .../netcoreapp1.1/CoreCompileInputs.cache | 1 + .../netcoreapp1.1/swaggerbug.AssemblyInfo.cs | 13 + .../swaggerbug.csproj.FileListAbsolute.txt | 8 + obj/Debug/netcoreapp1.1/swaggerbug.dll | Bin 0 -> 10752 bytes obj/Debug/netcoreapp1.1/swaggerbug.pdb | Bin 0 -> 1444 bytes obj/project.assets.json | 9781 +++++++++++++++++ obj/swaggerbug.csproj.nuget.g.props | 18 + obj/swaggerbug.csproj.nuget.g.targets | 6 + swaggerbug.csproj | 19 + 19 files changed, 14416 insertions(+) create mode 100755 Controllers/TestController.cs create mode 100755 Program.cs create mode 100755 Startup.cs create mode 100755 appsettings.Development.json create mode 100755 appsettings.json create mode 100755 bin/Debug/netcoreapp1.1/swaggerbug.deps.json create mode 100755 bin/Debug/netcoreapp1.1/swaggerbug.dll create mode 100755 bin/Debug/netcoreapp1.1/swaggerbug.pdb create mode 100755 bin/Debug/netcoreapp1.1/swaggerbug.runtimeconfig.dev.json create mode 100755 bin/Debug/netcoreapp1.1/swaggerbug.runtimeconfig.json create mode 100755 obj/Debug/netcoreapp1.1/CoreCompileInputs.cache create mode 100755 obj/Debug/netcoreapp1.1/swaggerbug.AssemblyInfo.cs create mode 100755 obj/Debug/netcoreapp1.1/swaggerbug.csproj.FileListAbsolute.txt create mode 100755 obj/Debug/netcoreapp1.1/swaggerbug.dll create mode 100755 obj/Debug/netcoreapp1.1/swaggerbug.pdb create mode 100755 obj/project.assets.json create mode 100755 obj/swaggerbug.csproj.nuget.g.props create mode 100755 obj/swaggerbug.csproj.nuget.g.targets create mode 100755 swaggerbug.csproj diff --git a/Controllers/TestController.cs b/Controllers/TestController.cs new file mode 100755 index 0000000..e0bd6b1 --- /dev/null +++ b/Controllers/TestController.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; + +namespace swaggerbug +{ + [Route("[controller]")] + public class TestController : Controller + { + // GET api/values/5 + [HttpGet()] + public IActionResult Get() + { + var retLong = BitConverter.ToInt64(Guid.NewGuid().ToByteArray(), 0); + var binary = Convert.ToString(retLong, 2); + System.Console.WriteLine($"Long: {retLong} Binary: {binary}"); + return Ok(new { OriginalLong = retLong, Binary = binary }); + } + } +} diff --git a/Program.cs b/Program.cs new file mode 100755 index 0000000..28acdff --- /dev/null +++ b/Program.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Hosting; + +namespace swaggerbug +{ + public class Program + { + public static void Main(string[] args) + { + var host = new WebHostBuilder() + .UseKestrel() + .UseContentRoot(Directory.GetCurrentDirectory()) + .UseIISIntegration() + .UseStartup() + .Build(); + + host.Run(); + } + } +} diff --git a/Startup.cs b/Startup.cs new file mode 100755 index 0000000..e9566b3 --- /dev/null +++ b/Startup.cs @@ -0,0 +1,55 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Hosting; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using Swashbuckle.AspNetCore.Swagger; + +namespace swaggerbug +{ + public class Startup + { + public Startup(IHostingEnvironment env) + { + var builder = new ConfigurationBuilder() + .SetBasePath(env.ContentRootPath) + .AddJsonFile("appsettings.json", optional: false, reloadOnChange: true) + .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true) + .AddEnvironmentVariables(); + Configuration = builder.Build(); + } + + public IConfigurationRoot Configuration { get; } + + // This method gets called by the runtime. Use this method to add services to the container. + public void ConfigureServices(IServiceCollection services) + { + // Add framework services. + services.AddMvc(); + + // Add Swagger + services.AddSwaggerGen(config => + { + config.SwaggerDoc("v1", new Info { Title = "My API", Version = "v1" }); + }); + } + + // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. + public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory) + { + loggerFactory.AddConsole(Configuration.GetSection("Logging")); + loggerFactory.AddDebug(); + + app.UseMvc(); + app.UseSwagger(); + app.UseSwaggerUI(c => + { + c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1"); + }); + } + } +} diff --git a/appsettings.Development.json b/appsettings.Development.json new file mode 100755 index 0000000..fa8ce71 --- /dev/null +++ b/appsettings.Development.json @@ -0,0 +1,10 @@ +{ + "Logging": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Debug", + "System": "Information", + "Microsoft": "Information" + } + } +} diff --git a/appsettings.json b/appsettings.json new file mode 100755 index 0000000..5fff67b --- /dev/null +++ b/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Warning" + } + } +} diff --git a/bin/Debug/netcoreapp1.1/swaggerbug.deps.json b/bin/Debug/netcoreapp1.1/swaggerbug.deps.json new file mode 100755 index 0000000..da636bf --- /dev/null +++ b/bin/Debug/netcoreapp1.1/swaggerbug.deps.json @@ -0,0 +1,4432 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v1.1", + "signature": "881a860ca47b55b2001dcbe54b533b3ff91f0e1d" + }, + "compilationOptions": { + "defines": [ + "TRACE", + "DEBUG", + "NETCOREAPP1_1" + ], + "languageVersion": "", + "platform": "", + "allowUnsafe": false, + "warningsAsErrors": false, + "optimize": false, + "keyFile": "", + "emitEntryPoint": true, + "xmlDoc": false, + "debugType": "portable" + }, + "targets": { + ".NETCoreApp,Version=v1.1": { + "swaggerbug/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore": "1.1.1", + "Microsoft.AspNetCore.Mvc": "1.1.2", + "Microsoft.Extensions.Logging.Debug": "1.1.1", + "Microsoft.NETCore.App": "1.1.1", + "Swashbuckle.AspNetCore.SwaggerGen": "1.0.0", + "Swashbuckle.AspNetCore.SwaggerUI": "1.0.0" + }, + "runtime": { + "swaggerbug.dll": {} + }, + "compile": { + "swaggerbug.dll": {} + } + }, + "microsoft.aspnetcore/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Diagnostics": "1.1.1", + "Microsoft.AspNetCore.Hosting": "1.1.1", + "Microsoft.AspNetCore.Routing": "1.1.1", + "Microsoft.AspNetCore.Server.IISIntegration": "1.1.1", + "Microsoft.AspNetCore.Server.Kestrel": "1.1.1", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.1", + "Microsoft.Extensions.Configuration.FileExtensions": "1.1.1", + "Microsoft.Extensions.Configuration.Json": "1.1.1", + "Microsoft.Extensions.Logging": "1.1.1", + "Microsoft.Extensions.Logging.Console": "1.1.1", + "Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.1", + "NETStandard.Library": "1.6.1" + } + }, + "microsoft.aspnetcore.antiforgery/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.DataProtection": "1.1.1", + "Microsoft.AspNetCore.Http.Abstractions": "1.1.1", + "Microsoft.AspNetCore.Http.Extensions": "1.1.1", + "Microsoft.AspNetCore.WebUtilities": "1.1.1", + "Microsoft.Extensions.ObjectPool": "1.1.0", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {} + } + }, + "microsoft.aspnetcore.authorization/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "1.1.1", + "Microsoft.Extensions.Options": "1.1.1", + "NETStandard.Library": "1.6.1", + "System.Security.Claims": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "microsoft.aspnetcore.cors/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "1.1.1", + "Microsoft.Extensions.Configuration.Abstractions": "1.1.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0", + "Microsoft.Extensions.Options": "1.1.1", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {} + } + }, + "microsoft.aspnetcore.cryptography.internal/1.1.1": { + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {} + } + }, + "microsoft.aspnetcore.dataprotection/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "1.1.1", + "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.1", + "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0", + "Microsoft.Extensions.Logging.Abstractions": "1.1.1", + "Microsoft.Extensions.Options": "1.1.1", + "Microsoft.Win32.Registry": "4.3.0", + "NETStandard.Library": "1.6.1", + "System.Security.Claims": "4.3.0", + "System.Security.Principal.Windows": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {} + } + }, + "microsoft.aspnetcore.dataprotection.abstractions/1.1.1": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.ComponentModel": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + } + }, + "microsoft.aspnetcore.diagnostics/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.1", + "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.1", + "Microsoft.AspNetCore.Http.Extensions": "1.1.1", + "Microsoft.AspNetCore.WebUtilities": "1.1.1", + "Microsoft.Extensions.FileProviders.Physical": "1.1.0", + "Microsoft.Extensions.Logging.Abstractions": "1.1.1", + "Microsoft.Extensions.Options": "1.1.1", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Reflection.Metadata": "1.4.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.dll": {} + } + }, + "microsoft.aspnetcore.diagnostics.abstractions/1.1.1": { + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + }, + "compile": { + "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + } + }, + "microsoft.aspnetcore.hosting/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.1", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.1", + "Microsoft.AspNetCore.Http": "1.1.1", + "Microsoft.AspNetCore.Http.Extensions": "1.1.1", + "Microsoft.Extensions.Configuration": "1.1.1", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.1", + "Microsoft.Extensions.DependencyInjection": "1.1.0", + "Microsoft.Extensions.FileProviders.Physical": "1.1.0", + "Microsoft.Extensions.Logging": "1.1.1", + "Microsoft.Extensions.Options": "1.1.1", + "Microsoft.Extensions.PlatformAbstractions": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Reflection.Metadata": "1.4.1", + "System.Runtime.Loader": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll": {} + }, + "compile": { + "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll": {} + } + }, + "microsoft.aspnetcore.hosting.abstractions/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.1", + "Microsoft.AspNetCore.Http.Abstractions": "1.1.1", + "Microsoft.Extensions.Configuration.Abstractions": "1.1.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0", + "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0", + "Microsoft.Extensions.Logging.Abstractions": "1.1.1", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + } + }, + "microsoft.aspnetcore.hosting.server.abstractions/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "1.1.1", + "Microsoft.Extensions.Configuration.Abstractions": "1.1.1", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + } + }, + "microsoft.aspnetcore.html.abstractions/1.1.1": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Text.Encodings.Web": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {} + }, + "compile": { + "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {} + } + }, + "microsoft.aspnetcore.http/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "1.1.1", + "Microsoft.AspNetCore.WebUtilities": "1.1.1", + "Microsoft.Extensions.ObjectPool": "1.1.0", + "Microsoft.Extensions.Options": "1.1.1", + "Microsoft.Net.Http.Headers": "1.1.1", + "NETStandard.Library": "1.6.1", + "System.Buffers": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {} + } + }, + "microsoft.aspnetcore.http.abstractions/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "1.1.1", + "Microsoft.Extensions.Primitives": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Globalization.Extensions": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Text.Encodings.Web": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {} + } + }, + "microsoft.aspnetcore.http.extensions/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "1.1.1", + "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0", + "Microsoft.Net.Http.Headers": "1.1.1", + "NETStandard.Library": "1.6.1", + "System.Buffers": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {} + } + }, + "microsoft.aspnetcore.http.features/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Primitives": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.ComponentModel": "4.3.0", + "System.Net.WebSockets": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "microsoft.aspnetcore.httpoverrides/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "1.1.1", + "Microsoft.Extensions.Logging.Abstractions": "1.1.1", + "Microsoft.Extensions.Options": "1.1.1", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll": {} + } + }, + "microsoft.aspnetcore.jsonpatch/1.1.1": { + "dependencies": { + "Microsoft.CSharp": "4.3.0", + "NETStandard.Library": "1.6.1", + "Newtonsoft.Json": "9.0.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {} + } + }, + "microsoft.aspnetcore.localization/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "1.1.1", + "Microsoft.Extensions.Globalization.CultureInfoCache": "1.1.1", + "Microsoft.Extensions.Localization.Abstractions": "1.1.1", + "Microsoft.Extensions.Options": "1.1.1", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {} + } + }, + "microsoft.aspnetcore.mvc/1.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.2", + "Microsoft.AspNetCore.Mvc.Cors": "1.1.2", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.2", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.2", + "Microsoft.AspNetCore.Mvc.Localization": "1.1.2", + "Microsoft.AspNetCore.Mvc.Razor": "1.1.2", + "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.2", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.2", + "Microsoft.Extensions.Caching.Memory": "1.1.1", + "Microsoft.Extensions.DependencyInjection": "1.1.0", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {} + }, + "compile": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {} + } + }, + "microsoft.aspnetcore.mvc.abstractions/1.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Routing.Abstractions": "1.1.1", + "Microsoft.CSharp": "4.3.0", + "Microsoft.Net.Http.Headers": "1.1.1", + "NETStandard.Library": "1.6.1", + "System.ComponentModel.TypeConverter": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + } + }, + "microsoft.aspnetcore.mvc.apiexplorer/1.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Core": "1.1.2", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + }, + "compile": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + } + }, + "microsoft.aspnetcore.mvc.core/1.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "1.1.1", + "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.1", + "Microsoft.AspNetCore.Http": "1.1.1", + "Microsoft.AspNetCore.Mvc.Abstractions": "1.1.2", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.1", + "Microsoft.AspNetCore.Routing": "1.1.1", + "Microsoft.Extensions.DependencyModel": "1.1.1", + "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0", + "Microsoft.Extensions.Logging.Abstractions": "1.1.1", + "Microsoft.Extensions.PlatformAbstractions": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Buffers": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "compile": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {} + } + }, + "microsoft.aspnetcore.mvc.cors/1.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Cors": "1.1.1", + "Microsoft.AspNetCore.Mvc.Core": "1.1.2", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {} + }, + "compile": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {} + } + }, + "microsoft.aspnetcore.mvc.dataannotations/1.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Core": "1.1.2", + "Microsoft.Extensions.Localization": "1.1.1", + "NETStandard.Library": "1.6.1", + "System.ComponentModel.Annotations": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + }, + "compile": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + } + }, + "microsoft.aspnetcore.mvc.formatters.json/1.1.2": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "1.1.1", + "Microsoft.AspNetCore.Mvc.Core": "1.1.2", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + }, + "compile": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + } + }, + "microsoft.aspnetcore.mvc.localization/1.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Localization": "1.1.1", + "Microsoft.AspNetCore.Mvc.Razor": "1.1.2", + "Microsoft.Extensions.DependencyInjection": "1.1.0", + "Microsoft.Extensions.Localization": "1.1.1", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {} + }, + "compile": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {} + } + }, + "microsoft.aspnetcore.mvc.razor/1.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Host": "1.1.2", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.2", + "Microsoft.CodeAnalysis.CSharp": "1.3.0", + "Microsoft.Extensions.FileProviders.Composite": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Loader": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {} + }, + "compile": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {} + } + }, + "microsoft.aspnetcore.mvc.razor.host/1.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Runtime": "1.1.1", + "Microsoft.Extensions.Caching.Memory": "1.1.1", + "Microsoft.Extensions.FileProviders.Physical": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.ComponentModel.TypeConverter": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {} + }, + "compile": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {} + } + }, + "microsoft.aspnetcore.mvc.taghelpers/1.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor": "1.1.2", + "Microsoft.AspNetCore.Routing.Abstractions": "1.1.1", + "Microsoft.Extensions.Caching.Memory": "1.1.1", + "Microsoft.Extensions.FileSystemGlobbing": "1.1.0", + "Microsoft.Extensions.Primitives": "1.1.0", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + }, + "compile": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + } + }, + "microsoft.aspnetcore.mvc.viewfeatures/1.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Antiforgery": "1.1.1", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.1", + "Microsoft.AspNetCore.Html.Abstractions": "1.1.1", + "Microsoft.AspNetCore.Mvc.Core": "1.1.2", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.2", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.2", + "Microsoft.Extensions.WebEncoders": "1.1.1", + "NETStandard.Library": "1.6.1", + "Newtonsoft.Json": "9.0.1", + "System.Buffers": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + }, + "compile": { + "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + } + }, + "microsoft.aspnetcore.razor/1.1.1": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Threading.Thread": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {} + } + }, + "microsoft.aspnetcore.razor.runtime/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Html.Abstractions": "1.1.1", + "Microsoft.AspNetCore.Razor": "1.1.1", + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {} + }, + "compile": { + "lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {} + } + }, + "microsoft.aspnetcore.responsecaching.abstractions/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Primitives": "1.1.0", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + } + }, + "microsoft.aspnetcore.routing/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "1.1.1", + "Microsoft.AspNetCore.Routing.Abstractions": "1.1.1", + "Microsoft.Extensions.Logging.Abstractions": "1.1.1", + "Microsoft.Extensions.ObjectPool": "1.1.0", + "Microsoft.Extensions.Options": "1.1.1", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {} + } + }, + "microsoft.aspnetcore.routing.abstractions/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "1.1.1", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + } + }, + "microsoft.aspnetcore.server.iisintegration/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.1", + "Microsoft.AspNetCore.Http": "1.1.1", + "Microsoft.AspNetCore.Http.Extensions": "1.1.1", + "Microsoft.AspNetCore.HttpOverrides": "1.1.1", + "Microsoft.Extensions.Logging.Abstractions": "1.1.1", + "Microsoft.Extensions.Options": "1.1.1", + "NETStandard.Library": "1.6.1", + "System.Security.Principal.Windows": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll": {} + } + }, + "microsoft.aspnetcore.server.kestrel/1.1.1": { + "dependencies": { + "Libuv": "1.9.1", + "Microsoft.AspNetCore.Hosting": "1.1.1", + "Microsoft.Extensions.Logging.Abstractions": "1.1.1", + "NETStandard.Library": "1.6.1", + "System.Buffers": "4.3.0", + "System.Numerics.Vectors": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0", + "System.Threading.Thread": "4.3.0", + "System.Threading.ThreadPool": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll": {} + } + }, + "microsoft.aspnetcore.staticfiles/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.1", + "Microsoft.AspNetCore.Http.Extensions": "1.1.1", + "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0", + "Microsoft.Extensions.Logging.Abstractions": "1.1.1", + "Microsoft.Extensions.WebEncoders": "1.1.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.StaticFiles.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.StaticFiles.dll": {} + } + }, + "microsoft.aspnetcore.webutilities/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Primitives": "1.1.0", + "Microsoft.Net.Http.Headers": "1.1.1", + "NETStandard.Library": "1.6.1", + "System.Buffers": "4.3.0", + "System.Text.Encodings.Web": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {} + } + }, + "microsoft.dotnet.platformabstractions/1.1.1": { + "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" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {} + } + }, + "microsoft.extensions.caching.abstractions/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Primitives": "1.1.0", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + } + }, + "microsoft.extensions.caching.memory/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "1.1.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0", + "Microsoft.Extensions.Options": "1.1.1", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {} + } + }, + "microsoft.extensions.configuration/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.1.1", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {} + }, + "compile": { + "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {} + } + }, + "microsoft.extensions.configuration.abstractions/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Primitives": "1.1.0", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "microsoft.extensions.configuration.binder/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Configuration": "1.1.1", + "NETStandard.Library": "1.6.1", + "System.ComponentModel.TypeConverter": "4.3.0" + }, + "runtime": { + "lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "compile": { + "lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "microsoft.extensions.configuration.environmentvariables/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Configuration": "1.1.1", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "microsoft.extensions.configuration.fileextensions/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Configuration": "1.1.1", + "Microsoft.Extensions.FileProviders.Physical": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Threading.Thread": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "microsoft.extensions.configuration.json/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Configuration": "1.1.1", + "Microsoft.Extensions.Configuration.FileExtensions": "1.1.1", + "NETStandard.Library": "1.6.1", + "Newtonsoft.Json": "9.0.1", + "System.Dynamic.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "microsoft.extensions.dependencyinjection/1.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "compile": { + "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "microsoft.extensions.dependencyinjection.abstractions/1.1.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.ComponentModel": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "microsoft.extensions.dependencymodel/1.1.1": { + "dependencies": { + "Microsoft.DotNet.PlatformAbstractions": "1.1.1", + "Newtonsoft.Json": "9.0.1", + "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": {} + }, + "compile": { + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "microsoft.extensions.fileproviders.abstractions/1.1.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "1.1.0", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "microsoft.extensions.fileproviders.composite/1.1.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {} + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {} + } + }, + "microsoft.extensions.fileproviders.embedded/1.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0", + "System.Runtime.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Embedded.dll": {} + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Embedded.dll": {} + } + }, + "microsoft.extensions.fileproviders.physical/1.1.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0", + "Microsoft.Extensions.FileSystemGlobbing": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.IO.FileSystem.Watcher": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {} + } + }, + "microsoft.extensions.filesystemglobbing/1.1.0": { + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {} + } + }, + "microsoft.extensions.globalization.cultureinfocache/1.1.1": { + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {} + }, + "compile": { + "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {} + } + }, + "microsoft.extensions.localization/1.1.1": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0", + "Microsoft.Extensions.Localization.Abstractions": "1.1.1", + "Microsoft.Extensions.Options": "1.1.1", + "NETStandard.Library": "1.6.1", + "System.Resources.Reader": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {} + } + }, + "microsoft.extensions.localization.abstractions/1.1.1": { + "dependencies": { + "Microsoft.CSharp": "4.3.0", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {} + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {} + } + }, + "microsoft.extensions.logging/1.1.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0", + "Microsoft.Extensions.Logging.Abstractions": "1.1.1", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {} + }, + "compile": { + "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "microsoft.extensions.logging.abstractions/1.1.1": { + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "compile": { + "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "microsoft.extensions.logging.console/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.1.1", + "Microsoft.Extensions.Logging.Abstractions": "1.1.1", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {} + } + }, + "microsoft.extensions.logging.debug/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "1.1.1", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll": {} + } + }, + "microsoft.extensions.objectpool/1.1.0": { + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {} + } + }, + "microsoft.extensions.options/1.1.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0", + "Microsoft.Extensions.Primitives": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.ComponentModel": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.Options.dll": {} + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.Options.dll": {} + } + }, + "microsoft.extensions.options.configurationextensions/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.1.1", + "Microsoft.Extensions.Configuration.Binder": "1.1.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0", + "Microsoft.Extensions.Options": "1.1.1", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + }, + "compile": { + "lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + } + }, + "microsoft.extensions.platformabstractions/1.1.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "compile": { + "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "microsoft.extensions.primitives/1.1.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Runtime.CompilerServices.Unsafe": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {} + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {} + } + }, + "microsoft.extensions.webencoders/1.1.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0", + "Microsoft.Extensions.Options": "1.1.1", + "NETStandard.Library": "1.6.1", + "System.Text.Encodings.Web": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {} + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {} + } + }, + "microsoft.net.http.headers/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Primitives": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Buffers": "4.3.0", + "System.Diagnostics.Contracts": "4.3.0" + }, + "runtime": { + "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {} + }, + "compile": { + "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {} + } + }, + "newtonsoft.json/9.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "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.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" + }, + "runtime": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} + }, + "compile": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} + } + }, + "swashbuckle.aspnetcore.swagger/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Core": "1.1.2", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.2", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.6/Swashbuckle.AspNetCore.Swagger.dll": {} + }, + "compile": { + "lib/netstandard1.6/Swashbuckle.AspNetCore.Swagger.dll": {} + } + }, + "swashbuckle.aspnetcore.swaggergen/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.2", + "Microsoft.AspNetCore.Mvc.Core": "1.1.2", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.2", + "NETStandard.Library": "1.6.1", + "Swashbuckle.AspNetCore.Swagger": "1.0.0", + "System.Xml.XPath": "4.0.1" + }, + "runtime": { + "lib/netstandard1.6/Swashbuckle.AspNetCore.SwaggerGen.dll": {} + }, + "compile": { + "lib/netstandard1.6/Swashbuckle.AspNetCore.SwaggerGen.dll": {} + } + }, + "swashbuckle.aspnetcore.swaggerui/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Routing": "1.1.1", + "Microsoft.AspNetCore.StaticFiles": "1.0.0", + "Microsoft.Extensions.FileProviders.Embedded": "1.0.0", + "NETStandard.Library": "1.6.1", + "Newtonsoft.Json": "9.0.1", + "System.Xml.XPath": "4.0.1" + }, + "runtime": { + "lib/netstandard1.6/Swashbuckle.AspNetCore.SwaggerUI.dll": {} + }, + "compile": { + "lib/netstandard1.6/Swashbuckle.AspNetCore.SwaggerUI.dll": {} + } + }, + "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" + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "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" + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "system.componentmodel.primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "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" + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "system.diagnostics.contracts/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Diagnostics.Contracts.dll": {} + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Contracts.dll": {} + } + }, + "system.diagnostics.stacktrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.1", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + } + }, + "system.net.websockets/4.3.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebSockets.dll": {} + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.dll": {} + } + }, + "system.runtime.compilerservices.unsafe/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "compile": { + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "system.runtime.serialization.primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "system.text.encodings.web/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "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.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Text.Encodings.Web.dll": {} + }, + "compile": { + "lib/netstandard1.0/System.Text.Encodings.Web.dll": {} + } + }, + "libuv/1.9.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compileOnly": true + }, + "microsoft.codeanalysis.analyzers/1.1.0": { + "compileOnly": true + }, + "microsoft.codeanalysis.common/1.3.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.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.FileVersionInfo": "4.0.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.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.1", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.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.0.1", + "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.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0", + "System.Xml.XPath.XDocument": "4.0.1", + "System.Xml.XmlDocument": "4.0.1" + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {} + }, + "compileOnly": true + }, + "microsoft.codeanalysis.csharp/1.3.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.3.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "compileOnly": true + }, + "microsoft.codeanalysis.visualbasic/1.3.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.3.0" + }, + "compileOnly": true + }, + "microsoft.csharp/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "compileOnly": true + }, + "microsoft.diasymreader.native/1.4.1": { + "compileOnly": true + }, + "microsoft.netcore.app/1.1.1": { + "dependencies": { + "Libuv": "1.9.1", + "Microsoft.CSharp": "4.3.0", + "Microsoft.CodeAnalysis.CSharp": "1.3.0", + "Microsoft.CodeAnalysis.VisualBasic": "1.3.0", + "Microsoft.DiaSymReader.Native": "1.4.1", + "Microsoft.NETCore.DotNetHostPolicy": "1.1.0", + "Microsoft.NETCore.Runtime.CoreCLR": "1.1.1", + "Microsoft.VisualBasic": "10.1.0", + "NETStandard.Library": "1.6.1", + "System.Buffers": "4.3.0", + "System.Collections.Immutable": "1.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Annotations": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Process": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO.FileSystem.Watcher": "4.3.0", + "System.IO.MemoryMappedFiles": "4.3.0", + "System.IO.UnmanagedMemoryStream": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Linq.Parallel": "4.3.0", + "System.Linq.Queryable": "4.3.0", + "System.Net.NameResolution": "4.3.0", + "System.Net.Requests": "4.3.0", + "System.Net.Security": "4.3.0", + "System.Net.WebHeaderCollection": "4.3.0", + "System.Numerics.Vectors": "4.3.0", + "System.Reflection.DispatchProxy": "4.3.0", + "System.Reflection.Metadata": "1.4.1", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.Reader": "4.3.0", + "System.Runtime.Loader": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Threading.Tasks.Dataflow": "4.7.0", + "System.Threading.Tasks.Extensions": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0", + "System.Threading.Thread": "4.3.0", + "System.Threading.ThreadPool": "4.3.0" + }, + "compileOnly": true + }, + "microsoft.netcore.dotnethost/1.1.0": { + "compileOnly": true + }, + "microsoft.netcore.dotnethostpolicy/1.1.0": { + "dependencies": { + "Microsoft.NETCore.DotNetHostResolver": "1.1.0" + }, + "compileOnly": true + }, + "microsoft.netcore.dotnethostresolver/1.1.0": { + "dependencies": { + "Microsoft.NETCore.DotNetHost": "1.1.0" + }, + "compileOnly": true + }, + "microsoft.netcore.jit/1.1.1": { + "compileOnly": true + }, + "microsoft.netcore.platforms/1.1.0": { + "compileOnly": true + }, + "microsoft.netcore.runtime.coreclr/1.1.1": { + "dependencies": { + "Microsoft.NETCore.Jit": "1.1.1", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1" + }, + "compileOnly": true + }, + "microsoft.netcore.targets/1.1.0": { + "compileOnly": true + }, + "microsoft.netcore.windows.apisets/1.0.1": { + "compileOnly": true + }, + "microsoft.visualbasic/10.1.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/Microsoft.VisualBasic.dll": {} + }, + "compileOnly": true + }, + "microsoft.win32.primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + }, + "compileOnly": true + }, + "microsoft.win32.registry/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Registry.dll": {} + }, + "compileOnly": true + }, + "netstandard.library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + }, + "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": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compileOnly": true + }, + "runtime.native.system.io.compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compileOnly": true + }, + "runtime.native.system.net.http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compileOnly": true + }, + "runtime.native.system.net.security/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.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 + }, + "system.appcontext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "compileOnly": true + }, + "system.buffers/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/System.Buffers.dll": {} + }, + "compileOnly": true + }, + "system.collections/4.3.0": { + "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": {} + }, + "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" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "compileOnly": true + }, + "system.collections.immutable/1.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.componentmodel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "compileOnly": true + }, + "system.componentmodel.annotations/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.ComponentModel.Annotations.dll": {} + }, + "compileOnly": true + }, + "system.console/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.diagnostics.debug/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.diagnostics.diagnosticsource/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + }, + "compileOnly": true + }, + "system.diagnostics.fileversioninfo/4.0.0": { + "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" + }, + "compileOnly": true + }, + "system.diagnostics.process/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "Microsoft.Win32.Registry": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.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.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "compileOnly": true + }, + "system.diagnostics.tools/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.diagnostics.tracing/4.3.0": { + "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": {} + }, + "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" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "compileOnly": true + }, + "system.globalization/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.globalization.calendars/4.3.0": { + "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.Calendars.dll": {} + }, + "compileOnly": true + }, + "system.globalization.extensions/4.3.0": { + "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/System.Globalization.Extensions.dll": {} + }, + "compileOnly": true + }, + "system.io/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.io.compression/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.io.compression.zipfile/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "compileOnly": true + }, + "system.io.filesystem/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.io.filesystem.primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "compileOnly": true + }, + "system.io.filesystem.watcher/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "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.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Thread": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {} + }, + "compileOnly": true + }, + "system.io.memorymappedfiles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.IO.UnmanagedMemoryStream": "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.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {} + }, + "compileOnly": true + }, + "system.io.unmanagedmemorystream/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "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", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.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" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "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" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "compileOnly": true + }, + "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" + }, + "compile": { + "ref/netstandard1.1/System.Linq.Parallel.dll": {} + }, + "compileOnly": true + }, + "system.linq.queryable/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.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Linq.Queryable.dll": {} + }, + "compileOnly": true + }, + "system.net.http/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.net.nameresolution/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "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.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "compileOnly": true + }, + "system.net.primitives/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.net.requests/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.WebHeaderCollection": "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.Net.Requests.dll": {} + }, + "compileOnly": true + }, + "system.net.security/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "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.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.Claims": "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.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.ThreadPool": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Security": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Security.dll": {} + }, + "compileOnly": true + }, + "system.net.sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + }, + "compileOnly": true + }, + "system.net.webheadercollection/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + }, + "compileOnly": true + }, + "system.numerics.vectors/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" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "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" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "compileOnly": true + }, + "system.reflection/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.reflection.dispatchproxy/4.3.0": { + "dependencies": { + "System.Collections": "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.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + }, + "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": "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": {} + }, + "compileOnly": true + }, + "system.reflection.metadata/1.4.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.0", + "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": {} + }, + "compileOnly": true + }, + "system.reflection.primitives/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.reflection.typeextensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "compileOnly": true + }, + "system.resources.reader/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Resources.Reader.dll": {} + }, + "compileOnly": true + }, + "system.resources.resourcemanager/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + }, + "compileOnly": true + }, + "system.runtime.extensions/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.runtime.handles/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.runtime.interopservices/4.3.0": { + "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": {} + }, + "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" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "compileOnly": true + }, + "system.runtime.loader/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "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" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.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" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "compileOnly": true + }, + "system.security.cryptography.algorithms/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.security.cryptography.cng/4.3.0": { + "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" + }, + "compileOnly": true + }, + "system.security.cryptography.csp/4.3.0": { + "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" + }, + "compileOnly": true + }, + "system.security.cryptography.encoding/4.3.0": { + "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": {} + }, + "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.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" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "compileOnly": true + }, + "system.security.cryptography.x509certificates/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.security.principal/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": {} + }, + "compileOnly": true + }, + "system.security.principal.windows/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "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.Claims": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Principal.Windows.dll": {} + }, + "compileOnly": true + }, + "system.text.encoding/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.text.encoding.codepages/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "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.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compileOnly": true + }, + "system.text.encoding.extensions/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.text.regularexpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "compileOnly": true + }, + "system.threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "compileOnly": true + }, + "system.threading.overlapped/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compileOnly": true + }, + "system.threading.tasks/4.3.0": { + "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": {} + }, + "compileOnly": true + }, + "system.threading.tasks.dataflow/4.7.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.Dynamic.Runtime": "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": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + }, + "compileOnly": true + }, + "system.threading.tasks.extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + }, + "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" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "compileOnly": true + }, + "system.threading.thread/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "compileOnly": true + }, + "system.threading.threadpool/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} + }, + "compileOnly": true + }, + "system.threading.timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + }, + "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.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "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" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "compileOnly": true + }, + "system.xml.xmldocument/4.0.1": { + "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.xpath/4.0.1": { + "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": {} + }, + "compileOnly": true + }, + "system.xml.xpath.xdocument/4.0.1": { + "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.0.1" + }, + "compileOnly": true + } + } + }, + "libraries": { + "swaggerbug/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "microsoft.aspnetcore/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ucOzfT7UH7rMH/Q2CS7GcfRr4OkA+j7aKNOQuH9GSF9cOZu4HH419keZB24t5bUeOteXH8QfdJu+0Xi+GvoC9g==", + "path": "microsoft.aspnetcore/1.1.1", + "hashPath": "microsoft.aspnetcore.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.antiforgery/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6GitK68M8oGkWhHvI5v7ViGUrmmSskJdchXjwzdxFpT/hqKXVOr9yU5vIldfs7Fqa49AJwRJIsKmR37b5YUMVg==", + "path": "microsoft.aspnetcore.antiforgery/1.1.1", + "hashPath": "microsoft.aspnetcore.antiforgery.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.authorization/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ASW8M1Z9kggJyHmpAKoAo05Dhl/259kOe72ND/ez/i1wJejMsxBJTDZKAFt1EKJ55CqpcjD0+0Fjy0xLzhp+4A==", + "path": "microsoft.aspnetcore.authorization/1.1.1", + "hashPath": "microsoft.aspnetcore.authorization.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.cors/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nJRmdxLWAakOCHZXvAQyNeH54CQpQo1Pz5sQSoFiGgOtWYHdmF4DM5m2HktxFeRn55q3QkitP69kg7RjkJ65uw==", + "path": "microsoft.aspnetcore.cors/1.1.1", + "hashPath": "microsoft.aspnetcore.cors.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.cryptography.internal/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q9M6FM5EvV1yEKp+woL3ZtKVheG6TgNwGL5xciOXojEL51DXfujXxoLm+s8sQYEqUbuReKe6mvwLlHGI2lcztQ==", + "path": "microsoft.aspnetcore.cryptography.internal/1.1.1", + "hashPath": "microsoft.aspnetcore.cryptography.internal.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.dataprotection/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pakuXtYAdSx/quiRxwszcx65zo+uwKVbkn5foIGmBbf6JH9+2Nlku1kImxwa7hnEw6oOnAH5AtY8dtCHb/U/Pw==", + "path": "microsoft.aspnetcore.dataprotection/1.1.1", + "hashPath": "microsoft.aspnetcore.dataprotection.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.dataprotection.abstractions/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oJkhYmShm5c4f9Co/EYS2M0bquxTa7PZmws6HlFFr5C3TohRrtZ5OpfQiCP75J/Oc0rJ5mjo3HekU/rUzxQzPw==", + "path": "microsoft.aspnetcore.dataprotection.abstractions/1.1.1", + "hashPath": "microsoft.aspnetcore.dataprotection.abstractions.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.diagnostics/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FyR2gHNCrdXpZ4O7JK0rb4TRCb33hYExfG7X0SoFimzPv9hTFBu7CpkNvIhkCeZ3rjZ1ybLSu6DxTuW+68VMQw==", + "path": "microsoft.aspnetcore.diagnostics/1.1.1", + "hashPath": "microsoft.aspnetcore.diagnostics.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.diagnostics.abstractions/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V0vcm5iW7B+tiJ8SlULn0dOZYqWCKMGPGM5op+lQw9sEBdDN1NJ161CrCJl2o55/d9aLVXDygMhucZlYCtfWVg==", + "path": "microsoft.aspnetcore.diagnostics.abstractions/1.1.1", + "hashPath": "microsoft.aspnetcore.diagnostics.abstractions.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.hosting/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HFe1/1WbdwxNENLQaUKU/ReeHDAJX54XHnvWUFZwQwBBaDTDcPXoG8LAjDyjVJvu1zbTTYSdNbvrHicsyz2W+Q==", + "path": "microsoft.aspnetcore.hosting/1.1.1", + "hashPath": "microsoft.aspnetcore.hosting.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.hosting.abstractions/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Qp/CWKTE5qnVfOiVuR7TJxvKerx7f95PQZ4ka4RR/0WEwu1vRDb/JG5VXB4LagcZrskp6T9BXbsGsx1IImNTKw==", + "path": "microsoft.aspnetcore.hosting.abstractions/1.1.1", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.hosting.server.abstractions/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7fMIFqUbEEGoWam6HRsY3yBBxYIELPwL2EbqHFsbEVpeoiu+clbRQqRWo/zXFWqJ/AvtYwt8v5ODYN19LCYGQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/1.1.1", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.html.abstractions/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S9aeX2SsQzCl/m9FtP4PJDK4HcaXjApHKrO9IPM/KJatPQq/ETRSWiLslrwiwKB841hyDDwJf340dQqarvedYA==", + "path": "microsoft.aspnetcore.html.abstractions/1.1.1", + "hashPath": "microsoft.aspnetcore.html.abstractions.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.http/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+0aLZBOjdUz1qee5JlVuV/+dtgT9lHHcX2PJQZr3FlhTUhIynat0jOJMsVCgpH4OEKQ+1NJEecqBuSI3bRea7Q==", + "path": "microsoft.aspnetcore.http/1.1.1", + "hashPath": "microsoft.aspnetcore.http.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.http.abstractions/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ujRjDunw6TI12VmeNYvXf2+p5EsteJnPyI39gRC98wcqIcepTA5jU4nBJAnIBTFntTYHjmOfN8WwYoi1KeSAdg==", + "path": "microsoft.aspnetcore.http.abstractions/1.1.1", + "hashPath": "microsoft.aspnetcore.http.abstractions.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.http.extensions/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-keOSZBZeYm+MX7oJzkUZDGbdkrAuzLNemd4D1bMz78cs8xeDGIHKGi/0VujIKWbjeWrQEa7LX001r0rR7qd51g==", + "path": "microsoft.aspnetcore.http.extensions/1.1.1", + "hashPath": "microsoft.aspnetcore.http.extensions.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.http.features/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y2YBopohGbC7abOZ9yMF3z7rQ6s2h8stRq7rOhmWwun01efhc2xxSOAKDixcg1DTKcch1g32Ge6Q/LMlu7uLyw==", + "path": "microsoft.aspnetcore.http.features/1.1.1", + "hashPath": "microsoft.aspnetcore.http.features.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.httpoverrides/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gV3yl2SuJgjD+wnSwSu4iUFF3lQREVbeKOF0dZOZEFjk6bPUVkOwPalwHf7AL716YhmEmB8t1d/OuwsSGbQ/jg==", + "path": "microsoft.aspnetcore.httpoverrides/1.1.1", + "hashPath": "microsoft.aspnetcore.httpoverrides.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.jsonpatch/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ujzDcSvMSgibrVcEVQ7jaeVEhMPd8GMJi6E0a2kkqcuXFSE3rjRyzGpCm8H4PDlJZhw9XEfyK7aL0SXxjOmC4A==", + "path": "microsoft.aspnetcore.jsonpatch/1.1.1", + "hashPath": "microsoft.aspnetcore.jsonpatch.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.localization/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C0xWRh/o/+BSq+Une21OhkWWUavi1mpzNGhyp+0W65GISzskU8KpVQsInSIvs6TkTpX8+9DVa8LRN1wUftvH3Q==", + "path": "microsoft.aspnetcore.localization/1.1.1", + "hashPath": "microsoft.aspnetcore.localization.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.mvc/1.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q5W4Wp66hp2CQcTly76tewqXnnnMGGVti11DFRP0sW/wd1AuBIqwBrU70vuhdesJa4SKgl2azmg65aEyZWkxqg==", + "path": "microsoft.aspnetcore.mvc/1.1.2", + "hashPath": "microsoft.aspnetcore.mvc.1.1.2.nupkg.sha512" + }, + "microsoft.aspnetcore.mvc.abstractions/1.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aALebuRJo4f+xHVkpQ7Ma3VJUjeq6DsR2NmN5MckQN2W4fySt8eewXH8YnWXbOKhOWz5niXG65f2wycU/n37kQ==", + "path": "microsoft.aspnetcore.mvc.abstractions/1.1.2", + "hashPath": "microsoft.aspnetcore.mvc.abstractions.1.1.2.nupkg.sha512" + }, + "microsoft.aspnetcore.mvc.apiexplorer/1.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-a2DBZgZ07Gs4JLjlRt7zHKUIESSjgUpI4wd2i3qL8F5PrJXeZ7r7xUYlt/yg7dorBUGb8sXgPcW1l4qRNslmRQ==", + "path": "microsoft.aspnetcore.mvc.apiexplorer/1.1.2", + "hashPath": "microsoft.aspnetcore.mvc.apiexplorer.1.1.2.nupkg.sha512" + }, + "microsoft.aspnetcore.mvc.core/1.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TMpgCYbtSD4x+DX3P1kPzP5jOY3SNoCKaVM025Mp26nVJxY9NuOaLhouNV8JePI//2HL2cWhDMVy/p7NsoyhlA==", + "path": "microsoft.aspnetcore.mvc.core/1.1.2", + "hashPath": "microsoft.aspnetcore.mvc.core.1.1.2.nupkg.sha512" + }, + "microsoft.aspnetcore.mvc.cors/1.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Qx72GLkDJF7Ogao1VrJMuXvj83EggT2zia3rjWiLWFeY6B41k5govUmRWXE2yyjhrO6Y3NSJyl6zc9s/yBUdnQ==", + "path": "microsoft.aspnetcore.mvc.cors/1.1.2", + "hashPath": "microsoft.aspnetcore.mvc.cors.1.1.2.nupkg.sha512" + }, + "microsoft.aspnetcore.mvc.dataannotations/1.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uiRvPqVfA1xenXnjnGL5hup/w723f4VIf/XKTfXvYi2sa62Mj8Uof8Fyt250BYFkl/yMQ9VSWbdDB4/3rjWipw==", + "path": "microsoft.aspnetcore.mvc.dataannotations/1.1.2", + "hashPath": "microsoft.aspnetcore.mvc.dataannotations.1.1.2.nupkg.sha512" + }, + "microsoft.aspnetcore.mvc.formatters.json/1.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MFXCAEajhtveMxtu/KGBWjargFYg/8OrKLUYY4lLv8vb1VJfLNx11cR1CsjeZlycONbQUyed912I/cvw+AtIxw==", + "path": "microsoft.aspnetcore.mvc.formatters.json/1.1.2", + "hashPath": "microsoft.aspnetcore.mvc.formatters.json.1.1.2.nupkg.sha512" + }, + "microsoft.aspnetcore.mvc.localization/1.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HKqcTJfHBFoKJvCl/ddsNfbONG2UpCzzqYMY5OTwUmDDIi8NR93ZeQ3qPY0B02UfffeQnAmTRTWcal4mL3jQlQ==", + "path": "microsoft.aspnetcore.mvc.localization/1.1.2", + "hashPath": "microsoft.aspnetcore.mvc.localization.1.1.2.nupkg.sha512" + }, + "microsoft.aspnetcore.mvc.razor/1.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y5By+92i/vwuqzhnJIh+4+j5P2toIO9dX0chGuod3iCYyiHFQJcIL/KweAcf3twkiuDtrWohYuIh0qlg05+ZmA==", + "path": "microsoft.aspnetcore.mvc.razor/1.1.2", + "hashPath": "microsoft.aspnetcore.mvc.razor.1.1.2.nupkg.sha512" + }, + "microsoft.aspnetcore.mvc.razor.host/1.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TN6yo6pj1JZfFBJf4S63s48NvY99u54KH3PEgH/tEdUF4rerlEWtUu4dcchqcADsLNztdoq/nIH04XIon3ZvLQ==", + "path": "microsoft.aspnetcore.mvc.razor.host/1.1.2", + "hashPath": "microsoft.aspnetcore.mvc.razor.host.1.1.2.nupkg.sha512" + }, + "microsoft.aspnetcore.mvc.taghelpers/1.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cN+B0FD9TDZEjYcxeNuSN4jmkhVsSVNWgyK0ALCOlMakf+7jQElwZVdhq8IfZeRjeV9B1pIMSn6FzMNCeSQ0mg==", + "path": "microsoft.aspnetcore.mvc.taghelpers/1.1.2", + "hashPath": "microsoft.aspnetcore.mvc.taghelpers.1.1.2.nupkg.sha512" + }, + "microsoft.aspnetcore.mvc.viewfeatures/1.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GLPZoWqvOiCWCLNtQRNkS+SNWaJ1AYPulxXY9xOneCt/p/SKZcQ7uYGGxNF1NsVe351EPBO4Z0hD61a3zH9t0A==", + "path": "microsoft.aspnetcore.mvc.viewfeatures/1.1.2", + "hashPath": "microsoft.aspnetcore.mvc.viewfeatures.1.1.2.nupkg.sha512" + }, + "microsoft.aspnetcore.razor/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-80aBer33ZZkxz1Nwjswxt4uKgpaWdiIJJCh3Qwbrg4WKuLCDNR6hj3E88tK9oQNl6BukoaLCewn1e/rZSWKk2A==", + "path": "microsoft.aspnetcore.razor/1.1.1", + "hashPath": "microsoft.aspnetcore.razor.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.razor.runtime/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/ZGjuUDva9dR4Q9fOjbJmlFld3hF5csvsHstt0mP4GOA8N4DZzh0FZYa0eLRCVXzInTeEtWuCJjJes3iyKP7Qg==", + "path": "microsoft.aspnetcore.razor.runtime/1.1.1", + "hashPath": "microsoft.aspnetcore.razor.runtime.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.responsecaching.abstractions/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ePZBn4Xkj3Bnu4UAoBx0VnsIhY+YX0OksFikiq+JEFzmCk9ci51BLUquXuUqW7IU+jZhKfK5mV5HIKkauvjlA==", + "path": "microsoft.aspnetcore.responsecaching.abstractions/1.1.1", + "hashPath": "microsoft.aspnetcore.responsecaching.abstractions.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.routing/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qjHoL7J8OJIBpOwq2Ssqx2tXw4t08HeQ1+i6uRgbkYIw2RszBcHFM8Az821v7Yan36i3MOfcugWS3990g0mtlw==", + "path": "microsoft.aspnetcore.routing/1.1.1", + "hashPath": "microsoft.aspnetcore.routing.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.routing.abstractions/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-R0TQkXcyImfJdZlUy4qJ2y+CshSicoShFfcwIrZGS060+q9L/+dMq+Ss2Am/sUgbvnEvA/0OM510MF58M3Hsmg==", + "path": "microsoft.aspnetcore.routing.abstractions/1.1.1", + "hashPath": "microsoft.aspnetcore.routing.abstractions.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.server.iisintegration/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XInPzYjygey/s8I0A0j95yoXqKz5y064pueEi3uleDZNI47h3kn+K6XGIS2GASfcCxsk8CLC7br89j7IxOFl+g==", + "path": "microsoft.aspnetcore.server.iisintegration/1.1.1", + "hashPath": "microsoft.aspnetcore.server.iisintegration.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.server.kestrel/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-u3bOhRDMb0Tz9JDQKFpcfH3xsCk2WWnG0Baxz3llxw4xagoEazxflNZ2oTEwpmYQFvgtFELIfBuQBRWmFpot9w==", + "path": "microsoft.aspnetcore.server.kestrel/1.1.1", + "hashPath": "microsoft.aspnetcore.server.kestrel.1.1.1.nupkg.sha512" + }, + "microsoft.aspnetcore.staticfiles/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pXiUBJtpO0fIlGEg/ESykhbIZ2+I+9Y+3qXzN19zZDDF+tD88eATg3A5MHMXu/VmqaROLfvpGJmJ6uOLUGsBVQ==", + "path": "microsoft.aspnetcore.staticfiles/1.0.0", + "hashPath": "microsoft.aspnetcore.staticfiles.1.0.0.nupkg.sha512" + }, + "microsoft.aspnetcore.webutilities/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tj12TLvZvOmKlHxNGZvBZ+lEj47sZ6nQf3LTEYbJq9Lqgx1Kbl2IzHJVSSO0fprlcWrS+lStbNIsRR/cfps+3Q==", + "path": "microsoft.aspnetcore.webutilities/1.1.1", + "hashPath": "microsoft.aspnetcore.webutilities.1.1.1.nupkg.sha512" + }, + "microsoft.dotnet.platformabstractions/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zEVfVHJLd84Opo2oGhLLTgHf0HAlgx9XD8yd4TswMKajWMwZXFzX9gS1v4Z1BKFasegSCB94ViQTzfaM1+1Lhg==", + "path": "microsoft.dotnet.platformabstractions/1.1.1", + "hashPath": "microsoft.dotnet.platformabstractions.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.caching.abstractions/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v8hWtIvFE/7I4yHN34mnZa78SY467Cn5t2ESxogdIsc7Tbgld6izE0ixbgMylEV+r6J/6VTv063StdGUqJ+/vA==", + "path": "microsoft.extensions.caching.abstractions/1.1.1", + "hashPath": "microsoft.extensions.caching.abstractions.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.caching.memory/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ut8dy1cXzignOePuiHWF/nsKPOaTnSQlX7AV/q+osrX8RZEeeRdHv77YmLeknbWj5oaM9SKbzLoOm9FbSmJI5w==", + "path": "microsoft.extensions.caching.memory/1.1.1", + "hashPath": "microsoft.extensions.caching.memory.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.configuration/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ufbiAwF0IRf4rYXeIZWUFuLZsD4TGb6AU+tYafbeaRCXWKeQS7f09YcQo48qK8JBxfVh9iqOaTItwv9gb+NUyA==", + "path": "microsoft.extensions.configuration/1.1.1", + "hashPath": "microsoft.extensions.configuration.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.configuration.abstractions/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9TZULpx/AvH0FKy5vvpj0OPbF9+Mscg5aRbFBojwAi7MNnaoL3EAdUzEfGr5D/I1Wn6VRJwmdOisowyJDy1H1A==", + "path": "microsoft.extensions.configuration.abstractions/1.1.1", + "hashPath": "microsoft.extensions.configuration.abstractions.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.configuration.binder/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7d9cu7wd76RSu6ARu4CQ2JKJwZ65pWRyFNW5xIwmj+GM3CCRK9DcrH5Xs20Ee5wgCK6C4CxNDpLTHeM01LPbbA==", + "path": "microsoft.extensions.configuration.binder/1.1.1", + "hashPath": "microsoft.extensions.configuration.binder.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.configuration.environmentvariables/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RwP1X5gQvm4MtloD4you1zOD7QUkJeZofybF7nVRIOtUEHCyIi1/3bL655l+4+ruFGbJg8LMOLMpR1RZqvmlMA==", + "path": "microsoft.extensions.configuration.environmentvariables/1.1.1", + "hashPath": "microsoft.extensions.configuration.environmentvariables.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.configuration.fileextensions/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JWYtoipzE4AZSEgL02+CVRQtMyku/zj7++3asTLSwklr9L2gI54w/3iX/Au5w74cGM0xnPOaXycgyto0ARUK5A==", + "path": "microsoft.extensions.configuration.fileextensions/1.1.1", + "hashPath": "microsoft.extensions.configuration.fileextensions.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.configuration.json/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IxtLugeD7X9/t0JIO9TquxCE6q4tFBb5nlBRInK6TMmRO5YV5GBnPbJ0u4hUnCNr4Kas3V8VpCcO22RUGW73NQ==", + "path": "microsoft.extensions.configuration.json/1.1.1", + "hashPath": "microsoft.extensions.configuration.json.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.dependencyinjection/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-meG2tsLdHT0SROqxGBiY8A6XUKlwsQVj1N9cyrS+ZJd1MKhoSaw54KuSH6PmpCB/K/ifkR7o9yVVVamu9XZyeg==", + "path": "microsoft.extensions.dependencyinjection/1.1.0", + "hashPath": "microsoft.extensions.dependencyinjection.1.1.0.nupkg.sha512" + }, + "microsoft.extensions.dependencyinjection.abstractions/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2luhjVaWZd8Wmr2KUJcLNAN+iZgezTyfamLG6Lo5FVYY1LYaS7UFOmNtApHGVIytWWtuXSk4ea0t2Vx0HgF5fg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/1.1.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.1.1.0.nupkg.sha512" + }, + "microsoft.extensions.dependencymodel/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c0QJfEQ89zGJBlbL3pD0+RdZBf6VcK7a4bmu0WhzpiD7aUOHE/x/XFYN5aotk6rtWAF83kDJ84Q4QWrJPzlTXg==", + "path": "microsoft.extensions.dependencymodel/1.1.1", + "hashPath": "microsoft.extensions.dependencymodel.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.fileproviders.abstractions/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TBG5/xsMSOJ9hrit5TcM6Ipn+3/cgBs5tywXHun+L+8w1WYal13AMac2ziwPRY/PQqC4oG88Hw9hwIEj95xdGw==", + "path": "microsoft.extensions.fileproviders.abstractions/1.1.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.1.1.0.nupkg.sha512" + }, + "microsoft.extensions.fileproviders.composite/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S6vQ4HcjYKAmPqyuGNDQ1ILBaTx7SnDvfg/Dby+s55dXNI2WA/blkeIufbDm0MukALsukWya9mdbe7upWj8U5g==", + "path": "microsoft.extensions.fileproviders.composite/1.1.0", + "hashPath": "microsoft.extensions.fileproviders.composite.1.1.0.nupkg.sha512" + }, + "microsoft.extensions.fileproviders.embedded/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mMCI3/BLXAyBCDneqOI4ohETd0IXjbXZdoiCm1dYdnOdV193ByEOCFQ6/Vn9RVdU5UlC4Nn1P4J5Df7pXG/vGg==", + "path": "microsoft.extensions.fileproviders.embedded/1.0.0", + "hashPath": "microsoft.extensions.fileproviders.embedded.1.0.0.nupkg.sha512" + }, + "microsoft.extensions.fileproviders.physical/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ckyGwMGd4v1nE70wZ7ytax+Ef9WHQ6IcE4apLYG4um6Dfcw/Y6QJY0Fcv3Ck9WK/Uj0YMxHnNCZH6MBp6boeEw==", + "path": "microsoft.extensions.fileproviders.physical/1.1.0", + "hashPath": "microsoft.extensions.fileproviders.physical.1.1.0.nupkg.sha512" + }, + "microsoft.extensions.filesystemglobbing/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/NKs5LrUCUARfFbGik/ML5L2YnN33XTf+TUyghjhCzl9HlvLA4l6s3bW+xsbCU0GEmI/MottEEhiDa1dLJJh4A==", + "path": "microsoft.extensions.filesystemglobbing/1.1.0", + "hashPath": "microsoft.extensions.filesystemglobbing.1.1.0.nupkg.sha512" + }, + "microsoft.extensions.globalization.cultureinfocache/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+gKUobdf7KLlc4u9wLzyW5KATLj7KXuank09NhK5shGAMzMUVnASA840yxIYJTkU/68vifGlzuai5+I4gOZmDA==", + "path": "microsoft.extensions.globalization.cultureinfocache/1.1.1", + "hashPath": "microsoft.extensions.globalization.cultureinfocache.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.localization/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bGYnfUEWZgUDoz8xL2dBlNR8BzX9yRpaVm75TxCC8SH7v58fMH6vt8UCcj5cVMujnmnlYEJmJlQk5nsxPdGQ2A==", + "path": "microsoft.extensions.localization/1.1.1", + "hashPath": "microsoft.extensions.localization.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.localization.abstractions/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppidPZ7xag6NDDoA2AnId7kTC8judxyKHnFSmKPROBrcrVywm2deeoWIQgvwxFHR07wd6BHolvQwz0HjDqAwCA==", + "path": "microsoft.extensions.localization.abstractions/1.1.1", + "hashPath": "microsoft.extensions.localization.abstractions.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.logging/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uj4MrrkmiohrLDYY1aSfSOpC6NvyVgOZcCOhFojvCTgnMJPWbIPQeevgUBZqpYs1XKo/k/6XZU2P1zxyEjzDcw==", + "path": "microsoft.extensions.logging/1.1.1", + "hashPath": "microsoft.extensions.logging.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.logging.abstractions/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GwfhbXsfH2/a3cLluD6lRKgkSkf06fpHwfJcT7Js65zOYYShscLJo0ABeUGJ4ZlOxv9KRGdYKDvKUaF++DHKkQ==", + "path": "microsoft.extensions.logging.abstractions/1.1.1", + "hashPath": "microsoft.extensions.logging.abstractions.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.logging.console/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sEyLxPYkU2VO1gf3QpkdWYGzOV9H04zKY7SfJjVBA773qh2d6eeCT3A7ffFJMaoAExfOKBUNFIV4PC1DjHJPjw==", + "path": "microsoft.extensions.logging.console/1.1.1", + "hashPath": "microsoft.extensions.logging.console.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.logging.debug/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UKtE5c+TmN56WUVBYEkElu1qEdKWG3nzWW3nzxW0fjLjVvaKg9FKMMC2f2pMElUhH+/g6aToJuJ5nVZTrhZwAQ==", + "path": "microsoft.extensions.logging.debug/1.1.1", + "hashPath": "microsoft.extensions.logging.debug.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.objectpool/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8tg7DpFubtj98Lf+N+zpu5VXe9EHCPrqcukpsjC9BSfcnC0Oq8CUZKYUsLScS2pnqEkSNHwuHoWRtJ6xhMO/xg==", + "path": "microsoft.extensions.objectpool/1.1.0", + "hashPath": "microsoft.extensions.objectpool.1.1.0.nupkg.sha512" + }, + "microsoft.extensions.options/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uDIElDaOsZ6GZUOuxLa03LhrbIqbEPq3ykVxmgyUtRV090YJ5rOJREpxGBc6PxhlVSCS8w/KVBdH3eCIfOwIOg==", + "path": "microsoft.extensions.options/1.1.1", + "hashPath": "microsoft.extensions.options.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.options.configurationextensions/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8KtntH+waXSZVpReAP0cCLjU34jVpplyYovg3/uhIfCfTPg5iRmcdoWco6XZsXKHsgaRa5/LQTwFy1UszjgfEQ==", + "path": "microsoft.extensions.options.configurationextensions/1.1.1", + "hashPath": "microsoft.extensions.options.configurationextensions.1.1.1.nupkg.sha512" + }, + "microsoft.extensions.platformabstractions/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H6ZsQzxYw/6k2DfEQRXdC+vQ6obd6Uba3uGJrnJ2vG4PRXjQZ7seB13JdCfE72abp8E6Fk3gGgDzfJiLZi5ZpQ==", + "path": "microsoft.extensions.platformabstractions/1.1.0", + "hashPath": "microsoft.extensions.platformabstractions.1.1.0.nupkg.sha512" + }, + "microsoft.extensions.primitives/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GhQG5CBUR9/czBLTblt1giKBkfvHVDeppWd6KIgPyexrspECqzzSW5IXe0STTTs2NlUp9vIFwjSWG8O9c74R9g==", + "path": "microsoft.extensions.primitives/1.1.0", + "hashPath": "microsoft.extensions.primitives.1.1.0.nupkg.sha512" + }, + "microsoft.extensions.webencoders/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-POvHFibGU+vqvLhsaboXnY7nxHOhCsELErE06Gwni12BSJmm5DneteQidgYMP8j7LBERcy8uI5et/u5obggAWQ==", + "path": "microsoft.extensions.webencoders/1.1.1", + "hashPath": "microsoft.extensions.webencoders.1.1.1.nupkg.sha512" + }, + "microsoft.net.http.headers/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AizJH/ZncyoFPFBiknuELaQaCSpRX9SqqZFKNgwGmlJKlSYnJBU5HarBZMQTf35PzurYYULUsrK0TLcS8iPGpw==", + "path": "microsoft.net.http.headers/1.1.1", + "hashPath": "microsoft.net.http.headers.1.1.1.nupkg.sha512" + }, + "newtonsoft.json/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==", + "path": "newtonsoft.json/9.0.1", + "hashPath": "newtonsoft.json.9.0.1.nupkg.sha512" + }, + "swashbuckle.aspnetcore.swagger/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tzZ6tXjopV6jvcHzOX7PjyYBWqof5mhJUXqxb/kPF17Z5LXxr+uglnTLlYOjWCm5BfvdxWYtU95uJgc14L1Eqw==", + "path": "swashbuckle.aspnetcore.swagger/1.0.0", + "hashPath": "swashbuckle.aspnetcore.swagger.1.0.0.nupkg.sha512" + }, + "swashbuckle.aspnetcore.swaggergen/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1kuKS+4x1m85gpTOqICp5BRZB3Ir6VsegPN9hanH6xRp+tGDQNfFhVNPZ59Wrl8gM8YqIhB85xmFAkK68CqVdA==", + "path": "swashbuckle.aspnetcore.swaggergen/1.0.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.1.0.0.nupkg.sha512" + }, + "swashbuckle.aspnetcore.swaggerui/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-syirndQQePJXF8Dgzgjqt0AoxWVguPQy/p4siHNACBSGicxvk6AAd1ULIFE83ANJOCl2GmXuAvNAZBMXGbxK9A==", + "path": "swashbuckle.aspnetcore.swaggerui/1.0.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.1.0.0.nupkg.sha512" + }, + "system.collections.nongeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "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.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-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.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.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.net.websockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-u6fFNY5q4T8KerUAVbya7bR6b7muBuSTAersyrihkcmE5QhEOiH3t5rh4il15SexbVlpXFHGuMwr/m8fDrnkQg==", + "path": "system.net.websockets/4.3.0", + "hashPath": "system.net.websockets.4.3.0.nupkg.sha512" + }, + "system.runtime.compilerservices.unsafe/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rcnXA1U9W3QUtMSGoyoNHH6w4V5Rxa/EKXmzpORUYlDAlDB34hIQoU57ATXl8xHa83VvzRm6PcElEizgUd7U5w==", + "path": "system.runtime.compilerservices.unsafe/4.3.0", + "hashPath": "system.runtime.compilerservices.unsafe.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.text.encodings.web/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ilLTKoirqw+Mbt+6x1MOxZKEwflasdP5WNuo5m5rKSXtAqazlEDqdyBH1XbvENuDQUtKNeP48CI1dyDNlEAeOA==", + "path": "system.text.encodings.web/4.3.0", + "hashPath": "system.text.encodings.web.4.3.0.nupkg.sha512" + }, + "libuv/1.9.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uqX2Frwf9PW8MaY7PRNY6HM5BpW1D8oj1EdqzrmbEFD5nH63Yat3aEjN/tws6Tw6Fk7LwmLBvtUh32tTeTaHiA==", + "path": "libuv/1.9.1", + "hashPath": "libuv.1.9.1.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/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V09G35cs0CT1C4Dr1IEOh8IGfnWALEVAOO5JXsqagxXwmYR012TlorQ+vx2eXxfZRKs3gAS/r92gN9kRBLba5A==", + "path": "microsoft.codeanalysis.common/1.3.0", + "hashPath": "microsoft.codeanalysis.common.1.3.0.nupkg.sha512" + }, + "microsoft.codeanalysis.csharp/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BgWDIAbSFsHuGeLSn/rljLi51nXqkSo4DZ0qEIrHyPVasrhxEVq7aV8KKZ3HEfSFB+GIhBmOogE+mlOLYg19eg==", + "path": "microsoft.codeanalysis.csharp/1.3.0", + "hashPath": "microsoft.codeanalysis.csharp.1.3.0.nupkg.sha512" + }, + "microsoft.codeanalysis.visualbasic/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Sf3k8PkTkWqBmXnnblJbvb7ewO6mJzX6WO2t7m04BmOY5qBq6yhhyXnn/BMM+QCec3Arw3X35Zd8f9eBql0qgg==", + "path": "microsoft.codeanalysis.visualbasic/1.3.0", + "hashPath": "microsoft.codeanalysis.visualbasic.1.3.0.nupkg.sha512" + }, + "microsoft.csharp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "path": "microsoft.csharp/4.3.0", + "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" + }, + "microsoft.diasymreader.native/1.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-n2DhB+XJiapRwxV7egsj+bDtRYEeMGCQ47OOjE1Fk1RGOYF1fmJ/oZDJg9dT77cuCULFZxDjuU8j0iraZKa3Sg==", + "path": "microsoft.diasymreader.native/1.4.1", + "hashPath": "microsoft.diasymreader.native.1.4.1.nupkg.sha512" + }, + "microsoft.netcore.app/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EkP5IJfwFgjGvetK54/vIACVys9iNbwIamNClxuu/uUvnohS+Y6njnt9tsm5HhaIaadQUAwPn9/VRGIG8FXysw==", + "path": "microsoft.netcore.app/1.1.1", + "hashPath": "microsoft.netcore.app.1.1.1.nupkg.sha512" + }, + "microsoft.netcore.dotnethost/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zy4bPe5oo/FksObhL4ly45w6Omhsd/Cqhj1m4J+oJHaTqy/8GKos1Hq7pQhvksE6ujBgBMsnyToFmaxm2IPLcQ==", + "path": "microsoft.netcore.dotnethost/1.1.0", + "hashPath": "microsoft.netcore.dotnethost.1.1.0.nupkg.sha512" + }, + "microsoft.netcore.dotnethostpolicy/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E74XwEJp1rbRp4JMqZFO2aC94pB/Js5sLFS2QRb2Yof7dt/I1xqub4VkzHLTb9bEoTSkW8Jzmjf+Jv8YQytcUw==", + "path": "microsoft.netcore.dotnethostpolicy/1.1.0", + "hashPath": "microsoft.netcore.dotnethostpolicy.1.1.0.nupkg.sha512" + }, + "microsoft.netcore.dotnethostresolver/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dx7CT8wTDegK4bxkABgdX2lIxLmTFP/NrrjQCrbIxtu93B1Q6yQ3ABExvsl6r96pQbS2oMQcHVth+BbUCubiXw==", + "path": "microsoft.netcore.dotnethostresolver/1.1.0", + "hashPath": "microsoft.netcore.dotnethostresolver.1.1.0.nupkg.sha512" + }, + "microsoft.netcore.jit/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jeXDWbWoPYDUjt30AW0yPeRxT92+GP8O0sybIv4coW4zJcfXsaMopCk5NN0ZwNUPYSaHBPmmkaryf0ze1ZEKZQ==", + "path": "microsoft.netcore.jit/1.1.1", + "hashPath": "microsoft.netcore.jit.1.1.1.nupkg.sha512" + }, + "microsoft.netcore.platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "microsoft.netcore.runtime.coreclr/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9wYwwyGd7dRvdZxr9ZFStk48/KBOfh1wSNLDzekLG2sszqznsS+YO972WPO4+nKd5bC3OXKsbW6qL0Y0KwYpzQ==", + "path": "microsoft.netcore.runtime.coreclr/1.1.1", + "hashPath": "microsoft.netcore.runtime.coreclr.1.1.1.nupkg.sha512" + }, + "microsoft.netcore.targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "microsoft.netcore.windows.apisets/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512" + }, + "microsoft.visualbasic/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ckdnXFUhGsnrGDNHFR3QJoD4ENvC4li1VkXahJ2tbqjW5WSUaPWoVugj7Z5S3ir28LURTLrkr5fgIc8Pd688nw==", + "path": "microsoft.visualbasic/10.1.0", + "hashPath": "microsoft.visualbasic.10.1.0.nupkg.sha512" + }, + "microsoft.win32.primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "microsoft.win32.registry/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", + "path": "microsoft.win32.registry/4.3.0", + "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512" + }, + "netstandard.library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.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.io.compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "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.net.security/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W/j0bWtn/FXt+8bol7VpiSY5p0MS2/sHJUWY+vtXn8JGPBMrTJzG2ZYf4hhmwmiTZrLq/pGe6sJbPCxOXvQoHg==", + "path": "runtime.native.system.net.security/4.3.0", + "hashPath": "runtime.native.system.net.security.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-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "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" + }, + "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.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "path": "system.buffers/4.3.0", + "hashPath": "system.buffers.4.3.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.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zukBRPUuNxwy9m4TGWLxKAnoiMc9+B+8VXeXVyPiBPvOd7yLgAlZ1DlsRWJjMx4VsvhhF2+6q6kO2GRbPja6hA==", + "path": "system.collections.immutable/1.3.0", + "hashPath": "system.collections.immutable.1.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.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SY2RLItHt43rd8J9D8M8e8NM4m+9WLN2uUd9G0n1I4hj/7w+v3pzK6ZBjexlG1/2xvLKQsqir3UGVSyBTXMLWA==", + "path": "system.componentmodel.annotations/4.3.0", + "hashPath": "system.componentmodel.annotations.4.3.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.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.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + }, + "system.diagnostics.fileversioninfo/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qjF74OTAU+mRhLaL4YSfiWy3vj6T3AOz8AW37l5zCwfbBfj0k7E94XnEsRaf2TnhE/7QaV6Hvqakoy2LoV8MVg==", + "path": "system.diagnostics.fileversioninfo/4.0.0", + "hashPath": "system.diagnostics.fileversioninfo.4.0.0.nupkg.sha512" + }, + "system.diagnostics.process/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-O4hSYX81WKZJtPl+wQ/e0xq2lxdV3J09JfLfEhILNZCwtSaz0II5JDWkQHNQcZWvI4pic2hb1kVwcUrQt6urLQ==", + "path": "system.diagnostics.process/4.3.0", + "hashPath": "system.diagnostics.process.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.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.compression.zipfile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.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.filesystem.watcher/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-37IDFU2w6LJ4FrohcVlV1EXviUmAOJIbejVgOUtNaPQyeZW2D/0QSkH8ykehoOd19bWfxp3RRd0xj+yRRIqLhw==", + "path": "system.io.filesystem.watcher/4.3.0", + "hashPath": "system.io.filesystem.watcher.4.3.0.nupkg.sha512" + }, + "system.io.memorymappedfiles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4yfMNcUQ4L1hYPjNbMq7EsaR5mwTMm6g9wyzxNppxkpLWvR/YSJfbzcSI5I4fbpawzJ01oy3o7Nmh13ukTFr6w==", + "path": "system.io.memorymappedfiles/4.3.0", + "hashPath": "system.io.memorymappedfiles.4.3.0.nupkg.sha512" + }, + "system.io.unmanagedmemorystream/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2P66S5QrfsbQncGsvV6q+2ufO/HkDxeHAAY03ETOvrklOPpMU8XgsEA/Z2B9og2uanGagPAC++phIlFgNOA9lw==", + "path": "system.io.unmanagedmemorystream/4.3.0", + "hashPath": "system.io.unmanagedmemorystream.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-oR60wB0U2mgn1FxfPZZsS4nlrUDn7lMs8UDf3LG6ggHe+h0o39ZM3n24sl8ncqzFERU7Mp6itNt1+yVLpV82uw==", + "path": "system.linq.parallel/4.3.0", + "hashPath": "system.linq.parallel.4.3.0.nupkg.sha512" + }, + "system.linq.queryable/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==", + "path": "system.linq.queryable/4.3.0", + "hashPath": "system.linq.queryable.4.3.0.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.nameresolution/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "path": "system.net.nameresolution/4.3.0", + "hashPath": "system.net.nameresolution.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.requests/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vJJvzlmSARx0EVbt/+1+JOWm28bkizIs+sD83n7sGs4oOIOHJ/9FJ+73GfISutjeCOWsX90qhAv8bM8KDjeDYA==", + "path": "system.net.requests/4.3.0", + "hashPath": "system.net.requests.4.3.0.nupkg.sha512" + }, + "system.net.security/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nyz/ROxGytb+6q9mhPdxqkgcicctf/cv4A6qrXdQgIUimg+eeXTA801xZfcGzbSKsQqKzjen+HAuZCi/MMjBFQ==", + "path": "system.net.security/4.3.0", + "hashPath": "system.net.security.4.3.0.nupkg.sha512" + }, + "system.net.sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "system.net.webheadercollection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IrnELlPSAiywqzvhI27L49qIO09H6aNsdzzMcpUD1LT1u7Y4vjG4OzO4zEIo1XIeRPz/vQAKV+EboNNeTA+h1g==", + "path": "system.net.webheadercollection/4.3.0", + "hashPath": "system.net.webheadercollection.4.3.0.nupkg.sha512" + }, + "system.numerics.vectors/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RzjpYn0dJuOaTIBF1IglonEO40Dh3dVKDAVl2ALKmmozFFv4700UuijaF1ytutzPQaEZphIRwRj2AXvWGTJYAA==", + "path": "system.numerics.vectors/4.3.0", + "hashPath": "system.numerics.vectors.4.3.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.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.dispatchproxy/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rmphwxUVsANuG3MPV76Iy3bKX1c+4LpORMUNx8nrsm+n6ZfpYFpAv77p/5JF7226z5BJ+gxBUKKQoNRYRea6yw==", + "path": "system.reflection.dispatchproxy/4.3.0", + "hashPath": "system.reflection.dispatchproxy.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.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/3eX5zk7B/IqhcY3USf0MX/pQXLMDGo9MogB8RtXyzj8Zdi9KyKwdLMng17rQL6ypOh+wKQLSAM8pSun6oWVvQ==", + "path": "system.reflection.metadata/1.4.1", + "hashPath": "system.reflection.metadata.1.4.1.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.reader/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W+yAJOxEntGh9saF4U+7OmYZa1itZQD82QFLiSNF4RkplxBVVJI6AJI34v5Q8uHFjburv2HFrU7UQTOeNWh2vg==", + "path": "system.resources.reader/4.3.0", + "hashPath": "system.resources.reader.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.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.loader/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-40aAUi+IXyR/SPAyMwRmBHLY9nrv5kxbHZzj1P/oq1mIzA7Eu6XuXLoYh6NqYFCbayH6/rD47hGx6kqMHI+xhQ==", + "path": "system.runtime.loader/4.3.0", + "hashPath": "system.runtime.loader.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.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.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/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.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==", + "path": "system.security.principal.windows/4.3.0", + "hashPath": "system.security.principal.windows.4.3.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.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==", + "path": "system.text.encoding.codepages/4.0.1", + "hashPath": "system.text.encoding.codepages.4.0.1.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.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.overlapped/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", + "path": "system.threading.overlapped/4.3.0", + "hashPath": "system.threading.overlapped.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.dataflow/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1lsM7wFWczNATZvD3zk6i0zKWQChfCdtERofr1+ldB/EYwJkfVcyp5JHdXBWe3GYGPUgo/6APgg1SJpmKTziiw==", + "path": "system.threading.tasks.dataflow/4.7.0", + "hashPath": "system.threading.tasks.dataflow.4.7.0.nupkg.sha512" + }, + "system.threading.tasks.extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "system.threading.tasks.parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1OC1A7/A64nnYp5v8KFYFQuU0qOl5wNjYaEsAuTVhq/AZU2VPTbRzPnZJtDqHGMt3J94dv5YmouwkQO0mW3Fg==", + "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.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", + "path": "system.threading.threadpool/4.3.0", + "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" + }, + "system.threading.timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.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.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==", + "path": "system.xml.xmldocument/4.0.1", + "hashPath": "system.xml.xmldocument.4.0.1.nupkg.sha512" + }, + "system.xml.xpath/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==", + "path": "system.xml.xpath/4.0.1", + "hashPath": "system.xml.xpath.4.0.1.nupkg.sha512" + }, + "system.xml.xpath.xdocument/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FLhdYJx4331oGovQypQ8JIw2kEmNzCsjVOVYY/16kZTUoquZG85oVn7yUhBE2OZt1yGPSXAL0HTEfzjlbNpM7Q==", + "path": "system.xml.xpath.xdocument/4.0.1", + "hashPath": "system.xml.xpath.xdocument.4.0.1.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/netcoreapp1.1/swaggerbug.dll b/bin/Debug/netcoreapp1.1/swaggerbug.dll new file mode 100755 index 0000000000000000000000000000000000000000..42f8d7bca5ad03f34ab95029c58fefeed16d9702 GIT binary patch literal 10752 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 I{t6NJUsBtwMgRZ+ literal 0 HcmV?d00001 diff --git a/bin/Debug/netcoreapp1.1/swaggerbug.pdb b/bin/Debug/netcoreapp1.1/swaggerbug.pdb new file mode 100755 index 0000000000000000000000000000000000000000..7c549b0470e0d9bb69a0b63b55d0cc137942adc4 GIT binary patch literal 1444 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 I{t6NJUsBtwMgRZ+ literal 0 HcmV?d00001 diff --git a/obj/Debug/netcoreapp1.1/swaggerbug.pdb b/obj/Debug/netcoreapp1.1/swaggerbug.pdb new file mode 100755 index 0000000000000000000000000000000000000000..7c549b0470e0d9bb69a0b63b55d0cc137942adc4 GIT binary patch literal 1444 zcmZuxU2Gdg5T04v=R2E(IDc)Os5Lm^ui%8Ahe(y0;MfgL9TMW0B7~Zr?XB&`y>su* zZHywY8w3(k1f?oco^D1WM^j@_1O&0}BAJXuLkAy?4A>5kV4jQuNq91s5x!qYEJ_c*1n?XK2oVma zETgF9O)_DQd~V@Or(mA!VPTJ^6EV_X623taj+XQc;gyva-uBH6?OZy(9P3&A_2J}+ zTQvnh+SPSJQCh)f6{S4Mk#^F4k~qmG5)TQL1D7K*Y0*iKqeZOInVsjDACp(CSL}VF zCY@<>_L3GgKcrosQsp!v%pikp3?a@$we=Um_jZ8UHzW8w&sPe9kf%SQ-w#YM@anOB|Z&2-h>4|kuT=tapJ<)LiuaBpKxmvP7@9^;jM(*n{WqV zvBYTz-L@UDzv5PeZ^pi3gh3Q@Md)H;9zPS~n-D@5ypDV9?>iKKi=C(MInlAft)#By zAyX-qa@>G|Zd#BjYN}DCsJ(7>Z~S-n2W{i8{iP?e3s3C1oq1;HqW5y(%@mxUILVHm znwqIxIC3t&@>%HEf$LLWC1K>cOUdf8_lQuBFkWGZ?8h^|?NU|^VmX>L-PH5|#B{(jh3 zezA7Awpd&0+}ZnM%im{jUEA{Q)o{_c_g4D{>pi|nL(d!PeqyRPOzUHv zU;MCm@g8f}8%Gxge`BYHE}eOK>hmso1lX#eC&=VJ@QbHL>=<_3`#+udoW(WM9s^y% z-eSIDsA4J)teX!^rbA-uqx%IE)NfMUjF*X@+X7CXNJ= 1.1.1", + "Microsoft.AspNetCore.Mvc >= 1.1.2", + "Microsoft.Extensions.Logging.Debug >= 1.1.1", + "Microsoft.NETCore.App >= 1.1.1", + "Swashbuckle.AspNetCore.SwaggerGen >= 1.0.0", + "Swashbuckle.AspNetCore.SwaggerUi >= 1.0.0" + ] + }, + "packageFolders": { + "/Users/Johnathan/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/Johnathan/Desktop/swaggerbug/swaggerbug.csproj", + "projectName": "swaggerbug", + "projectPath": "/Users/Johnathan/Desktop/swaggerbug/swaggerbug.csproj", + "outputPath": "/Users/Johnathan/Desktop/swaggerbug/obj/", + "projectStyle": "PackageReference", + "originalTargetFrameworks": [ + "netcoreapp1.1" + ], + "files": { + "lib/netcoreapp1.1/swaggerbug.dll": "/Users/Johnathan/Desktop/swaggerbug/bin/placeholder/netcoreapp1.1/swaggerbug.dll" + }, + "frameworks": { + "netcoreapp1.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp1.1": { + "dependencies": { + "Microsoft.NETCore.App": { + "target": "Package", + "version": "1.1.1" + }, + "Microsoft.AspNetCore": { + "target": "Package", + "version": "1.1.1" + }, + "Microsoft.AspNetCore.Mvc": { + "target": "Package", + "version": "1.1.2" + }, + "Microsoft.Extensions.Logging.Debug": { + "target": "Package", + "version": "1.1.1" + }, + "Swashbuckle.AspNetCore.SwaggerGen": { + "target": "Package", + "version": "1.0.0" + }, + "Swashbuckle.AspNetCore.SwaggerUi": { + "target": "Package", + "version": "1.0.0" + } + } + } + } + } +} \ No newline at end of file diff --git a/obj/swaggerbug.csproj.nuget.g.props b/obj/swaggerbug.csproj.nuget.g.props new file mode 100755 index 0000000..a1915ac --- /dev/null +++ b/obj/swaggerbug.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + /Users/Johnathan/Desktop/swaggerbug/obj/project.assets.json + /Users/Johnathan/.nuget/packages/ + /Users/Johnathan/.nuget/packages/ + PackageReference + 4.0.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + \ No newline at end of file diff --git a/obj/swaggerbug.csproj.nuget.g.targets b/obj/swaggerbug.csproj.nuget.g.targets new file mode 100755 index 0000000..53cfaa1 --- /dev/null +++ b/obj/swaggerbug.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/swaggerbug.csproj b/swaggerbug.csproj new file mode 100755 index 0000000..60496a0 --- /dev/null +++ b/swaggerbug.csproj @@ -0,0 +1,19 @@ + + + + netcoreapp1.1 + + + + + + + + + + + + + + +